Highlight color

Hi!
I have never changed the colour for highlighting my text before. It was standard blue when lighting the text on my site. Now, the highlighting colour has changed to light blue. I want to know how to change the highlight colour in the Bricks Builder?

I can’t seem to find the setting. Need to use custom CSS?

Hi Jornes,

changing the selection color is only possible using custom CSS:

::selection {
  /* Change highlight background color to black */
  background: #000;
  /* Change highlight text color to red */
  color: #ff0000;
}

You can make this even more specific by addressing specific elements rather than the body or HTML. Take a look at this article: How to Change the Highlight Color of an HTML Document - Ado.xyz

Best regards,
timmse

1 Like

@timmse Thank you very much!