@grantcodes/ui 2.9.0 → 2.9.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/CHANGELOG.md CHANGED
@@ -1,5 +1,13 @@
1
1
  # Changelog
2
2
 
3
+ ## [2.9.1](https://github.com/grantcodes/ui/compare/ui-v2.9.0...ui-v2.9.1) (2026-04-18)
4
+
5
+
6
+ ### Bug Fixes
7
+
8
+ * **ui:** improve hero and button colors across all themes ([523d783](https://github.com/grantcodes/ui/commit/523d78376ee263edd0b3ce08dbca48a71f5c33a7))
9
+ * **ui:** improve hero and button colors across all themes ([04fbe12](https://github.com/grantcodes/ui/commit/04fbe12979678de97771ba811e4a150f5cf46cca))
10
+
3
11
  ## [2.9.0](https://github.com/grantcodes/ui/compare/ui-v2.8.1...ui-v2.9.0) (2026-04-17)
4
12
 
5
13
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@grantcodes/ui",
3
- "version": "2.9.0",
3
+ "version": "2.9.1",
4
4
  "description": "A personal component system built with Lit web components",
5
5
  "type": "module",
6
6
  "main": "src/main.js",
@@ -47,7 +47,7 @@
47
47
  "@lit/react": "^1.0.8",
48
48
  "lit": "^3.3.1",
49
49
  "shiki": "^3.17.1",
50
- "@grantcodes/style-dictionary": "^1.5.0"
50
+ "@grantcodes/style-dictionary": "^1.5.1"
51
51
  },
52
52
  "devDependencies": {
53
53
  "@arcmantle/vite-plugin-import-css-sheet": "^1.0.12",
@@ -15,7 +15,7 @@
15
15
  align-items: center;
16
16
  min-height: 50vh;
17
17
  padding: var(--g-theme-spacing-2xl) var(--g-theme-spacing-md);
18
- background: var(--g-theme-color-background-primary-knockout, #7c3aed);
18
+ background: linear-gradient(135deg, var(--g-theme-color-background-primary-knockout), var(--g-color-primary-900));
19
19
  }
20
20
 
21
21
  .hero__container {
@@ -34,13 +34,12 @@
34
34
 
35
35
  .hero__title {
36
36
  font: var(--g-typography-h1-font);
37
- font-size: clamp(2rem, 5vw, 4rem);
38
- color: var(--g-theme-color-content-primary-knockout, #ffffff);
37
+ color: var(--g-theme-color-content-primary-knockout);
39
38
  }
40
39
 
41
40
  .hero__text {
42
- font: var(--g-theme-typography-body-lg);
43
- color: var(--g-theme-color-content-primary-knockout, #ffffff);
41
+ font: var(--g-typography-body-lg);
42
+ color: var(--g-theme-color-content-primary-knockout);
44
43
  }
45
44
 
46
45
  :host([size="sm"]) .hero {