@rokkit/core 1.0.0-next.88 → 1.0.0-next.89

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.
Files changed (2) hide show
  1. package/package.json +3 -3
  2. package/src/theme.js +4 -2
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@rokkit/core",
3
- "version": "1.0.0-next.88",
3
+ "version": "1.0.0-next.89",
4
4
  "description": "Core components, actions and stores for svelte apps.",
5
5
  "author": "Jerry Thomas <me@jerrythomas.name>",
6
6
  "license": "MIT",
@@ -22,8 +22,8 @@
22
22
  "typescript": "^5.3.3",
23
23
  "vite": "^5.1.4",
24
24
  "vitest": "~1.3.1",
25
- "shared-config": "1.0.0-next.88",
26
- "validators": "1.0.0-next.88"
25
+ "shared-config": "1.0.0-next.89",
26
+ "validators": "1.0.0-next.89"
27
27
  },
28
28
  "files": [
29
29
  "src/**/*.js",
package/src/theme.js CHANGED
@@ -115,14 +115,16 @@ export function themeRules(name = 'rokkit', mapping = defaultThemeMapping, color
115
115
  `${name}-mode-light`,
116
116
  {
117
117
  ...light,
118
- ...syntaxColors['one-dark'].light
118
+ ...syntaxColors['one-dark'].light,
119
+ '--plot-background': 'var(--neutral-200)'
119
120
  }
120
121
  ],
121
122
  [
122
123
  `${name}-mode-dark`,
123
124
  {
124
125
  ...dark,
125
- ...syntaxColors['one-dark'].dark
126
+ ...syntaxColors['one-dark'].dark,
127
+ '--plot-background': 'var(--neutral-200)'
126
128
  }
127
129
  ]
128
130
  ]