This repository has been archived by the owner on Feb 8, 2024. It is now read-only.
forked from schnensch0/zelk
-
Notifications
You must be signed in to change notification settings - Fork 0
/
zelk.theme.css
149 lines (142 loc) · 5.49 KB
/
zelk.theme.css
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
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
/**
* @name Updated Zelk (client theme edition)
* @version 1.0.7
* @source https://github.com/CheaterTim/zelk
* @updateUrl https://cheatertim.github.io/zelk/zelk.theme.css
* @description an updated fork of the zelk theme
*/
@import url("https://cheatertim.github.io/zelk/colors/@{color}.css");
@import url(https://cheatertim.github.io/zelk/main.css);
/* comment to disable setting icons */
@import url("https://crearts-community.github.io/Settings-Icons/clients/settings-icons.theme.css");
/*-------------VARIABLES-------------*/
:root {
/* set to 'unset' to show */
--scrollbars: none;
/* user notes */
--notes: none;
/* direct message box */
--message: none;
/* set to '4px solid' to show */
--embed-color: none;
/* comment to disable font */
--font-primary: "Inter", "gg sans", sans-serif;
--font-display: "Inter", "gg sans", sans-serif !important;
--border-radius-1: 10px;
--border-radius-2: 8px;
}
/*-----------CUSTOM COLORS-----------*/
/*-------------DARK MODE-------------*/
/*---------------BASIC---------------*/
.theme-dark {
--accent-color: #bde6fb;
--background-1: #171d20;
--background-2: #1e2529;
--background-accent: #1e2529;
--border-color: #273034;
}
/*-------------LIGHT MODE------------*/
.theme-light {
--accent-color: #22c5fd;
--background-1: #ffffff;
--background-2: #f5f7fa;
--background-accent: var(--background-2);
--border-color: transparent;
}
/*-------------ADVANCED--------------*/
.theme-dark {
/* background */
--background-primary: var(--background-1);
--background-primary-alt: var(--background-1);
--background-secondary: var(--background-1);
--background-secondary-alt: var(--background-1);
--background-tertiary: var(--background-2);
--background-accent-gradient: var(--background-2);
--background-floating: var(--background-1);
--background-mentioned: #bde6fb10;
--background-mentioned-hover: #bde6fb15;
/* modifiers */
--background-modifier-hover: #262e33;
--background-modifier-active: #495a63;
--background-modifier-selected: var(--accent-color);
--background-modifier-accent: transparent;
--background-message-hover: transparent;
/* text */
--text-normal: var(--accent-color);
--text-positive: var(--text-normal);
--text-muted: #6d8692;
--text-link: #edf8fe;
--interactive-selected: var(--background-primary);
--interactive-active: var(--text-normal);
--interactive-normal: var(--text-normal);
--interactive-muted: var(--button-background-active);
--channels-default: var(--text-muted);
--header-primary: var(--text-normal);
--header-secondary: var(--text-muted);
/* more */
--settings-icon-color: #8eacbc;
--control-brand-foreground: var(--accent-color);
--info-warning-foreground: var(--accent-color);
--tab-selected: #354249;
--switch: #3d4c53;
--activity-card-background: var(--background-1);
--brand-experiment: var(--accent-color) !important;
/* buttons */
--button-background: #2a3439;
--button-background-hover: #354249;
--button-background-active: #4d5f68;
--button-accent: var(--accent-color);
--button-accent-hover: #d2f3ff;
--button-accent-active: #8dd4f8;
--button-destructive: #fb7c7c;
--button-destructive-hover: #ff929b;
--button-destructive-active: #fa4a4a;
}
.theme-light {
/* background */
--background-primary: var(--background-1);
--background-primary-alt: var(--background-1);
--background-secondary: var(--background-1);
--background-secondary-alt: var(--background-1);
--background-tertiary: var(--background-2);
--background-accent-gradient: var(--background-2);
--background-floating: var(--background-1);
--background-mentioned: #22c5fd10;
--background-mentioned-hover: #22c5fd15;
/* modifiers */
--background-modifier-hover: transparent;
--background-modifier-active: #b7c2cc;
--background-modifier-selected: var(--accent-color);
--background-modifier-accent: transparent;
--background-message-hover: transparent;
/* text */
--text-normal: #123354;
--text-positive: var(--text-normal);
--text-muted: #8495a7;
--text-link: #15a6f0;
--interactive-selected: var(--background-primary);
--interactive-active: var(--text-normal);
--interactive-normal: var(--text-normal);
--interactive-muted: var(--text-muted);
--channels-default: var(--text-normal);
--header-primary: var(--text-normal);
--header-secondary: var(--text-muted);
/* more */
--settings-icon-color: #566e86;
--control-brand-foreground: var(--accent-color);
--info-warning-foreground: var(--accent-color);
--tab-selected: var(--background-1);
--switch: #c8d0d9;
--activity-card-background: var(--background-1);
--brand-experiment: var(--accent-color) !important;
/* buttons */
--button-background: var(--background-1);
--button-background-hover: #d3dae1;
--button-background-active: #b1bcc8;
--button-accent: var(--accent-color);
--button-accent-hover: #22c5fd;
--button-accent-active: #0d87c5;
--button-destructive: #fb7c7c;
--button-destructive-hover: #ff929b;
--button-destructive-active: #fa4a4a;
}