@evitcastudio/kit 3.3.1 → 3.3.2

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.
@@ -0,0 +1,41 @@
1
+ import chalk from 'chalk';
2
+ /**
3
+ * Modern high-contrast CLI theme system.
4
+ * Built around emerald green (#10B981 / #059669 family) with crisp slate neutrals
5
+ * and vivid semantic accents for readability on dark and light terminal backgrounds.
6
+ */
7
+ export const theme = {
8
+ // Brand - Emerald palette
9
+ brand: chalk.hex('#10B981'),
10
+ brandBold: chalk.bold.hex('#10B981'),
11
+ brandLight: chalk.hex('#34D399'),
12
+ brandMuted: chalk.hex('#059669'),
13
+ accent: chalk.bold.hex('#2DD4BF'), // teal/mint highlight
14
+ // Semantic status colors (luminous, high contrast, zero muddiness)
15
+ success: chalk.bold.hex('#10B981'),
16
+ successIcon: chalk.bold.hex('#34D399'),
17
+ warning: chalk.bold.hex('#FBBF24'), // warm amber
18
+ warningMuted: chalk.hex('#FCD34D'),
19
+ error: chalk.bold.hex('#F43F5E'), // vibrant rose/coral
20
+ errorText: chalk.hex('#FB7185'),
21
+ info: chalk.hex('#38BDF8'), // sky blue for build times & stats
22
+ infoBold: chalk.bold.hex('#38BDF8'),
23
+ alert: chalk.bold.hex('#FBBF24'),
24
+ // High-contrast neutrals (replaces muddy ANSI dim)
25
+ title: chalk.bold.white,
26
+ text: chalk.hex('#F1F5F9'), // Slate 100 - clear, crisp primary text
27
+ secondary: chalk.hex('#94A3B8'), // Slate 400 - clean, readable secondary details
28
+ muted: chalk.hex('#64748B'), // Slate 500 - separators, subtle notes
29
+ highlight: chalk.bold.hex('#F8FAFC'), // White bold highlight
30
+ url: chalk.bold.hex('#38BDF8').underline,
31
+ // Structural elements
32
+ bracket: chalk.hex('#64748B'),
33
+ divider: chalk.hex('#334155'),
34
+ bullet: chalk.hex('#10B981')('›'),
35
+ stepNumber: chalk.bold.hex('#10B981'),
36
+ // Legacy neutral aliases for backward compatibility
37
+ white: chalk.white,
38
+ whiteBold: chalk.white.bold,
39
+ dim: chalk.hex('#94A3B8'),
40
+ gray: chalk.hex('#94A3B8'),
41
+ };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@evitcastudio/kit",
3
- "version": "3.3.1",
3
+ "version": "3.3.2",
4
4
  "author": "doubleactii 56242467+doubleactii@users.noreply.github.com (https://evitcastudio.com)",
5
5
  "main": "./lib/index.js",
6
6
  "types": "./lib/index.d.ts",