dotfiles-mirror/config/eww/eww.scss

64 lines
929 B
SCSS
Raw Normal View History

2025-10-07 17:23:57 +03:30
* {
all: unset;
background: transparent;
font-family: "JetBrainsMono Nerd Font";
border-radius: 10px;
2025-10-07 17:23:57 +03:30
}
$bg: #191724;
$bg1: #1f1d2e;
$bg2: #26233a;
$fg: #e0def4;
$fgdim: #6e6a86;
$accent: #9ccfd8;
$border: #26233a;
2025-10-07 17:23:57 +03:30
.container {
background-color: $bg1;
border: 1px solid $border;
color: $fg;
border-radius: 10px;
padding: 6px;
2025-11-07 03:03:16 +03:30
opacity: 0.7;
2025-10-07 17:23:57 +03:30
}
.button-label, .label {
2025-10-07 17:23:57 +03:30
font-size: 24px;
font-weight: bold;
color: $fg;
2025-10-07 17:23:57 +03:30
}
2025-10-09 12:38:42 +03:30
.completelytrans {
background: none;
}
2025-10-09 12:38:42 +03:30
.calendar-label {
font-size: 16px;
font-weight: bold;
color: $fg;
}
window {
all: unset;
background: transparent;
2025-10-07 17:23:57 +03:30
}
calendar, calendar.view, calendar.header {
2025-10-09 12:38:42 +03:30
all: unset;
background-color: $bg;
color: $fgdim;
2025-10-09 12:38:42 +03:30
font-size: 18px;
border-radius: 10px;
2025-10-07 17:23:57 +03:30
}
2025-10-09 12:38:42 +03:30
calendar:indeterminate {
color: #665c54;
2025-10-09 12:38:42 +03:30
}
2025-10-07 17:23:57 +03:30
2025-10-09 12:38:42 +03:30
calendar:selected {
background-color: $bg2;
border: 1px solid $accent;
color: $fg;
border-radius: 4px;
2025-10-09 12:38:42 +03:30
}