summaryrefslogtreecommitdiff
path: root/pkgs/astal/src/style/style.scss
diff options
context:
space:
mode:
Diffstat (limited to 'pkgs/astal/src/style/style.scss')
-rw-r--r--pkgs/astal/src/style/style.scss56
1 files changed, 56 insertions, 0 deletions
diff --git a/pkgs/astal/src/style/style.scss b/pkgs/astal/src/style/style.scss
new file mode 100644
index 0000000..77c8b36
--- /dev/null
+++ b/pkgs/astal/src/style/style.scss
@@ -0,0 +1,56 @@
+@use "sass:color";
+@use "sass:math";
+
+@import "./theme";
+
+* {
+ all: unset;
+}
+
+window {
+ color: $text;
+ font-family: $font-name;
+}
+
+button {
+ color: $text;
+ background: $surface-bg;
+
+ &:hover {
+ color: $hover;
+ background: $hover-bg;
+ }
+
+ &.primary {
+ color: $primary;
+ background: $primary-bg;
+ }
+}
+
+menu {
+ background: $bg;
+ padding: $inner-gap 0;
+ border-radius: $outer-radius;
+
+ menuitem {
+ color: $text;
+ margin: $inner-gap $outer-gap;
+ padding: $inner-gap;
+ border-radius: $inner-radius;
+
+ &:hover,
+ &:selected {
+ background: $surface-bg;
+ }
+
+ &:disabled {
+ color: $subtext;
+ }
+ }
+
+ separator {
+ background-color: $surface-bg;
+ min-height: 1px;
+ margin: $inner-gap 0;
+ }
+}