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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: c5e02cb1df7e558c3ccdda484e3bc9b6c6b29087c8691c7fdcea20b5610fbe62
4
- data.tar.gz: b2fa5b617e6d9c030274cc51ac6900bbd1e13cc8f298313f915a9e6924e9d2c6
3
+ metadata.gz: 546749ebe849ba6bce3fc2dae0ff88e0a1bc3ac58607630c22dfcb860834518e
4
+ data.tar.gz: e7b005e06f65ddac929d20c1ee1e26ab51206ddfd3e3bb1304b72d5d3dc16e88
5
5
  SHA512:
6
- metadata.gz: dae6d3047030c1bf2e97dfd78f7daccf626722cc1bfc7c221f2cbfd8f7a67a816957ed1188387e0579a5bafedf690b15e72946efee248bc0d1da3eac32a90445
7
- data.tar.gz: 8e991204aba28ef6f7734f591b5675b34069c1df209c1e857c9033af46f987a8e6dc96950a4659a9b4ba49a6a268a67fa32db8b4132e04ceed5a2324d8e3d51c
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
- * Light & dark mode with theme switcher (respects `prefers-reduced-motion`)
12
- * Typeset in [Geist](https://vercel.com/font) (body & headings) and [Geist Mono](https://vercel.com/font) (code)
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
- - for light mode, customize these css variables
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
- html {
111
- --bg: #fcfcfc;
112
- --bg-secondary: #f1f2f4;
113
- --bg-subtle: #f6f7f8;
114
- --headings: #0f172a;
115
- --text: #2b2f36;
116
- --text-secondary: #5b6470;
117
- --links: #4f46e5;
118
- --highlight: #ffecb2; // light yellow
119
- --code-text: #9d174d;
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
- - for dark mode customize these css variables
124
+ - dark mode
123
125
  ```css
124
126
  @mixin dark-appearance {
125
127
  html, body {
126
- --headings: #e6edf3;
127
- --links: #91a7ff;
128
- --highlight: #41c7c7;
129
- --bg: #15161d;
130
- --bg-secondary: #23242f;
131
- --bg-subtle: #1c1d26;
132
- --text: #c4ccd6;
133
- --text-secondary: #8b94a3;
134
- --code-text: #91a7ff;
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 Geist / Geist Mono via two CSS variables. Override them in your own SCSS:
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=Geist:wght@400;500;600;700;800&family=Geist+Mono:wght@400;500&display=swap" rel="stylesheet">
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.1em 1.15em;
25
+ padding: 1.25em 1.4em;
26
26
  border: 1px solid var(--border);
27
- width: calc(33.333% - 0.6em);
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: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
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: "Geist", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Helvetica, Arial, sans-serif;
3
- --font-mono: "Geist Mono", ui-monospace, SFMono-Regular, "SF Mono", Menlo, Consolas, "Liberation Mono", monospace;
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-sans);
13
- font-size: 1.125rem;
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.92rem;
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: 720px;
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: #fcfcfc;
126
- --bg-secondary: #f1f2f4;
127
- --bg-subtle: #f6f7f8;
128
- --headings: #0f172a;
129
- --text: #2b2f36;
130
- --text-secondary: #5b6470;
131
- --links: #4f46e5;
132
- --highlight: #FFECB2;
133
- --code-text: #9D174D;
134
- --share-text: #999;
135
- --border: rgba(15, 23, 42, 0.08);
136
- --border-subtle: rgba(15, 23, 42, 0.05);
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: #e6edf3;
143
- --links: #91A7FF;
144
- --highlight: #41C7C7;
145
- --bg: #15161d;
146
- --bg-secondary: #23242f;
147
- --bg-subtle: #1c1d26;
148
- --text: #c4ccd6;
149
- --text-secondary: #8b94a3;
150
- --code-text: #91A7FF;
151
- --share-text: #C4C4C4;
152
- --border: rgba(255, 255, 255, 0.08);
153
- --border-subtle: rgba(255, 255, 255, 0.05);
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: #ffffcc }
5
- & { background: #f6f8fa; color: #24292f }
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: #ffffcc }
81
- & { background: #f6f8fa; color: #24292f }
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: #515151 }
101
- .highlight { background: #1A1F35; color: #f2f0ec }
102
- .highlight .c { color: #747369 } /* Comment */
103
- .highlight .err { color: #f2777a } /* Error */
104
- .highlight .k { color: #cc99cc } /* Keyword */
105
- .highlight .l { color: #f99157 } /* Literal */
106
- .highlight .n { color: #f2f0ec } /* Name */
107
- .highlight .o { color: #66cccc } /* Operator */
108
- .highlight .p { color: #f2f0ec } /* Punctuation */
109
- .highlight .ch { color: #747369 } /* Comment.Hashbang */
110
- .highlight .cm { color: #747369 } /* Comment.Multiline */
111
- .highlight .cp { color: #747369 } /* Comment.Preproc */
112
- .highlight .cpf { color: #747369 } /* Comment.PreprocFile */
113
- .highlight .c1 { color: #747369 } /* Comment.Single */
114
- .highlight .cs { color: #747369 } /* Comment.Special */
115
- .highlight .gd { color: #f2777a } /* Generic.Deleted */
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: #f2f0ec; font-weight: bold } /* Generic.Heading */
118
- .highlight .gi { color: #99cc99 } /* Generic.Inserted */
119
- .highlight .gp { color: #747369; font-weight: bold } /* Generic.Prompt */
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: #66cccc; font-weight: bold } /* Generic.Subheading */
122
- .highlight .kc { color: #cc99cc } /* Keyword.Constant */
123
- .highlight .kd { color: #cc99cc } /* Keyword.Declaration */
124
- .highlight .kn { color: #66cccc } /* Keyword.Namespace */
125
- .highlight .kp { color: #cc99cc } /* Keyword.Pseudo */
126
- .highlight .kr { color: #cc99cc } /* Keyword.Reserved */
127
- .highlight .kt { color: #ffcc66 } /* Keyword.Type */
128
- .highlight .ld { color: #99cc99 } /* Literal.Date */
129
- .highlight .m { color: #f99157 } /* Literal.Number */
130
- .highlight .s { color: #99cc99 } /* Literal.String */
131
- .highlight .na { color: #6699cc } /* Name.Attribute */
132
- .highlight .nb { color: #f2f0ec } /* Name.Builtin */
133
- .highlight .nc { color: #ffcc66 } /* Name.Class */
134
- .highlight .no { color: #f2777a } /* Name.Constant */
135
- .highlight .nd { color: #66cccc } /* Name.Decorator */
136
- .highlight .ni { color: #f2f0ec } /* Name.Entity */
137
- .highlight .ne { color: #f2777a } /* Name.Exception */
138
- .highlight .nf { color: #6699cc } /* Name.Function */
139
- .highlight .nl { color: #f2f0ec } /* Name.Label */
140
- .highlight .nn { color: #ffcc66 } /* Name.Namespace */
141
- .highlight .nx { color: #6699cc } /* Name.Other */
142
- .highlight .py { color: #f2f0ec } /* Name.Property */
143
- .highlight .nt { color: #66cccc } /* Name.Tag */
144
- .highlight .nv { color: #f2777a } /* Name.Variable */
145
- .highlight .ow { color: #66cccc } /* Operator.Word */
146
- .highlight .w { color: #f2f0ec } /* Text.Whitespace */
147
- .highlight .mb { color: #f99157 } /* Literal.Number.Bin */
148
- .highlight .mf { color: #f99157 } /* Literal.Number.Float */
149
- .highlight .mh { color: #f99157 } /* Literal.Number.Hex */
150
- .highlight .mi { color: #f99157 } /* Literal.Number.Integer */
151
- .highlight .mo { color: #f99157 } /* Literal.Number.Oct */
152
- .highlight .sa { color: #99cc99 } /* Literal.String.Affix */
153
- .highlight .sb { color: #99cc99 } /* Literal.String.Backtick */
154
- .highlight .sc { color: #f2f0ec } /* Literal.String.Char */
155
- .highlight .dl { color: #99cc99 } /* Literal.String.Delimiter */
156
- .highlight .sd { color: #747369 } /* Literal.String.Doc */
157
- .highlight .s2 { color: #99cc99 } /* Literal.String.Double */
158
- .highlight .se { color: #f99157 } /* Literal.String.Escape */
159
- .highlight .sh { color: #99cc99 } /* Literal.String.Heredoc */
160
- .highlight .si { color: #f99157 } /* Literal.String.Interpol */
161
- .highlight .sx { color: #99cc99 } /* Literal.String.Other */
162
- .highlight .sr { color: #99cc99 } /* Literal.String.Regex */
163
- .highlight .s1 { color: #99cc99 } /* Literal.String.Single */
164
- .highlight .ss { color: #99cc99 } /* Literal.String.Symbol */
165
- .highlight .bp { color: #f2f0ec } /* Name.Builtin.Pseudo */
166
- .highlight .fm { color: #6699cc } /* Name.Function.Magic */
167
- .highlight .vc { color: #f2777a } /* Name.Variable.Class */
168
- .highlight .vg { color: #f2777a } /* Name.Variable.Global */
169
- .highlight .vi { color: #f2777a } /* Name.Variable.Instance */
170
- .highlight .vm { color: #f2777a } /* Name.Variable.Magic */
171
- .highlight .il { color: #f99157 } /* Literal.Number.Integer.Long */
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.3.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-05-05 00:00:00.000000000 Z
11
+ date: 2026-09-13 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: jekyll