@commonpub/layer 0.86.2 → 0.86.3
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/package.json +7 -7
- package/theme/base.css +19 -0
- package/theme/prose.css +1 -1
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@commonpub/layer",
|
|
3
|
-
"version": "0.86.
|
|
3
|
+
"version": "0.86.3",
|
|
4
4
|
"type": "module",
|
|
5
5
|
"main": "./nuxt.config.ts",
|
|
6
6
|
"files": [
|
|
@@ -55,16 +55,16 @@
|
|
|
55
55
|
"vue-router": "^4.3.0",
|
|
56
56
|
"zod": "^4.3.6",
|
|
57
57
|
"@commonpub/auth": "0.8.0",
|
|
58
|
-
"@commonpub/
|
|
58
|
+
"@commonpub/docs": "0.6.3",
|
|
59
|
+
"@commonpub/explainer": "0.8.0",
|
|
59
60
|
"@commonpub/schema": "0.48.0",
|
|
60
|
-
"@commonpub/learning": "0.5.2",
|
|
61
|
-
"@commonpub/server": "2.92.0",
|
|
62
61
|
"@commonpub/protocol": "0.14.0",
|
|
63
62
|
"@commonpub/editor": "0.9.0",
|
|
63
|
+
"@commonpub/config": "0.23.0",
|
|
64
64
|
"@commonpub/theme-studio": "0.6.1",
|
|
65
|
-
"@commonpub/
|
|
66
|
-
"@commonpub/
|
|
67
|
-
"@commonpub/
|
|
65
|
+
"@commonpub/server": "2.92.0",
|
|
66
|
+
"@commonpub/ui": "0.13.1",
|
|
67
|
+
"@commonpub/learning": "0.5.2"
|
|
68
68
|
},
|
|
69
69
|
"devDependencies": {
|
|
70
70
|
"@testing-library/jest-dom": "^6.9.1",
|
package/theme/base.css
CHANGED
|
@@ -108,6 +108,14 @@
|
|
|
108
108
|
|
|
109
109
|
--color-text-inverse: #ffffff;
|
|
110
110
|
|
|
111
|
+
/* Inline-code text. The raw --teal fails WCAG AA as small text on the light
|
|
112
|
+
--surface2 chip (≈2.4:1 on base, worse on vivid themes). --code-inline is the
|
|
113
|
+
theme's teal mixed toward --text so it stays branded yet readable; it adapts
|
|
114
|
+
per theme (deveco's green, dark mode's light text) via the inner var()
|
|
115
|
+
resolution. The @supports block (after :root) upgrades it to color-mix; this is
|
|
116
|
+
the readable fallback. */
|
|
117
|
+
--code-inline: var(--text);
|
|
118
|
+
|
|
111
119
|
/* Code block tokens (GitHub Dark defaults — overridable by themes) */
|
|
112
120
|
--code-bg: #0d1117;
|
|
113
121
|
--code-text: #e6edf3;
|
|
@@ -305,6 +313,17 @@
|
|
|
305
313
|
--focus-ring: var(--shadow-accent);
|
|
306
314
|
}
|
|
307
315
|
|
|
316
|
+
/* Branded-but-readable inline code: mix the theme's --teal ~50% toward --text so it
|
|
317
|
+
reads at ~6:1 on light themes and adapts on dark (mixes toward the light --text).
|
|
318
|
+
One definition adapts to every theme because the inner var()s resolve at the
|
|
319
|
+
inline-code element. ~95% browser support; older browsers keep the readable
|
|
320
|
+
--text fallback declared in :root above. */
|
|
321
|
+
@supports (color: color-mix(in srgb, red, white)) {
|
|
322
|
+
:root {
|
|
323
|
+
--code-inline: color-mix(in srgb, var(--teal), var(--text) 50%);
|
|
324
|
+
}
|
|
325
|
+
}
|
|
326
|
+
|
|
308
327
|
/* === BASE STYLES === */
|
|
309
328
|
body {
|
|
310
329
|
font-family: var(--font-body);
|
package/theme/prose.css
CHANGED