mirror of
https://github.com/ItsDrike/dotfiles.git
synced 2024-11-10 10:39:41 +00:00
33 lines
377 B
SCSS
33 lines
377 B
SCSS
.calendar-win {
|
|
@include window;
|
|
background-color: $bg;
|
|
border: 1px solid $border;
|
|
color: $fg;
|
|
padding: .2em;
|
|
}
|
|
|
|
calendar {
|
|
padding: 5px;
|
|
|
|
:selected {
|
|
color: $mauve;
|
|
}
|
|
|
|
.header {
|
|
color: $subtext1;
|
|
}
|
|
|
|
.highlight {
|
|
color: $maroon;
|
|
font-weight: bold;
|
|
}
|
|
|
|
.button {
|
|
color: $sapphire;
|
|
}
|
|
|
|
:indeterminate {
|
|
color: $overlay0;
|
|
}
|
|
}
|