@kolkrabbi/kol-theme 0.13.0 → 0.13.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.
@@ -483,6 +483,14 @@
483
483
 
484
484
  /* the ONE chip — filename if present, else the language. In-flow above the
485
485
  * code. VERBATIM from the live reference build (index-Bro9Jnn6.css). */
486
+ /* bare — the host owns the frame (PreviewCard Code tab); the border/radius go,
487
+ * the CODE SURFACE stays (2026-07-30: a transparent bare block made the Code
488
+ * tab a different color from every other code surface on the page). */
489
+ .kol-codeblock--bare {
490
+ border: none;
491
+ border-radius: 0;
492
+ }
493
+
486
494
  .kol-codeblock-filename {
487
495
  font-family: var(--kol-font-family-mono);
488
496
  font-size: 11px;
@@ -376,11 +376,15 @@
376
376
  CSS retains the descendant typography for figcaption + inline <code>.
377
377
  ═════════════════════════════════════════════════════════════════════ */
378
378
 
379
+ /* mono, upright (2026-07-30 user ruling) — the italic sans rode in with the
380
+ * styleguide raid unsanctioned; Right Grotesk's italic is a placeholder cut,
381
+ * not for use. Captions speak the doc-caption voice: mono 12, no slant. */
379
382
  .kol-anatomy-sample figcaption {
380
383
  margin-top: 12px;
384
+ font-family: var(--kol-font-family-mono);
381
385
  font-size: 12px;
382
386
  color: var(--kol-fg-48);
383
- font-style: italic;
387
+ font-style: normal;
384
388
  }
385
389
 
386
390
  .kol-anatomy-sample code {
@@ -193,7 +193,9 @@
193
193
  .kol-prose figure,
194
194
  .kol-doc-figure {
195
195
  margin: 0;
196
- border: 1px solid var(--kol-fg-12);
196
+ /* oq, not fg (2026-07-30) — the seam law: chrome borders are opaque so they
197
+ * never brighten over tinted fills; weight 08 matches the table wrapper. */
198
+ border: 1px solid var(--kol-oq-08);
197
199
  border-radius: var(--kol-radius-sm); /* 4px — THE radius law */
198
200
  overflow: hidden;
199
201
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@kolkrabbi/kol-theme",
3
- "version": "0.13.0",
3
+ "version": "0.13.2",
4
4
  "description": "KOL (Kolkrabbi) design-system tokens + base CSS — brand-neutral. The canonical token/cascade layer every other KOL package and consumer builds on.",
5
5
  "license": "MIT",
6
6
  "type": "module",