@chekinapp/tokens 0.0.7 → 0.0.9
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 +78 -0
package/package.json
CHANGED
package/src/base/colors.css
CHANGED
|
@@ -21,6 +21,7 @@
|
|
|
21
21
|
--chekin-color-gray-2: #9696b9;
|
|
22
22
|
--chekin-color-gray-3: #dedeeb;
|
|
23
23
|
--chekin-color-gray-separator: #cecede;
|
|
24
|
+
--chekin-color-guest-separator: #e6e8ec;
|
|
24
25
|
|
|
25
26
|
/* ── Surfaces ──────────────────────────────────────────────────────── */
|
|
26
27
|
--chekin-color-surface-input-empty: #f4f6f8;
|
package/src/base/components.css
CHANGED
|
@@ -77,4 +77,82 @@
|
|
|
77
77
|
|
|
78
78
|
/* ── Circular Loader ──────────────────────────────────────────────── */
|
|
79
79
|
--circular-loader-color: var(--chekin-color-brand-blue);
|
|
80
|
+
|
|
81
|
+
/* ── Accordion ────────────────────────────────────────────────────── */
|
|
82
|
+
--accordion-item-radius: 8px;
|
|
83
|
+
--accordion-item-border: #e5e6ee;
|
|
84
|
+
--accordion-item-divider: #e5e6ee;
|
|
85
|
+
--accordion-item-bg: transparent;
|
|
86
|
+
--accordion-item-open-bg: transparent;
|
|
87
|
+
--accordion-item-hover-bg: rgba(245, 245, 245, 0.5);
|
|
88
|
+
|
|
89
|
+
--accordion-trigger-gap: 16px;
|
|
90
|
+
--accordion-trigger-font-family: var(--chekin-font-family-primary);
|
|
91
|
+
--accordion-trigger-font-weight: var(--chekin-font-weight-bold);
|
|
92
|
+
--accordion-trigger-color: var(--chekin-color-brand-navy);
|
|
93
|
+
--accordion-trigger-focus-shadow: var(--chekin-shadow-focus);
|
|
94
|
+
--accordion-trigger-disabled-opacity: 0.5;
|
|
95
|
+
|
|
96
|
+
--accordion-icon-size: 16px;
|
|
97
|
+
--accordion-icon-color-closed: var(--chekin-color-gray-1);
|
|
98
|
+
--accordion-icon-color-open: var(--chekin-color-brand-blue);
|
|
99
|
+
|
|
100
|
+
--accordion-content-font-size: 14px;
|
|
101
|
+
--accordion-content-line-height: 22px;
|
|
102
|
+
--accordion-content-color: var(--chekin-color-gray-1);
|
|
103
|
+
|
|
104
|
+
/* ── AlertBox ──────────────────────────────────────────────────────── */
|
|
105
|
+
--alert-box-radius: 10px;
|
|
106
|
+
--alert-box-info-bg: #eff6ff;
|
|
107
|
+
--alert-box-info-icon: #2563eb;
|
|
108
|
+
--alert-box-warning-bg: rgba(250, 204, 21, 0.3);
|
|
109
|
+
--alert-box-warning-icon: #ffb700;
|
|
110
|
+
--alert-box-success-bg: #e8fcf7;
|
|
111
|
+
--alert-box-success-icon: #2bc29f;
|
|
112
|
+
--alert-box-success-text: #6b6b95;
|
|
113
|
+
--alert-box-error-bg: #ffe2ed;
|
|
114
|
+
--alert-box-error-icon: #ff2467;
|
|
115
|
+
|
|
116
|
+
/* ── AudioPlayer ─────────────────────────────────────────────────────── */
|
|
117
|
+
--audio-player-button-bg: var(--chekin-color-brand-blue);
|
|
118
|
+
--audio-player-button-hover-bg: var(--chekin-color-brand-blue-hover);
|
|
119
|
+
--audio-player-button-radius: 8px;
|
|
120
|
+
--audio-player-icon-color: var(--chekin-color-white);
|
|
121
|
+
--audio-player-track-bg: var(--chekin-color-gray-3);
|
|
122
|
+
--audio-player-progress-bg: var(--chekin-color-brand-blue);
|
|
123
|
+
--audio-player-time-color: var(--chekin-color-gray-1);
|
|
124
|
+
|
|
125
|
+
/* ── Avatar (dashboard-only, minimal tokens) ─────────────────────────── */
|
|
126
|
+
--avatar-fallback-bg: var(--chekin-color-gray-3);
|
|
127
|
+
--avatar-fallback-text: var(--chekin-color-gray-1);
|
|
128
|
+
|
|
129
|
+
/* ── BetaBadge (dashboard-only, minimal tokens) ──────────────────────── */
|
|
130
|
+
--beta-badge-bg: color-mix(in srgb, var(--chekin-color-gray-1) 15%, transparent);
|
|
131
|
+
--beta-badge-text: var(--chekin-color-gray-1);
|
|
132
|
+
--beta-badge-readonly-bg: color-mix(
|
|
133
|
+
in srgb,
|
|
134
|
+
var(--chekin-color-brand-blue) 10%,
|
|
135
|
+
transparent
|
|
136
|
+
);
|
|
137
|
+
--beta-badge-readonly-text: var(--chekin-color-brand-blue);
|
|
138
|
+
|
|
139
|
+
/* ── BoxOptionSelector (dashboard-only, minimal tokens) ──────────────── */
|
|
140
|
+
--box-option-border: var(--chekin-color-gray-3);
|
|
141
|
+
--box-option-bg: var(--chekin-color-white);
|
|
142
|
+
--box-option-hover-bg: var(--chekin-color-surface-input-empty);
|
|
143
|
+
--box-option-selected-border: var(--chekin-color-brand-blue);
|
|
144
|
+
--box-option-selected-bg: var(--chekin-color-surface-pressed);
|
|
145
|
+
|
|
146
|
+
/* ── Breadcrumbs (dashboard-only, minimal tokens) ───────────────────── */
|
|
147
|
+
--breadcrumbs-link-color: var(--chekin-color-gray-1);
|
|
148
|
+
--breadcrumbs-current-color: var(--chekin-color-brand-navy);
|
|
149
|
+
--breadcrumbs-separator-color: var(--chekin-color-brand-navy);
|
|
150
|
+
|
|
151
|
+
/* ── ButtonGroup (dashboard-only, minimal tokens) ───────────────────── */
|
|
152
|
+
--button-group-text-bg: var(--chekin-color-surface-input-empty);
|
|
153
|
+
--button-group-text-border: var(--chekin-color-gray-3);
|
|
154
|
+
--button-group-text-color: var(--chekin-color-brand-navy);
|
|
155
|
+
|
|
156
|
+
/* ── ButtonsGroupLabel (dashboard-only, minimal tokens) ─────────────── */
|
|
157
|
+
--buttons-group-label-color: var(--chekin-color-gray-1);
|
|
80
158
|
}
|