@stackloop/ui 4.0.9 → 4.0.10

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/README.md CHANGED
@@ -47,7 +47,6 @@ If using Tailwind CSS v4 with `@theme`, the library's theme variables are alread
47
47
  @theme {
48
48
  /* Override library colors */
49
49
  --color-primary: #your-color;
50
- --color-primary-dark: #your-darker-color;
51
50
  --color-border: #your-border-color;
52
51
  --color-border-dark: #your-darker-border;
53
52
  --color-secondary: #your-secondary-bg;
@@ -88,7 +87,6 @@ The library uses a simplified color system with semantic variables:
88
87
  | Variable | Default | Description |
89
88
  |----------|---------|-------------|
90
89
  | `--color-primary` | `#525252` | Primary brand color |
91
- | `--color-primary-dark` | `#404040` | Darker primary variant |
92
90
  | `--color-border` | `#e5e5e5` | Default border color |
93
91
  | `--color-border-dark` | `#d4d4d4` | Darker border variant |
94
92
  | `--color-secondary` | `#fafafa` | Secondary background |
@@ -110,7 +108,6 @@ Create a custom theme file or extend the existing one:
110
108
  @theme {
111
109
  /* Brand colors */
112
110
  --color-primary: #3b82f6;
113
- --color-primary-dark: #2563eb;
114
111
 
115
112
  /* Borders */
116
113
  --color-border: #e2e8f0;