@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 +8 -8
- package/package.json +2 -1
- package/tokens/tokens.css +316 -316
- package/tokens/tokens.json +2238 -2238
package/README.md
CHANGED
|
@@ -150,16 +150,16 @@ npm run build
|
|
|
150
150
|
npm run dev:tokens
|
|
151
151
|
```
|
|
152
152
|
|
|
153
|
-
## Color
|
|
153
|
+
## Color Tool
|
|
154
154
|
|
|
155
|
-
|
|
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
|
-
|
|
158
|
-
# Start the color generator
|
|
159
|
-
npm run dev:generator
|
|
157
|
+
**Live:** https://gitbutlerapp.github.io/design-core/
|
|
160
158
|
|
|
161
|
-
|
|
162
|
-
|
|
159
|
+
```bash
|
|
160
|
+
cd tools/hue-dini
|
|
161
|
+
pnpm install
|
|
162
|
+
pnpm dev
|
|
163
163
|
```
|
|
164
164
|
|
|
165
|
-
See [
|
|
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.
|
|
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
|
},
|