@cosxai/ui 0.4.5 → 0.4.6
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/package.json +1 -1
- package/src/styles/index.css +11 -2
package/package.json
CHANGED
package/src/styles/index.css
CHANGED
|
@@ -188,9 +188,18 @@ html[data-ck-chrome="seamless"] .ck-card__foot {
|
|
|
188
188
|
/* Children inside an open disclosure group sit on top of the wrapper's
|
|
189
189
|
--ck-accent-muted pill. The default gray hover above reads as a hue
|
|
190
190
|
collision against the coral/indigo wrapper — swap in an accent-blended
|
|
191
|
-
overlay so the hover signal stays in the accent family.
|
|
191
|
+
overlay so the hover signal stays in the accent family.
|
|
192
|
+
|
|
193
|
+
30% blend (was 18% in 0.4.5): 18% layered onto an --ck-accent-muted
|
|
194
|
+
wrapper (already 8–14% accent depending on chrome) composites to
|
|
195
|
+
~30% effective saturation. At that low saturation translucent
|
|
196
|
+
orange / coral / blue all read as washed-out salmon — the hover
|
|
197
|
+
loses its hue identity against the solid --ck-accent text right
|
|
198
|
+
beside it. 30% pushes the overlay past the "dilution reads as
|
|
199
|
+
pink" inflection so the workspace's actual brand colour is
|
|
200
|
+
recognisable. */
|
|
192
201
|
.ck-actionbar-group--open .ck-actionbar-btn:hover:not(:disabled):not(.ck-actionbar-btn--primary) {
|
|
193
|
-
background: color-mix(in oklab, var(--ck-accent)
|
|
202
|
+
background: color-mix(in oklab, var(--ck-accent) 30%, transparent);
|
|
194
203
|
}
|
|
195
204
|
.ck-actionbar-btn--primary {
|
|
196
205
|
background: var(--ck-accent);
|