klyro 0.1.32 → 0.1.34

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.
@@ -6,31 +6,31 @@
6
6
  export declare const tokens: {
7
7
  readonly colors: {
8
8
  readonly accent: "#E8843C";
9
- readonly fg: "#E6E6E6";
10
- readonly soft: "#B3B3B3";
11
- readonly dim: "#6F6F6F";
9
+ readonly fg: "#FFFFFF";
10
+ readonly soft: "#F5F5F5";
11
+ readonly dim: "#9A9A9A";
12
12
  readonly guide: "#3A3A3A";
13
- readonly ok: "#6BBF6B";
13
+ readonly ok: "#E8843C";
14
14
  readonly err: "#E06C6C";
15
- readonly warn: "#D9A441";
16
- readonly info: "#6FA8DC";
15
+ readonly warn: "#E8843C";
16
+ readonly info: "#FFFFFF";
17
17
  readonly diffAddBg: "#12250F";
18
18
  readonly diffDelBg: "#2A1212";
19
19
  };
20
20
  readonly ansi: {
21
21
  readonly accent: "yellow";
22
22
  readonly accentBold: "yellowBright";
23
- readonly fg: string | undefined;
24
- readonly soft: "white";
23
+ readonly fg: "white";
24
+ readonly soft: "whiteBright";
25
25
  readonly dim: "gray";
26
26
  readonly guide: "gray";
27
- readonly ok: "green";
27
+ readonly ok: "yellow";
28
28
  readonly err: "red";
29
29
  readonly warn: "yellow";
30
- readonly info: "blue";
30
+ readonly info: "white";
31
31
  readonly border: "gray";
32
32
  readonly muted: "gray";
33
- readonly success: "green";
33
+ readonly success: "yellow";
34
34
  readonly error: "red";
35
35
  readonly warning: "yellow";
36
36
  };
@@ -5,33 +5,32 @@
5
5
  */
6
6
  export const tokens = {
7
7
  colors: {
8
- accent: '#E8843C',
9
- fg: '#E6E6E6',
10
- soft: '#B3B3B3',
11
- dim: '#6F6F6F',
12
- guide: '#3A3A3A',
13
- ok: '#6BBF6B',
8
+ accent: '#E8843C', // Orange — wordmark, prompt >, ●, thumb, selected
9
+ fg: '#FFFFFF', // White — user input, headings, file names
10
+ soft: '#F5F5F5', // Soft white — assistant prose
11
+ dim: '#9A9A9A', // Dim white — hints, durations
12
+ guide: '#3A3A3A', // Guide │
13
+ ok: '#E8843C', // Orange for success check (white+orange theme)
14
14
  err: '#E06C6C',
15
- warn: '#D9A441',
16
- info: '#6FA8DC',
15
+ warn: '#E8843C', // Orange for running/spinner
16
+ info: '#FFFFFF',
17
17
  diffAddBg: '#12250F',
18
18
  diffDelBg: '#2A1212',
19
19
  },
20
20
  ansi: {
21
- accent: 'yellow',
21
+ accent: 'yellow', // #E8843C → 209 → yellow
22
22
  accentBold: 'yellowBright',
23
- fg: undefined,
24
- soft: 'white',
25
- dim: 'gray',
23
+ fg: 'white', // #FFFFFF
24
+ soft: 'whiteBright', // #F5F5F5
25
+ dim: 'gray', // #9A9A9A
26
26
  guide: 'gray',
27
- ok: 'green',
27
+ ok: 'yellow', // orange for ✓ in white/orange theme
28
28
  err: 'red',
29
- warn: 'yellow',
30
- info: 'blue',
29
+ warn: 'yellow', // orange
30
+ info: 'white',
31
31
  border: 'gray',
32
- // compat aliases for older components (TUI_DESIGN §24 Don'ts still happy — no boxes)
33
32
  muted: 'gray',
34
- success: 'green',
33
+ success: 'yellow',
35
34
  error: 'red',
36
35
  warning: 'yellow',
37
36
  },
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "klyro",
3
- "version": "0.1.32",
3
+ "version": "0.1.34",
4
4
  "description": "Klyro — autonomous coding harness CLI that streams from any OpenAI-compatible or Anthropic LLM endpoint.",
5
5
  "type": "module",
6
6
  "main": "dist/index.js",