create-theokit 1.20.0 → 1.20.1

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "create-theokit",
3
- "version": "1.20.0",
3
+ "version": "1.20.1",
4
4
  "type": "module",
5
5
  "description": "Scaffold a new TheoKit project",
6
6
  "license": "Apache-2.0",
@@ -25,8 +25,15 @@ export const ACCENT = '#d97757'
25
25
  export const THEME: TheoThemeProp = {
26
26
  base: 'dark', // 'dark' · 'light' · 'no-color'
27
27
  override: {
28
- accent: ACCENT,
29
- // role: { assistant: { glyph: '⏺ ' } },
28
+ // Color is reserved for MEANING. The chrome — the assistant `⏺` bullet, the `>` prompt, and the input
29
+ // border stays MONOCHROME (terminal default). Semantic colors (tool states: pending gray · running
30
+ // yellow · success green · failed red; and errors) keep their color. Set `accent: ACCENT` to tint the
31
+ // chrome, or give `role.*.prefix` a color name/hex to tint the bullets.
32
+ accent: '', // the input border (the banner uses ACCENT directly, so it always stays colored)
33
+ role: {
34
+ assistant: { prefix: '' }, // the assistant `⏺` bullet
35
+ user: { prefix: '' }, // the `>` prompt (conversation + input)
36
+ },
30
37
  // toolStatus: { pending: { glyph: '○' }, success: { glyph: '●' }, failed: { glyph: '✗' } },
31
38
  },
32
39
  }