Although it seems a while ago, this might help someone else. I was playing with theme colors in my ui_template nodes and having issues remembering the different colors. Here my solution for identifying the different variables for the different colors.
I used a ui_template
node to see which is which.
In my node I used the following code:
var(--nr-dashboard-pageBackgroundColor)<div style="width:100%;height:60px;background-color:var(--nr-dashboard-pageBackgroundColor)"></div><p>
var(--nr-dashboard-pageTitlebarBackgroundColor)<div style="width:100%;height:60px;background-color:var(--nr-dashboard-pageTitlebarBackgroundColor)"></div><p>
var(--nr-dashboard-pageSidebarBackgroundColor)<div style="width:100%;height:60px;background-color:var(--nr-dashboard-pageSidebarBackgroundColor)"></div><p>
var(--nr-dashboard-groupBackgroundColor)<div style="width:100%;height:60px;background-color:var(--nr-dashboard-groupBackgroundColor)"></div><p>
var(--nr-dashboard-groupTextColor)<div style="width:100%;height:60px;background-color:var(--nr-dashboard-groupTextColor)"></div><p>
var(--nr-dashboard-groupBorderColor)<div style="width:100%;height:60px;background-color:var(--nr-dashboard-groupBorderColor)"></div><p>
var(--nr-dashboard-widgetColor)<div style="width:100%;height:60px;background-color:var(--nr-dashboard-widgetColor)"></div><p>
var(--nr-dashboard-widgetTextColor)<div style="width:100%;height:60px;background-color:var(--nr-dashboard-widgetTextColor)"></div><p>
var(--nr-dashboard-widgetBgndColor)<div style="width:100%;height:60px;background-color:var(--nr-dashboard-widgetBgndColor)"></div><p>
Or you can import this node:
[{"id":"b7d856c6.99d198","type":"ui_template","z":"4d2d578e.6cea28","group":"fb4c245.8e22cd8","name":"Test theme colors","order":5,"width":0,"height":0,"format":"var(--nr-dashboard-pageBackgroundColor)<div style=\"font-size:72%;width:100%;height:60px;background-color:var(--nr-dashboard-pageBackgroundColor)\"></div><p>\nvar(--nr-dashboard-pageTitlebarBackgroundColor)<div style=\"font-size:72%;width:100%;height:60px;background-color:var(--nr-dashboard-pageTitlebarBackgroundColor)\"></div><p>\nvar(--nr-dashboard-pageSidebarBackgroundColor)<div style=\"font-size:72%;width:100%;height:60px;background-color:var(--nr-dashboard-pageSidebarBackgroundColor)\"></div><p>\nvar(--nr-dashboard-groupBackgroundColor)<div style=\"font-size:72%;width:100%;height:60px;background-color:var(--nr-dashboard-groupBackgroundColor)\"></div><p>\nvar(--nr-dashboard-groupTextColor)<div style=\"font-size:72%;width:100%;height:60px;background-color:var(--nr-dashboard-groupTextColor)\"></div><p>\nvar(--nr-dashboard-groupBorderColor)<div style=\"font-size:72%;width:100%;height:60px;background-color:var(--nr-dashboard-groupBorderColor)\"></div><p>\nvar(--nr-dashboard-widgetColor)<div style=\"font-size:72%;width:100%;height:60px;background-color:var(--nr-dashboard-widgetColor)\"></div><p>\nvar(--nr-dashboard-widgetTextColor)<div style=\"font-size:72%;width:100%;height:60px;background-color:var(--nr-dashboard-widgetTextColor)\"></div><p>\nvar(--nr-dashboard-widgetBgndColor)<div style=\"font-size:72%;width:100%;height:60px;background-color:var(--nr-dashboard-widgetBgndColor)\"></div><p>","storeOutMessages":true,"fwdInMessages":true,"resendOnRefresh":true,"templateScope":"local","x":580,"y":2400,"wires":[[]]},{"id":"fb4c245.8e22cd8","type":"ui_group","name":"Demo","tab":"9cb34fc7.ab81b8","order":1,"disp":true,"width":"6","collapse":false},{"id":"9cb34fc7.ab81b8","type":"ui_tab","name":"Test","icon":"dashboard","order":17,"disabled":false,"hidden":false}]