@brimveyn/aimux-config 0.5.7 → 0.5.9

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 (41) hide show
  1. package/package.json +1 -1
  2. package/src/actions.ts +1 -0
  3. package/src/defaults.ts +1 -0
  4. package/src/index.ts +2 -0
  5. package/src/resolver.ts +6 -0
  6. package/src/tui/index.ts +1 -1
  7. package/src/tui/resolve.ts +59 -9
  8. package/src/tui/themes/aimux.json +6 -6
  9. package/src/tui/themes/aura.json +5 -5
  10. package/src/tui/themes/ayu.json +5 -5
  11. package/src/tui/themes/carbonfox.json +6 -6
  12. package/src/tui/themes/catppuccin-frappe.json +10 -10
  13. package/src/tui/themes/catppuccin-macchiato.json +10 -10
  14. package/src/tui/themes/catppuccin.json +5 -5
  15. package/src/tui/themes/cobalt2.json +8 -8
  16. package/src/tui/themes/cursor.json +8 -8
  17. package/src/tui/themes/dracula.json +6 -6
  18. package/src/tui/themes/everforest.json +10 -10
  19. package/src/tui/themes/flexoki.json +10 -10
  20. package/src/tui/themes/github.json +8 -8
  21. package/src/tui/themes/gruvbox.json +8 -8
  22. package/src/tui/themes/kanagawa.json +5 -5
  23. package/src/tui/themes/material.json +8 -8
  24. package/src/tui/themes/matrix.json +5 -5
  25. package/src/tui/themes/mercury.json +6 -6
  26. package/src/tui/themes/monokai.json +4 -4
  27. package/src/tui/themes/nightowl.json +10 -10
  28. package/src/tui/themes/nord.json +10 -10
  29. package/src/tui/themes/one-dark.json +5 -5
  30. package/src/tui/themes/opencode.json +10 -10
  31. package/src/tui/themes/orng.json +10 -10
  32. package/src/tui/themes/osaka-jade.json +5 -5
  33. package/src/tui/themes/palenight.json +7 -7
  34. package/src/tui/themes/rosepine.json +10 -10
  35. package/src/tui/themes/solarized.json +10 -10
  36. package/src/tui/themes/synthwave84.json +7 -7
  37. package/src/tui/themes/tokyonight.json +10 -10
  38. package/src/tui/themes/vercel.json +9 -9
  39. package/src/tui/themes/vesper.json +9 -9
  40. package/src/tui/themes/zenburn.json +6 -6
  41. package/src/types.ts +20 -0
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@brimveyn/aimux-config",
3
- "version": "0.5.7",
3
+ "version": "0.5.9",
4
4
  "description": "TypeScript configuration API for aimux — keymaps, themes, and backends with a fluent builder.",
5
5
  "keywords": [
6
6
  "aimux",
package/src/actions.ts CHANGED
@@ -236,6 +236,7 @@ export function previewTheme(delta: 1 | -1): KeyResult {
236
236
  }
237
237
 
238
238
  export const toggleTransparent: KeyResult = r([], [{ type: 'toggle-transparent' }])
239
+ export const toggleMode: KeyResult = r([], [{ type: 'toggle-mode' }])
239
240
 
240
241
  export const switchField: KeyResult = r([{ type: 'switch-create-session-field' }])
241
242
  export const selectDirectory: KeyResult = r([{ type: 'select-directory' }])
package/src/defaults.ts CHANGED
@@ -153,6 +153,7 @@ export function getDefaultKeymapConfig(): ResolvedKeymapConfig {
153
153
  .map('<Up>', actions.previewTheme(-1))
154
154
  .map('<CR>', actions.confirmTheme, 'Confirm')
155
155
  .map('<C-t>', actions.toggleTransparent, 'Toggle transparent')
156
+ .map('<C-l>', actions.toggleMode, 'Toggle light/dark')
156
157
  .passthrough()
157
158
  )
158
159
 
package/src/index.ts CHANGED
@@ -5,8 +5,10 @@ export * as actions from './actions'
5
5
 
6
6
  // TUI theme system (1:1 port of opencode TUI).
7
7
  export {
8
+ type ClaudeThemeFile,
8
9
  isKnownThemeId,
9
10
  migrateThemeId,
11
+ resolveClaudeTheme,
10
12
  type ResolvedTuiTheme,
11
13
  resolveTuiTheme,
12
14
  type RGBA,
package/src/resolver.ts CHANGED
@@ -51,6 +51,12 @@ export function resolveConfig(userConfig: AimuxUserConfig): ResolvedConfig {
51
51
  function resolveTheme(userConfig: AimuxUserConfig['theme']): ResolvedConfig['theme'] {
52
52
  if (!userConfig) return undefined
53
53
  return {
54
+ beta: userConfig.beta
55
+ ? {
56
+ experimentalSyntaxHighlight: userConfig.beta.experimentalSyntaxHighlight === true,
57
+ harmonizeClaudeTheme: userConfig.beta.harmonizeClaudeTheme === true,
58
+ }
59
+ : undefined,
54
60
  initialId: userConfig.initialId,
55
61
  initialMode: userConfig.initialMode ?? userConfig.mode,
56
62
  }
package/src/tui/index.ts CHANGED
@@ -1,5 +1,5 @@
1
1
  export { isKnownThemeId, migrateThemeId, THEME_IDS, type ThemeId, TUI_THEMES } from './registry'
2
- export { resolveTuiTheme } from './resolve'
2
+ export { type ClaudeThemeFile, resolveClaudeTheme, resolveTuiTheme } from './resolve'
3
3
  export { type TuiShikiOptions, tuiThemeToShiki } from './shiki'
4
4
  export { TUI_COLOR_TOKENS, type TuiColorToken } from './tokens'
5
5
  export type { ResolvedTuiTheme, RGBA, ThemeMode, TuiColorValue, TuiThemeJson } from './types'
@@ -102,15 +102,14 @@ function resolveColorRgba(
102
102
  }
103
103
 
104
104
  function rgbaToCss(c: RGBA): string {
105
- const r = Math.max(0, Math.min(255, Math.round(c.r)))
106
- const g = Math.max(0, Math.min(255, Math.round(c.g)))
107
- const b = Math.max(0, Math.min(255, Math.round(c.b)))
108
- const a = Math.max(0, Math.min(255, Math.round(c.a)))
109
- if (a === 255) {
110
- const hex = (v: number) => v.toString(16).padStart(2, '0')
111
- return `#${hex(r)}${hex(g)}${hex(b)}`
112
- }
113
- return `rgba(${r}, ${g}, ${b}, ${(a / 255).toFixed(3)})`
105
+ const clamp = (v: number) => Math.max(0, Math.min(255, Math.round(v)))
106
+ const hex = (v: number) => clamp(v).toString(16).padStart(2, '0')
107
+ const r = hex(c.r)
108
+ const g = hex(c.g)
109
+ const b = hex(c.b)
110
+ // opentui only parses hex strings (#rrggbb / #rrggbbaa) `rgba(...)` falls
111
+ // back to magenta. Always emit hex; append alpha byte when not fully opaque.
112
+ return clamp(c.a) === 255 ? `#${r}${g}${b}` : `#${r}${g}${b}${hex(c.a)}`
114
113
  }
115
114
 
116
115
  /**
@@ -154,3 +153,54 @@ export function resolveTuiTheme(theme: TuiThemeJson, mode: ThemeMode): ResolvedT
154
153
  thinkingOpacity: theme.theme.thinkingOpacity ?? 0.6,
155
154
  }
156
155
  }
156
+
157
+ // -----------------------------------------------------------------------------
158
+ // Claude Code custom theme bridge (beta).
159
+ // Maps an aimux ResolvedTuiTheme to the JSON shape expected by Claude Code
160
+ // at ~/.claude/themes/<slug>.json. Spec: https://code.claude.com/docs/en/terminal-config#create-a-custom-theme
161
+ // -----------------------------------------------------------------------------
162
+
163
+ export interface ClaudeThemeFile {
164
+ name: string
165
+ base: 'dark' | 'light'
166
+ overrides: Record<string, string>
167
+ }
168
+
169
+ /**
170
+ * Build a Claude Code custom-theme JSON from a resolved aimux theme.
171
+ * `mode` selects the `base` preset Claude falls through to for tokens we
172
+ * don't override (Shimmer variants, dim diffs, subagent colors).
173
+ */
174
+ export function resolveClaudeTheme(
175
+ resolved: ResolvedTuiTheme,
176
+ mode: ThemeMode,
177
+ name = 'aimux (synced)'
178
+ ): ClaudeThemeFile {
179
+ const overrides: Record<string, string> = {
180
+ autoAccept: resolved.success,
181
+ bashBorder: resolved.warning,
182
+ claude: resolved.accent,
183
+ diffAdded: resolved.diffAddedBg,
184
+ diffAddedWord: resolved.diffAdded,
185
+ diffRemoved: resolved.diffRemovedBg,
186
+ diffRemovedWord: resolved.diffRemoved,
187
+ error: resolved.error,
188
+ fastMode: resolved.accent,
189
+ ide: resolved.info,
190
+ inactive: resolved.textMuted,
191
+ inverseText: resolved.background,
192
+ merged: resolved.success,
193
+ permission: resolved.borderActive,
194
+ planMode: resolved.info,
195
+ promptBorder: resolved.border,
196
+ remember: resolved.info,
197
+ selectionBg: resolved.borderActive,
198
+ subtle: resolved.borderSubtle,
199
+ success: resolved.success,
200
+ text: resolved.text,
201
+ userMessageBackground: resolved.backgroundPanel,
202
+ warning: resolved.warning,
203
+ }
204
+
205
+ return { base: mode, name, overrides }
206
+ }
@@ -18,10 +18,10 @@
18
18
  "darkInfo": "#7cb3ff",
19
19
  "darkDiffAdd": "#a6e3a1",
20
20
  "darkDiffRemove": "#f38ba8",
21
- "darkDiffAddBg": "#1e3d2b",
22
- "darkDiffRemoveBg": "#3b1e27",
21
+ "darkDiffAddBg": "#19422a",
22
+ "darkDiffRemoveBg": "#3f1a25",
23
23
  "darkDiffContext": "#5c6a7a",
24
- "darkDiffContextBg": "#1a2029",
24
+ "darkDiffContextBg": "#18202b",
25
25
  "darkDiffHunkHeader": "#7cb3ff",
26
26
  "darkDiffLineNumber": "#5c6a7a",
27
27
 
@@ -42,10 +42,10 @@
42
42
  "lightInfo": "#2e6cc1",
43
43
  "lightDiffAdd": "#2e9a83",
44
44
  "lightDiffRemove": "#c43b58",
45
- "lightDiffAddBg": "#d4ebd9",
46
- "lightDiffRemoveBg": "#f0d6dc",
45
+ "lightDiffAddBg": "#d1eed7",
46
+ "lightDiffRemoveBg": "#f4d2da",
47
47
  "lightDiffContext": "#8a97a9",
48
- "lightDiffContextBg": "#eef2f7",
48
+ "lightDiffContextBg": "#edf2f8",
49
49
  "lightDiffHunkHeader": "#2e6cc1",
50
50
  "lightDiffLineNumber": "#8a97a9"
51
51
  },
@@ -36,12 +36,12 @@
36
36
  "diffHunkHeader": "darkFgMuted",
37
37
  "diffHighlightAdded": "cyan",
38
38
  "diffHighlightRemoved": "red",
39
- "diffAddedBg": "#354933",
40
- "diffRemovedBg": "#3f191a",
41
- "diffContextBg": "darkBgPanel",
39
+ "diffAddedBg": "#324c30",
40
+ "diffRemovedBg": "#451315",
41
+ "diffContextBg": "#14131c",
42
42
  "diffLineNumber": "#898989",
43
- "diffAddedLineNumberBg": "#162620",
44
- "diffRemovedLineNumberBg": "#26161a",
43
+ "diffAddedLineNumberBg": "#142821",
44
+ "diffRemovedLineNumberBg": "#281419",
45
45
  "markdownText": "darkFg",
46
46
  "markdownHeading": "purple",
47
47
  "markdownLink": "pink",
@@ -47,12 +47,12 @@
47
47
  "diffHunkHeader": "darkComment",
48
48
  "diffHighlightAdded": "darkString",
49
49
  "diffHighlightRemoved": "darkMarkup",
50
- "diffAddedBg": "#20303b",
51
- "diffRemovedBg": "#37222c",
52
- "diffContextBg": "darkPanel",
50
+ "diffAddedBg": "#1c313f",
51
+ "diffRemovedBg": "#3a1f2c",
52
+ "diffContextBg": "#0d131c",
53
53
  "diffLineNumber": "diffContext",
54
- "diffAddedLineNumberBg": "#1b2b34",
55
- "diffRemovedLineNumberBg": "#2d1f26",
54
+ "diffAddedLineNumberBg": "#172c38",
55
+ "diffRemovedLineNumberBg": "#2f1d26",
56
56
  "markdownText": "darkFg",
57
57
  "markdownHeading": "darkConstant",
58
58
  "markdownLink": "darkEntity",
@@ -40,8 +40,8 @@
40
40
  "warning": "#f1c21b",
41
41
  "diffGreen": "#50fa7b",
42
42
  "diffRed": "#ff6b6b",
43
- "diffGreenBg": "#0f2418",
44
- "diffRedBg": "#2a1216"
43
+ "diffGreenBg": "#0c2718",
44
+ "diffRedBg": "#2e0e14"
45
45
  },
46
46
  "theme": {
47
47
  "primary": {
@@ -130,15 +130,15 @@
130
130
  },
131
131
  "diffAddedBg": {
132
132
  "dark": "diffGreenBg",
133
- "light": "#defbe6"
133
+ "light": "#daffe4"
134
134
  },
135
135
  "diffRemovedBg": {
136
136
  "dark": "diffRedBg",
137
137
  "light": "#fff1f1"
138
138
  },
139
139
  "diffContextBg": {
140
- "dark": "bg1",
141
- "light": "lbg1"
140
+ "dark": "#161616",
141
+ "light": "#f4f4f4"
142
142
  },
143
143
  "diffLineNumber": {
144
144
  "dark": "#808792",
@@ -146,7 +146,7 @@
146
146
  },
147
147
  "diffAddedLineNumberBg": {
148
148
  "dark": "diffGreenBg",
149
- "light": "#defbe6"
149
+ "light": "#daffe4"
150
150
  },
151
151
  "diffRemovedLineNumberBg": {
152
152
  "dark": "diffRedBg",
@@ -114,25 +114,25 @@
114
114
  "light": "frappeRed"
115
115
  },
116
116
  "diffAddedBg": {
117
- "dark": "#29342b",
118
- "light": "#29342b"
117
+ "dark": "#27362a",
118
+ "light": "#27362a"
119
119
  },
120
120
  "diffRemovedBg": {
121
- "dark": "#3a2a31",
122
- "light": "#3a2a31"
121
+ "dark": "#3c2831",
122
+ "light": "#3c2831"
123
123
  },
124
124
  "diffContextBg": {
125
- "dark": "frappeMantle",
126
- "light": "frappeMantle"
125
+ "dark": "#262a3f",
126
+ "light": "#262a3f"
127
127
  },
128
128
  "diffLineNumber": "textMuted",
129
129
  "diffAddedLineNumberBg": {
130
- "dark": "#223025",
131
- "light": "#223025"
130
+ "dark": "#203224",
131
+ "light": "#203224"
132
132
  },
133
133
  "diffRemovedLineNumberBg": {
134
- "dark": "#2f242b",
135
- "light": "#2f242b"
134
+ "dark": "#31222b",
135
+ "light": "#31222b"
136
136
  },
137
137
  "markdownText": {
138
138
  "dark": "frappeText",
@@ -114,25 +114,25 @@
114
114
  "light": "macRed"
115
115
  },
116
116
  "diffAddedBg": {
117
- "dark": "#29342b",
118
- "light": "#29342b"
117
+ "dark": "#27362a",
118
+ "light": "#27362a"
119
119
  },
120
120
  "diffRemovedBg": {
121
- "dark": "#3a2a31",
122
- "light": "#3a2a31"
121
+ "dark": "#3c2831",
122
+ "light": "#3c2831"
123
123
  },
124
124
  "diffContextBg": {
125
- "dark": "macMantle",
126
- "light": "macMantle"
125
+ "dark": "#1b1e33",
126
+ "light": "#1b1e33"
127
127
  },
128
128
  "diffLineNumber": "textMuted",
129
129
  "diffAddedLineNumberBg": {
130
- "dark": "#223025",
131
- "light": "#223025"
130
+ "dark": "#203224",
131
+ "light": "#203224"
132
132
  },
133
133
  "diffRemovedLineNumberBg": {
134
- "dark": "#2f242b",
135
- "light": "#2f242b"
134
+ "dark": "#31222b",
135
+ "light": "#31222b"
136
136
  },
137
137
  "markdownText": {
138
138
  "dark": "macText",
@@ -76,12 +76,12 @@
76
76
  "diffHunkHeader": { "dark": "darkPeach", "light": "lightPeach" },
77
77
  "diffHighlightAdded": { "dark": "darkGreen", "light": "lightGreen" },
78
78
  "diffHighlightRemoved": { "dark": "darkRed", "light": "lightRed" },
79
- "diffAddedBg": { "dark": "#24312b", "light": "#d6f0d9" },
80
- "diffRemovedBg": { "dark": "#3c2a32", "light": "#f6dfe2" },
81
- "diffContextBg": { "dark": "darkMantle", "light": "lightMantle" },
79
+ "diffAddedBg": { "dark": "#22332b", "light": "#d2f4d6" },
80
+ "diffRemovedBg": { "dark": "#3f2732", "light": "#f9dcdf" },
81
+ "diffContextBg": { "dark": "#161627", "light": "#e5e9f0" },
82
82
  "diffLineNumber": { "dark": "textMuted", "light": "#5b5d63" },
83
- "diffAddedLineNumberBg": { "dark": "#1e2a25", "light": "#c9e3cb" },
84
- "diffRemovedLineNumberBg": { "dark": "#32232a", "light": "#e9d3d6" },
83
+ "diffAddedLineNumberBg": { "dark": "#1c2c25", "light": "#c5e7c8" },
84
+ "diffRemovedLineNumberBg": { "dark": "#34212a", "light": "#ecd0d4" },
85
85
  "markdownText": { "dark": "darkText", "light": "lightText" },
86
86
  "markdownHeading": { "dark": "darkMauve", "light": "lightMauve" },
87
87
  "markdownLink": { "dark": "darkBlue", "light": "lightBlue" },
@@ -109,24 +109,24 @@
109
109
  "light": "#e91e63"
110
110
  },
111
111
  "diffAddedBg": {
112
- "dark": "#1a3a2a",
113
- "light": "#e8f5e9"
112
+ "dark": "#153f2a",
113
+ "light": "#e6f7e7"
114
114
  },
115
115
  "diffRemovedBg": {
116
- "dark": "#3a1a2a",
116
+ "dark": "#3f152a",
117
117
  "light": "#ffebee"
118
118
  },
119
119
  "diffContextBg": {
120
- "dark": "#122738",
121
- "light": "#f5f7fa"
120
+ "dark": "#0c283e",
121
+ "light": "#f4f7fb"
122
122
  },
123
123
  "diffLineNumber": "textMuted",
124
124
  "diffAddedLineNumberBg": {
125
- "dark": "#1a3a2a",
126
- "light": "#e8f5e9"
125
+ "dark": "#153f2a",
126
+ "light": "#e6f7e7"
127
127
  },
128
128
  "diffRemovedLineNumberBg": {
129
- "dark": "#3a1a2a",
129
+ "dark": "#3f152a",
130
130
  "light": "#ffebee"
131
131
  },
132
132
  "markdownText": {
@@ -130,28 +130,28 @@
130
130
  "light": "lightRedBright"
131
131
  },
132
132
  "diffAddedBg": {
133
- "dark": "#3fa26633",
134
- "light": "#1f8a651f"
133
+ "dark": "#30b16333",
134
+ "light": "#0f9a6a1f"
135
135
  },
136
136
  "diffRemovedBg": {
137
137
  "dark": "#b8004933",
138
- "light": "#cf2d5614"
138
+ "light": "#e7154a14"
139
139
  },
140
140
  "diffContextBg": {
141
- "dark": "darkPanel",
142
- "light": "lightPanel"
141
+ "dark": "#141414",
142
+ "light": "#f3f3f3"
143
143
  },
144
144
  "diffLineNumber": {
145
145
  "dark": "#eeeeee87",
146
146
  "light": "textMuted"
147
147
  },
148
148
  "diffAddedLineNumberBg": {
149
- "dark": "#3fa26633",
150
- "light": "#1f8a651f"
149
+ "dark": "#30b16333",
150
+ "light": "#0f9a6a1f"
151
151
  },
152
152
  "diffRemovedLineNumberBg": {
153
153
  "dark": "#b8004933",
154
- "light": "#cf2d5614"
154
+ "light": "#e7154a14"
155
155
  },
156
156
  "markdownText": {
157
157
  "dark": "darkFg",
@@ -100,27 +100,27 @@
100
100
  "light": "red"
101
101
  },
102
102
  "diffAddedBg": {
103
- "dark": "#1a3a1a",
103
+ "dark": "#153f15",
104
104
  "light": "#e0ffe0"
105
105
  },
106
106
  "diffRemovedBg": {
107
- "dark": "#3a1a1a",
107
+ "dark": "#3f1515",
108
108
  "light": "#ffe0e0"
109
109
  },
110
110
  "diffContextBg": {
111
- "dark": "#21222c",
112
- "light": "#e8e8e2"
111
+ "dark": "#1f212e",
112
+ "light": "#e9e9e1"
113
113
  },
114
114
  "diffLineNumber": {
115
115
  "dark": "#989aa4",
116
116
  "light": "#686865"
117
117
  },
118
118
  "diffAddedLineNumberBg": {
119
- "dark": "#1a3a1a",
119
+ "dark": "#153f15",
120
120
  "light": "#e0ffe0"
121
121
  },
122
122
  "diffRemovedLineNumberBg": {
123
- "dark": "#3a1a1a",
123
+ "dark": "#3f1515",
124
124
  "light": "#ffe0e0"
125
125
  },
126
126
  "markdownText": {
@@ -122,28 +122,28 @@
122
122
  "light": "#f52a65"
123
123
  },
124
124
  "diffAddedBg": {
125
- "dark": "#20303b",
126
- "light": "#d5e5d5"
125
+ "dark": "#1c313f",
126
+ "light": "#d3e7d3"
127
127
  },
128
128
  "diffRemovedBg": {
129
- "dark": "#37222c",
130
- "light": "#f7d8db"
129
+ "dark": "#3a1f2c",
130
+ "light": "#fcd3d7"
131
131
  },
132
132
  "diffContextBg": {
133
- "dark": "darkStep2",
134
- "light": "lightStep2"
133
+ "dark": "#313c45",
134
+ "light": "#f3eed0"
135
135
  },
136
136
  "diffLineNumber": {
137
137
  "dark": "#a0a5a7",
138
138
  "light": "#5b5951"
139
139
  },
140
140
  "diffAddedLineNumberBg": {
141
- "dark": "#1b2b34",
142
- "light": "#c5d5c5"
141
+ "dark": "#172c38",
142
+ "light": "#c3d7c3"
143
143
  },
144
144
  "diffRemovedLineNumberBg": {
145
- "dark": "#2d1f26",
146
- "light": "#e7c8cb"
145
+ "dark": "#2f1d26",
146
+ "light": "#ecc3c7"
147
147
  },
148
148
  "markdownText": {
149
149
  "dark": "darkStep12",
@@ -118,28 +118,28 @@
118
118
  "light": "red600"
119
119
  },
120
120
  "diffAddedBg": {
121
- "dark": "#1A2D1A",
122
- "light": "#D5E5D5"
121
+ "dark": "#173017",
122
+ "light": "#d3e7d3"
123
123
  },
124
124
  "diffRemovedBg": {
125
- "dark": "#2D1A1A",
126
- "light": "#F7D8DB"
125
+ "dark": "#301717",
126
+ "light": "#fcd3d7"
127
127
  },
128
128
  "diffContextBg": {
129
- "dark": "base950",
130
- "light": "base50"
129
+ "dark": "#1c1b1a",
130
+ "light": "#f4f1e3"
131
131
  },
132
132
  "diffLineNumber": {
133
133
  "dark": "#888883",
134
134
  "light": "#5a5955"
135
135
  },
136
136
  "diffAddedLineNumberBg": {
137
- "dark": "#152515",
138
- "light": "#C5D5C5"
137
+ "dark": "#132713",
138
+ "light": "#c3d7c3"
139
139
  },
140
140
  "diffRemovedLineNumberBg": {
141
- "dark": "#251515",
142
- "light": "#E7C8CB"
141
+ "dark": "#271313",
142
+ "light": "#ecc3c7"
143
143
  },
144
144
  "markdownText": {
145
145
  "dark": "base200",
@@ -114,27 +114,27 @@
114
114
  "light": "#cf222e"
115
115
  },
116
116
  "diffAddedBg": {
117
- "dark": "#033a16",
118
- "light": "#dafbe1"
117
+ "dark": "#003d15",
118
+ "light": "#d6ffdf"
119
119
  },
120
120
  "diffRemovedBg": {
121
- "dark": "#67060c",
121
+ "dark": "#6d0007",
122
122
  "light": "#ffebe9"
123
123
  },
124
124
  "diffContextBg": {
125
- "dark": "darkBgAlt",
126
- "light": "lightBgAlt"
125
+ "dark": "#00040a",
126
+ "light": "#f5f8fb"
127
127
  },
128
128
  "diffLineNumber": {
129
129
  "dark": "#95999e",
130
130
  "light": "textMuted"
131
131
  },
132
132
  "diffAddedLineNumberBg": {
133
- "dark": "#033a16",
134
- "light": "#dafbe1"
133
+ "dark": "#003d15",
134
+ "light": "#d6ffdf"
135
135
  },
136
136
  "diffRemovedLineNumberBg": {
137
- "dark": "#67060c",
137
+ "dark": "#6d0007",
138
138
  "light": "#ffebe9"
139
139
  },
140
140
  "markdownText": {
@@ -124,15 +124,15 @@
124
124
  },
125
125
  "diffAddedBg": {
126
126
  "dark": "#32302f",
127
- "light": "#dcd8a4"
127
+ "light": "#e4df9c"
128
128
  },
129
129
  "diffRemovedBg": {
130
- "dark": "#322929",
131
- "light": "#e2c7c3"
130
+ "dark": "#332828",
131
+ "light": "#e7c4be"
132
132
  },
133
133
  "diffContextBg": {
134
- "dark": "darkBg1",
135
- "light": "lightBg1"
134
+ "dark": "#3d3835",
135
+ "light": "#f4dfa9"
136
136
  },
137
137
  "diffLineNumber": {
138
138
  "dark": "#a8a29e",
@@ -140,11 +140,11 @@
140
140
  },
141
141
  "diffAddedLineNumberBg": {
142
142
  "dark": "#2a2827",
143
- "light": "#cec99e"
143
+ "light": "#d5cf97"
144
144
  },
145
145
  "diffRemovedLineNumberBg": {
146
- "dark": "#2a2222",
147
- "light": "#d3bdb9"
146
+ "dark": "#2b2121",
147
+ "light": "#d7bab5"
148
148
  },
149
149
  "markdownText": {
150
150
  "dark": "darkFg1",
@@ -44,12 +44,12 @@
44
44
  "diffHunkHeader": { "dark": "waveBlue", "light": "waveBlue" },
45
45
  "diffHighlightAdded": { "dark": "#A9D977", "light": "#89AF5B" },
46
46
  "diffHighlightRemoved": { "dark": "#F24A4A", "light": "#D61F1F" },
47
- "diffAddedBg": { "dark": "#252E25", "light": "#EAF3E4" },
48
- "diffRemovedBg": { "dark": "#362020", "light": "#FBE6E6" },
49
- "diffContextBg": { "dark": "sumiInk1", "light": "lightPaper" },
47
+ "diffAddedBg": { "dark": "#242f24", "light": "#eaf5e2" },
48
+ "diffRemovedBg": { "dark": "#391d1d", "light": "#fee3e3" },
49
+ "diffContextBg": { "dark": "#282839", "light": "#ede5d4" },
50
50
  "diffLineNumber": { "dark": "#9090a0", "light": "#65615c" },
51
- "diffAddedLineNumberBg": { "dark": "#202820", "light": "#DDE8D6" },
52
- "diffRemovedLineNumberBg": { "dark": "#2D1C1C", "light": "#F2DADA" },
51
+ "diffAddedLineNumberBg": { "dark": "#1f291f", "light": "#dcebd3" },
52
+ "diffRemovedLineNumberBg": { "dark": "#301919", "light": "#f6d6d6" },
53
53
  "markdownText": { "dark": "fujiWhite", "light": "lightText" },
54
54
  "markdownHeading": { "dark": "oniViolet", "light": "oniViolet" },
55
55
  "markdownLink": { "dark": "crystalBlue", "light": "waveBlue" },