-
Notifications
You must be signed in to change notification settings - Fork 92
/
highlightjs-tabler-theme.css
105 lines (88 loc) · 1.41 KB
/
highlightjs-tabler-theme.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
/* Comments, Prolog, Doctype, and Cdata */
.hljs-comment,
.hljs-prolog,
.hljs-meta,
.hljs-cdata {
color: #a598a3;
}
/* Punctuation */
.hljs-template-variable,
.hljs-punctuation {
color: #e9eac7;
}
/* Namespace */
.hljs-namespace {
opacity: .7;
}
/* Property and Tag */
.hljs-property {
color: #de5f8f;
}
/* Number */
.hljs-number {
color: #ea9999;
}
/* Boolean */
.hljs-literal {
color: #ae81ff;
}
/* Selector, Attr-name, and String */
.hljs-attr {
color: #fcfce5;
}
.hljs-name {
color: #e4faf6;
}
.hljs-selector-tag,
.hljs-string {
color: #97e1a3;
}
/* Operator, Entity, URL, CSS String, and Style String */
.hljs-operator,
.hljs-symbol,
.hljs-link,
.language-css .hljs-string,
.style .hljs-string {
color: #f8f8f2;
}
/* At-rule and Attr-value */
.hljs-tag,
.hljs-keyword,
.hljs-attribute-value {
color: #e6db74;
}
/* Keyword */
.hljs-template-tag,
.hljs-keyword {
color: #95d1ff;
}
/* Regex and Important */
.hljs-regexp,
.hljs-important {
color: var(--tblr-yellow);
}
/* Important */
.hljs-important {
font-weight: bold;
}
/* Entity */
.hljs-symbol {
cursor: help;
}
/* Token transition */
.hljs {
transition: .3s;
}
/* Code selection */
code::selection, code ::selection {
background: var(--tblr-yellow);
color: var(--tblr-gray-900);
border-radius: .1em;
}
code .hljs-keyword::selection, code .hljs-punctuation::selection {
color: var(--tblr-gray-800);
}
/* Pre code padding */
pre code {
padding: 0;
}