-
Notifications
You must be signed in to change notification settings - Fork 0
/
material--green-200.min.css.scss
70 lines (54 loc) · 1.25 KB
/
material--green-200.min.css.scss
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
// Import the initial variables
@import "../node_modules/bulma/sass/utilities/initial-variables";
@import "../node_modules/bulma/sass/utilities/functions";
// Set the derived variables
$primary: #A5D6A7;
$secondary: #B4C7BF;
$danger: #BB2211;
$info: #B4C7BF;
$link: #89BAF2;
// Import the rest of Bulma
@import "../node_modules/bulma/bulma";
// Add dark mode
body {
background-color: $light;
color: $dark;
}
body.dark, body.dark span, body.dark label, body.dark strong, body.dark em {
background-color: $black-ter;
color: $light;
}
body.dark .subtitle,
body.dark .title {
color: $light;
}
.footer {
background-color: $white-bis;
}
body.dark .footer {
background-color: $black-bis;
}
body.dark.dark-full .is-primary {
color: $primary;
background-color: $primary-invert;
}
body.dark.dark-full .is-info {
color: $info;
background-color: $info-invert;
}
body.dark.dark-full .is-link {
color: $link;
background-color: $link-invert;
}
body.dark.dark-full .is-danger {
color: $danger;
background-color: $danger-invert;
}
body.dark.dark-full .is-warning {
color: $warning;
background-color: $warning-invert;
}
body.dark.dark-full .is-success {
color: $success;
background-color: $success-invert;
}