@kolkrabbi/kol-theme 0.11.18 → 0.11.19
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/kol-components-organisms.css +4 -14
- package/package.json +1 -1
|
@@ -1,13 +1,3 @@
|
|
|
1
|
-
/* Scroll-edge shadow token — SHADOWS ARE BLACK-BASED IN BOTH MODES (user law
|
|
2
|
-
* 2026-07-28): low-opacity black reads light in light mode, stronger black in
|
|
3
|
-
* dark. Never ink-based (fg flips white in dark = white smear bug). MIRROR
|
|
4
|
-
* blocks — edit all three together. */
|
|
5
|
-
:root { --kol-table-edge: rgba(0, 0, 0, 0.10); }
|
|
6
|
-
[data-theme="dark"], .dark { --kol-table-edge: rgba(0, 0, 0, 0.5); }
|
|
7
|
-
@media (prefers-color-scheme: dark) {
|
|
8
|
-
:root:not([data-theme]) { --kol-table-edge: rgba(0, 0, 0, 0.5); }
|
|
9
|
-
}
|
|
10
|
-
|
|
11
1
|
/**
|
|
12
2
|
* KOL components — organism tier
|
|
13
3
|
*
|
|
@@ -62,13 +52,13 @@
|
|
|
62
52
|
* cut-off data on narrow viewports. Edge shadows appear only on the
|
|
63
53
|
* scrollable side (surface-colored covers ride the content and mask them
|
|
64
54
|
* at the extremes). */
|
|
55
|
+
/* scroll edges: surface-colored FADE only — no shadow band (user ruling
|
|
56
|
+
* 2026-07-28: the content dissolves into the background, no 3d edge) */
|
|
65
57
|
background:
|
|
66
58
|
linear-gradient(to right, var(--kol-surface-primary) 40%, transparent) left / 32px 100%,
|
|
67
|
-
linear-gradient(to left, var(--kol-surface-primary) 40%, transparent) right / 32px 100
|
|
68
|
-
linear-gradient(to right, var(--kol-table-edge), transparent) left / 10px 100%,
|
|
69
|
-
linear-gradient(to left, var(--kol-table-edge), transparent) right / 10px 100%;
|
|
59
|
+
linear-gradient(to left, var(--kol-surface-primary) 40%, transparent) right / 32px 100%;
|
|
70
60
|
background-repeat: no-repeat;
|
|
71
|
-
background-attachment: local, local
|
|
61
|
+
background-attachment: local, local;
|
|
72
62
|
}
|
|
73
63
|
|
|
74
64
|
.kol-table-wrapper::-webkit-scrollbar { display: none; }
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@kolkrabbi/kol-theme",
|
|
3
|
-
"version": "0.11.
|
|
3
|
+
"version": "0.11.19",
|
|
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",
|