mirror of
https://git.sr.ht/~coasteen/dotfiles
synced 2026-02-04 14:14:02 +01:00
63 lines
919 B
SCSS
63 lines
919 B
SCSS
* {
|
|
all: unset;
|
|
background: transparent;
|
|
font-family: "JetBrainsMono Nerd Font";
|
|
border-radius: 10px;
|
|
}
|
|
|
|
$bg: #2a2a2a;
|
|
$bg1: #2a2a2a;
|
|
$bg2: #2a2a2a;
|
|
$fg: #ebdbb2;
|
|
$fgdim: #bdae93;
|
|
$accent: #d79921;
|
|
$border: #504945;
|
|
|
|
.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;
|
|
}
|