-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathapp.css
More file actions
38 lines (32 loc) · 743 Bytes
/
app.css
File metadata and controls
38 lines (32 loc) · 743 Bytes
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
html {
--app-background-color: white;
--app-base-color: black;
}
html[dark] {
--app-background-color: black;
--app-base-color: white;
}
:root {
--primary-color: red;
--secondary-color: yellow;
--base-text-color: #333;
}
body {
background-color: var(--app-background-color);
color: var(--app-base-color);
margin: 50px;
}
.theme-component {
--theme-component-button: purple;
--theme-component-button-text: white;
background-color: var(--primary-color);
color: var(--secondary);
padding: 15px;
}
.theme-component button {
background-color: var(--theme-component-button);
color: var(--theme-component-button-text);
}
.text {
color: var(--theme-component-button-text);
}