How do I set the background colour for a group? I would like a different colour for each group. I have tried setting 'background-color' in a template, but that only works for the widgets.
Target the v-card in the group with CSS in a CSS All Pages type template. Also, use !important (yes, not cool, but necessary in this case)
div.nrdb-ui-group.pink div.v-card {
background-color: pink !important;
}
div.nrdb-ui-group.lime div.v-card {
background-color: lime !important;
}
div.nrdb-ui-group.cyan div.v-card {
background-color: lightcyan !important
}

@ Steve-Mcl you have the solution. You add the definitions to the template:
div.nrdb-ui-group.pink div.v-card {
background-color: pink !important;
}
div.nrdb-ui-group.lime div.v-card {
background-color: lime !important;
}
div.nrdb-ui-group.cyan div.v-card {
background-color: lightcyan !important
}
Then in the group Class, you just specify the colour: lime, lightcyan or pink.
Thank you Steve



