@waukeshamakerspace/design-tokens 0.1.0 → 1.1.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 +7 -5
- package/assets/apple-touch-icon.png +0 -0
- package/assets/favicon.ico +0 -0
- package/assets/icon-192.png +0 -0
- package/assets/icon-512.png +0 -0
- package/assets/logo-white-bg.png +0 -0
- package/package.json +2 -2
package/README.md
CHANGED
|
@@ -139,9 +139,10 @@ The package ships the logo masters and a favicon set generated from them:
|
|
|
139
139
|
| --- | --- |
|
|
140
140
|
| `assets/logo.png` | Full logo, dark artwork, transparent, 1500×1500 |
|
|
141
141
|
| `assets/logo-white.png` | Full logo, white artwork, transparent, 1500×1500 |
|
|
142
|
-
| `assets/
|
|
143
|
-
| `assets/
|
|
144
|
-
| `assets/
|
|
142
|
+
| `assets/logo-white-bg.png` | Full logo on opaque white, 1500×1500 — favicon-set master |
|
|
143
|
+
| `assets/favicon.ico` | 16/32/48 multi-size, white background |
|
|
144
|
+
| `assets/apple-touch-icon.png` | 180×180, white background |
|
|
145
|
+
| `assets/icon-192.png` / `assets/icon-512.png` | PWA / web-manifest icons, white background |
|
|
145
146
|
|
|
146
147
|
**Bundler apps (Vite, webpack, Next `<Image>`/`metadata`):** import the file —
|
|
147
148
|
the bundler hashes the URL, so rebrands bust caches automatically.
|
|
@@ -175,8 +176,9 @@ import { brand, light, dark, fonts } from '@waukeshamakerspace/design-tokens';
|
|
|
175
176
|
|
|
176
177
|
## Editing tokens
|
|
177
178
|
|
|
178
|
-
`index.js` is the single source of truth for values;
|
|
179
|
-
`assets/logo
|
|
179
|
+
`index.js` is the single source of truth for values; the masters for imagery
|
|
180
|
+
are `assets/logo.png` / `assets/logo-white.png` (app-facing) and
|
|
181
|
+
`assets/logo-white-bg.png` (favicon set). Edit those, then:
|
|
180
182
|
|
|
181
183
|
```sh
|
|
182
184
|
npm run build # regenerates css/tokens.css + the assets/ favicon set
|
|
Binary file
|
package/assets/favicon.ico
CHANGED
|
Binary file
|
package/assets/icon-192.png
CHANGED
|
Binary file
|
package/assets/icon-512.png
CHANGED
|
Binary file
|
|
Binary file
|
package/package.json
CHANGED
|
@@ -1,11 +1,11 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@waukeshamakerspace/design-tokens",
|
|
3
|
-
"version": "
|
|
3
|
+
"version": "1.1.0",
|
|
4
4
|
"description": "Waukesha Makerspace brand + semantic design tokens: CSS variables with automatic light/dark theming, Tailwind (v3 + v4) and MUI adapters",
|
|
5
5
|
"license": "MIT",
|
|
6
6
|
"repository": {
|
|
7
7
|
"type": "git",
|
|
8
|
-
"url": "https://github.com/WaukeshaMakerspace/design-tokens.git"
|
|
8
|
+
"url": "git+https://github.com/WaukeshaMakerspace/design-tokens.git"
|
|
9
9
|
},
|
|
10
10
|
"type": "module",
|
|
11
11
|
"main": "./index.js",
|