Changer la couleur de sélection du texte en CSS

https://metaforweb.com/changer-la-couleur-de-selection-du-texte-en-css

/* couleur surlignage texte*/
/* pour Firefox */
::-moz-selection {
 background-color:#B29A3E;
 color: #fff;
}
/* pour Safari et Chrome */
::selection {
 background-color:#B29A3E;
 color: #fff;
}