@7365admin1/layer-common 3.2.2-staging.167 → 3.2.2-staging.168
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/assets/css/screens.css +22 -3
- package/package.json +1 -1
package/assets/css/screens.css
CHANGED
|
@@ -183,9 +183,28 @@
|
|
|
183
183
|
* appear on 35 files across the layer and eleven applications.
|
|
184
184
|
*
|
|
185
185
|
* `--muted` is the design's own secondary ink and is a token, so it follows
|
|
186
|
-
* the theme
|
|
187
|
-
*
|
|
188
|
-
*
|
|
186
|
+
* the theme. Redirected here, once, rather than renamed at 35 call sites - the
|
|
187
|
+
* layer's stylesheet ships to every application, so the class keeps working.
|
|
188
|
+
*
|
|
189
|
+
* THE READING THIS COMMENT USED TO CLAIM IS NO LONGER TRUE, and the correction
|
|
190
|
+
* matters because it inverts the justification above.
|
|
191
|
+
*
|
|
192
|
+
* It said "4.77:1 light, 4.71:1 dark". That was measured when `--muted` was
|
|
193
|
+
* `#6b7079` - one of the six values darkened on 2026-08-13 to clear AA. The
|
|
194
|
+
* owner REVERSED that on 2026-08-14 in favour of 100% design fidelity, and
|
|
195
|
+
* `--muted` went back to the handoff's `#8b8f98`. Re-measured on the current
|
|
196
|
+
* token, alpha composited:
|
|
197
|
+
*
|
|
198
|
+
* --muted on a card 3.24:1 (the old #7e7e7e read 4.06:1)
|
|
199
|
+
* --muted on the page 2.99:1 - below even the 3.0 large-text floor
|
|
200
|
+
*
|
|
201
|
+
* So on the LIGHT theme this redirect is now a DOWNGRADE for the ~5 files that
|
|
202
|
+
* still use the class, not the improvement the original comment describes. It
|
|
203
|
+
* is left in place deliberately: `#7e7e7e` was a fixed grey that ignored the
|
|
204
|
+
* theme entirely and read 4.10:1 on dark where `--muted` reads 4.93:1, so
|
|
205
|
+
* reverting would trade a light-theme gain for a dark-theme loss. Which way
|
|
206
|
+
* this should go is a PALETTE decision for the owner, not a per-class one -
|
|
207
|
+
* see `utils/theme-aa-ledger.ts`, which pins every one of these readings.
|
|
189
208
|
*/
|
|
190
209
|
.text-fontgray {
|
|
191
210
|
color: var(--muted) !important;
|
package/package.json
CHANGED
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
"name": "@7365admin1/layer-common",
|
|
3
3
|
"license": "MIT",
|
|
4
4
|
"type": "module",
|
|
5
|
-
"version": "3.2.2-staging.
|
|
5
|
+
"version": "3.2.2-staging.168",
|
|
6
6
|
"author": "7365admin1",
|
|
7
7
|
"main": "./nuxt.config.ts",
|
|
8
8
|
"//files": "What a consumer extending this layer actually loads. Without this npm ships the whole working tree - the changesets, the CI workflows, the render harness in tools/ and any scratch directory that happened to exist at publish time. Nuxt resolves a layer by directory, so every runtime directory below has to stay listed; adding a new top-level runtime directory means adding it here too.",
|