mirror of
https://git.sr.ht/~coasteen/dotfiles
synced 2026-02-04 06:03:45 +01:00
63 lines
929 B
SCSS
63 lines
929 B
SCSS
* {
|
|
all: unset;
|
|
background: transparent;
|
|
font-family: "JetBrainsMono Nerd Font";
|
|
border-radius: 10px;
|
|
}
|
|
|
|
$bg: #191724;
|
|
$bg1: #1f1d2e;
|
|
$bg2: #26233a;
|
|
$fg: #e0def4;
|
|
$fgdim: #6e6a86;
|
|
$accent: #9ccfd8;
|
|
$border: #26233a;
|
|
|
|
.container {
|
|
background-color: $bg1;
|
|
border: 1px solid $border;
|
|
color: $fg;
|
|
border-radius: 10px;
|
|
padding: 6px;
|
|
opacity: 0.7;
|
|
}
|
|
|
|
.button-label, .label {
|
|
font-size: 24px;
|
|
font-weight: bold;
|
|
color: $fg;
|
|
}
|
|
|
|
.completelytrans {
|
|
background: none;
|
|
}
|
|
|
|
.calendar-label {
|
|
font-size: 16px;
|
|
font-weight: bold;
|
|
color: $fg;
|
|
}
|
|
|
|
window {
|
|
all: unset;
|
|
background: transparent;
|
|
}
|
|
|
|
calendar, calendar.view, calendar.header {
|
|
all: unset;
|
|
background-color: $bg;
|
|
color: $fgdim;
|
|
font-size: 18px;
|
|
border-radius: 10px;
|
|
}
|
|
|
|
calendar:indeterminate {
|
|
color: #665c54;
|
|
}
|
|
|
|
calendar:selected {
|
|
background-color: $bg2;
|
|
border: 1px solid $accent;
|
|
color: $fg;
|
|
border-radius: 4px;
|
|
}
|