blob: 3975a9387886686f4e4b1adb8b74d68a7cad09ff (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
|
* {
all: unset;
background: transparent;
font-family: "JetBrainsMono Nerd Font";
border-radius: 10px;
}
$bg: #111111;
$bg1: #111111;
$bg2: #26233a;
$fg: #ebbcba;
$fgdim: #6e6a86;
$accent: #9ccfd8;
$border: #ebbcba;
.container {
background-color: $bg1;
border: 1px solid $border;
color: $fg;
border-radius: 10px;
padding: 6px;
opacity: 0.9;
}
.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;
}
|