Uvm_config_db#(color_t)::set(this, "*driver*, "font_color", CYAN);

Hello.
I want to set uvm_config_tb value like:

uvm_config_db#(color_t)::set(this, "*", "bg_color", MAGENTA);  // PASS
uvm_config_db#(color_t)::set(this, "*driver*", "font_color", CYAN); // not work
uvm_config_db#(color_t)::set(this, "*monitor*", "font_color", BLACK); // not work

I want to set color_t parameters separately for driver and monitor, it’s possible?

In reply to skattun:

It should work if those are the correct path names to your driver and monitor. See Debugging My UVM Factory and UVM Config - Verification Horizons

In reply to dave_59:

Thanks for replying. I checked the path in questasim(GUI) > UVM detail > configDB then I resolved the problem. It’s located in different code and I missed to define required class for color display. Thanks!