moonwalk 0.3.0 → 0.4.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 +4 -4
- data/README.md +27 -25
- data/_includes/head.html +1 -1
- data/_layouts/home.html +4 -4
- data/_sass/list.scss +3 -5
- data/_sass/moonwalk.scss +51 -30
- data/_sass/syntax.scss +75 -75
- metadata +2 -2
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 546749ebe849ba6bce3fc2dae0ff88e0a1bc3ac58607630c22dfcb860834518e
|
|
4
|
+
data.tar.gz: e7b005e06f65ddac929d20c1ee1e26ab51206ddfd3e3bb1304b72d5d3dc16e88
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: f4a6c13dfde1459a0bb80d55acde4ecce286338ef17e52221173155d67e0861b84c3a672a96a3a2245159def2769485b83079524eecf026e40a74d3b8eabc5e7
|
|
7
|
+
data.tar.gz: 3d583d714adbb34df18948c4913a7e293b31459442de28c741e3174812535763c8561bb971dda76cbe5a11b0344e025954b917cd6ca4713886a33ee16461b7ed
|
data/README.md
CHANGED
|
@@ -8,8 +8,8 @@
|
|
|
8
8
|
</h3>
|
|
9
9
|
|
|
10
10
|
## Features
|
|
11
|
-
*
|
|
12
|
-
* Typeset in [
|
|
11
|
+
* Two hand-tuned themes, light and dark, inspired by GitHub's own light/dark palettes - with a theme switcher (respects `prefers-reduced-motion`)
|
|
12
|
+
* Typeset in [IBM Plex Sans](https://www.ibm.com/plex/) (headings) and [IBM Plex Mono](https://www.ibm.com/plex/) (body & code)
|
|
13
13
|
* [Agent-friendly out of the box](#agent-friendly-by-default) - per-page `.md` siblings, `/llms.txt`, and `/llms-full.txt`
|
|
14
14
|
* Built-in client-side search over post titles, tags, and excerpts
|
|
15
15
|
* Hover-preview cards on internal post links (opt-in)
|
|
@@ -104,39 +104,41 @@ The `home.yml` file accepts the following fields:
|
|
|
104
104
|
- home - for landing page
|
|
105
105
|
you can change your `index.md` file to use either home or blog layout.
|
|
106
106
|
|
|
107
|
-
2. It is extremely easy to tweak the color scheme.
|
|
108
|
-
-
|
|
107
|
+
2. It is extremely easy to tweak the color scheme. Moonwalk ships with a light and dark theme inspired by GitHub's own palettes - override either mixin in your own SCSS to make it your own.
|
|
108
|
+
- light mode
|
|
109
109
|
```css
|
|
110
|
-
|
|
111
|
-
|
|
112
|
-
|
|
113
|
-
|
|
114
|
-
|
|
115
|
-
|
|
116
|
-
|
|
117
|
-
|
|
118
|
-
|
|
119
|
-
|
|
110
|
+
@mixin light-appearance {
|
|
111
|
+
html, body {
|
|
112
|
+
--bg: #ffffff;
|
|
113
|
+
--bg-secondary: #eaeef2;
|
|
114
|
+
--bg-subtle: #f6f8fa;
|
|
115
|
+
--headings: #1f2328;
|
|
116
|
+
--text: #1f2328;
|
|
117
|
+
--text-secondary: #59636e;
|
|
118
|
+
--links: #0969da;
|
|
119
|
+
--highlight: #fff8c5;
|
|
120
|
+
--code-text: #8250df;
|
|
121
|
+
}
|
|
120
122
|
}
|
|
121
123
|
```
|
|
122
|
-
-
|
|
124
|
+
- dark mode
|
|
123
125
|
```css
|
|
124
126
|
@mixin dark-appearance {
|
|
125
127
|
html, body {
|
|
126
|
-
--headings: #
|
|
127
|
-
--links: #
|
|
128
|
-
--highlight: #
|
|
129
|
-
--bg: #
|
|
130
|
-
--bg-secondary: #
|
|
131
|
-
--bg-subtle: #
|
|
132
|
-
--text: #
|
|
133
|
-
--text-secondary: #
|
|
134
|
-
--code-text: #
|
|
128
|
+
--headings: #f0f6fc;
|
|
129
|
+
--links: #4493f8;
|
|
130
|
+
--highlight: #e3b341;
|
|
131
|
+
--bg: #0d1117;
|
|
132
|
+
--bg-secondary: #21262d;
|
|
133
|
+
--bg-subtle: #161b22;
|
|
134
|
+
--text: #c9d1d9;
|
|
135
|
+
--text-secondary: #8b949e;
|
|
136
|
+
--code-text: #d2a8ff;
|
|
135
137
|
};
|
|
136
138
|
}
|
|
137
139
|
```
|
|
138
140
|
|
|
139
|
-
3. Want different fonts? Moonwalk uses
|
|
141
|
+
3. Want different fonts? Moonwalk uses IBM Plex Sans / IBM Plex Mono via two CSS variables. Override them in your own SCSS:
|
|
140
142
|
```css
|
|
141
143
|
:root {
|
|
142
144
|
--font-sans: "Inter", system-ui, sans-serif;
|
data/_includes/head.html
CHANGED
|
@@ -28,7 +28,7 @@
|
|
|
28
28
|
|
|
29
29
|
<link rel="preconnect" href="https://fonts.googleapis.com">
|
|
30
30
|
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
|
|
31
|
-
<link href="https://fonts.googleapis.com/css2?family=
|
|
31
|
+
<link href="https://fonts.googleapis.com/css2?family=IBM+Plex+Sans:wght@400;500;600;700&family=IBM+Plex+Mono:wght@400;500;700&display=swap" rel="stylesheet">
|
|
32
32
|
{%- if site.soopr -%}
|
|
33
33
|
<link rel="dns-prefetch" href="https://sdk.soopr.co">
|
|
34
34
|
{%- endif -%}
|
data/_layouts/home.html
CHANGED
|
@@ -17,22 +17,22 @@ layout: default
|
|
|
17
17
|
{{ content }}
|
|
18
18
|
|
|
19
19
|
{% if site.theme_config.show_projects == true %}
|
|
20
|
-
<h2>{{ site.theme_config.home.title_projects }}</h2>
|
|
20
|
+
<h2 class="section-label">{{ site.theme_config.home.title_projects }}</h2>
|
|
21
21
|
{% include card_list.html collection=site.data.home.project_entries %}
|
|
22
22
|
{% endif %}
|
|
23
23
|
|
|
24
24
|
{% if site.theme_config.show_misc_list == true %}
|
|
25
|
-
<h2>{{ site.theme_config.home.title_misc_list }}</h2>
|
|
25
|
+
<h2 class="section-label">{{ site.theme_config.home.title_misc_list }}</h2>
|
|
26
26
|
{% include vertical_list.html collection=site.data.home.misc_entries %}
|
|
27
27
|
{% endif %}
|
|
28
28
|
|
|
29
29
|
{% if site.theme_config.show_blog == true %}
|
|
30
|
-
<h2>{{ site.theme_config.home.title_blog }}</h2>
|
|
30
|
+
<h2 class="section-label">{{ site.theme_config.home.title_blog }}</h2>
|
|
31
31
|
{% include post_list.html %}
|
|
32
32
|
{% endif %}
|
|
33
33
|
|
|
34
34
|
{% if site.theme_config.show_old_projects == true %}
|
|
35
|
-
<h2>{{ site.theme_config.home.title_old_projects }}</h2>
|
|
35
|
+
<h2 class="section-label">{{ site.theme_config.home.title_old_projects }}</h2>
|
|
36
36
|
{% include card_list.html collection=site.data.home.old_project_entries %}
|
|
37
37
|
{% endif %}
|
|
38
38
|
|
data/_sass/list.scss
CHANGED
|
@@ -22,9 +22,9 @@ ul.horizontal-list {
|
|
|
22
22
|
}
|
|
23
23
|
|
|
24
24
|
.card {
|
|
25
|
-
padding: 1.
|
|
25
|
+
padding: 1.25em 1.4em;
|
|
26
26
|
border: 1px solid var(--border);
|
|
27
|
-
width: calc(
|
|
27
|
+
width: calc(50% - 0.4em);
|
|
28
28
|
box-sizing: border-box;
|
|
29
29
|
height: auto;
|
|
30
30
|
text-align: left;
|
|
@@ -32,11 +32,9 @@ ul.horizontal-list {
|
|
|
32
32
|
align-items: flex-start;
|
|
33
33
|
background-color: var(--bg-subtle);
|
|
34
34
|
border-radius: var(--radius-md);
|
|
35
|
-
transition:
|
|
35
|
+
transition: border-color 0.2s ease;
|
|
36
36
|
|
|
37
37
|
&:hover {
|
|
38
|
-
transform: translateY(-2px);
|
|
39
|
-
box-shadow: 0 4px 16px rgba(0,0,0,0.06);
|
|
40
38
|
border-color: var(--links);
|
|
41
39
|
}
|
|
42
40
|
|
data/_sass/moonwalk.scss
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
:root {
|
|
2
|
-
--font-sans: "
|
|
3
|
-
--font-mono: "
|
|
2
|
+
--font-sans: "IBM Plex Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Helvetica, Arial, sans-serif;
|
|
3
|
+
--font-mono: "IBM Plex Mono", ui-monospace, SFMono-Regular, "SF Mono", Menlo, Consolas, "Liberation Mono", monospace;
|
|
4
4
|
--radius-sm: 0.25rem;
|
|
5
5
|
--radius-md: 0.5rem;
|
|
6
6
|
--radius-lg: 0.75rem;
|
|
@@ -9,8 +9,8 @@
|
|
|
9
9
|
html { height: 100%; }
|
|
10
10
|
|
|
11
11
|
body {
|
|
12
|
-
font-family: var(--font-
|
|
13
|
-
font-size:
|
|
12
|
+
font-family: var(--font-mono);
|
|
13
|
+
font-size: 1rem;
|
|
14
14
|
line-height: 1.7;
|
|
15
15
|
margin: 0;
|
|
16
16
|
min-height: 100%;
|
|
@@ -20,7 +20,7 @@ body {
|
|
|
20
20
|
}
|
|
21
21
|
pre, code {
|
|
22
22
|
font-family: var(--font-mono);
|
|
23
|
-
font-size: 0.
|
|
23
|
+
font-size: 0.85rem;
|
|
24
24
|
}
|
|
25
25
|
|
|
26
26
|
h1 {
|
|
@@ -38,6 +38,16 @@ h2 {
|
|
|
38
38
|
h3 { font-size: clamp(1.1rem, 1rem + 0.4vw, 1.25rem); letter-spacing: -0.01em; font-weight: 600; }
|
|
39
39
|
h2, h3, h4, h5 { margin-top: 1.6em; }
|
|
40
40
|
|
|
41
|
+
// Section header for home page sections (Portfolio, Blog, etc.)
|
|
42
|
+
// - see _layouts/home.html
|
|
43
|
+
.section-label {
|
|
44
|
+
font-family: var(--font-sans);
|
|
45
|
+
font-size: 1rem;
|
|
46
|
+
font-weight: 600;
|
|
47
|
+
color: var(--text-secondary);
|
|
48
|
+
letter-spacing: -0.005em;
|
|
49
|
+
}
|
|
50
|
+
|
|
41
51
|
hr { margin: 1em 0; }
|
|
42
52
|
|
|
43
53
|
p { margin: 1.25em 0; }
|
|
@@ -45,10 +55,18 @@ p { margin: 1.25em 0; }
|
|
|
45
55
|
li { margin: 0.4em 0; }
|
|
46
56
|
|
|
47
57
|
.w {
|
|
48
|
-
max-width:
|
|
58
|
+
max-width: 780px;
|
|
49
59
|
margin: 0 auto;
|
|
50
60
|
padding: 4em 2em;
|
|
51
61
|
}
|
|
62
|
+
|
|
63
|
+
// Bordered masthead treatment for the site header (home.html, blog.html)
|
|
64
|
+
header {
|
|
65
|
+
padding: 1.5em 0;
|
|
66
|
+
margin-bottom: 2.5em;
|
|
67
|
+
border-top: 2px solid var(--links);
|
|
68
|
+
border-bottom: 1px solid var(--border-subtle);
|
|
69
|
+
}
|
|
52
70
|
@media screen and (max-width: 600px) {
|
|
53
71
|
.w {
|
|
54
72
|
padding: 2em 1.25em;
|
|
@@ -120,37 +138,39 @@ img {
|
|
|
120
138
|
border-radius: 0.5em;
|
|
121
139
|
box-shadow: 0 2px 8px rgba(0,0,0,0.08);
|
|
122
140
|
}
|
|
141
|
+
// Light theme - GitHub Light inspired
|
|
123
142
|
@mixin light-appearance {
|
|
124
143
|
html, body {
|
|
125
|
-
--bg: #
|
|
126
|
-
--bg-secondary: #
|
|
127
|
-
--bg-subtle: #
|
|
128
|
-
--headings: #
|
|
129
|
-
--text: #
|
|
130
|
-
--text-secondary: #
|
|
131
|
-
--links: #
|
|
132
|
-
--highlight: #
|
|
133
|
-
--code-text: #
|
|
134
|
-
--share-text: #
|
|
135
|
-
--border: rgba(
|
|
136
|
-
--border-subtle: rgba(
|
|
144
|
+
--bg: #ffffff;
|
|
145
|
+
--bg-secondary: #eaeef2;
|
|
146
|
+
--bg-subtle: #f6f8fa;
|
|
147
|
+
--headings: #1f2328;
|
|
148
|
+
--text: #1f2328;
|
|
149
|
+
--text-secondary: #59636e;
|
|
150
|
+
--links: #0969da;
|
|
151
|
+
--highlight: #fff8c5;
|
|
152
|
+
--code-text: #8250df;
|
|
153
|
+
--share-text: #6e7781;
|
|
154
|
+
--border: rgba(31, 35, 40, 0.15);
|
|
155
|
+
--border-subtle: rgba(31, 35, 40, 0.08);
|
|
137
156
|
}
|
|
138
157
|
}
|
|
139
158
|
// -------------- THEME SWITCHER -------------- //
|
|
159
|
+
// Dark theme - GitHub Dark inspired
|
|
140
160
|
@mixin dark-appearance {
|
|
141
161
|
html, body {
|
|
142
|
-
--headings: #
|
|
143
|
-
--links: #
|
|
144
|
-
--highlight: #
|
|
145
|
-
--bg: #
|
|
146
|
-
--bg-secondary: #
|
|
147
|
-
--bg-subtle: #
|
|
148
|
-
--text: #
|
|
149
|
-
--text-secondary: #
|
|
150
|
-
--code-text: #
|
|
151
|
-
--share-text: #
|
|
152
|
-
--border: rgba(
|
|
153
|
-
--border-subtle: rgba(
|
|
162
|
+
--headings: #f0f6fc;
|
|
163
|
+
--links: #4493f8;
|
|
164
|
+
--highlight: #e3b341;
|
|
165
|
+
--bg: #0d1117;
|
|
166
|
+
--bg-secondary: #21262d;
|
|
167
|
+
--bg-subtle: #161b22;
|
|
168
|
+
--text: #c9d1d9;
|
|
169
|
+
--text-secondary: #8b949e;
|
|
170
|
+
--code-text: #d2a8ff;
|
|
171
|
+
--share-text: #9198a1;
|
|
172
|
+
--border: rgba(240, 246, 252, 0.1);
|
|
173
|
+
--border-subtle: rgba(240, 246, 252, 0.06);
|
|
154
174
|
};
|
|
155
175
|
}
|
|
156
176
|
|
|
@@ -346,6 +366,7 @@ div.highlighter-rouge:hover .code-copy {
|
|
|
346
366
|
justify-content: center;
|
|
347
367
|
width: 40px;
|
|
348
368
|
height: 40px;
|
|
369
|
+
margin-bottom: 1.5em;
|
|
349
370
|
border-radius: 50%;
|
|
350
371
|
border: 1px solid var(--border);
|
|
351
372
|
background: var(--bg-secondary);
|
data/_sass/syntax.scss
CHANGED
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
// Light mode syntax highlighting
|
|
2
2
|
html[data-theme="light"] .highlight,
|
|
3
3
|
body[data-theme="auto"] .highlight {
|
|
4
|
-
.hll { background-color: #
|
|
5
|
-
& { background: #f6f8fa; color: #
|
|
4
|
+
.hll { background-color: #fff8c5 }
|
|
5
|
+
& { background: #f6f8fa; color: #1f2328 }
|
|
6
6
|
.c { color: #6a737d } /* Comment */
|
|
7
7
|
.err { color: #cb2431 } /* Error */
|
|
8
8
|
.k { color: #d73a49 } /* Keyword */
|
|
@@ -77,8 +77,8 @@ body[data-theme="auto"] .highlight {
|
|
|
77
77
|
|
|
78
78
|
@media (prefers-color-scheme: light) {
|
|
79
79
|
body[data-theme="auto"] .highlight {
|
|
80
|
-
.hll { background-color: #
|
|
81
|
-
& { background: #f6f8fa; color: #
|
|
80
|
+
.hll { background-color: #fff8c5 }
|
|
81
|
+
& { background: #f6f8fa; color: #1f2328 }
|
|
82
82
|
.c { color: #6a737d }
|
|
83
83
|
.err { color: #cb2431 }
|
|
84
84
|
.k { color: #d73a49 }
|
|
@@ -96,76 +96,76 @@ body[data-theme="auto"] .highlight {
|
|
|
96
96
|
}
|
|
97
97
|
}
|
|
98
98
|
|
|
99
|
-
// Dark mode syntax highlighting (default)
|
|
100
|
-
.highlight .hll { background-color: #
|
|
101
|
-
.highlight { background: #
|
|
102
|
-
.highlight .c { color: #
|
|
103
|
-
.highlight .err { color: #
|
|
104
|
-
.highlight .k { color: #
|
|
105
|
-
.highlight .l { color: #
|
|
106
|
-
.highlight .n { color: #
|
|
107
|
-
.highlight .o { color: #
|
|
108
|
-
.highlight .p { color: #
|
|
109
|
-
.highlight .ch { color: #
|
|
110
|
-
.highlight .cm { color: #
|
|
111
|
-
.highlight .cp { color: #
|
|
112
|
-
.highlight .cpf { color: #
|
|
113
|
-
.highlight .c1 { color: #
|
|
114
|
-
.highlight .cs { color: #
|
|
115
|
-
.highlight .gd { color: #
|
|
99
|
+
// Dark mode syntax highlighting (default) - GitHub Dark inspired
|
|
100
|
+
.highlight .hll { background-color: #1c2e1f }
|
|
101
|
+
.highlight { background: #161b22; color: #c9d1d9 }
|
|
102
|
+
.highlight .c { color: #8b949e } /* Comment */
|
|
103
|
+
.highlight .err { color: #f85149 } /* Error */
|
|
104
|
+
.highlight .k { color: #ff7b72 } /* Keyword */
|
|
105
|
+
.highlight .l { color: #79c0ff } /* Literal */
|
|
106
|
+
.highlight .n { color: #c9d1d9 } /* Name */
|
|
107
|
+
.highlight .o { color: #ff7b72 } /* Operator */
|
|
108
|
+
.highlight .p { color: #c9d1d9 } /* Punctuation */
|
|
109
|
+
.highlight .ch { color: #8b949e } /* Comment.Hashbang */
|
|
110
|
+
.highlight .cm { color: #8b949e } /* Comment.Multiline */
|
|
111
|
+
.highlight .cp { color: #8b949e } /* Comment.Preproc */
|
|
112
|
+
.highlight .cpf { color: #8b949e } /* Comment.PreprocFile */
|
|
113
|
+
.highlight .c1 { color: #8b949e } /* Comment.Single */
|
|
114
|
+
.highlight .cs { color: #8b949e } /* Comment.Special */
|
|
115
|
+
.highlight .gd { color: #ffa198 } /* Generic.Deleted */
|
|
116
116
|
.highlight .ge { font-style: italic } /* Generic.Emph */
|
|
117
|
-
.highlight .gh { color: #
|
|
118
|
-
.highlight .gi { color: #
|
|
119
|
-
.highlight .gp { color: #
|
|
117
|
+
.highlight .gh { color: #f0f6fc; font-weight: bold } /* Generic.Heading */
|
|
118
|
+
.highlight .gi { color: #7ee787 } /* Generic.Inserted */
|
|
119
|
+
.highlight .gp { color: #8b949e; font-weight: bold } /* Generic.Prompt */
|
|
120
120
|
.highlight .gs { font-weight: bold } /* Generic.Strong */
|
|
121
|
-
.highlight .gu { color: #
|
|
122
|
-
.highlight .kc { color: #
|
|
123
|
-
.highlight .kd { color: #
|
|
124
|
-
.highlight .kn { color: #
|
|
125
|
-
.highlight .kp { color: #
|
|
126
|
-
.highlight .kr { color: #
|
|
127
|
-
.highlight .kt { color: #
|
|
128
|
-
.highlight .ld { color: #
|
|
129
|
-
.highlight .m { color: #
|
|
130
|
-
.highlight .s { color: #
|
|
131
|
-
.highlight .na { color: #
|
|
132
|
-
.highlight .nb { color: #
|
|
133
|
-
.highlight .nc { color: #
|
|
134
|
-
.highlight .no { color: #
|
|
135
|
-
.highlight .nd { color: #
|
|
136
|
-
.highlight .ni { color: #
|
|
137
|
-
.highlight .ne { color: #
|
|
138
|
-
.highlight .nf { color: #
|
|
139
|
-
.highlight .nl { color: #
|
|
140
|
-
.highlight .nn { color: #
|
|
141
|
-
.highlight .nx { color: #
|
|
142
|
-
.highlight .py { color: #
|
|
143
|
-
.highlight .nt { color: #
|
|
144
|
-
.highlight .nv { color: #
|
|
145
|
-
.highlight .ow { color: #
|
|
146
|
-
.highlight .w { color: #
|
|
147
|
-
.highlight .mb { color: #
|
|
148
|
-
.highlight .mf { color: #
|
|
149
|
-
.highlight .mh { color: #
|
|
150
|
-
.highlight .mi { color: #
|
|
151
|
-
.highlight .mo { color: #
|
|
152
|
-
.highlight .sa { color: #
|
|
153
|
-
.highlight .sb { color: #
|
|
154
|
-
.highlight .sc { color: #
|
|
155
|
-
.highlight .dl { color: #
|
|
156
|
-
.highlight .sd { color: #
|
|
157
|
-
.highlight .s2 { color: #
|
|
158
|
-
.highlight .se { color: #
|
|
159
|
-
.highlight .sh { color: #
|
|
160
|
-
.highlight .si { color: #
|
|
161
|
-
.highlight .sx { color: #
|
|
162
|
-
.highlight .sr { color: #
|
|
163
|
-
.highlight .s1 { color: #
|
|
164
|
-
.highlight .ss { color: #
|
|
165
|
-
.highlight .bp { color: #
|
|
166
|
-
.highlight .fm { color: #
|
|
167
|
-
.highlight .vc { color: #
|
|
168
|
-
.highlight .vg { color: #
|
|
169
|
-
.highlight .vi { color: #
|
|
170
|
-
.highlight .vm { color: #
|
|
171
|
-
.highlight .il { color: #
|
|
121
|
+
.highlight .gu { color: #d2a8ff; font-weight: bold } /* Generic.Subheading */
|
|
122
|
+
.highlight .kc { color: #79c0ff } /* Keyword.Constant */
|
|
123
|
+
.highlight .kd { color: #ff7b72 } /* Keyword.Declaration */
|
|
124
|
+
.highlight .kn { color: #ff7b72 } /* Keyword.Namespace */
|
|
125
|
+
.highlight .kp { color: #ff7b72 } /* Keyword.Pseudo */
|
|
126
|
+
.highlight .kr { color: #ff7b72 } /* Keyword.Reserved */
|
|
127
|
+
.highlight .kt { color: #d2a8ff } /* Keyword.Type */
|
|
128
|
+
.highlight .ld { color: #a5d6ff } /* Literal.Date */
|
|
129
|
+
.highlight .m { color: #79c0ff } /* Literal.Number */
|
|
130
|
+
.highlight .s { color: #a5d6ff } /* Literal.String */
|
|
131
|
+
.highlight .na { color: #79c0ff } /* Name.Attribute */
|
|
132
|
+
.highlight .nb { color: #c9d1d9 } /* Name.Builtin */
|
|
133
|
+
.highlight .nc { color: #d2a8ff } /* Name.Class */
|
|
134
|
+
.highlight .no { color: #79c0ff } /* Name.Constant */
|
|
135
|
+
.highlight .nd { color: #d2a8ff } /* Name.Decorator */
|
|
136
|
+
.highlight .ni { color: #c9d1d9 } /* Name.Entity */
|
|
137
|
+
.highlight .ne { color: #ffa198 } /* Name.Exception */
|
|
138
|
+
.highlight .nf { color: #d2a8ff } /* Name.Function */
|
|
139
|
+
.highlight .nl { color: #c9d1d9 } /* Name.Label */
|
|
140
|
+
.highlight .nn { color: #d2a8ff } /* Name.Namespace */
|
|
141
|
+
.highlight .nx { color: #d2a8ff } /* Name.Other */
|
|
142
|
+
.highlight .py { color: #c9d1d9 } /* Name.Property */
|
|
143
|
+
.highlight .nt { color: #7ee787 } /* Name.Tag */
|
|
144
|
+
.highlight .nv { color: #ffa657 } /* Name.Variable */
|
|
145
|
+
.highlight .ow { color: #ff7b72 } /* Operator.Word */
|
|
146
|
+
.highlight .w { color: #c9d1d9 } /* Text.Whitespace */
|
|
147
|
+
.highlight .mb { color: #79c0ff } /* Literal.Number.Bin */
|
|
148
|
+
.highlight .mf { color: #79c0ff } /* Literal.Number.Float */
|
|
149
|
+
.highlight .mh { color: #79c0ff } /* Literal.Number.Hex */
|
|
150
|
+
.highlight .mi { color: #79c0ff } /* Literal.Number.Integer */
|
|
151
|
+
.highlight .mo { color: #79c0ff } /* Literal.Number.Oct */
|
|
152
|
+
.highlight .sa { color: #a5d6ff } /* Literal.String.Affix */
|
|
153
|
+
.highlight .sb { color: #a5d6ff } /* Literal.String.Backtick */
|
|
154
|
+
.highlight .sc { color: #c9d1d9 } /* Literal.String.Char */
|
|
155
|
+
.highlight .dl { color: #a5d6ff } /* Literal.String.Delimiter */
|
|
156
|
+
.highlight .sd { color: #8b949e } /* Literal.String.Doc */
|
|
157
|
+
.highlight .s2 { color: #a5d6ff } /* Literal.String.Double */
|
|
158
|
+
.highlight .se { color: #79c0ff } /* Literal.String.Escape */
|
|
159
|
+
.highlight .sh { color: #a5d6ff } /* Literal.String.Heredoc */
|
|
160
|
+
.highlight .si { color: #79c0ff } /* Literal.String.Interpol */
|
|
161
|
+
.highlight .sx { color: #a5d6ff } /* Literal.String.Other */
|
|
162
|
+
.highlight .sr { color: #a5d6ff } /* Literal.String.Regex */
|
|
163
|
+
.highlight .s1 { color: #a5d6ff } /* Literal.String.Single */
|
|
164
|
+
.highlight .ss { color: #a5d6ff } /* Literal.String.Symbol */
|
|
165
|
+
.highlight .bp { color: #c9d1d9 } /* Name.Builtin.Pseudo */
|
|
166
|
+
.highlight .fm { color: #d2a8ff } /* Name.Function.Magic */
|
|
167
|
+
.highlight .vc { color: #ffa657 } /* Name.Variable.Class */
|
|
168
|
+
.highlight .vg { color: #ffa657 } /* Name.Variable.Global */
|
|
169
|
+
.highlight .vi { color: #ffa657 } /* Name.Variable.Instance */
|
|
170
|
+
.highlight .vm { color: #ffa657 } /* Name.Variable.Magic */
|
|
171
|
+
.highlight .il { color: #79c0ff } /* Literal.Number.Integer.Long */
|
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: moonwalk
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.
|
|
4
|
+
version: 0.4.0
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Abhinav Saxena
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2026-
|
|
11
|
+
date: 2026-09-13 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: jekyll
|