@gitbutler/design-core 1.8.3 → 1.9.0

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
@@ -150,16 +150,16 @@ npm run build
150
150
  npm run dev:tokens
151
151
  ```
152
152
 
153
- ## Color Generator Tool
153
+ ## Color Tool
154
154
 
155
- An interactive SvelteKit application for designing and testing color scales is available in the [`color-generator/`](./color-generator) directory.
155
+ [hue-dini](./tools/hue-dini) is the tool used to preview and export the GitButler color palette. It applies a single shared luminance scale across all hues — gray, accent, and semantic — so shades at the same step feel visually equivalent regardless of hue.
156
156
 
157
- ```bash
158
- # Start the color generator
159
- npm run dev:generator
157
+ **Live:** https://gitbutlerapp.github.io/design-core/
160
158
 
161
- # Build the color generator
162
- npm run build:generator
159
+ ```bash
160
+ cd tools/hue-dini
161
+ pnpm install
162
+ pnpm dev
163
163
  ```
164
164
 
165
- See [color-generator/README.md](./color-generator/README.md) for more details.
165
+ See [tools/hue-dini/README.md](./tools/hue-dini/README.md) for more details.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@gitbutler/design-core",
3
- "version": "1.8.3",
3
+ "version": "1.9.0",
4
4
  "type": "module",
5
5
  "description": "Design tokens for GitButler applications",
6
6
  "keywords": [
@@ -37,6 +37,7 @@
37
37
  "prepublishOnly": "npm run build:tokens",
38
38
  "format": "prettier --write \"**/*.{css,ts,js}\"",
39
39
  "format:check": "prettier --check \"**/*.{css,ts,js}\"",
40
+ "dev:hue-dini": "cd tools/hue-dini && pnpm dev",
40
41
  "dev:generator": "cd color-generator && pnpm dev",
41
42
  "build:generator": "cd color-generator && pnpm build"
42
43
  },