How to make select color changing?

hello,
who can help to make the selecting color and webbrowser color changing in the result of webflow., check de website www.deme.be where the selecting text color is green!

https://goo.gl/images/7prWQP![Screenshot_20190123-170228|236x500](upload://qgfB3iyDFiM2vw7FifPybu9QtHq.jpeg)

1 Like

Selection is easy:

/*colorize text selection */

::-moz-selection { /* Firefox */  color: #ffffff;
background: #4700ff;    }

::selection {color: #ffffff;
background: #4700ff;    }

Dunno about the mobile chrome panel though. Would love to hear an answer to that as well!

edit: obviously have to go to any custom code field - in settings or on the page settings or in embed. I perefer site settings since it works for the whole site

1 Like