blob: c7edf609661d279b113a1c4f2669f38b8726760e (
plain)
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
|
/* Themes */
/* Red */
.theme-base-red {
.post-tags a {
background: #ac4142;
&:before {
border-color: transparent #ac4142 transparent transparent;
}
}
}
/* Orange */
.theme-base-orange {
.post-tags a {
background: #d28445;
&:before {
border-color: transparent #d28445 transparent transparent;
}
}
}
/* Green */
.theme-base-green {
.post-tags a {
background: #90a959;
&:before {
border-color: transparent #90a959 transparent transparent;
}
}
}
/* Cyan */
.theme-base-cyan {
.post-tags a {
background: #75b5aa;
&:before {
border-color: transparent #75b5aa transparent transparent;
}
}
}
/* Blue */
.theme-base-blue {
.post-tags a {
background: #6a9fb5;
&:before {
border-color: transparent #6a9fb5 transparent transparent;
}
}
}
/* Magenta */
.theme-base-magenta {
.post-tags a {
background: #aa759f;
&:before {
border-color: transparent #aa759f transparent transparent;
}
}
}
/* Brown */
.theme-base-brown {
.post-tags a {
background: #8f5536;
&:before {
border-color: transparent #8f5536 transparent transparent;
}
}
}
|