@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 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: '"Fira Code", "SF Mono", Monaco, Inconsolata, monospace',
310
- heading: '"Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif',
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: '"Fira Code", "SF Mono", Monaco, Inconsolata, monospace',
229
- heading: '"Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif',
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
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@principal-ade/industry-theme",
3
- "version": "0.1.7",
3
+ "version": "0.1.8",
4
4
  "type": "module",
5
5
  "description": "Theme components and styles for industry-themed markdown",
6
6
  "main": "./dist/cjs/index.js",
@@ -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: '"Fira Code", "SF Mono", Monaco, Inconsolata, monospace',
264
- heading: '"Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif',
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],