-
Notifications
You must be signed in to change notification settings - Fork 18
/
Copy pathgist.css
126 lines (102 loc) · 2.82 KB
/
gist.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
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
:root {
--color_bkg_0d: #0d0d0d;
--color_bkg_11: #111;
--color_bkg_1b: #1b1b1b;
--color_brd_33: #333;
--color_txt_88: #888;
--color_txt_aa: #aaa;
--color_txt_cc: #ccc;
--color_txt_dd: #ddd;
--color_txt_ee: #eee;
}
/* Gist Syntax highlighting - GitHub Twilight syntax theme */
body,
.gist .highlight {
background-color: transparent !important;
}
.gist .gist-data,
.gist .gist-meta {
background-color: var(--color_bkg_1b) !important;
}
.gist .gist-data,
.gist .gist-file {
border-color: var(--color_brd_33) !important;
}
.gist .blob-code-inner,
.gist .pl-entl, .gist .pl-s2, .gist .pl-smi, .gist .pl-smp {
color: var(--color_txt_cc) !important;
}
.gist .pl-c, .gist .pl-c span, .gist .pl-pdc {
color: #5f5a60 !important;
}
.gist .pl-c1, .gist .pl-cce, .gist .pl-cn, .gist .pl-coc, .gist .pl-enc,
.gist .pl-ens, .gist .pl-kos, .gist .pl-kou, .gist .pl-mdr, .gist .pl-mh,
.gist .pl-mh .pl-pdh, .gist .pl-mq, .gist .pl-pdc1, .gist .pl-pde,
.gist .pl-pse, .gist .pl-pse .pl-s2, .gist .pl-scp, .gist .pl-vi {
color: #cf6a4c !important;
}
.gist .pl-entm, .gist .pl-eoac, .gist .pl-eoac .pl-pde, .gist .pl-mai .pl-sf,
.gist .pl-mm, .gist .pl-pdv, .gist .pl-som, .gist .pl-sr, .gist .pl-stj,
.gist .pl-vpf {
color: #7587a6 !important;
}
.gist .pl-e, .gist .pl-ef, .gist .pl-en, .gist .pl-enf, .gist .pl-enm,
.gist .pl-entc, .gist .pl-eoi, .gist .pl-smc, .gist .pl-vo, .gist .pl-enti {
color: #ac885b !important;
}
.gist .pl-ent, .gist .pl-eoa, .gist .pl-eoai, .gist .pl-eoai .pl-pde,
.gist .pl-k, .gist .pl-ko, .gist .pl-kolp, .gist .pl-mc, .gist .pl-mp .pl-s3,
.gist .pl-mr, .gist .pl-ms, .gist .pl-sok, .gist .pl-sra, .gist .pl-src,
.gist .pl-sre, .gist .pl-st, .gist .pl-mi, .gist .pl-pdi {
color: #cda869 !important;
}
.gist .pl-mp {
color: #c5af75 !important;
}
.gist .pl-mp1 .pl-sf, .gist .pl-s3, .gist .pl-sc, .gist .pl-sf {
color: #dad085 !important;
}
.gist .pl-s {
color: #f9ee98 !important;
}
.gist .pl-stp, .gist .pl-sv, .gist .pl-v {
color: #9b859d !important;
}
.gist .pl-mri, .gist .pl-va, .gist .pl-vpu {
color: teal !important;
}
.gist .pl-mdht, .gist .pl-mi1 {
color: #55a532 !important;
background: #020 !important;
}
.gist .pl-cos, .gist .pl-ml, .gist .pl-pds, .gist .pl-s1, .gist .pl-sol,
.gist .pl-mb, .gist .pl-pdb {
color: #8f9d6a !important;
}
.gist .pl-md, .gist .pl-mdhf {
color: #bd2c00 !important;
background: #200 !important;
}
.gist .pl-mdh, .gist .pl-mdi {
color: #7587a6 !important;
}
.gist .pl-id {
background-color: #a31515 !important;
color: var(--color_txt_ee) !important;
}
.gist .pl-ib {
background-color: #f93 !important;
}
.gist .pl-ii, .gist .pl-ii .pl-cce {
background-color: #df5000 !important;
color: var(--color_txt_ee) !important;
}
.gist .pl-iu {
background-color: #b4b7b4 !important;
}
.gist .pl-mo {
color: #969896 !important;
}
.gist .pl-ms1 {
background-color: #f5f5f5 !important;
}