-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathdefault.scss
82 lines (80 loc) · 1.47 KB
/
default.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
71
72
73
74
75
76
77
78
79
80
81
82
// Default fallback for generic themes (themes that DO NOT have BOTH light mode AND dark mode under the same name.
//
// Usage:
// @import "../../default"; (might have to add more "../", depending on folder depth.
$background_: false;
$border_: false;
$lines_: false;
$text_: false;
$header-text_: false;
$special-text_: false;
$hover_: false;
$links-background_: false;
$highlight_: false;
$callouts_: (
"note": (
"color": false,
"border": false,
"background": false,
),
"abstract": (
"color": false,
"border": false,
"background": false,
),
"info": (
"color": false,
"border": false,
"background": false,
),
"todo": (
"color": false,
"border": false,
"background": false,
),
"tip": (
"color": false,
"border": false,
"background": false,
),
"success": (
"color": false,
"border": false,
"background": false,
),
"question": (
"color": false,
"border": false,
"background": false,
),
"warning": (
"color": false,
"border": false,
"background": false,
),
"failure": (
"color": false,
"border": false,
"background": false,
),
"danger": (
"color": false,
"border": false,
"background": false,
),
"bug": (
"color": false,
"border": false,
"background": false,
),
"example": (
"color": false,
"border": false,
"background": false,
),
"quote": (
"color": false,
"border": false,
"background": false,
),
);