popfolio 0.1.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +7 -0
- data/LICENSE.txt +21 -0
- data/README.md +52 -0
- data/_config.yml +92 -0
- data/_includes/footer.html +18 -0
- data/_includes/header.html +29 -0
- data/_includes/projects.html +32 -0
- data/_includes/skills.html +15 -0
- data/_includes/social.html +162 -0
- data/_layouts/default.html +43 -0
- data/_layouts/home.html +20 -0
- data/_layouts/page.html +5 -0
- data/_layouts/post.html +5 -0
- data/_sass/_base.scss +289 -0
- data/_sass/_layout.scss +471 -0
- data/_sass/custom-styles.scss +0 -0
- data/_sass/custom-variables.scss +0 -0
- data/_sass/popfolio.scss +52 -0
- data/_sass/skins/dark.scss +236 -0
- data/_sass/skins/light.scss +223 -0
- data/assets/avatar.png +0 -0
- data/assets/popfolio-skills-icons.svg +15 -0
- data/assets/popfolio-social-icons.svg +37 -0
- data/assets/projects/bootstrap-portfolio.png +0 -0
- data/assets/projects/diceroller.png +0 -0
- data/assets/projects/intouch.gif +0 -0
- data/assets/styles.scss +6 -0
- metadata +98 -0
|
File without changes
|
|
File without changes
|
data/_sass/popfolio.scss
ADDED
|
@@ -0,0 +1,52 @@
|
|
|
1
|
+
@charset "utf-8";
|
|
2
|
+
|
|
3
|
+
// Define defaults for each variable.
|
|
4
|
+
|
|
5
|
+
$base-font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
|
|
6
|
+
Helvetica, Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji",
|
|
7
|
+
"Segoe UI Symbol" !default;
|
|
8
|
+
$code-font-family: "Menlo", "Inconsolata", "Consolas", "Roboto Mono",
|
|
9
|
+
"Ubuntu Mono", "Liberation Mono", "Courier New", monospace;
|
|
10
|
+
$base-font-size: 16px !default;
|
|
11
|
+
$thin-font-weight: 100 !default;
|
|
12
|
+
$base-font-weight: 400 !default;
|
|
13
|
+
$semibold-font-weight: 600 !default;
|
|
14
|
+
$bold-font-weight: 700 !default;
|
|
15
|
+
$extrabold-font-weight: 800 !default;
|
|
16
|
+
$small-font-size: $base-font-size * 0.875 !default;
|
|
17
|
+
$base-line-height: 1.5 !default;
|
|
18
|
+
|
|
19
|
+
$spacing-unit: 30px !default;
|
|
20
|
+
|
|
21
|
+
$table-text-align: left !default;
|
|
22
|
+
|
|
23
|
+
// Width of the content area
|
|
24
|
+
$content-width: 800px !default;
|
|
25
|
+
|
|
26
|
+
$on-palm: 600px !default;
|
|
27
|
+
$on-laptop: 800px !default;
|
|
28
|
+
|
|
29
|
+
$on-medium: $on-palm !default;
|
|
30
|
+
$on-large: $on-laptop !default;
|
|
31
|
+
|
|
32
|
+
// Use media queries like this:
|
|
33
|
+
// @include media-query($on-palm) {
|
|
34
|
+
// .wrapper {
|
|
35
|
+
// padding-right: $spacing-unit / 2;
|
|
36
|
+
// padding-left: $spacing-unit / 2;
|
|
37
|
+
// }
|
|
38
|
+
// }
|
|
39
|
+
// Notice the following mixin uses max-width, in a deprecated, desktop-first
|
|
40
|
+
// approach, whereas media queries used elsewhere now use min-width.
|
|
41
|
+
@mixin media-query($device) {
|
|
42
|
+
@media screen and (max-width: $device) {
|
|
43
|
+
@content;
|
|
44
|
+
}
|
|
45
|
+
}
|
|
46
|
+
|
|
47
|
+
@mixin relative-font-size($ratio) {
|
|
48
|
+
font-size: #{$ratio}rem;
|
|
49
|
+
}
|
|
50
|
+
|
|
51
|
+
// Import pre-styling-overrides hook and style-partials.
|
|
52
|
+
@import "skins/dark", "custom-variables", "base", "layout", "custom-styles";
|
|
@@ -0,0 +1,236 @@
|
|
|
1
|
+
@charset "utf-8";
|
|
2
|
+
|
|
3
|
+
$brand-color: #eeeeee !default;
|
|
4
|
+
$brand-color-light: lighten($brand-color, 5%) !default;
|
|
5
|
+
$brand-color-dark: darken($brand-color, 60%) !default;
|
|
6
|
+
$brand-contrast-color: #f5ab35 !default;
|
|
7
|
+
|
|
8
|
+
$site-title-color: $brand-color !default;
|
|
9
|
+
$title-bracket-color: $brand-contrast-color !default;
|
|
10
|
+
|
|
11
|
+
$text-color: #eeeeee !default;
|
|
12
|
+
$background-color: #222831 !default;
|
|
13
|
+
$code-background-color: #212121 !default;
|
|
14
|
+
$box-background-color: #393e46 !default;
|
|
15
|
+
|
|
16
|
+
$link-base-color: $brand-contrast-color !default;
|
|
17
|
+
$link-visited-color: $link-base-color !default;
|
|
18
|
+
$link-hover-color: $text-color !default;
|
|
19
|
+
|
|
20
|
+
$border-color-01: $brand-color-dark !default;
|
|
21
|
+
$border-color-02: $brand-color-light !default;
|
|
22
|
+
$border-color-03: $brand-color !default;
|
|
23
|
+
|
|
24
|
+
$table-text-color: $text-color !default;
|
|
25
|
+
$table-zebra-color: lighten($background-color, 4%) !default;
|
|
26
|
+
$table-header-bg-color: lighten($background-color, 10%) !default;
|
|
27
|
+
$table-header-border: lighten($background-color, 21%) !default;
|
|
28
|
+
$table-border-color: $border-color-01 !default;
|
|
29
|
+
|
|
30
|
+
$tag-bg-color: #2f3238;
|
|
31
|
+
$tag-text-color: $text-color;
|
|
32
|
+
$tag-font-size: 0.8rem;
|
|
33
|
+
$tag-font-weight: $semibold-font-weight;
|
|
34
|
+
|
|
35
|
+
// Syntax highlighting styles should be adjusted appropriately for every "skin"
|
|
36
|
+
// List of tokens: https://github.com/rouge-ruby/rouge/wiki/List-of-tokens
|
|
37
|
+
// Some colors come from Material Theme Darker:
|
|
38
|
+
// https://github.com/material-theme/vsc-material-theme/blob/master/scripts/generator/settings/specific/darker-hc.ts
|
|
39
|
+
// https://github.com/material-theme/vsc-material-theme/blob/master/scripts/generator/color-set.ts
|
|
40
|
+
// ----------------------------------------------------------------------------
|
|
41
|
+
|
|
42
|
+
.highlight {
|
|
43
|
+
.c {
|
|
44
|
+
color: #545454;
|
|
45
|
+
font-style: italic;
|
|
46
|
+
} // Comment
|
|
47
|
+
.err {
|
|
48
|
+
color: #f07178;
|
|
49
|
+
background-color: #e3d2d2;
|
|
50
|
+
} // Error
|
|
51
|
+
.k {
|
|
52
|
+
color: #89ddff;
|
|
53
|
+
font-weight: bold;
|
|
54
|
+
} // Keyword
|
|
55
|
+
.o {
|
|
56
|
+
font-weight: bold;
|
|
57
|
+
} // Operator
|
|
58
|
+
.cm {
|
|
59
|
+
color: #545454;
|
|
60
|
+
font-style: italic;
|
|
61
|
+
} // Comment.Multiline
|
|
62
|
+
.cp {
|
|
63
|
+
color: #545454;
|
|
64
|
+
font-weight: bold;
|
|
65
|
+
} // Comment.Preproc
|
|
66
|
+
.c1 {
|
|
67
|
+
color: #545454;
|
|
68
|
+
font-style: italic;
|
|
69
|
+
} // Comment.Single
|
|
70
|
+
.cs {
|
|
71
|
+
color: #545454;
|
|
72
|
+
font-weight: bold;
|
|
73
|
+
font-style: italic;
|
|
74
|
+
} // Comment.Special
|
|
75
|
+
.gd {
|
|
76
|
+
color: #000;
|
|
77
|
+
background-color: #fdd;
|
|
78
|
+
} // Generic.Deleted
|
|
79
|
+
.gd .x {
|
|
80
|
+
color: #000;
|
|
81
|
+
background-color: #faa;
|
|
82
|
+
} // Generic.Deleted.Specific
|
|
83
|
+
.ge {
|
|
84
|
+
font-style: italic;
|
|
85
|
+
} // Generic.Emph
|
|
86
|
+
.gr {
|
|
87
|
+
color: #f07178;
|
|
88
|
+
} // Generic.Error
|
|
89
|
+
.gh {
|
|
90
|
+
color: #999;
|
|
91
|
+
} // Generic.Heading
|
|
92
|
+
.gi {
|
|
93
|
+
color: #000;
|
|
94
|
+
background-color: #dfd;
|
|
95
|
+
} // Generic.Inserted
|
|
96
|
+
.gi .x {
|
|
97
|
+
color: #000;
|
|
98
|
+
background-color: #afa;
|
|
99
|
+
} // Generic.Inserted.Specific
|
|
100
|
+
.go {
|
|
101
|
+
color: #888;
|
|
102
|
+
} // Generic.Output
|
|
103
|
+
.gp {
|
|
104
|
+
color: #555;
|
|
105
|
+
} // Generic.Prompt
|
|
106
|
+
.gs {
|
|
107
|
+
font-weight: bold;
|
|
108
|
+
} // Generic.Strong
|
|
109
|
+
.gu {
|
|
110
|
+
color: #aaa;
|
|
111
|
+
} // Generic.Subheading
|
|
112
|
+
.gt {
|
|
113
|
+
color: #f07178;
|
|
114
|
+
} // Generic.Traceback
|
|
115
|
+
.kc {
|
|
116
|
+
font-weight: bold;
|
|
117
|
+
} // Keyword.Constant
|
|
118
|
+
.kd {
|
|
119
|
+
font-weight: bold;
|
|
120
|
+
} // Keyword.Declaration
|
|
121
|
+
.kp {
|
|
122
|
+
font-weight: bold;
|
|
123
|
+
} // Keyword.Pseudo
|
|
124
|
+
.kr {
|
|
125
|
+
font-weight: bold;
|
|
126
|
+
} // Keyword.Reserved
|
|
127
|
+
.kt {
|
|
128
|
+
color: #ffcb6b;
|
|
129
|
+
font-weight: bold;
|
|
130
|
+
} // Keyword.Type
|
|
131
|
+
.m {
|
|
132
|
+
color: #f78c6c;
|
|
133
|
+
} // Literal.Number
|
|
134
|
+
.s {
|
|
135
|
+
color: #c3e88d;
|
|
136
|
+
} // Literal.String
|
|
137
|
+
.na {
|
|
138
|
+
color: #008080;
|
|
139
|
+
} // Name.Attribute
|
|
140
|
+
.nb {
|
|
141
|
+
color: #eeffff;
|
|
142
|
+
} // Name.Builtin
|
|
143
|
+
.nc {
|
|
144
|
+
color: #ffcb6b;
|
|
145
|
+
font-weight: bold;
|
|
146
|
+
} // Name.Class
|
|
147
|
+
.no {
|
|
148
|
+
color: #008080;
|
|
149
|
+
} // Name.Constant
|
|
150
|
+
.ni {
|
|
151
|
+
color: #800080;
|
|
152
|
+
} // Name.Entity
|
|
153
|
+
.ne {
|
|
154
|
+
color: #900;
|
|
155
|
+
font-weight: bold;
|
|
156
|
+
} // Name.Exception
|
|
157
|
+
.nf {
|
|
158
|
+
color: #82aaff;
|
|
159
|
+
font-weight: bold;
|
|
160
|
+
} // Name.Function
|
|
161
|
+
.nn {
|
|
162
|
+
color: #555;
|
|
163
|
+
} // Name.Namespace
|
|
164
|
+
.nt {
|
|
165
|
+
color: #ffcb6b;
|
|
166
|
+
} // Name.Tag
|
|
167
|
+
.nv {
|
|
168
|
+
color: #eeffff;
|
|
169
|
+
} // Name.Variable
|
|
170
|
+
.ow {
|
|
171
|
+
font-weight: bold;
|
|
172
|
+
} // Operator.Word
|
|
173
|
+
.w {
|
|
174
|
+
color: #eeffff;
|
|
175
|
+
} // Text.Whitespace
|
|
176
|
+
.mf {
|
|
177
|
+
color: #f78c6c;
|
|
178
|
+
} // Literal.Number.Float
|
|
179
|
+
.mh {
|
|
180
|
+
color: #f78c6c;
|
|
181
|
+
} // Literal.Number.Hex
|
|
182
|
+
.mi {
|
|
183
|
+
color: #f78c6c;
|
|
184
|
+
} // Literal.Number.Integer
|
|
185
|
+
.mo {
|
|
186
|
+
color: #f78c6c;
|
|
187
|
+
} // Literal.Number.Oct
|
|
188
|
+
.sb {
|
|
189
|
+
color: #c3e88d;
|
|
190
|
+
} // Literal.String.Backtick
|
|
191
|
+
.sc {
|
|
192
|
+
color: #c3e88d;
|
|
193
|
+
} // Literal.String.Char
|
|
194
|
+
.sd {
|
|
195
|
+
color: #c3e88d;
|
|
196
|
+
} // Literal.String.Doc
|
|
197
|
+
.s2 {
|
|
198
|
+
color: #c3e88d;
|
|
199
|
+
} // Literal.String.Double
|
|
200
|
+
.se {
|
|
201
|
+
color: #eeffff;
|
|
202
|
+
} // Literal.String.Escape
|
|
203
|
+
.sh {
|
|
204
|
+
color: #c3e88d;
|
|
205
|
+
} // Literal.String.Heredoc
|
|
206
|
+
.si {
|
|
207
|
+
color: #c3e88d;
|
|
208
|
+
} // Literal.String.Interpol
|
|
209
|
+
.sx {
|
|
210
|
+
color: #c3e88d;
|
|
211
|
+
} // Literal.String.Other
|
|
212
|
+
.sr {
|
|
213
|
+
color: #c3e88d;
|
|
214
|
+
} // Literal.String.Regex
|
|
215
|
+
.s1 {
|
|
216
|
+
color: #c3e88d;
|
|
217
|
+
} // Literal.String.Single
|
|
218
|
+
.ss {
|
|
219
|
+
color: #c3e88d;
|
|
220
|
+
} // Literal.String.Symbol
|
|
221
|
+
.bp {
|
|
222
|
+
color: #999;
|
|
223
|
+
} // Name.Builtin.Pseudo
|
|
224
|
+
.vc {
|
|
225
|
+
color: #ffcb6b;
|
|
226
|
+
} // Name.Variable.Class
|
|
227
|
+
.vg {
|
|
228
|
+
color: #eeffff;
|
|
229
|
+
} // Name.Variable.Global
|
|
230
|
+
.vi {
|
|
231
|
+
color: #eeffff;
|
|
232
|
+
} // Name.Variable.Instance
|
|
233
|
+
.il {
|
|
234
|
+
color: #f78c6c;
|
|
235
|
+
} // Literal.Number.Integer.Long
|
|
236
|
+
}
|
|
@@ -0,0 +1,223 @@
|
|
|
1
|
+
@charset "utf-8";
|
|
2
|
+
|
|
3
|
+
$brand-color: #828282 !default;
|
|
4
|
+
$brand-color-light: lighten($brand-color, 40%) !default;
|
|
5
|
+
$brand-color-dark: darken($brand-color, 25%) !default;
|
|
6
|
+
|
|
7
|
+
$site-title-color: $brand-color-dark !default;
|
|
8
|
+
|
|
9
|
+
$text-color: #111111 !default;
|
|
10
|
+
$background-color: #fdfdfd !default;
|
|
11
|
+
$code-background-color: #eeeeff !default;
|
|
12
|
+
|
|
13
|
+
$link-base-color: #2a7ae2 !default;
|
|
14
|
+
$link-visited-color: darken($link-base-color, 15%) !default;
|
|
15
|
+
$link-hover-color: $text-color !default;
|
|
16
|
+
|
|
17
|
+
$border-color-01: $brand-color-light !default;
|
|
18
|
+
$border-color-02: lighten($brand-color, 35%) !default;
|
|
19
|
+
$border-color-03: $brand-color-dark !default;
|
|
20
|
+
|
|
21
|
+
$table-text-color: lighten($text-color, 18%) !default;
|
|
22
|
+
$table-zebra-color: lighten($brand-color, 46%) !default;
|
|
23
|
+
$table-header-bg-color: lighten($brand-color, 43%) !default;
|
|
24
|
+
$table-header-border: lighten($brand-color, 37%) !default;
|
|
25
|
+
$table-border-color: $border-color-01 !default;
|
|
26
|
+
|
|
27
|
+
// Syntax highlighting styles should be adjusted appropriately for every "skin"
|
|
28
|
+
// ----------------------------------------------------------------------------
|
|
29
|
+
|
|
30
|
+
.highlight {
|
|
31
|
+
.c {
|
|
32
|
+
color: #998;
|
|
33
|
+
font-style: italic;
|
|
34
|
+
} // Comment
|
|
35
|
+
.err {
|
|
36
|
+
color: #a61717;
|
|
37
|
+
background-color: #e3d2d2;
|
|
38
|
+
} // Error
|
|
39
|
+
.k {
|
|
40
|
+
font-weight: bold;
|
|
41
|
+
} // Keyword
|
|
42
|
+
.o {
|
|
43
|
+
font-weight: bold;
|
|
44
|
+
} // Operator
|
|
45
|
+
.cm {
|
|
46
|
+
color: #998;
|
|
47
|
+
font-style: italic;
|
|
48
|
+
} // Comment.Multiline
|
|
49
|
+
.cp {
|
|
50
|
+
color: #999;
|
|
51
|
+
font-weight: bold;
|
|
52
|
+
} // Comment.Preproc
|
|
53
|
+
.c1 {
|
|
54
|
+
color: #998;
|
|
55
|
+
font-style: italic;
|
|
56
|
+
} // Comment.Single
|
|
57
|
+
.cs {
|
|
58
|
+
color: #999;
|
|
59
|
+
font-weight: bold;
|
|
60
|
+
font-style: italic;
|
|
61
|
+
} // Comment.Special
|
|
62
|
+
.gd {
|
|
63
|
+
color: #000;
|
|
64
|
+
background-color: #fdd;
|
|
65
|
+
} // Generic.Deleted
|
|
66
|
+
.gd .x {
|
|
67
|
+
color: #000;
|
|
68
|
+
background-color: #faa;
|
|
69
|
+
} // Generic.Deleted.Specific
|
|
70
|
+
.ge {
|
|
71
|
+
font-style: italic;
|
|
72
|
+
} // Generic.Emph
|
|
73
|
+
.gr {
|
|
74
|
+
color: #a00;
|
|
75
|
+
} // Generic.Error
|
|
76
|
+
.gh {
|
|
77
|
+
color: #999;
|
|
78
|
+
} // Generic.Heading
|
|
79
|
+
.gi {
|
|
80
|
+
color: #000;
|
|
81
|
+
background-color: #dfd;
|
|
82
|
+
} // Generic.Inserted
|
|
83
|
+
.gi .x {
|
|
84
|
+
color: #000;
|
|
85
|
+
background-color: #afa;
|
|
86
|
+
} // Generic.Inserted.Specific
|
|
87
|
+
.go {
|
|
88
|
+
color: #888;
|
|
89
|
+
} // Generic.Output
|
|
90
|
+
.gp {
|
|
91
|
+
color: #555;
|
|
92
|
+
} // Generic.Prompt
|
|
93
|
+
.gs {
|
|
94
|
+
font-weight: bold;
|
|
95
|
+
} // Generic.Strong
|
|
96
|
+
.gu {
|
|
97
|
+
color: #aaa;
|
|
98
|
+
} // Generic.Subheading
|
|
99
|
+
.gt {
|
|
100
|
+
color: #a00;
|
|
101
|
+
} // Generic.Traceback
|
|
102
|
+
.kc {
|
|
103
|
+
font-weight: bold;
|
|
104
|
+
} // Keyword.Constant
|
|
105
|
+
.kd {
|
|
106
|
+
font-weight: bold;
|
|
107
|
+
} // Keyword.Declaration
|
|
108
|
+
.kp {
|
|
109
|
+
font-weight: bold;
|
|
110
|
+
} // Keyword.Pseudo
|
|
111
|
+
.kr {
|
|
112
|
+
font-weight: bold;
|
|
113
|
+
} // Keyword.Reserved
|
|
114
|
+
.kt {
|
|
115
|
+
color: #458;
|
|
116
|
+
font-weight: bold;
|
|
117
|
+
} // Keyword.Type
|
|
118
|
+
.m {
|
|
119
|
+
color: #099;
|
|
120
|
+
} // Literal.Number
|
|
121
|
+
.s {
|
|
122
|
+
color: #d14;
|
|
123
|
+
} // Literal.String
|
|
124
|
+
.na {
|
|
125
|
+
color: #008080;
|
|
126
|
+
} // Name.Attribute
|
|
127
|
+
.nb {
|
|
128
|
+
color: #0086b3;
|
|
129
|
+
} // Name.Builtin
|
|
130
|
+
.nc {
|
|
131
|
+
color: #458;
|
|
132
|
+
font-weight: bold;
|
|
133
|
+
} // Name.Class
|
|
134
|
+
.no {
|
|
135
|
+
color: #008080;
|
|
136
|
+
} // Name.Constant
|
|
137
|
+
.ni {
|
|
138
|
+
color: #800080;
|
|
139
|
+
} // Name.Entity
|
|
140
|
+
.ne {
|
|
141
|
+
color: #900;
|
|
142
|
+
font-weight: bold;
|
|
143
|
+
} // Name.Exception
|
|
144
|
+
.nf {
|
|
145
|
+
color: #900;
|
|
146
|
+
font-weight: bold;
|
|
147
|
+
} // Name.Function
|
|
148
|
+
.nn {
|
|
149
|
+
color: #555;
|
|
150
|
+
} // Name.Namespace
|
|
151
|
+
.nt {
|
|
152
|
+
color: #000080;
|
|
153
|
+
} // Name.Tag
|
|
154
|
+
.nv {
|
|
155
|
+
color: #008080;
|
|
156
|
+
} // Name.Variable
|
|
157
|
+
.ow {
|
|
158
|
+
font-weight: bold;
|
|
159
|
+
} // Operator.Word
|
|
160
|
+
.w {
|
|
161
|
+
color: #bbb;
|
|
162
|
+
} // Text.Whitespace
|
|
163
|
+
.mf {
|
|
164
|
+
color: #099;
|
|
165
|
+
} // Literal.Number.Float
|
|
166
|
+
.mh {
|
|
167
|
+
color: #099;
|
|
168
|
+
} // Literal.Number.Hex
|
|
169
|
+
.mi {
|
|
170
|
+
color: #099;
|
|
171
|
+
} // Literal.Number.Integer
|
|
172
|
+
.mo {
|
|
173
|
+
color: #099;
|
|
174
|
+
} // Literal.Number.Oct
|
|
175
|
+
.sb {
|
|
176
|
+
color: #d14;
|
|
177
|
+
} // Literal.String.Backtick
|
|
178
|
+
.sc {
|
|
179
|
+
color: #d14;
|
|
180
|
+
} // Literal.String.Char
|
|
181
|
+
.sd {
|
|
182
|
+
color: #d14;
|
|
183
|
+
} // Literal.String.Doc
|
|
184
|
+
.s2 {
|
|
185
|
+
color: #d14;
|
|
186
|
+
} // Literal.String.Double
|
|
187
|
+
.se {
|
|
188
|
+
color: #d14;
|
|
189
|
+
} // Literal.String.Escape
|
|
190
|
+
.sh {
|
|
191
|
+
color: #d14;
|
|
192
|
+
} // Literal.String.Heredoc
|
|
193
|
+
.si {
|
|
194
|
+
color: #d14;
|
|
195
|
+
} // Literal.String.Interpol
|
|
196
|
+
.sx {
|
|
197
|
+
color: #d14;
|
|
198
|
+
} // Literal.String.Other
|
|
199
|
+
.sr {
|
|
200
|
+
color: #009926;
|
|
201
|
+
} // Literal.String.Regex
|
|
202
|
+
.s1 {
|
|
203
|
+
color: #d14;
|
|
204
|
+
} // Literal.String.Single
|
|
205
|
+
.ss {
|
|
206
|
+
color: #990073;
|
|
207
|
+
} // Literal.String.Symbol
|
|
208
|
+
.bp {
|
|
209
|
+
color: #999;
|
|
210
|
+
} // Name.Builtin.Pseudo
|
|
211
|
+
.vc {
|
|
212
|
+
color: #008080;
|
|
213
|
+
} // Name.Variable.Class
|
|
214
|
+
.vg {
|
|
215
|
+
color: #008080;
|
|
216
|
+
} // Name.Variable.Global
|
|
217
|
+
.vi {
|
|
218
|
+
color: #008080;
|
|
219
|
+
} // Name.Variable.Instance
|
|
220
|
+
.il {
|
|
221
|
+
color: #099;
|
|
222
|
+
} // Literal.Number.Integer.Long
|
|
223
|
+
}
|