forked from github/docs
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsyntax-highlighting.scss
93 lines (75 loc) · 1.55 KB
/
syntax-highlighting.scss
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
/*
github.com style (c) Vasily Polovnyov <[email protected]>
from https://unpkg.com/[email protected]/styles/github.css
*/
.hljs {
display: block;
overflow-x: auto;
padding: 0.5em;
color: var(--color-fg-default);
background: var(--color-canvas-subtle);
}
.hljs-comment,
.hljs-quote {
color: var(--color-prettylights-syntax-comment);
}
.hljs-keyword,
.hljs-selector-tag {
color: var(--color-prettylights-syntax-keyword);
}
.hljs-string,
.hljs-doctag,
.hljs-template-variable {
color: var(--color-prettylights-syntax-string);
}
.hljs-title,
.hljs-section,
.hljs-selector-id {
color: var(--color-prettylights-syntax-markup-heading);
}
.hljs-section {
font-weight: bold;
}
.hljs-type,
.hljs-class,
.hljs-variable {
color: var(--color-prettylights-syntax-variable);
}
.hljs-language,
.hljs-subst {
color: var(--color-prettylights-syntax-storage-modifier-import);
}
.hljs-number,
.hljs-literal,
.hljs-symbol,
.hljs-property,
.hljs-constant {
color: var(--color-prettylights-syntax-constant);
}
.hljs-tag,
.hljs-name,
.hljs-attribute,
.hljs-attr {
color: var(--color-prettylights-syntax-entity-tag);
}
.hljs-regexp,
.hljs-link {
color: var(--color-prettylights-syntax-string-regexp);
}
.hljs-built_in,
.hljs-builtin-name,
.hljs-function {
color: var(--color-prettylights-syntax-entity);
}
.hljs-deletion {
background: var(--color-prettylights-syntax-markup-deleted-bg);
}
.hljs-addition {
background: var(--color-prettylights-syntax-markup-inserted-bg);
}
.hljs-emphasis {
font-style: italic;
}
.hljs-strong {
font-weight: bold;
}