ctheme 0.1.3 → 0.1.4
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.
- package/README.md +1 -0
- package/bin/ctheme.js +10 -10
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -157,6 +157,7 @@ solarized, solarized-dark, velvet
|
|
|
157
157
|
|
|
158
158
|
Bundled themes intentionally vary their font pairings so they do not all feel the same.
|
|
159
159
|
The npm install bootstrap preinstalls the curated font set those presets rely on, so the bundled themes render correctly immediately on macOS.
|
|
160
|
+
The default code and terminal font choices are biased toward tighter, denser monospace faces rather than wide-spaced ones.
|
|
160
161
|
|
|
161
162
|
## Contributing
|
|
162
163
|
|
package/bin/ctheme.js
CHANGED
|
@@ -95,8 +95,8 @@ const BUILTIN_THEMES = [
|
|
|
95
95
|
|
|
96
96
|
const FONT_CHOICES = {
|
|
97
97
|
ui: ["Manrope", "Space Grotesk", "Outfit", "Sora", "Plus Jakarta Sans", "Newsreader", "Fraunces", "Bricolage Grotesque", "Urbanist", "Source Sans 3", "IBM Plex Sans", "Instrument Serif", "Syne"],
|
|
98
|
-
code: ["IBM Plex Mono", "
|
|
99
|
-
terminal: ["IBM Plex Mono", "
|
|
98
|
+
code: ["IBM Plex Mono", "Source Code Pro", "JetBrains Mono", "Roboto Mono", "Azeret Mono", "Fira Code", "Ubuntu Mono", "Victor Mono", "DM Mono", "Space Mono"],
|
|
99
|
+
terminal: ["IBM Plex Mono", "Source Code Pro", "JetBrains Mono", "Roboto Mono", "Azeret Mono", "Fira Code", "Ubuntu Mono", "Victor Mono", "DM Mono", "Space Mono"]
|
|
100
100
|
};
|
|
101
101
|
|
|
102
102
|
const PRESETS = {
|
|
@@ -181,7 +181,7 @@ const PRESETS = {
|
|
|
181
181
|
cyan: "#7dd3fc"
|
|
182
182
|
},
|
|
183
183
|
glacier: {
|
|
184
|
-
fonts: { terminal: "
|
|
184
|
+
fonts: { terminal: "Source Code Pro", ui: "Urbanist", code: "Source Code Pro" },
|
|
185
185
|
accent: "#7aa2f7",
|
|
186
186
|
bg: "#0a1220",
|
|
187
187
|
surface: "#121c2f",
|
|
@@ -197,7 +197,7 @@ const PRESETS = {
|
|
|
197
197
|
cyan: "#7dcfff"
|
|
198
198
|
},
|
|
199
199
|
cobalt: {
|
|
200
|
-
fonts: { terminal: "
|
|
200
|
+
fonts: { terminal: "Azeret Mono", ui: "Bricolage Grotesque", code: "Azeret Mono" },
|
|
201
201
|
accent: "#4da3ff",
|
|
202
202
|
bg: "#09111f",
|
|
203
203
|
surface: "#10203a",
|
|
@@ -213,7 +213,7 @@ const PRESETS = {
|
|
|
213
213
|
cyan: "#56ccf2"
|
|
214
214
|
},
|
|
215
215
|
rose: {
|
|
216
|
-
fonts: { terminal: "
|
|
216
|
+
fonts: { terminal: "JetBrains Mono", ui: "Fraunces", code: "JetBrains Mono" },
|
|
217
217
|
accent: "#ea9ab2",
|
|
218
218
|
bg: "#171217",
|
|
219
219
|
surface: "#231b23",
|
|
@@ -229,7 +229,7 @@ const PRESETS = {
|
|
|
229
229
|
cyan: "#8bd3dd"
|
|
230
230
|
},
|
|
231
231
|
lotus: {
|
|
232
|
-
fonts: { terminal: "
|
|
232
|
+
fonts: { terminal: "Roboto Mono", ui: "Instrument Serif", code: "Roboto Mono" },
|
|
233
233
|
accent: "#d16d9e",
|
|
234
234
|
bg: "#fff7f3",
|
|
235
235
|
surface: "#fffdfb",
|
|
@@ -277,7 +277,7 @@ const PRESETS = {
|
|
|
277
277
|
cyan: "#6ee7b7"
|
|
278
278
|
},
|
|
279
279
|
aurora: {
|
|
280
|
-
fonts: { terminal: "
|
|
280
|
+
fonts: { terminal: "JetBrains Mono", ui: "Urbanist", code: "JetBrains Mono" },
|
|
281
281
|
accent: "#7c5cff",
|
|
282
282
|
bg: "#0f0a1f",
|
|
283
283
|
surface: "#181131",
|
|
@@ -293,7 +293,7 @@ const PRESETS = {
|
|
|
293
293
|
cyan: "#7bdff2"
|
|
294
294
|
},
|
|
295
295
|
espresso: {
|
|
296
|
-
fonts: { terminal: "
|
|
296
|
+
fonts: { terminal: "IBM Plex Mono", ui: "Instrument Serif", code: "IBM Plex Mono" },
|
|
297
297
|
accent: "#c67c4e",
|
|
298
298
|
bg: "#120d0b",
|
|
299
299
|
surface: "#1d1512",
|
|
@@ -325,7 +325,7 @@ const PRESETS = {
|
|
|
325
325
|
cyan: "#bde0fe"
|
|
326
326
|
},
|
|
327
327
|
neon: {
|
|
328
|
-
fonts: { terminal: "
|
|
328
|
+
fonts: { terminal: "Roboto Mono", ui: "Bricolage Grotesque", code: "Roboto Mono" },
|
|
329
329
|
accent: "#00f5d4",
|
|
330
330
|
bg: "#090414",
|
|
331
331
|
surface: "#130a24",
|
|
@@ -389,7 +389,7 @@ const PRESETS = {
|
|
|
389
389
|
cyan: "#2aa198"
|
|
390
390
|
},
|
|
391
391
|
velvet: {
|
|
392
|
-
fonts: { terminal: "
|
|
392
|
+
fonts: { terminal: "Azeret Mono", ui: "Fraunces", code: "Azeret Mono" },
|
|
393
393
|
accent: "#d4a5ff",
|
|
394
394
|
bg: "#140d18",
|
|
395
395
|
surface: "#211328",
|