@justai/cuts 0.27.1 → 0.27.2
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 +1 -1
- package/src/Posts.astro +5 -1
package/package.json
CHANGED
package/src/Posts.astro
CHANGED
|
@@ -105,7 +105,11 @@ const vars = [
|
|
|
105
105
|
/* Underlined, deliberately: a link inside body text must not rely on colour alone to be seen
|
|
106
106
|
(WCAG link-in-text-block — the twins' quality gate flagged it where accent-vs-dim contrast ran
|
|
107
107
|
thin). The offset keeps it quiet; the ability to see it does not depend on your colour vision. */
|
|
108
|
-
|
|
108
|
+
/* --confirm-accent, then --accent: the raw accent is a BRAND colour, not a text colour — at this
|
|
109
|
+
size on a light ground Apple blue reads 3.2:1. The fleet already solved this once, for the
|
|
110
|
+
sheet: every persona carries a hue-preserving darkened accent that clears 4.5 as text. A link
|
|
111
|
+
is text; it uses the text-grade accent. */
|
|
112
|
+
.z-foot a { color: var(--confirm-accent, var(--accent)); text-decoration: underline; text-underline-offset: 3px; text-decoration-thickness: 1px; }
|
|
109
113
|
</style>
|
|
110
114
|
|
|
111
115
|
<script>
|