-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcolors.css
61 lines (60 loc) · 890 Bytes
/
colors.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
/* Material design colors */
/* Primary palette (Orange) */
.primary1-color {
/* 200 */
color: #fff3e0;
}
.primary1-background {
/* 200 */
background-color: #fff3e0;
}
.primary2-color {
/* 100 */
color: #ffe0b2;
}
.primary2-background {
/* 100 */
background-color: #ffe0b2;
}
.primary3-color {
/* 900 */
color: #e65100;
}
.primary3-background {
/* 900 */
background-color: #e65100;
}
/* Accent (Deep purple) */
.accent-color {
/* A200 */
color: #7c4dff;
}
.accent-background {
/* A200 */
background-color: #7c4dff;
}
/* General colors */
.black-color {
color: #333;
}
.black-background {
background-color: #333;
}
.white-color {
color: #fff;
}
.white-background {
background-color: #fff;
}
.dark-gray-color {
color: #444;
}
.dark-gray-background {
background-color: #444;
}
.light-gray-color {
color: #f9f9f9;
}
.light-gray-background {
background-color: #f9f9f9;
}