Custom background colour in Faceted Search widget on sp_search pageIssue The requirement was to be able to customise the background colour of the 'Faceted Search' widget for the AI search result page. It was identified that the $body-bg variable was being used, which wasn't a conducive colour for the requirements of the search page results.ResolutionFor customising the entire body background for the AI search result page, there is the variable $now-sp-color--background-primary available. If this variable is not overridden at theme level, by default it will then take the value of $body-bg color. Hence, when $body-bg is altered, but $now-sp-color--background-primary is not set to override this, the entire body colour will change.The precedence being given to the $now-sp-color--background-primary instead of $body-bg can be seen when we have these variables set to different colour values.So, for example, if the following is set for the out of box 'La Jolla' theme,...$body-bg: #12abdb !default; $now-sp-color--background-primary: #F5F5F5 !default;...The background will default to #F5F5F5. $now-sp-color--background-primary can therefore be used locally to override the effect of $body-bg.