diff --git a/scss/widgets.scss b/scss/widgets.scss index 9d57964c..856960f4 100644 --- a/scss/widgets.scss +++ b/scss/widgets.scss @@ -3,16 +3,6 @@ @use "lib"; @use "font"; -* { - selection { - background-color: color.change(scheme.$overlay2, $alpha: 0.3); - } - - & { - caret-color: scheme.$rosewater; - } -} - label.icon { @include font.icon; } diff --git a/style.scss b/style.scss index bd741b9a..c6192c5b 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); + } }