klun-ui 0.1.22 → 0.1.23
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/CHANGELOG.md +14 -0
- package/dist/styles.css +1 -1
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -5,6 +5,20 @@ All notable changes to **klun-ui** are documented here. The format follows
|
|
|
5
5
|
[Semantic Versioning](https://semver.org/) (pre-1.0: minor/patch bumps may carry
|
|
6
6
|
small breaking changes).
|
|
7
7
|
|
|
8
|
+
## [0.1.23] — 2026-07-16
|
|
9
|
+
|
|
10
|
+
### Fixed
|
|
11
|
+
- **Dark theme — soft dividers were invisible.** In dark mode the token
|
|
12
|
+
`--klun-stroke-soft-200` resolved to `--klun-800`, the **same value as the page
|
|
13
|
+
background** `--klun-bg-weak-50`, so every "soft" border/divider (table cell
|
|
14
|
+
gridlines, card/modal/tabs frames, list separators — anything using the default
|
|
15
|
+
divider token) blended into the background and disappeared. Lifted the dark
|
|
16
|
+
value to `--klun-600` so soft dividers are clearly visible on both the page
|
|
17
|
+
background (`--klun-800`) and elevated surfaces (`--klun-bg-white-0` =
|
|
18
|
+
`--klun-950`), matching the crispness of the light theme's grey divider. Light
|
|
19
|
+
theme is unchanged. Affects every component that draws a soft divider; no
|
|
20
|
+
per-component or per-app override is needed anymore.
|
|
21
|
+
|
|
8
22
|
## [0.1.22] — 2026-07-13
|
|
9
23
|
|
|
10
24
|
### Changed
|
package/dist/styles.css
CHANGED
|
@@ -565,7 +565,7 @@
|
|
|
565
565
|
--klun-state-white-dark: var(--klun-teal-400);
|
|
566
566
|
--klun-static-static-black: var(--klun-950);
|
|
567
567
|
--klun-static-static-white: var(--klun-0);
|
|
568
|
-
--klun-stroke-soft-200: var(--klun-
|
|
568
|
+
--klun-stroke-soft-200: var(--klun-600);
|
|
569
569
|
--klun-stroke-strong-950: var(--klun-0);
|
|
570
570
|
--klun-stroke-sub-300: var(--klun-600);
|
|
571
571
|
--klun-stroke-white-0: var(--klun-950);
|
package/package.json
CHANGED