You can create your own custom class rules to set the colors for any tab or panel in OPM, here's how:
1. Create a set of style rules to affect a trigger, we'll name it green-trigger, and add them to your style sheet:
a.green-trigger {
background-color: #66CC99 !important;
color: #fff !important;
}
a.green-trigger.open {
background-color: #00897b !important;
color: #fff !important;
}
a.green-trigger:hover{
background-color: #27ed36 !important;
color: #fff !important;
}
The above style rules handle the normal, open state, and hover state for the trigger.
2. To assign this to a trigger open the OPM Modify interface, select the trigger you want to affect, and enter this into the 'User Class: Trigger' box. Click OK to apply the style.
3. Create this rule to affect any panel, we'll name it green-panel, and add it to your style sheet:
.green-panel {
background-color: #66CC99 !important;
color: #fff !important;
}
4. To assign this to a panel open the OPM Modify interface, select the trigger/panel you want to affect, and enter this into the 'User Class: Panel' box. Click OK to apply the style.