@kolkrabbi/kol-theme 0.65.0 → 0.67.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.
|
@@ -352,3 +352,17 @@
|
|
|
352
352
|
.font-viewer-wrapper .monospaced {
|
|
353
353
|
font-family: 'SFMono-Regular', Consolas, 'Liberation Mono', Menlo, monospace;
|
|
354
354
|
}
|
|
355
|
+
|
|
356
|
+
/* PairingCard (FoundrySpecimenSections, 2026-08-27) — kol-website's .pairing-card
|
|
357
|
+
* frame + hover, verbatim: an 8% frame, on hover a 1% wash and a 24% frame. */
|
|
358
|
+
.kol-pairing-card {
|
|
359
|
+
background-color: transparent;
|
|
360
|
+
border: 1px solid color-mix(in srgb, var(--kol-surface-on-primary) 8%, transparent);
|
|
361
|
+
transition: background-color 300ms ease, border-color 300ms ease;
|
|
362
|
+
}
|
|
363
|
+
@media (hover: hover) {
|
|
364
|
+
.kol-pairing-card:hover {
|
|
365
|
+
background-color: color-mix(in srgb, var(--kol-surface-on-primary) 1%, transparent);
|
|
366
|
+
border-color: color-mix(in srgb, var(--kol-surface-on-primary) 24%, transparent);
|
|
367
|
+
}
|
|
368
|
+
}
|
|
@@ -590,6 +590,19 @@
|
|
|
590
590
|
.kol-card-feature:hover .kol-card-feature-visual { transform: none; }
|
|
591
591
|
}
|
|
592
592
|
|
|
593
|
+
/* the TEXT-ONLY tile (SectionCardItem with no visual — FoundrySpecimenSections,
|
|
594
|
+
* 2026-08-27): kol-website's .feature-card frame + hover, verbatim — a 1% wash
|
|
595
|
+
* and a 24% frame on hover, 300ms; hover only, never a selected state. */
|
|
596
|
+
.kol-card-feature--text {
|
|
597
|
+
transition: background-color 300ms ease, border-color 300ms ease;
|
|
598
|
+
}
|
|
599
|
+
@media (hover: hover) {
|
|
600
|
+
.kol-card-feature--text:hover {
|
|
601
|
+
background-color: color-mix(in srgb, var(--kol-surface-on-primary) 1%, transparent);
|
|
602
|
+
border-color: color-mix(in srgb, var(--kol-surface-on-primary) 24%, transparent);
|
|
603
|
+
}
|
|
604
|
+
}
|
|
605
|
+
|
|
593
606
|
/* =============================================================================
|
|
594
607
|
* Color-doc widget chrome — ColorRamp · SpectrumGrid
|
|
595
608
|
*
|
|
@@ -59,6 +59,35 @@
|
|
|
59
59
|
font-weight: 400;
|
|
60
60
|
}
|
|
61
61
|
|
|
62
|
+
/* =============================================================================
|
|
63
|
+
* MONO HEADING ROLES — the app tier's masthead voice (PageHeaderMonoTitle,
|
|
64
|
+
* kol-fxr 2026-08-27; user ruling: kol-monitor's deployed masthead — JetBrains
|
|
65
|
+
* Mono 32 / 500 — is the look for the app tier). Three rungs mirroring the
|
|
66
|
+
* sans roles PageHeader's sizes ride: heading-03 (32), display-03, display-02,
|
|
67
|
+
* mono at weight 500. `PageHeader voice="mono"` wears them.
|
|
68
|
+
* ============================================================================= */
|
|
69
|
+
|
|
70
|
+
.kol-mono-heading-03 {
|
|
71
|
+
font-family: var(--kol-font-family-mono);
|
|
72
|
+
font-size: var(--kol-text-heading-03);
|
|
73
|
+
line-height: 110%;
|
|
74
|
+
font-weight: 500;
|
|
75
|
+
}
|
|
76
|
+
|
|
77
|
+
.kol-mono-display-03 {
|
|
78
|
+
font-family: var(--kol-font-family-mono);
|
|
79
|
+
font-size: var(--kol-text-display-03);
|
|
80
|
+
line-height: 100%;
|
|
81
|
+
font-weight: 500;
|
|
82
|
+
}
|
|
83
|
+
|
|
84
|
+
.kol-mono-display-02 {
|
|
85
|
+
font-family: var(--kol-font-family-mono);
|
|
86
|
+
font-size: var(--kol-text-display-02);
|
|
87
|
+
line-height: 100%;
|
|
88
|
+
font-weight: 500;
|
|
89
|
+
}
|
|
90
|
+
|
|
62
91
|
/* =============================================================================
|
|
63
92
|
* LABEL SCALE — single-line labels. Weight 500 (medium), no leading,
|
|
64
93
|
* letter-spaced. For label/value pairs at the same size where the label needs
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@kolkrabbi/kol-theme",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.67.0",
|
|
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",
|