diff options
| author | Henry Jameson <me@hjkos.com> | 2024-03-04 19:53:45 +0200 |
|---|---|---|
| committer | Henry Jameson <me@hjkos.com> | 2024-03-04 19:53:45 +0200 |
| commit | 7e01d2083d3e26d5239a332cf12e520468a39565 (patch) | |
| tree | 939597b0d9a9fdc6ed5a9694e79e208a03382e33 /src/components/root.style.js | |
| parent | 075f2cb903fa45ea8e7a52098fd7091b0b14a9fd (diff) | |
proper selection colors
Diffstat (limited to 'src/components/root.style.js')
| -rw-r--r-- | src/components/root.style.js | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/src/components/root.style.js b/src/components/root.style.js index 40c53172..3e840a52 100644 --- a/src/components/root.style.js +++ b/src/components/root.style.js @@ -21,6 +21,7 @@ export default { '--fg': 'color | #182230', '--text': 'color | #b9b9ba', '--link': 'color | #d8a070', + '--accent': 'color | #d8a070', '--cRed': 'color | #FF0000', '--cBlue': 'color | #0095ff', '--cGreen': 'color | #0fa00f', @@ -32,7 +33,11 @@ export default { // Fallback no-background-image color // (also useful in some other places like scrollbars) - '--wallpaper': 'color | --bg, -2' + '--wallpaper': 'color | --bg, -2', + + // Selection colors + '--selectionBackground': 'color | --accent', + '--selectionText': 'color | $textColor(--accent, --text)' } } ] |
