We have a SharePoint solution that was currently deployed to a single Web Application. Now it deploys to two Web Applications.
The solution has its own custom css file(s) with a defined class as follows:
.section-break
{
background-color: #3bb1ff;
color: white;
padding: 3px 5px 3px 5px;
}
The background is basically a light blue which looks ok with the default theme of the site under web application 1.
However, as part of the update, when deploying to the second web application, the blue is a bit out of place.
Ideally, I would like to have this background based on a theme.
Given that the current solution's css is static, is there a way I can use the some of the theme colours for my css?
Web Application 1 uses the default SharePoint theme, whilst Web Application 2 uses the Graham theme.