@chekinapp/tokens 0.2.2 → 0.2.4
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/base/colors.css +1 -0
- package/src/base/components.css +7 -1
- package/src/surfaces/host-sdk.css +2 -0
- package/src/tokens.json +1 -0
package/package.json
CHANGED
package/src/base/colors.css
CHANGED
|
@@ -53,6 +53,7 @@
|
|
|
53
53
|
|
|
54
54
|
/* ── Gray (true neutral, Inbox / utility surfaces) ─────────────────── */
|
|
55
55
|
--chekin-gray-50: #f9fafb;
|
|
56
|
+
--chekin-gray-75: #f7f7f7; /* ghost button hover surface */
|
|
56
57
|
--chekin-gray-100: #f3f4f6;
|
|
57
58
|
--chekin-gray-200: #e5e7eb;
|
|
58
59
|
--chekin-gray-300: #d1d5db;
|
package/src/base/components.css
CHANGED
|
@@ -58,7 +58,7 @@
|
|
|
58
58
|
/* Ghost variant */
|
|
59
59
|
--button-ghost-bg: transparent;
|
|
60
60
|
--button-ghost-text: var(--chekin-color-brand-navy);
|
|
61
|
-
--button-ghost-hover-bg: var(--chekin-
|
|
61
|
+
--button-ghost-hover-bg: var(--chekin-gray-75);
|
|
62
62
|
--button-ghost-active-bg: var(--chekin-color-gray-3);
|
|
63
63
|
|
|
64
64
|
/* Link variant */
|
|
@@ -206,6 +206,12 @@
|
|
|
206
206
|
--section-group-title-color: var(--chekin-color-brand-navy);
|
|
207
207
|
--section-group-muted-text: var(--chekin-color-gray-1);
|
|
208
208
|
|
|
209
|
+
/* ── Section (dashboard-only, migrated from ui-kit-2) ───────────────── */
|
|
210
|
+
--section-title-color: var(--chekin-color-brand-navy);
|
|
211
|
+
--section-subtitle-color: var(--chekin-color-gray-1);
|
|
212
|
+
--section-tooltip-color: var(--chekin-color-gray-1);
|
|
213
|
+
--section-link-color: var(--chekin-color-brand-blue);
|
|
214
|
+
|
|
209
215
|
/* ── SignatureCanvas (dashboard-only, migrated from ui-kit-2) ───────── */
|
|
210
216
|
--signature-canvas-border: var(--chekin-color-brand-blue);
|
|
211
217
|
--signature-canvas-placeholder-bg: var(--chekin-blue-tint-bright);
|
package/src/tokens.json
CHANGED