@chekinapp/tokens 0.2.4 → 0.2.10
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/components.css +34 -1
package/package.json
CHANGED
package/src/base/components.css
CHANGED
|
@@ -120,15 +120,42 @@
|
|
|
120
120
|
|
|
121
121
|
/* ── AlertBox ──────────────────────────────────────────────────────── */
|
|
122
122
|
--alert-box-radius: 10px;
|
|
123
|
+
--alert-box-border-width: 1px;
|
|
124
|
+
|
|
123
125
|
--alert-box-info-bg: var(--chekin-blue-50);
|
|
126
|
+
--alert-box-info-border: transparent;
|
|
127
|
+
--alert-box-info-text: inherit;
|
|
124
128
|
--alert-box-info-icon: #2563eb;
|
|
129
|
+
--alert-box-info-icon-fill: none;
|
|
130
|
+
--alert-box-info-icon-stroke: var(--alert-box-info-icon);
|
|
131
|
+
|
|
125
132
|
--alert-box-warning-bg: rgba(250, 204, 21, 0.3);
|
|
133
|
+
--alert-box-warning-border: transparent;
|
|
134
|
+
--alert-box-warning-text: inherit;
|
|
126
135
|
--alert-box-warning-icon: var(--chekin-amber-500);
|
|
136
|
+
--alert-box-warning-icon-fill: none;
|
|
137
|
+
--alert-box-warning-icon-stroke: var(--alert-box-warning-icon);
|
|
138
|
+
|
|
127
139
|
--alert-box-success-bg: var(--chekin-green-50);
|
|
128
|
-
--alert-box-success-
|
|
140
|
+
--alert-box-success-border: transparent;
|
|
129
141
|
--alert-box-success-text: var(--chekin-neutral-600);
|
|
142
|
+
--alert-box-success-icon: var(--chekin-green-600);
|
|
143
|
+
--alert-box-success-icon-fill: none;
|
|
144
|
+
--alert-box-success-icon-stroke: var(--alert-box-success-icon);
|
|
145
|
+
|
|
130
146
|
--alert-box-error-bg: var(--chekin-red-100);
|
|
147
|
+
--alert-box-error-border: transparent;
|
|
148
|
+
--alert-box-error-text: inherit;
|
|
131
149
|
--alert-box-error-icon: var(--chekin-red-500);
|
|
150
|
+
--alert-box-error-icon-fill: none;
|
|
151
|
+
--alert-box-error-icon-stroke: var(--alert-box-error-icon);
|
|
152
|
+
|
|
153
|
+
--alert-box-light-bg: var(--chekin-neutral-0);
|
|
154
|
+
--alert-box-light-border: var(--chekin-border-default);
|
|
155
|
+
--alert-box-light-text: var(--chekin-text-primary);
|
|
156
|
+
--alert-box-light-icon: var(--chekin-amber-500);
|
|
157
|
+
--alert-box-light-icon-fill: none;
|
|
158
|
+
--alert-box-light-icon-stroke: var(--alert-box-light-icon);
|
|
132
159
|
|
|
133
160
|
/* ── AudioPlayer ─────────────────────────────────────────────────────── */
|
|
134
161
|
--audio-player-button-bg: var(--chekin-color-brand-blue);
|
|
@@ -165,6 +192,12 @@
|
|
|
165
192
|
--breadcrumbs-current-color: var(--chekin-color-brand-navy);
|
|
166
193
|
--breadcrumbs-separator-color: var(--chekin-color-brand-navy);
|
|
167
194
|
|
|
195
|
+
/* ── Link (dashboard-only, minimal tokens) ──────────────────────────── */
|
|
196
|
+
--link-text-color: var(--button-link-text);
|
|
197
|
+
--link-disabled-text-color: var(--chekin-neutral-400);
|
|
198
|
+
--link-font-weight: inherit;
|
|
199
|
+
--link-text-decoration: none;
|
|
200
|
+
|
|
168
201
|
/* ── Checkbox ──────────────────────────────────────────────────────── */
|
|
169
202
|
--checkbox-border: var(--chekin-color-brand-blue);
|
|
170
203
|
--checkbox-bg: transparent;
|