@ikie-dev/cli 9.8.5 → 9.8.7

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 (47) hide show
  1. package/package.json +2 -1
  2. package/scripts/prepublish-npm.js +76 -0
  3. package/src/core/export-html/ansi-to-html.js +249 -0
  4. package/src/core/export-html/index.js +226 -0
  5. package/src/core/export-html/template.css +1066 -0
  6. package/src/core/export-html/template.html +66 -0
  7. package/src/core/export-html/template.js +1864 -0
  8. package/src/core/export-html/tool-renderer.js +108 -0
  9. package/src/core/export-html/vendor/highlight.min.js +1213 -0
  10. package/src/core/export-html/vendor/marked.min.js +6 -0
  11. package/src/entry.ts +13 -2
  12. package/src/modes/interactive/theme/catppuccin-macchiato.json +82 -0
  13. package/src/modes/interactive/theme/dark.json +87 -0
  14. package/src/modes/interactive/theme/dracula.json +79 -0
  15. package/src/modes/interactive/theme/github-dark.json +80 -0
  16. package/src/modes/interactive/theme/github-light.json +80 -0
  17. package/src/modes/interactive/theme/ikie-light.json +92 -0
  18. package/src/modes/interactive/theme/ikie-minimal.json +79 -0
  19. package/src/modes/interactive/theme/ikie.json +96 -0
  20. package/src/modes/interactive/theme/light.json +86 -0
  21. package/src/modes/interactive/theme/lucent-orng.json +79 -0
  22. package/src/modes/interactive/theme/monokai.json +78 -0
  23. package/src/modes/interactive/theme/neon.json +87 -0
  24. package/src/modes/interactive/theme/night-owl.json +87 -0
  25. package/src/modes/interactive/theme/nord.json +82 -0
  26. package/src/modes/interactive/theme/one-dark.json +79 -0
  27. package/src/modes/interactive/theme/solarized-dark.json +81 -0
  28. package/src/modes/interactive/theme/solarized-light.json +81 -0
  29. package/src/modes/interactive/theme/theme-schema.json +335 -0
  30. package/theme/catppuccin-macchiato.json +82 -0
  31. package/theme/dark.json +87 -0
  32. package/theme/dracula.json +79 -0
  33. package/theme/github-dark.json +80 -0
  34. package/theme/github-light.json +80 -0
  35. package/theme/ikie-light.json +92 -0
  36. package/theme/ikie-minimal.json +79 -0
  37. package/theme/ikie.json +96 -0
  38. package/theme/light.json +86 -0
  39. package/theme/lucent-orng.json +79 -0
  40. package/theme/monokai.json +78 -0
  41. package/theme/neon.json +87 -0
  42. package/theme/night-owl.json +87 -0
  43. package/theme/nord.json +82 -0
  44. package/theme/one-dark.json +79 -0
  45. package/theme/solarized-dark.json +81 -0
  46. package/theme/solarized-light.json +81 -0
  47. package/theme/theme-schema.json +335 -0
@@ -0,0 +1,79 @@
1
+ {
2
+ "name": "lucent-orng",
3
+ "vars": {
4
+ "bg-primary": "#2a1a15",
5
+ "bg-secondary": "#341f18",
6
+ "bg-tertiary": "#3e2a20",
7
+ "fg-primary": "#eeeeee",
8
+ "accent-orange": "#EC5B2B",
9
+ "accent-orange-light": "#EE7948",
10
+ "accent-blue": "#6ba1e6",
11
+ "accent-cyan": "#56b6c2",
12
+ "accent-red": "#e06c75",
13
+ "accent-yellow": "#e5c07b",
14
+ "accent-white": "#FFF7F1",
15
+ "muted-grey": "#808080",
16
+ "muted-dark": "#442e24"
17
+ },
18
+ "colors": {
19
+ "text": "fg-primary",
20
+ "textBg": "bg-primary",
21
+ "accent": "accent-orange",
22
+ "success": "accent-blue",
23
+ "error": "accent-red",
24
+ "warning": "accent-orange",
25
+ "dim": "muted-grey",
26
+ "muted": "muted-grey",
27
+ "border": "muted-dark",
28
+ "borderAccent": "accent-orange",
29
+ "borderMuted": "muted-grey",
30
+ "selectedBg": "bg-tertiary",
31
+ "userMessageBg": "bg-tertiary",
32
+ "userMessageText": "fg-primary",
33
+ "customMessageBg": "bg-secondary",
34
+ "customMessageText": "fg-primary",
35
+ "customMessageLabel": "accent-orange",
36
+ "toolPendingBg": "bg-tertiary",
37
+ "toolSuccessBg": "bg-tertiary",
38
+ "toolErrorBg": "bg-primary",
39
+ "toolTitle": "fg-primary",
40
+ "toolOutput": "fg-primary",
41
+ "mdHeading": "accent-orange",
42
+ "mdLink": "accent-orange",
43
+ "mdLinkUrl": "accent-cyan",
44
+ "mdCode": "accent-blue",
45
+ "mdCodeBlock": "fg-primary",
46
+ "mdCodeBlockBorder": "muted-dark",
47
+ "mdQuote": "accent-white",
48
+ "mdQuoteBorder": "muted-grey",
49
+ "mdHr": "muted-grey",
50
+ "mdListBullet": "accent-orange",
51
+ "toolDiffAdded": "accent-blue",
52
+ "toolDiffRemoved": "accent-red",
53
+ "toolDiffContext": "muted-grey",
54
+ "syntaxComment": "muted-grey",
55
+ "syntaxKeyword": "accent-orange",
56
+ "syntaxFunction": "accent-orange-light",
57
+ "syntaxVariable": "accent-red",
58
+ "syntaxString": "accent-blue",
59
+ "syntaxNumber": "accent-orange-light",
60
+ "syntaxType": "accent-yellow",
61
+ "syntaxOperator": "accent-cyan",
62
+ "syntaxPunctuation": "fg-primary",
63
+ "thinkingOff": "muted-dark",
64
+ "thinkingMinimal": "muted-grey",
65
+ "thinkingLow": "accent-orange",
66
+ "thinkingMedium": "accent-orange-light",
67
+ "thinkingHigh": "accent-cyan",
68
+ "thinkingXhigh": "accent-yellow",
69
+ "thinkingText": "fg-primary",
70
+ "bashMode": "accent-orange",
71
+ "oscFg": "fg-primary",
72
+ "oscBg": "bg-primary"
73
+ },
74
+ "export": {
75
+ "pageBg": "#2a1a15",
76
+ "cardBg": "#2e1c17",
77
+ "infoBg": "#341f18"
78
+ }
79
+ }
@@ -0,0 +1,78 @@
1
+ {
2
+ "name": "monokai",
3
+ "vars": {
4
+ "bg-primary": "#272822",
5
+ "bg-secondary": "#2e2f27",
6
+ "bg-tertiary": "#3e3d32",
7
+ "fg-primary": "#f8f8f2",
8
+ "accent-purple": "#ae81ff",
9
+ "accent-pink": "#f92672",
10
+ "accent-green": "#a6e22e",
11
+ "accent-orange": "#fd971f",
12
+ "accent-yellow": "#e6db74",
13
+ "accent-cyan": "#66d9ef",
14
+ "muted-grey": "#75715e",
15
+ "muted-dark": "#3e3d32"
16
+ },
17
+ "colors": {
18
+ "text": "fg-primary",
19
+ "textBg": "bg-primary",
20
+ "accent": "accent-purple",
21
+ "success": "accent-green",
22
+ "error": "accent-pink",
23
+ "warning": "accent-orange",
24
+ "dim": "muted-grey",
25
+ "muted": "muted-grey",
26
+ "border": "muted-dark",
27
+ "borderAccent": "accent-cyan",
28
+ "borderMuted": "muted-grey",
29
+ "selectedBg": "bg-tertiary",
30
+ "userMessageBg": "bg-tertiary",
31
+ "userMessageText": "fg-primary",
32
+ "customMessageBg": "bg-secondary",
33
+ "customMessageText": "fg-primary",
34
+ "customMessageLabel": "accent-purple",
35
+ "toolPendingBg": "bg-tertiary",
36
+ "toolSuccessBg": "bg-tertiary",
37
+ "toolErrorBg": "bg-primary",
38
+ "toolTitle": "fg-primary",
39
+ "toolOutput": "fg-primary",
40
+ "mdHeading": "accent-yellow",
41
+ "mdLink": "accent-purple",
42
+ "mdLinkUrl": "muted-grey",
43
+ "mdCode": "accent-cyan",
44
+ "mdCodeBlock": "fg-primary",
45
+ "mdCodeBlockBorder": "muted-dark",
46
+ "mdQuote": "fg-primary",
47
+ "mdQuoteBorder": "muted-grey",
48
+ "mdHr": "muted-dark",
49
+ "mdListBullet": "accent-orange",
50
+ "toolDiffAdded": "accent-green",
51
+ "toolDiffRemoved": "accent-pink",
52
+ "toolDiffContext": "muted-grey",
53
+ "syntaxComment": "muted-grey",
54
+ "syntaxKeyword": "accent-pink",
55
+ "syntaxFunction": "accent-green",
56
+ "syntaxVariable": "accent-orange",
57
+ "syntaxString": "accent-yellow",
58
+ "syntaxNumber": "accent-purple",
59
+ "syntaxType": "accent-cyan",
60
+ "syntaxOperator": "accent-pink",
61
+ "syntaxPunctuation": "muted-grey",
62
+ "thinkingOff": "muted-dark",
63
+ "thinkingMinimal": "muted-grey",
64
+ "thinkingLow": "accent-purple",
65
+ "thinkingMedium": "accent-cyan",
66
+ "thinkingHigh": "accent-green",
67
+ "thinkingXhigh": "accent-yellow",
68
+ "thinkingText": "fg-primary",
69
+ "bashMode": "accent-green",
70
+ "oscFg": "fg-primary",
71
+ "oscBg": "bg-primary"
72
+ },
73
+ "export": {
74
+ "pageBg": "#272822",
75
+ "cardBg": "#2b2c25",
76
+ "infoBg": "#2e2f27"
77
+ }
78
+ }
@@ -0,0 +1,87 @@
1
+ {
2
+ "$schema": "https://raw.githubusercontent.com/badlogic/pi-mono/main/packages/coding-agent/src/modes/interactive/theme/theme-schema.json",
3
+ "name": "neon",
4
+ "vars": {
5
+ "neonPink": "#ff5fd7",
6
+ "neonMagenta": "#ff00aa",
7
+ "neonPurple": "#af87ff",
8
+ "neonCyan": "#00f0ff",
9
+ "neonBlue": "#5fafff",
10
+ "neonGreen": "#5fff87",
11
+ "neonRed": "#ff5f87",
12
+ "neonYellow": "#ffd75f",
13
+ "gray": "#8b8ba7",
14
+ "dimGray": "#6c6c8a",
15
+ "darkGray": "#3d3d5c",
16
+ "selectedBg": "#2a1f3d",
17
+ "userMsgBg": "#1a1530",
18
+ "toolPendingBg": "#1f1a35",
19
+ "toolSuccessBg": "#1a2e1f",
20
+ "toolErrorBg": "#3a1a2a",
21
+ "customMsgBg": "#2a1a3a"
22
+ },
23
+ "colors": {
24
+ "accent": "neonPink",
25
+ "border": "neonPurple",
26
+ "borderAccent": "neonCyan",
27
+ "borderMuted": "darkGray",
28
+ "success": "neonGreen",
29
+ "error": "neonRed",
30
+ "warning": "neonYellow",
31
+ "muted": "gray",
32
+ "dim": "dimGray",
33
+ "text": "",
34
+ "thinkingText": "gray",
35
+
36
+ "selectedBg": "selectedBg",
37
+ "userMessageBg": "userMsgBg",
38
+ "userMessageText": "",
39
+ "customMessageBg": "customMsgBg",
40
+ "customMessageText": "",
41
+ "customMessageLabel": "neonPurple",
42
+ "toolPendingBg": "toolPendingBg",
43
+ "toolSuccessBg": "toolSuccessBg",
44
+ "toolErrorBg": "toolErrorBg",
45
+ "toolTitle": "",
46
+ "toolOutput": "gray",
47
+
48
+ "mdHeading": "neonPink",
49
+ "mdLink": "neonCyan",
50
+ "mdLinkUrl": "dimGray",
51
+ "mdCode": "neonPurple",
52
+ "mdCodeBlock": "neonGreen",
53
+ "mdCodeBlockBorder": "darkGray",
54
+ "mdQuote": "gray",
55
+ "mdQuoteBorder": "neonPurple",
56
+ "mdHr": "darkGray",
57
+ "mdListBullet": "neonPink",
58
+
59
+ "toolDiffAdded": "neonGreen",
60
+ "toolDiffRemoved": "neonRed",
61
+ "toolDiffContext": "gray",
62
+
63
+ "syntaxComment": "#6c6c8a",
64
+ "syntaxKeyword": "#ff5fd7",
65
+ "syntaxFunction": "#00f0ff",
66
+ "syntaxVariable": "#af87ff",
67
+ "syntaxString": "#5fff87",
68
+ "syntaxNumber": "#ffd75f",
69
+ "syntaxType": "#5fafff",
70
+ "syntaxOperator": "#ff87d7",
71
+ "syntaxPunctuation": "#c0c0d8",
72
+
73
+ "thinkingOff": "darkGray",
74
+ "thinkingMinimal": "#5d5d7a",
75
+ "thinkingLow": "#5fafff",
76
+ "thinkingMedium": "#af87ff",
77
+ "thinkingHigh": "#ff5fd7",
78
+ "thinkingXhigh": "#ff00aa",
79
+
80
+ "bashMode": "neonGreen"
81
+ },
82
+ "export": {
83
+ "pageBg": "#0f0a1f",
84
+ "cardBg": "#171130",
85
+ "infoBg": "#2a1f3d"
86
+ }
87
+ }
@@ -0,0 +1,87 @@
1
+ {
2
+ "name": "night-owl",
3
+ "vars": {
4
+ "bg-primary": "#011627",
5
+ "bg-secondary": "#0b2942",
6
+ "bg-tertiary": "#234d70",
7
+ "fg-primary": "#d6deeb",
8
+ "fg-secondary": "#0b253a",
9
+ "accent-purple": "#C792EA",
10
+ "accent-blue": "#82AAFF",
11
+ "accent-cyan": "#7fdbca",
12
+ "accent-cyan-bright": "#21c7a8",
13
+ "accent-green": "#22da6e",
14
+ "accent-green-muted": "#9CCC65",
15
+ "accent-yellow": "#FFEB95",
16
+ "accent-yellow-muted": "#c5e478",
17
+ "accent-red": "#EF5350",
18
+ "accent-red-bright": "#ff5874",
19
+ "accent-orange": "#F78C6C",
20
+ "muted-blue": "#5f7e97",
21
+ "muted-blue-dark": "#4b6479",
22
+ "muted-grey": "#637777",
23
+ "teal-code": "#80CBC4",
24
+ "string-amber": "#ecc48d"
25
+ },
26
+ "colors": {
27
+ "text": "fg-primary",
28
+ "textBg": "bg-primary",
29
+ "accent": "accent-purple",
30
+ "success": "accent-green",
31
+ "error": "accent-red",
32
+ "warning": "accent-yellow",
33
+ "dim": "muted-blue",
34
+ "muted": "muted-grey",
35
+ "border": "muted-blue-dark",
36
+ "borderAccent": "accent-blue",
37
+ "borderMuted": "muted-grey",
38
+ "selectedBg": "bg-tertiary",
39
+ "userMessageBg": "bg-tertiary",
40
+ "userMessageText": "fg-primary",
41
+ "customMessageBg": "bg-secondary",
42
+ "customMessageText": "fg-primary",
43
+ "customMessageLabel": "accent-purple",
44
+ "toolPendingBg": "bg-tertiary",
45
+ "toolSuccessBg": "bg-tertiary",
46
+ "toolErrorBg": "bg-primary",
47
+ "toolTitle": "fg-primary",
48
+ "toolOutput": "fg-primary",
49
+ "mdHeading": "accent-blue",
50
+ "mdLink": "accent-purple",
51
+ "mdLinkUrl": "muted-blue",
52
+ "mdCode": "teal-code",
53
+ "mdCodeBlock": "accent-green-muted",
54
+ "mdCodeBlockBorder": "muted-blue-dark",
55
+ "mdQuote": "fg-primary",
56
+ "mdQuoteBorder": "muted-grey",
57
+ "mdHr": "muted-blue-dark",
58
+ "mdListBullet": "accent-orange",
59
+ "toolDiffAdded": "accent-green",
60
+ "toolDiffRemoved": "accent-red",
61
+ "toolDiffContext": "muted-grey",
62
+ "syntaxComment": "muted-blue",
63
+ "syntaxKeyword": "accent-purple",
64
+ "syntaxFunction": "accent-blue",
65
+ "syntaxVariable": "accent-cyan-bright",
66
+ "syntaxString": "string-amber",
67
+ "syntaxNumber": "accent-orange",
68
+ "syntaxType": "accent-cyan",
69
+ "syntaxOperator": "fg-primary",
70
+ "syntaxPunctuation": "muted-grey",
71
+ "thinkingOff": "muted-blue-dark",
72
+ "thinkingMinimal": "muted-grey",
73
+ "thinkingLow": "accent-purple",
74
+ "thinkingMedium": "accent-blue",
75
+ "thinkingHigh": "accent-cyan",
76
+ "thinkingXhigh": "accent-yellow",
77
+ "thinkingText": "fg-primary",
78
+ "bashMode": "accent-green",
79
+ "oscFg": "fg-primary",
80
+ "oscBg": "bg-primary"
81
+ },
82
+ "export": {
83
+ "pageBg": "#011627",
84
+ "cardBg": "#0d1f35",
85
+ "infoBg": "#1a2d42"
86
+ }
87
+ }
@@ -0,0 +1,82 @@
1
+ {
2
+ "name": "nord",
3
+ "vars": {
4
+ "bg-primary": "#2e3440",
5
+ "bg-secondary": "#3b4252",
6
+ "bg-tertiary": "#434c5e",
7
+ "fg-primary": "#e5e9f0",
8
+ "fg-secondary": "#d8dee9",
9
+ "accent-blue": "#5e81ac",
10
+ "accent-blue-light": "#81a1c1",
11
+ "accent-cyan": "#88c0d0",
12
+ "accent-cyan-light": "#8fbcbb",
13
+ "accent-red": "#bf616a",
14
+ "accent-orange": "#d08770",
15
+ "accent-yellow": "#ebcb8b",
16
+ "accent-green": "#a3be8c",
17
+ "accent-purple": "#b48ead",
18
+ "muted-grey": "#616e88",
19
+ "muted-dark": "#4c566a"
20
+ },
21
+ "colors": {
22
+ "text": "fg-primary",
23
+ "textBg": "bg-primary",
24
+ "accent": "accent-cyan",
25
+ "success": "accent-green",
26
+ "error": "accent-red",
27
+ "warning": "accent-yellow",
28
+ "dim": "accent-blue-light",
29
+ "muted": "muted-grey",
30
+ "border": "muted-dark",
31
+ "borderAccent": "accent-cyan",
32
+ "borderMuted": "muted-grey",
33
+ "selectedBg": "bg-tertiary",
34
+ "userMessageBg": "bg-tertiary",
35
+ "userMessageText": "fg-primary",
36
+ "customMessageBg": "bg-secondary",
37
+ "customMessageText": "fg-primary",
38
+ "customMessageLabel": "accent-cyan",
39
+ "toolPendingBg": "bg-tertiary",
40
+ "toolSuccessBg": "bg-tertiary",
41
+ "toolErrorBg": "bg-primary",
42
+ "toolTitle": "fg-primary",
43
+ "toolOutput": "fg-primary",
44
+ "mdHeading": "accent-blue",
45
+ "mdLink": "accent-cyan",
46
+ "mdLinkUrl": "muted-grey",
47
+ "mdCode": "accent-cyan-light",
48
+ "mdCodeBlock": "accent-green",
49
+ "mdCodeBlockBorder": "muted-dark",
50
+ "mdQuote": "fg-secondary",
51
+ "mdQuoteBorder": "muted-grey",
52
+ "mdHr": "muted-dark",
53
+ "mdListBullet": "accent-orange",
54
+ "toolDiffAdded": "accent-green",
55
+ "toolDiffRemoved": "accent-red",
56
+ "toolDiffContext": "muted-grey",
57
+ "syntaxComment": "muted-grey",
58
+ "syntaxKeyword": "accent-blue-light",
59
+ "syntaxFunction": "accent-cyan",
60
+ "syntaxVariable": "accent-orange",
61
+ "syntaxString": "accent-green",
62
+ "syntaxNumber": "accent-cyan-light",
63
+ "syntaxType": "accent-purple",
64
+ "syntaxOperator": "fg-secondary",
65
+ "syntaxPunctuation": "muted-grey",
66
+ "thinkingOff": "muted-dark",
67
+ "thinkingMinimal": "muted-grey",
68
+ "thinkingLow": "accent-purple",
69
+ "thinkingMedium": "accent-blue-light",
70
+ "thinkingHigh": "accent-cyan",
71
+ "thinkingXhigh": "accent-yellow",
72
+ "thinkingText": "fg-primary",
73
+ "bashMode": "accent-green",
74
+ "oscFg": "fg-primary",
75
+ "oscBg": "bg-primary"
76
+ },
77
+ "export": {
78
+ "pageBg": "#2e3440",
79
+ "cardBg": "#343a46",
80
+ "infoBg": "#3b4252"
81
+ }
82
+ }
@@ -0,0 +1,79 @@
1
+ {
2
+ "name": "one-dark",
3
+ "vars": {
4
+ "bg-primary": "#282c34",
5
+ "bg-secondary": "#2c313c",
6
+ "bg-tertiary": "#3a3f4b",
7
+ "fg-primary": "#abb2bf",
8
+ "accent-blue": "#61afef",
9
+ "accent-cyan": "#56b6c2",
10
+ "accent-green": "#98c379",
11
+ "accent-yellow": "#e5c07b",
12
+ "accent-orange": "#d19a66",
13
+ "accent-red": "#e06c75",
14
+ "accent-purple": "#c678dd",
15
+ "muted-grey": "#5c6370",
16
+ "muted-dark": "#3e4452"
17
+ },
18
+ "colors": {
19
+ "text": "fg-primary",
20
+ "textBg": "bg-primary",
21
+ "accent": "accent-purple",
22
+ "success": "accent-green",
23
+ "error": "accent-red",
24
+ "warning": "accent-yellow",
25
+ "dim": "muted-grey",
26
+ "muted": "muted-grey",
27
+ "border": "muted-dark",
28
+ "borderAccent": "accent-blue",
29
+ "borderMuted": "muted-grey",
30
+ "selectedBg": "bg-tertiary",
31
+ "userMessageBg": "bg-tertiary",
32
+ "userMessageText": "fg-primary",
33
+ "customMessageBg": "bg-secondary",
34
+ "customMessageText": "fg-primary",
35
+ "customMessageLabel": "accent-purple",
36
+ "toolPendingBg": "bg-tertiary",
37
+ "toolSuccessBg": "bg-tertiary",
38
+ "toolErrorBg": "bg-primary",
39
+ "toolTitle": "fg-primary",
40
+ "toolOutput": "fg-primary",
41
+ "mdHeading": "accent-purple",
42
+ "mdLink": "accent-blue",
43
+ "mdLinkUrl": "accent-cyan",
44
+ "mdCode": "accent-green",
45
+ "mdCodeBlock": "fg-primary",
46
+ "mdCodeBlockBorder": "muted-dark",
47
+ "mdQuote": "muted-grey",
48
+ "mdQuoteBorder": "muted-grey",
49
+ "mdHr": "muted-dark",
50
+ "mdListBullet": "accent-blue",
51
+ "toolDiffAdded": "accent-green",
52
+ "toolDiffRemoved": "accent-red",
53
+ "toolDiffContext": "muted-grey",
54
+ "syntaxComment": "muted-grey",
55
+ "syntaxKeyword": "accent-purple",
56
+ "syntaxFunction": "accent-blue",
57
+ "syntaxVariable": "accent-red",
58
+ "syntaxString": "accent-green",
59
+ "syntaxNumber": "accent-orange",
60
+ "syntaxType": "accent-yellow",
61
+ "syntaxOperator": "accent-cyan",
62
+ "syntaxPunctuation": "fg-primary",
63
+ "thinkingOff": "muted-dark",
64
+ "thinkingMinimal": "muted-grey",
65
+ "thinkingLow": "accent-purple",
66
+ "thinkingMedium": "accent-blue",
67
+ "thinkingHigh": "accent-cyan",
68
+ "thinkingXhigh": "accent-yellow",
69
+ "thinkingText": "fg-primary",
70
+ "bashMode": "accent-green",
71
+ "oscFg": "fg-primary",
72
+ "oscBg": "bg-primary"
73
+ },
74
+ "export": {
75
+ "pageBg": "#282c34",
76
+ "cardBg": "#2a2f38",
77
+ "infoBg": "#2c313c"
78
+ }
79
+ }
@@ -0,0 +1,81 @@
1
+ {
2
+ "name": "solarized-dark",
3
+ "vars": {
4
+ "bg-primary": "#002b36",
5
+ "bg-secondary": "#073642",
6
+ "bg-tertiary": "#0e4455",
7
+ "fg-primary": "#93a1a1",
8
+ "fg-secondary": "#839496",
9
+ "accent-violet": "#6c71c4",
10
+ "accent-magenta": "#d33682",
11
+ "accent-blue": "#268bd2",
12
+ "accent-cyan": "#2aa198",
13
+ "accent-green": "#859900",
14
+ "accent-yellow": "#b58900",
15
+ "accent-orange": "#cb4b16",
16
+ "accent-red": "#dc322f",
17
+ "muted-grey": "#657b83",
18
+ "muted-dark": "#073642"
19
+ },
20
+ "colors": {
21
+ "text": "fg-primary",
22
+ "textBg": "bg-primary",
23
+ "accent": "accent-blue",
24
+ "success": "accent-green",
25
+ "error": "accent-red",
26
+ "warning": "accent-yellow",
27
+ "dim": "muted-grey",
28
+ "muted": "muted-grey",
29
+ "border": "muted-dark",
30
+ "borderAccent": "accent-blue",
31
+ "borderMuted": "muted-grey",
32
+ "selectedBg": "bg-secondary",
33
+ "userMessageBg": "bg-secondary",
34
+ "userMessageText": "fg-primary",
35
+ "customMessageBg": "bg-tertiary",
36
+ "customMessageText": "fg-primary",
37
+ "customMessageLabel": "accent-cyan",
38
+ "toolPendingBg": "bg-secondary",
39
+ "toolSuccessBg": "bg-tertiary",
40
+ "toolErrorBg": "bg-primary",
41
+ "toolTitle": "fg-primary",
42
+ "toolOutput": "fg-primary",
43
+ "mdHeading": "accent-blue",
44
+ "mdLink": "accent-cyan",
45
+ "mdLinkUrl": "accent-blue",
46
+ "mdCode": "accent-magenta",
47
+ "mdCodeBlock": "fg-primary",
48
+ "mdCodeBlockBorder": "muted-dark",
49
+ "mdQuote": "fg-secondary",
50
+ "mdQuoteBorder": "muted-grey",
51
+ "mdHr": "muted-grey",
52
+ "mdListBullet": "accent-blue",
53
+ "toolDiffAdded": "accent-green",
54
+ "toolDiffRemoved": "accent-red",
55
+ "toolDiffContext": "muted-grey",
56
+ "syntaxComment": "#586e75",
57
+ "syntaxKeyword": "#859900",
58
+ "syntaxFunction": "#268bd2",
59
+ "syntaxVariable": "#cb4b16",
60
+ "syntaxString": "#2aa198",
61
+ "syntaxNumber": "#6c71c4",
62
+ "syntaxType": "#b58900",
63
+ "syntaxOperator": "#d33682",
64
+ "syntaxPunctuation": "#839496",
65
+ "thinkingOff": "muted-dark",
66
+ "thinkingMinimal": "muted-grey",
67
+ "thinkingLow": "accent-blue",
68
+ "thinkingMedium": "accent-cyan",
69
+ "thinkingHigh": "accent-violet",
70
+ "thinkingXhigh": "accent-yellow",
71
+ "thinkingText": "fg-primary",
72
+ "bashMode": "accent-cyan",
73
+ "oscFg": "fg-primary",
74
+ "oscBg": "bg-primary"
75
+ },
76
+ "export": {
77
+ "pageBg": "#002b36",
78
+ "cardBg": "#073642",
79
+ "infoBg": "#0e4455"
80
+ }
81
+ }
@@ -0,0 +1,81 @@
1
+ {
2
+ "name": "solarized-light",
3
+ "vars": {
4
+ "bg-primary": "#fdf6e3",
5
+ "bg-secondary": "#eee8d5",
6
+ "bg-tertiary": "#e0dac8",
7
+ "fg-primary": "#586e75",
8
+ "fg-secondary": "#657b83",
9
+ "accent-violet": "#6c71c4",
10
+ "accent-magenta": "#d33682",
11
+ "accent-blue": "#268bd2",
12
+ "accent-cyan": "#2aa198",
13
+ "accent-green": "#859900",
14
+ "accent-yellow": "#b58900",
15
+ "accent-orange": "#cb4b16",
16
+ "accent-red": "#dc322f",
17
+ "muted-grey": "#657b83",
18
+ "muted-light": "#ccc4b0"
19
+ },
20
+ "colors": {
21
+ "text": "fg-primary",
22
+ "textBg": "bg-primary",
23
+ "accent": "accent-blue",
24
+ "success": "accent-green",
25
+ "error": "accent-red",
26
+ "warning": "accent-yellow",
27
+ "dim": "muted-grey",
28
+ "muted": "muted-grey",
29
+ "border": "muted-light",
30
+ "borderAccent": "accent-blue",
31
+ "borderMuted": "muted-light",
32
+ "selectedBg": "bg-secondary",
33
+ "userMessageBg": "bg-secondary",
34
+ "userMessageText": "fg-primary",
35
+ "customMessageBg": "bg-tertiary",
36
+ "customMessageText": "fg-primary",
37
+ "customMessageLabel": "accent-cyan",
38
+ "toolPendingBg": "bg-secondary",
39
+ "toolSuccessBg": "bg-secondary",
40
+ "toolErrorBg": "bg-primary",
41
+ "toolTitle": "fg-primary",
42
+ "toolOutput": "fg-primary",
43
+ "mdHeading": "accent-blue",
44
+ "mdLink": "accent-cyan",
45
+ "mdLinkUrl": "accent-blue",
46
+ "mdCode": "accent-magenta",
47
+ "mdCodeBlock": "fg-primary",
48
+ "mdCodeBlockBorder": "muted-light",
49
+ "mdQuote": "fg-secondary",
50
+ "mdQuoteBorder": "muted-light",
51
+ "mdHr": "muted-light",
52
+ "mdListBullet": "accent-blue",
53
+ "toolDiffAdded": "accent-green",
54
+ "toolDiffRemoved": "accent-red",
55
+ "toolDiffContext": "muted-grey",
56
+ "syntaxComment": "#93a1a1",
57
+ "syntaxKeyword": "#859900",
58
+ "syntaxFunction": "#268bd2",
59
+ "syntaxVariable": "#cb4b16",
60
+ "syntaxString": "#2aa198",
61
+ "syntaxNumber": "#6c71c4",
62
+ "syntaxType": "#b58900",
63
+ "syntaxOperator": "#d33682",
64
+ "syntaxPunctuation": "#586e75",
65
+ "thinkingOff": "muted-light",
66
+ "thinkingMinimal": "muted-grey",
67
+ "thinkingLow": "accent-blue",
68
+ "thinkingMedium": "accent-cyan",
69
+ "thinkingHigh": "accent-violet",
70
+ "thinkingXhigh": "accent-yellow",
71
+ "thinkingText": "fg-primary",
72
+ "bashMode": "accent-cyan",
73
+ "oscFg": "fg-primary",
74
+ "oscBg": "bg-primary"
75
+ },
76
+ "export": {
77
+ "pageBg": "#fdf6e3",
78
+ "cardBg": "#eee8d5",
79
+ "infoBg": "#e0dac8"
80
+ }
81
+ }