@jamjodesign
These elements belongs to EasySocial so you can find LESS file for Easysocial in this directory: ROOT/templates/ja_intranet/less/extras/com_easysocial.less
For example, you want to change the color for ‘label-notification’, you look for this declaration:
// Label
.label {
display: inline-block;
font-weight: @font-weight-normal;
&:empty {
display: none;
}
&.label-notification {
background: @brand-secondary;
border: 0;
font-size: 11px;
line-height: 16px;
border-radius: @border-radius-small;
}
}
As you can see that its background is set with value of ‘brand-secondary’ variable. The declaration of this ‘brand-secondary’ variable (or other variables) can be found in the file: ROOT/templates/ja_intranet/less/variables.less
Search for this line: @brand-secondary: #34bf49;
and change as you wish.