Skip to content

Commit dfbacb9

Browse files
committed
deploy: f3eb7a7
1 parent 62196ee commit dfbacb9

File tree

275 files changed

+17923
-17299
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

275 files changed

+17923
-17299
lines changed
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,139 @@
1+
/**
2+
* Gruvbox light theme
3+
*
4+
* Based on Gruvbox: https://github.com/morhetz/gruvbox
5+
* Adapted from PrismJS gruvbox-dark theme: https://github.com/schnerring/prism-themes/blob/master/themes/prism-gruvbox-dark.css
6+
*
7+
* @author Michael Schnerring (https://schnerring.net)
8+
* @version 1.0
9+
*/
10+
11+
code[class*="language-"].gruvbox-theme-light,
12+
pre[class*="language-"].gruvbox-theme-light {
13+
color: #3c3836; /* fg1 / fg */
14+
font-family: Consolas, Monaco, "Andale Mono", monospace;
15+
direction: ltr;
16+
text-align: left;
17+
white-space: pre;
18+
word-spacing: normal;
19+
word-break: normal;
20+
line-height: 1.5;
21+
22+
-moz-tab-size: 4;
23+
-o-tab-size: 4;
24+
tab-size: 4;
25+
26+
-webkit-hyphens: none;
27+
-moz-hyphens: none;
28+
-ms-hyphens: none;
29+
hyphens: none;
30+
}
31+
32+
pre[class*="language-"].gruvbox-theme-light::-moz-selection,
33+
pre[class*="language-"].gruvbox-theme-light ::-moz-selection,
34+
code[class*="language-"].gruvbox-theme-light::-moz-selection,
35+
code[class*="language-"].gruvbox-theme-light ::-moz-selection {
36+
color: #282828; /* fg0 */
37+
background: #a89984; /* bg4 */
38+
}
39+
40+
pre[class*="language-"].gruvbox-theme-light::selection,
41+
pre[class*="language-"].gruvbox-theme-light ::selection,
42+
code[class*="language-"].gruvbox-theme-light::selection,
43+
code[class*="language-"].gruvbox-theme-light ::selection {
44+
color: #282828; /* fg0 */
45+
background: #a89984; /* bg4 */
46+
}
47+
48+
/* Code blocks */
49+
pre[class*="language-"].gruvbox-theme-light {
50+
padding: 1em;
51+
margin: 0.5em 0;
52+
overflow: auto;
53+
}
54+
55+
:not(pre) > code[class*="language-"].gruvbox-theme-light,
56+
pre[class*="language-"].gruvbox-theme-light {
57+
background: #f9f5d7; /* bg0_h */
58+
}
59+
60+
/* Inline code */
61+
:not(pre) > code[class*="language-"].gruvbox-theme-light {
62+
padding: 0.1em;
63+
border-radius: 0.3em;
64+
}
65+
66+
.gruvbox-theme-light .token.comment,
67+
.gruvbox-theme-light .token.prolog,
68+
.gruvbox-theme-light .token.cdata {
69+
color: #7c6f64; /* fg4 / gray1 */
70+
}
71+
72+
.gruvbox-theme-light .token.delimiter,
73+
.gruvbox-theme-light .token.boolean,
74+
.gruvbox-theme-light .token.keyword,
75+
.gruvbox-theme-light .token.selector,
76+
.gruvbox-theme-light .token.important,
77+
.gruvbox-theme-light .token.atrule {
78+
color: #9d0006; /* red2 */
79+
}
80+
81+
.gruvbox-theme-light .token.operator,
82+
.gruvbox-theme-light .token.punctuation,
83+
.gruvbox-theme-light .token.attr-name {
84+
color: #7c6f64; /* fg4 / gray1 */
85+
}
86+
87+
.gruvbox-theme-light .token.tag,
88+
.gruvbox-theme-light .token.tag .punctuation,
89+
.gruvbox-theme-light .token.doctype,
90+
.gruvbox-theme-light .token.builtin {
91+
color: #b57614; /* yellow2 */
92+
}
93+
94+
.gruvbox-theme-light .token.entity,
95+
.gruvbox-theme-light .token.number,
96+
.gruvbox-theme-light .token.symbol {
97+
color: #8f3f71; /* purple2 */
98+
}
99+
100+
.gruvbox-theme-light .token.property,
101+
.gruvbox-theme-light .token.constant,
102+
.gruvbox-theme-light .token.variable {
103+
color: #9d0006; /* red2 */
104+
}
105+
106+
.gruvbox-theme-light .token.string,
107+
.gruvbox-theme-light .token.char {
108+
color: #797403; /* green2 */
109+
}
110+
111+
.gruvbox-theme-light .token.attr-value,
112+
.gruvbox-theme-light .token.attr-value .punctuation {
113+
color: #7c6f64; /* fg4 / gray1 */
114+
}
115+
116+
.gruvbox-theme-light .token.url {
117+
color: #797403; /* green2 */
118+
text-decoration: underline;
119+
}
120+
121+
.gruvbox-theme-light .token.function {
122+
color: #b57614; /* yellow2 */
123+
}
124+
125+
.gruvbox-theme-light .token.bold {
126+
font-weight: bold;
127+
}
128+
129+
.gruvbox-theme-light .token.italic {
130+
font-style: italic;
131+
}
132+
133+
.gruvbox-theme-light .token.inserted {
134+
background: #7c6f64; /* fg4 / gray1 */
135+
}
136+
137+
.gruvbox-theme-light .token.deleted {
138+
background: #9d0006; /* red2 */
139+
}
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,172 @@
1+
/*
2+
Name: Duotone Light
3+
Author: Simurai, adapted from DuoTone themes for Atom (http://simurai.com/projects/2016/01/01/duotone-themes)
4+
5+
Conversion: Bram de Haan (http://atelierbram.github.io/Base2Tone-prism/output/prism/prism-base2tone-morning-light.css)
6+
Generated with Base16 Builder (https://github.com/base16-builder/base16-builder)
7+
*/
8+
9+
code[class*="language-"].duotone-theme-light,
10+
pre[class*="language-"].duotone-theme-light {
11+
font-family: Consolas, Menlo, Monaco, "Andale Mono WT", "Andale Mono", "Lucida Console", "Lucida Sans Typewriter", "DejaVu Sans Mono", "Bitstream Vera Sans Mono", "Liberation Mono", "Nimbus Mono L", "Courier New", Courier, monospace;
12+
font-size: 14px;
13+
line-height: 1.375;
14+
direction: ltr;
15+
text-align: left;
16+
white-space: pre;
17+
word-spacing: normal;
18+
word-break: normal;
19+
20+
-moz-tab-size: 4;
21+
-o-tab-size: 4;
22+
tab-size: 4;
23+
24+
-webkit-hyphens: none;
25+
-moz-hyphens: none;
26+
-ms-hyphens: none;
27+
hyphens: none;
28+
background: #faf8f5;
29+
color: #728fcb;
30+
}
31+
32+
pre > code[class*="language-"].duotone-theme-light {
33+
font-size: 1em;
34+
}
35+
36+
pre[class*="language-"].duotone-theme-light::-moz-selection, pre[class*="language-"].duotone-theme-light ::-moz-selection,
37+
code[class*="language-"].duotone-theme-light::-moz-selection, code[class*="language-"].duotone-theme-light ::-moz-selection {
38+
text-shadow: none;
39+
background: #faf8f5;
40+
}
41+
42+
pre[class*="language-"].duotone-theme-light::selection, pre[class*="language-"].duotone-theme-light ::selection,
43+
code[class*="language-"].duotone-theme-light::selection, code[class*="language-"].duotone-theme-light ::selection {
44+
text-shadow: none;
45+
background: #faf8f5;
46+
}
47+
48+
/* Code blocks */
49+
pre[class*="language-"].duotone-theme-light {
50+
padding: 1em;
51+
margin: .5em 0;
52+
overflow: auto;
53+
}
54+
55+
/* Inline code */
56+
:not(pre) > code[class*="language-"].duotone-theme-light {
57+
padding: .1em;
58+
border-radius: .3em;
59+
}
60+
61+
.duotone-theme-light .token.comment,
62+
.duotone-theme-light .token.prolog,
63+
.duotone-theme-light .token.doctype,
64+
.duotone-theme-light .token.cdata {
65+
color: #b6ad9a;
66+
}
67+
68+
.duotone-theme-light .token.punctuation {
69+
color: #b6ad9a;
70+
}
71+
72+
.duotone-theme-light .token.namespace {
73+
opacity: .7;
74+
}
75+
76+
.duotone-theme-light .token.tag,
77+
.duotone-theme-light .token.operator,
78+
.duotone-theme-light .token.number {
79+
color: #063289;
80+
}
81+
82+
.duotone-theme-light .token.property,
83+
.duotone-theme-light .token.function {
84+
color: #b29762;
85+
}
86+
87+
.duotone-theme-light .token.tag-id,
88+
.duotone-theme-light .token.selector,
89+
.duotone-theme-light .token.atrule-id {
90+
color: #2d2006;
91+
}
92+
93+
code.language-javascript,
94+
.duotone-theme-light .token.attr-name {
95+
color: #896724;
96+
}
97+
98+
code.language-css,
99+
code.language-scss,
100+
.duotone-theme-light .token.boolean,
101+
.duotone-theme-light .token.string,
102+
.duotone-theme-light .token.entity,
103+
.duotone-theme-light .token.url,
104+
.language-css .duotone-theme-light .token.string,
105+
.language-scss .duotone-theme-light .token.string,
106+
.style .duotone-theme-light .token.string,
107+
.duotone-theme-light .token.attr-value,
108+
.duotone-theme-light .token.keyword,
109+
.duotone-theme-light .token.control,
110+
.duotone-theme-light .token.directive,
111+
.duotone-theme-light .token.unit,
112+
.duotone-theme-light .token.statement,
113+
.duotone-theme-light .token.regex,
114+
.duotone-theme-light .token.atrule {
115+
color: #728fcb;
116+
}
117+
118+
.duotone-theme-light .token.placeholder,
119+
.duotone-theme-light .token.variable {
120+
color: #93abdc;
121+
}
122+
123+
.duotone-theme-light .token.deleted {
124+
text-decoration: line-through;
125+
}
126+
127+
.duotone-theme-light .token.inserted {
128+
border-bottom: 1px dotted #2d2006;
129+
text-decoration: none;
130+
}
131+
132+
.duotone-theme-light .token.italic {
133+
font-style: italic;
134+
}
135+
136+
.duotone-theme-light .token.important,
137+
.duotone-theme-light .token.bold {
138+
font-weight: bold;
139+
}
140+
141+
.duotone-theme-light .token.important {
142+
color: #896724;
143+
}
144+
145+
.duotone-theme-light .token.entity {
146+
cursor: help;
147+
}
148+
149+
pre > code.highlight {
150+
outline: .4em solid #896724;
151+
outline-offset: .4em;
152+
}
153+
154+
/* overrides color-values for the Line Numbers plugin
155+
* http://prismjs.com/plugins/line-numbers/
156+
*/
157+
.line-numbers.line-numbers .line-numbers-rows {
158+
border-right-color: #ece8de;
159+
}
160+
161+
.line-numbers .line-numbers-rows > span:before {
162+
color: #cdc4b1;
163+
}
164+
165+
/* overrides color-values for the Line Highlight plugin
166+
* http://prismjs.com/plugins/line-highlight/
167+
*/
168+
.line-highlight.line-highlight {
169+
background: rgba(45, 32, 6, 0.2);
170+
background: -webkit-linear-gradient(left, rgba(45, 32, 6, 0.2) 70%, rgba(45, 32, 6, 0));
171+
background: linear-gradient(to right, rgba(45, 32, 6, 0.2) 70%, rgba(45, 32, 6, 0));
172+
}

0 commit comments

Comments
 (0)