-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy paththemePurple.css
72 lines (41 loc) · 938 Bytes
/
themePurple.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
62
63
64
65
66
67
68
69
70
71
72
body {
background: #2B062A;
color:#D9DBF6;
font-family: Courier, monospace;
}
button { /* On a scale of Body#background to Body#color, ranges from 0-14 */
background: #482A4C; /* 3 */
border:1px solid #AEA6C3; /* 10 */
color:#D9DBF6; /* 14 */
}
button:hover {
color:#D9DBF6; /* 14 */
background: #654D6E; /* 5 */
}
button:disabled {
color:#482A4C; /* 3 */
background: #2B062A; /* 1.5 */
border: 1px solid #401E3F; /* 4 */
}
button:disabled:hover {
background: #300A2F; /* 2 */
}
.fadedText4 {
color:#482A4C;
}
.fadedText3 {
color:#654D6E;
}
.fadedText2 {
color:#827190;
}
.fadedText1 {
color:#AEA6C3;
}
.fullBrightText {
color:#D9DBF6;
}
a:link { color:#D9DBF6 } /* unvisited links */
a:visited { color:#D9DBF6 } /* visited links */
a:hover { color:#D9DBF6 } /* user hovers */
a:active { color:#D9DBF6 } /* active links */