@principal-ade/industry-theme 0.1.7 → 0.1.8
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/dist/cjs/index.js +2 -2
- package/dist/esm/index.js +2 -2
- package/package.json +1 -1
- package/src/defaultThemes.ts +3 -3
package/dist/cjs/index.js
CHANGED
|
@@ -306,8 +306,8 @@ var defaultTerminalTheme = {
|
|
|
306
306
|
var defaultEditorTheme = {
|
|
307
307
|
space: [0, 4, 8, 16, 32, 64, 128, 256, 512],
|
|
308
308
|
fonts: {
|
|
309
|
-
body: '"
|
|
310
|
-
heading: '"
|
|
309
|
+
body: '"Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif',
|
|
310
|
+
heading: '"Crimson Text", "Georgia", "Times New Roman", serif',
|
|
311
311
|
monospace: '"Fira Code", "SF Mono", Monaco, Inconsolata, monospace'
|
|
312
312
|
},
|
|
313
313
|
fontSizes: [12, 14, 16, 18, 20, 24, 32, 48, 64, 96],
|
package/dist/esm/index.js
CHANGED
|
@@ -225,8 +225,8 @@ var defaultTerminalTheme = {
|
|
|
225
225
|
var defaultEditorTheme = {
|
|
226
226
|
space: [0, 4, 8, 16, 32, 64, 128, 256, 512],
|
|
227
227
|
fonts: {
|
|
228
|
-
body: '"
|
|
229
|
-
heading: '"
|
|
228
|
+
body: '"Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif',
|
|
229
|
+
heading: '"Crimson Text", "Georgia", "Times New Roman", serif',
|
|
230
230
|
monospace: '"Fira Code", "SF Mono", Monaco, Inconsolata, monospace'
|
|
231
231
|
},
|
|
232
232
|
fontSizes: [12, 14, 16, 18, 20, 24, 32, 48, 64, 96],
|
package/package.json
CHANGED
package/src/defaultThemes.ts
CHANGED
|
@@ -258,10 +258,10 @@ export const defaultEditorTheme: Theme = {
|
|
|
258
258
|
// Spacing scale
|
|
259
259
|
space: [0, 4, 8, 16, 32, 64, 128, 256, 512],
|
|
260
260
|
|
|
261
|
-
// Typography
|
|
261
|
+
// Typography - Using regal fonts (Inter body, Crimson Text headings)
|
|
262
262
|
fonts: {
|
|
263
|
-
body: '"
|
|
264
|
-
heading: '"
|
|
263
|
+
body: '"Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif',
|
|
264
|
+
heading: '"Crimson Text", "Georgia", "Times New Roman", serif',
|
|
265
265
|
monospace: '"Fira Code", "SF Mono", Monaco, Inconsolata, monospace',
|
|
266
266
|
},
|
|
267
267
|
fontSizes: [12, 14, 16, 18, 20, 24, 32, 48, 64, 96],
|