-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathvs.css
More file actions
101 lines (81 loc) · 1.23 KB
/
Copy pathvs.css
File metadata and controls
101 lines (81 loc) · 1.23 KB
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
/*
Visual Studio-like style based on original C# coloring based on work of Jason Diamond <jason@diamond.name>
*/
.hljs-comment {
color: #008000;
}
.hljs-pscommand,
.hljs-keyword,
.hljs-selector-tag,
.hljs-built_in,
.hljs-tag {
color: #0101FD;
}
.hljs-name {
color: #a2152a;
}
.hljs-literal {
color: #0101FD;
}
.hljs-string,
.hljs-section,
.hljs-template-tag,
.hljs-template-variable,
.hljs-deletion,
.hljs-code {
color: #a31515;
}
.hljs-parameter,
.hljs-type,
.hljs-attribute,
.hljs-title,
.hljs-addition,
.hljs-selector-attr,
.hljs-selector-pseudo,
.hljs-meta {
color: #007d9a;
}
.hljs-doctag {
color: #737373;
}
.hljs-attr {
color: #f00;
}
.hljs-control {
color: #af00db;
}
.hljs-helper {
color: #795e26;
}
.hljs-symbol,
.hljs-bullet,
.hljs-link {
color: #00b0e8;
}
.hljs-emphasis {
font-style: italic;
}
.hljs-strong {
font-weight: bold;
}
.hljs-reserved,
.hljs-constant {
color: #cd3131;
}
.line-highlight {
margin: 0 -12px;
padding: 1px 12px;
background-color: #ffc;
}
.language-xml .hljs-string {
color: #0000ff;
}
.language-json .hljs-attr {
color: #a31515;
}
.language-yml .hljs-attr {
color: #a31515;
}
.language-yml .hljs-string {
color: #000000;
}