summaryrefslogtreecommitdiff
path: root/style.scss
diff options
context:
space:
mode:
author2 * r + 2 * t <61896496+soramanew@users.noreply.github.com>2025-01-27 22:25:17 +1100
committer2 * r + 2 * t <61896496+soramanew@users.noreply.github.com>2025-01-27 22:25:17 +1100
commitfee7bf492eec2baed1afe65868d7a4a7cc05330a (patch)
tree4bbb4d356fda1509ff500704475fa4733131887f /style.scss
parentsideright: imperial weather (diff)
downloadcaelestia-shell-fee7bf492eec2baed1afe65868d7a4a7cc05330a.tar.gz
caelestia-shell-fee7bf492eec2baed1afe65868d7a4a7cc05330a.tar.bz2
caelestia-shell-fee7bf492eec2baed1afe65868d7a4a7cc05330a.zip
fix caret styles
Cause the reset at the end overrides it, so move it after
Diffstat (limited to 'style.scss')
-rw-r--r--style.scss8
1 files changed, 8 insertions, 0 deletions
diff --git a/style.scss b/style.scss
index bd741b9..c6192c5 100644
--- a/style.scss
+++ b/style.scss
@@ -1,3 +1,6 @@
+@use "sass:color";
+@use "scss/scheme";
+
// Common widgets
@use "scss/widgets";
@@ -11,4 +14,9 @@
* {
all: unset; // Remove GTK theme styles
+ caret-color: scheme.$rosewater;
+
+ selection {
+ background-color: color.change(scheme.$overlay2, $alpha: 0.3);
+ }
}