summaryrefslogtreecommitdiff
path: root/_sass/syntax.scss
blob: bcd61d204b13bb1c7a963f6f5be328d4d0d994c1 (plain)
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
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
.highlight {
    background: #ffffff;

    .c,
    .cm,
    .c1 {
        color: $base1;
        font-style: italic
    } /* Comment */

    .gr,
    .gt,
    .err {
        color: $red;
    } /* Error */

    .k {
        font-weight: bold;
    } /* Keyword */

    .o {
        font-weight: bold;
    } /* Operator */

    .cp {
        color: $base1;
        font-weight: bold;
    } /* Comment.Preproc */

    .cs {
        color: $base1;
        font-weight: bold;
        font-style: italic;
    } /* Comment.Special */

    .gd,
    .gd .x {
        color: $base03;
        background-color: $base1;
    } /* Generic.Deleted */

    .ge {
        font-style: italic;
    } /* Generic.Emph */

    .gu,
    .gh {
        color: $base1;
    } /* Generic.Heading */

    .gi .x,
    .gi {
        color: $base03;
        background-color: $base1;
    } /* Generic.Inserted */

    .go {
        color: $base1;
    } /* Generic.Output */

    .gp {
        color: $base01;
    } /* Generic.Prompt */

    .gs {
        font-weight: bold;
    } /* Generic.Strong */

    .kd,
    .kp,
    .kr,
    .kc {
        font-weight: bold;
    } /* Keyword.Constant */

    .kt {
        color: $violet;
        font-weight: bold;
    } /* Keyword.Type */

    .m {
        color: $cyan;
    } /* Literal.Number */

    .s {
        color: $magenta;
    } /* Literal.String */

    .na,
    .nb,
    .no,
    .ni,
    .nt,
    .nv {
        color: $blue;
    } /* Name.Variable */

    .nc {
        color: $blue;
        font-weight: bold;
    } /* Name.Class */

    .ne {
        color: $red;
        font-weight: bold;
    } /* Name.Exception */

    .nf {
        color: $red;
        font-weight: bold;
    } /* Name.Function */

    .nn {
        color: $base01;
    } /* Name.Namespace */

    .ow {
        font-weight: bold;
    } /* Operator.Word */

    .w {
        color: $base1;
    } /* Text.Whitespace */

    .mf,
    .mh,
    .mi,
    .mo {
        color: $cyan;
    } /* Literal.Number.Oct */

    .sb,
    .sc,
    .sd,
    .s2,
    .se,
    .sh,
    .si,
    .s1,
    .sx {
        color: $magenta;
    } /* Literal.String.Other */

    .sr,
    .ss {
        color: $green;
    } /* Literal.String.Symbol */

    .bp {
        color: $base1;
    } /* Name.Builtin.Pseudo */

    .vc,
    .vg,
    .vi {
        color: $blue;
    } /* Name.Variable.Instance */

    .il {
        color: $cyan;
    } /* Literal.Number.Integer.Long */
}