-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathdefault.light.scss
90 lines (88 loc) · 1.77 KB
/
default.light.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
83
84
85
86
87
88
89
90
// Light
// Main colors
// Background
$background: #faf8f8;
// Border
$border: #e5e5e5;
// Line and Border for checkboxes
$lines: #b8b8b8;
// Text color
$text: #4e4e4e;
// Darker text for headers, input, buttons
$header-text: #2b2b2b;
// Text for special elements like hyperlinks, checkbox fill, blockquote border
$special-text: #284b63;
// Hover effects for special elements, matching search results highlight
$hover: #84a59d;
// Background color for internal links, internal tags
$links-background: #8f9fa926;
// Text highlight color
$highlight: #fff23688;
// Callouts
$callouts: (
"note": (
"color": #448aff,
"border": #448aff44,
"background": #448aff10,
),
"abstract": (
"color": #00b0ff,
"border": #00b0ff44,
"background": #00b0ff10,
),
"info": (
"color": #00b8d4,
"border": #00b8d444,
"background": #00b8d410,
),
"todo": (
"color": #00b8d4,
"border": #00b8d444,
"background": #00b8d410,
),
"tip": (
"color": #00bfa5,
"border": #00bfa544,
"background": #00bfa510,
),
"success": (
"color": #09ad7a,
"border": #09ad7144,
"background": #09ad7110,
),
"question": (
"color": #dba642,
"border": #dba64244,
"background": #dba64210,
),
"warning": (
"color": #db8942,
"border": #db894244,
"background": #db894210,
),
"failure": (
"color": #db4242,
"border": #db424244,
"background": #db424210,
),
"danger": (
"color": #db4242,
"border": #db424244,
"background": #db424210,
),
"bug": (
"color": #db4242,
"border": #db424244,
"background": #db424210,
),
"example": (
"color": #7a43b5,
"border": #7a43b544,
"background": #7a43b510,
),
"quote": (
"color": #284b63,
"border": #e5e5e5,
"background": #448aff10,
),
);