@justai/cuts 0.27.1 → 0.28.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.
Files changed (2) hide show
  1. package/package.json +2 -2
  2. package/src/Posts.astro +5 -1
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@justai/cuts",
3
- "version": "0.27.1",
3
+ "version": "0.28.0",
4
4
  "description": "A persona's named parts \u2014 the page shell that holds them, and the cuts themselves.",
5
5
  "license": "UNLICENSED",
6
6
  "repository": {
@@ -30,6 +30,6 @@
30
30
  "access": "public"
31
31
  },
32
32
  "dependencies": {
33
- "@justai/core": "^0.4.1"
33
+ "@justai/core": "^0.5.0"
34
34
  }
35
35
  }
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
- .z-foot a { color: var(--accent); text-decoration: underline; text-underline-offset: 3px; text-decoration-thickness: 1px; }
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>