Custom Text Selection Color
Overrides the browser default text-selection highlight with brand colours, with a separate scheme for code blocks.
CSSby SnipCraft
css
::selection {
background-color: #3b82f6;
color: #ffffff;
}
::-moz-selection {
background-color: #3b82f6;
color: #ffffff;
}
/* Distinct highlight inside code blocks */
pre::selection,
code::selection {
background-color: #065f46;
color: #d1fae5;
}
pre ::-moz-selection,
code ::-moz-selection {
background-color: #065f46;
color: #d1fae5;
}#branding#css#selection#typography