discord/common/color-theme: add text selection theming (#2195)

Link: https://github.com/nix-community/stylix/pull/2195

Reviewed-by: NAHO <90870942+trueNAHO@users.noreply.github.com>
This commit is contained in:
Pascal 2026-02-12 10:45:01 -06:00 committed by GitHub
parent 72e6483a88
commit db03fed72e
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -352,6 +352,12 @@ colors: ''
background: var(--base00) !important;
}
/*--- Text Selection Highlight Recolor ---*/
::selection {
background-color: var(--base02);
color: var(--base05);
}
/*--- Increase Text Legibility ---*/
* {
text-rendering: optimizeLegibility !important;