d
Amit DhamuSoftware Engineer
 

Browser Selection Colour

1 minute read 00000 views

The colour which your browser uses to highlight/select can be changed using CSS:

// FireFox
::-moz-selection {
  background: #e80575;
}

// Webkit/Chrome
::selection {
  background: #e80575;
}