-
Notifications
You must be signed in to change notification settings - Fork 416
/
Copy pathhighlight.css
56 lines (55 loc) · 3.12 KB
/
highlight.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
/*
Adapted from the highlight.js "Xcode" theme
<https://highlightjs.org/static/demo/#Xcode>
with minor color tweaks and class names changed to match our HTML
*/
.highlight .c { color: #408080; font-style: italic } /* Comment */
.highlight .err { border: 1px solid #FF0000 } /* Error */
.highlight .k { color: #aa0d91; } /* Keyword */
.highlight .o { color: #666666 } /* Operator */
.highlight .cm { color: #007400; font-style: italic } /* Comment.Multiline */
.highlight .cp { color: #007400 } /* Comment.Preproc */
.highlight .c1 { color: #007400; font-style: italic } /* Comment.Single */
.highlight .cs { color: #007400; font-style: italic } /* Comment.Special */
.highlight .gd { color: #A00000 } /* Generic.Deleted */
.highlight .gi { color: #00A000 } /* Generic.Inserted */
.highlight .kc { color: #aa0d91; } /* Keyword.Constant */
.highlight .kd { color: #aa0d91; } /* Keyword.Declaration */
.highlight .kn { color: #aa0d91; } /* Keyword.Namespace */
.highlight .kp { color: #aa0d91 } /* Keyword.Pseudo */
.highlight .kr { color: #aa0d91; } /* Keyword.Reserved */
.highlight .kt { color: #5c2699 } /* Keyword.Type */
.highlight .m { color: #1c00cf } /* Literal.Number */
.highlight .s { color: #160effbd } /* Literal.String */
.highlight .na { color: #836c28 } /* Name.Attribute */
.highlight .nb { color: #5c2699 } /* Name.Builtin */
.highlight .nc { color: #5c2699; } /* Name.Class */
.highlight .no { color: #aa0d91 } /* Name.Constant */
.highlight .nd { color: #aa0d91 } /* Name.Decorator */
.highlight .ni { color: #aa0d91; } /* Name.Entity */
.highlight .ne { color: #aa0d91; } /* Name.Exception */
.highlight .nf { color: #aa0d91 } /* Name.Function */
.highlight .nl { color: #aa0d91 } /* Name.Label */
.highlight .nn { color: #aa0d91; } /* Name.Namespace */
.highlight .nt { color: #aa0d91; } /* Name.Tag */
.highlight .nv { color: #aa0d91 } /* Name.Variable */
.highlight .mf { color: #1c00cf } /* Literal.Number.Float */
.highlight .mh { color: #1c00cf } /* Literal.Number.Hex */
.highlight .mi { color: #1c00cf } /* Literal.Number.Integer */
.highlight .mo { color: #1c00cf } /* Literal.Number.Oct */
.highlight .sb { color: #160effbd } /* Literal.String.Backtick */
.highlight .sc { color: #160effbd } /* Literal.String.Char */
.highlight .sd { color: #160effbd; font-style: italic } /* Literal.String.Doc */
.highlight .s2 { color: #160effbd } /* Literal.String.Double */
.highlight .se { color: #160effbd; font-weight: bold } /* Literal.String.Escape */
.highlight .sh { color: #160effbd } /* Literal.String.Heredoc */
.highlight .si { color: #160effbd; font-weight: bold } /* Literal.String.Interpol */
.highlight .sx { color: #160effbd } /* Literal.String.Other */
.highlight .sr { color: #160effbd } /* Literal.String.Regex */
.highlight .s1 { color: #160effbd } /* Literal.String.Single */
.highlight .ss { color: #1c00cf } /* Literal.String.Symbol */
.highlight .bp { color: #5c2699 } /* Name.Builtin.Pseudo */
.highlight .vc { color: #5c2699 } /* Name.Variable.Class */
.highlight .vg { color: #aa0d91 } /* Name.Variable.Global */
.highlight .vi { color: #aa0d91 } /* Name.Variable.Instance */
.highlight .il { color: #1c00cf } /* Literal.Number.Integer.Long */