@kinetixui/tokens 0.4.1 → 0.4.3
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/dist/android/Theme.dark.kt +3 -0
- package/dist/android/Theme.kt +4 -1
- package/dist/android/res/values/colors.xml +4 -1
- package/dist/flutter/app_colors.dart +4 -1
- package/dist/flutter/app_theme.dart +4 -1
- package/dist/flutter/kinetix_color_scheme.dark.dart +3 -0
- package/dist/flutter/kinetix_color_scheme.dart +4 -1
- package/dist/ios/KinetixColors.swift +4 -1
- package/dist/ios/KinetixColorsSwiftUI.dark.swift +3 -0
- package/dist/ios/KinetixColorsSwiftUI.swift +4 -1
- package/dist/ios/Theme.swift +4 -1
- package/dist/web/extras.dark.css +8 -0
- package/dist/web/globals.css +4 -1
- package/dist/web/globals.dark.css +3 -0
- package/dist/web/tokens.d.ts +4 -1
- package/dist/web/tokens.js +4 -1
- package/dist/web/tokens.ts +4 -1
- package/package.json +2 -1
|
@@ -21,6 +21,9 @@ object KinetixThemeDark {
|
|
|
21
21
|
val colorChart3 = Color(0xffffc975)
|
|
22
22
|
val colorChart4 = Color(0xffdd6a6a)
|
|
23
23
|
val colorChart5 = Color(0xffd2c1b6)
|
|
24
|
+
val colorChart6 = Color(0xff7495ab)
|
|
25
|
+
val colorChart7 = Color(0xffd13a3a)
|
|
26
|
+
val colorChart8 = Color(0xff748873)
|
|
24
27
|
val colorDestructive = Color(0xffdd6a6a)
|
|
25
28
|
val colorDestructiveForeground = Color(0xff280202)
|
|
26
29
|
val colorForeground = Color(0xfff0f7ff)
|
package/dist/android/Theme.kt
CHANGED
|
@@ -21,6 +21,9 @@ object KinetixTheme {
|
|
|
21
21
|
val colorChart3 = Color(0xffffbc53)
|
|
22
22
|
val colorChart4 = Color(0xffd13a3a)
|
|
23
23
|
val colorChart5 = Color(0xffb4a499)
|
|
24
|
+
val colorChart6 = Color(0xff57778d)
|
|
25
|
+
val colorChart7 = Color(0xff9e0808)
|
|
26
|
+
val colorChart8 = Color(0xff465245)
|
|
24
27
|
val colorDestructive = Color(0xffc60a0a)
|
|
25
28
|
val colorDestructiveForeground = Color(0xfffef3f2)
|
|
26
29
|
val colorForeground = Color(0xff050c11)
|
|
@@ -59,6 +62,6 @@ object KinetixTheme {
|
|
|
59
62
|
val colorSuccessForeground = Color(0xfff1f3f1)
|
|
60
63
|
val colorTertiary = Color(0xffb0b0b0)
|
|
61
64
|
val colorTertiaryForeground = Color(0xfff0f7ff)
|
|
62
|
-
val colorWarning = Color(
|
|
65
|
+
val colorWarning = Color(0xff7f5b21)
|
|
63
66
|
val colorWarningForeground = Color(0xfffff8eb)
|
|
64
67
|
}
|
|
@@ -126,7 +126,7 @@
|
|
|
126
126
|
<color name="color_destructive_foreground">#fffef3f2</color>
|
|
127
127
|
<color name="color_success">#ff5d6d5c</color>
|
|
128
128
|
<color name="color_success_foreground">#fff1f3f1</color>
|
|
129
|
-
<color name="color_warning">#
|
|
129
|
+
<color name="color_warning">#ff7f5b21</color>
|
|
130
130
|
<color name="color_warning_foreground">#fffff8eb</color>
|
|
131
131
|
<color name="color_border">#ff92b2c8</color>
|
|
132
132
|
<color name="color_input">#ff92b2c8</color>
|
|
@@ -147,6 +147,9 @@
|
|
|
147
147
|
<color name="color_chart_3">#ffffbc53</color>
|
|
148
148
|
<color name="color_chart_4">#ffd13a3a</color>
|
|
149
149
|
<color name="color_chart_5">#ffb4a499</color>
|
|
150
|
+
<color name="color_chart_6">#ff57778d</color>
|
|
151
|
+
<color name="color_chart_7">#ff9e0808</color>
|
|
152
|
+
<color name="color_chart_8">#ff465245</color>
|
|
150
153
|
<color name="color_sidebar">#fffafafa</color>
|
|
151
154
|
<color name="color_sidebar_foreground">#ff050c11</color>
|
|
152
155
|
<color name="color_sidebar_primary">#ff1b3c53</color>
|
|
@@ -53,6 +53,9 @@ class KinetixColors {
|
|
|
53
53
|
static const colorChart3 = Color(0xFFFFBC53);
|
|
54
54
|
static const colorChart4 = Color(0xFFD13A3A);
|
|
55
55
|
static const colorChart5 = Color(0xFFB4A499);
|
|
56
|
+
static const colorChart6 = Color(0xFF57778D); /** synth: 6th data-viz hue — steel blue, distinct from the navy chart-1 */
|
|
57
|
+
static const colorChart7 = Color(0xFF9E0808); /** synth: 7th data-viz hue — deep red, distinct from chart-4 */
|
|
58
|
+
static const colorChart8 = Color(0xFF465245); /** synth: 8th data-viz hue — deep green, distinct from chart-2 */
|
|
56
59
|
static const colorCream0 = Color(0xFFFFFFFF);
|
|
57
60
|
static const colorCream100 = Color(0xFFFEFDFC);
|
|
58
61
|
static const colorCream1000 = Color(0xFF8C5734);
|
|
@@ -165,6 +168,6 @@ class KinetixColors {
|
|
|
165
168
|
static const colorTaupe950 = Color(0xFF4B3D34);
|
|
166
169
|
static const colorTertiary = Color(0xFFB0B0B0); /** figma: tertiary — switch off-track */
|
|
167
170
|
static const colorTertiaryForeground = Color(0xFFF0F7FF);
|
|
168
|
-
static const colorWarning = Color(
|
|
171
|
+
static const colorWarning = Color(0xFF7F5B21); /** a11y: Figma onWarningContainer #f97907 is 2.7:1 as text on the page / 2.6:1 in the Tag warning variant — fails WCAG AA. amber.800 #7f5b21 clears 6.1:1 / 5.8:1. Dark --warning stays bright (amber.400). See ACCESSIBILITY-AUDIT.md. */
|
|
169
172
|
static const colorWarningForeground = Color(0xFFFFF8EB); /** figma: warningContainer #fff8eb */
|
|
170
173
|
}
|
|
@@ -23,6 +23,9 @@ class KinetixTheme {
|
|
|
23
23
|
static const colorChart3 = Color(0xFFFFBC53);
|
|
24
24
|
static const colorChart4 = Color(0xFFD13A3A);
|
|
25
25
|
static const colorChart5 = Color(0xFFB4A499);
|
|
26
|
+
static const colorChart6 = Color(0xFF57778D); /** synth: 6th data-viz hue — steel blue, distinct from the navy chart-1 */
|
|
27
|
+
static const colorChart7 = Color(0xFF9E0808); /** synth: 7th data-viz hue — deep red, distinct from chart-4 */
|
|
28
|
+
static const colorChart8 = Color(0xFF465245); /** synth: 8th data-viz hue — deep green, distinct from chart-2 */
|
|
26
29
|
static const colorDestructive = Color(0xFFC60A0A); /** a11y: figma error #ec5047 is 3.33:1 under on-error / 3.62:1 as text on the page — fails WCAG AA. red.500 #c60a0a clears 5.6:1 / 6.1:1. See ACCESSIBILITY-AUDIT.md. */
|
|
27
30
|
static const colorDestructiveForeground = Color(0xFFFEF3F2); /** figma: onError #fef3f2 */
|
|
28
31
|
static const colorForeground = Color(0xFF050C11); /** figma: onSurface #050c11 */
|
|
@@ -61,6 +64,6 @@ class KinetixTheme {
|
|
|
61
64
|
static const colorSuccessForeground = Color(0xFFF1F3F1); /** synth */
|
|
62
65
|
static const colorTertiary = Color(0xFFB0B0B0); /** figma: tertiary — switch off-track */
|
|
63
66
|
static const colorTertiaryForeground = Color(0xFFF0F7FF);
|
|
64
|
-
static const colorWarning = Color(
|
|
67
|
+
static const colorWarning = Color(0xFF7F5B21); /** a11y: Figma onWarningContainer #f97907 is 2.7:1 as text on the page / 2.6:1 in the Tag warning variant — fails WCAG AA. amber.800 #7f5b21 clears 6.1:1 / 5.8:1. Dark --warning stays bright (amber.400). See ACCESSIBILITY-AUDIT.md. */
|
|
65
68
|
static const colorWarningForeground = Color(0xFFFFF8EB); /** figma: warningContainer #fff8eb */
|
|
66
69
|
}
|
|
@@ -35,6 +35,9 @@ class KinetixColorSchemeDark {
|
|
|
35
35
|
static const chart3 = Color(0xFFFFC975);
|
|
36
36
|
static const chart4 = Color(0xFFDD6A6A);
|
|
37
37
|
static const chart5 = Color(0xFFD2C1B6);
|
|
38
|
+
static const chart6 = Color(0xFF7495AB);
|
|
39
|
+
static const chart7 = Color(0xFFD13A3A);
|
|
40
|
+
static const chart8 = Color(0xFF748873);
|
|
38
41
|
static const sidebar = Color(0xFF0B1821);
|
|
39
42
|
static const sidebarForeground = Color(0xFFF0F7FF);
|
|
40
43
|
static const sidebarPrimary = Color(0xFF92B2C8);
|
|
@@ -25,7 +25,7 @@ class KinetixColorScheme {
|
|
|
25
25
|
static const destructiveForeground = Color(0xFFFEF3F2);
|
|
26
26
|
static const success = Color(0xFF5D6D5C);
|
|
27
27
|
static const successForeground = Color(0xFFF1F3F1);
|
|
28
|
-
static const warning = Color(
|
|
28
|
+
static const warning = Color(0xFF7F5B21);
|
|
29
29
|
static const warningForeground = Color(0xFFFFF8EB);
|
|
30
30
|
static const border = Color(0xFF92B2C8);
|
|
31
31
|
static const input = Color(0xFF92B2C8);
|
|
@@ -35,6 +35,9 @@ class KinetixColorScheme {
|
|
|
35
35
|
static const chart3 = Color(0xFFFFBC53);
|
|
36
36
|
static const chart4 = Color(0xFFD13A3A);
|
|
37
37
|
static const chart5 = Color(0xFFB4A499);
|
|
38
|
+
static const chart6 = Color(0xFF57778D);
|
|
39
|
+
static const chart7 = Color(0xFF9E0808);
|
|
40
|
+
static const chart8 = Color(0xFF465245);
|
|
38
41
|
static const sidebar = Color(0xFFFAFAFA);
|
|
39
42
|
static const sidebarForeground = Color(0xFF050C11);
|
|
40
43
|
static const sidebarPrimary = Color(0xFF1B3C53);
|
|
@@ -50,6 +50,9 @@ public enum KinetixColor {
|
|
|
50
50
|
public static let colorChart3 = UIColor(red: 1.000, green: 0.737, blue: 0.325, alpha: 1)
|
|
51
51
|
public static let colorChart4 = UIColor(red: 0.820, green: 0.227, blue: 0.227, alpha: 1)
|
|
52
52
|
public static let colorChart5 = UIColor(red: 0.706, green: 0.643, blue: 0.600, alpha: 1)
|
|
53
|
+
public static let colorChart6 = UIColor(red: 0.341, green: 0.467, blue: 0.553, alpha: 1) /** synth: 6th data-viz hue — steel blue, distinct from the navy chart-1 */
|
|
54
|
+
public static let colorChart7 = UIColor(red: 0.620, green: 0.031, blue: 0.031, alpha: 1) /** synth: 7th data-viz hue — deep red, distinct from chart-4 */
|
|
55
|
+
public static let colorChart8 = UIColor(red: 0.275, green: 0.322, blue: 0.271, alpha: 1) /** synth: 8th data-viz hue — deep green, distinct from chart-2 */
|
|
53
56
|
public static let colorCream0 = UIColor(red: 1.000, green: 1.000, blue: 1.000, alpha: 1)
|
|
54
57
|
public static let colorCream100 = UIColor(red: 0.996, green: 0.992, blue: 0.988, alpha: 1)
|
|
55
58
|
public static let colorCream1000 = UIColor(red: 0.549, green: 0.341, blue: 0.204, alpha: 1)
|
|
@@ -162,6 +165,6 @@ public enum KinetixColor {
|
|
|
162
165
|
public static let colorTaupe950 = UIColor(red: 0.294, green: 0.239, blue: 0.204, alpha: 1)
|
|
163
166
|
public static let colorTertiary = UIColor(red: 0.690, green: 0.690, blue: 0.690, alpha: 1) /** figma: tertiary — switch off-track */
|
|
164
167
|
public static let colorTertiaryForeground = UIColor(red: 0.941, green: 0.969, blue: 1.000, alpha: 1)
|
|
165
|
-
public static let colorWarning = UIColor(red: 0.
|
|
168
|
+
public static let colorWarning = UIColor(red: 0.498, green: 0.357, blue: 0.129, alpha: 1) /** a11y: Figma onWarningContainer #f97907 is 2.7:1 as text on the page / 2.6:1 in the Tag warning variant — fails WCAG AA. amber.800 #7f5b21 clears 6.1:1 / 5.8:1. Dark --warning stays bright (amber.400). See ACCESSIBILITY-AUDIT.md. */
|
|
166
169
|
public static let colorWarningForeground = UIColor(red: 1.000, green: 0.973, blue: 0.922, alpha: 1) /** figma: warningContainer #fff8eb */
|
|
167
170
|
}
|
|
@@ -33,6 +33,9 @@ public enum KinetixColorsSwiftUIDark {
|
|
|
33
33
|
public static let chart3 = Color(red: 1, green: 0.788, blue: 0.459)
|
|
34
34
|
public static let chart4 = Color(red: 0.867, green: 0.416, blue: 0.416)
|
|
35
35
|
public static let chart5 = Color(red: 0.824, green: 0.757, blue: 0.714)
|
|
36
|
+
public static let chart6 = Color(red: 0.455, green: 0.584, blue: 0.671)
|
|
37
|
+
public static let chart7 = Color(red: 0.82, green: 0.227, blue: 0.227)
|
|
38
|
+
public static let chart8 = Color(red: 0.455, green: 0.533, blue: 0.451)
|
|
36
39
|
public static let sidebar = Color(red: 0.043, green: 0.094, blue: 0.129)
|
|
37
40
|
public static let sidebarForeground = Color(red: 0.941, green: 0.969, blue: 1)
|
|
38
41
|
public static let sidebarPrimary = Color(red: 0.573, green: 0.698, blue: 0.784)
|
|
@@ -23,7 +23,7 @@ public enum KinetixColorsSwiftUI {
|
|
|
23
23
|
public static let destructiveForeground = Color(red: 0.996, green: 0.953, blue: 0.949)
|
|
24
24
|
public static let success = Color(red: 0.365, green: 0.427, blue: 0.361)
|
|
25
25
|
public static let successForeground = Color(red: 0.945, green: 0.953, blue: 0.945)
|
|
26
|
-
public static let warning = Color(red: 0.
|
|
26
|
+
public static let warning = Color(red: 0.498, green: 0.357, blue: 0.129)
|
|
27
27
|
public static let warningForeground = Color(red: 1, green: 0.973, blue: 0.922)
|
|
28
28
|
public static let border = Color(red: 0.573, green: 0.698, blue: 0.784)
|
|
29
29
|
public static let input = Color(red: 0.573, green: 0.698, blue: 0.784)
|
|
@@ -33,6 +33,9 @@ public enum KinetixColorsSwiftUI {
|
|
|
33
33
|
public static let chart3 = Color(red: 1, green: 0.737, blue: 0.325)
|
|
34
34
|
public static let chart4 = Color(red: 0.82, green: 0.227, blue: 0.227)
|
|
35
35
|
public static let chart5 = Color(red: 0.706, green: 0.643, blue: 0.6)
|
|
36
|
+
public static let chart6 = Color(red: 0.341, green: 0.467, blue: 0.553)
|
|
37
|
+
public static let chart7 = Color(red: 0.62, green: 0.031, blue: 0.031)
|
|
38
|
+
public static let chart8 = Color(red: 0.275, green: 0.322, blue: 0.271)
|
|
36
39
|
public static let sidebar = Color(red: 0.98, green: 0.98, blue: 0.98)
|
|
37
40
|
public static let sidebarForeground = Color(red: 0.02, green: 0.047, blue: 0.067)
|
|
38
41
|
public static let sidebarPrimary = Color(red: 0.106, green: 0.235, blue: 0.325)
|
package/dist/ios/Theme.swift
CHANGED
|
@@ -20,6 +20,9 @@ public class KinetixTheme {
|
|
|
20
20
|
public static let colorChart3 = UIColor(red: 1.000, green: 0.737, blue: 0.325, alpha: 1)
|
|
21
21
|
public static let colorChart4 = UIColor(red: 0.820, green: 0.227, blue: 0.227, alpha: 1)
|
|
22
22
|
public static let colorChart5 = UIColor(red: 0.706, green: 0.643, blue: 0.600, alpha: 1)
|
|
23
|
+
public static let colorChart6 = UIColor(red: 0.341, green: 0.467, blue: 0.553, alpha: 1) /** synth: 6th data-viz hue — steel blue, distinct from the navy chart-1 */
|
|
24
|
+
public static let colorChart7 = UIColor(red: 0.620, green: 0.031, blue: 0.031, alpha: 1) /** synth: 7th data-viz hue — deep red, distinct from chart-4 */
|
|
25
|
+
public static let colorChart8 = UIColor(red: 0.275, green: 0.322, blue: 0.271, alpha: 1) /** synth: 8th data-viz hue — deep green, distinct from chart-2 */
|
|
23
26
|
public static let colorDestructive = UIColor(red: 0.776, green: 0.039, blue: 0.039, alpha: 1) /** a11y: figma error #ec5047 is 3.33:1 under on-error / 3.62:1 as text on the page — fails WCAG AA. red.500 #c60a0a clears 5.6:1 / 6.1:1. See ACCESSIBILITY-AUDIT.md. */
|
|
24
27
|
public static let colorDestructiveForeground = UIColor(red: 0.996, green: 0.953, blue: 0.949, alpha: 1) /** figma: onError #fef3f2 */
|
|
25
28
|
public static let colorForeground = UIColor(red: 0.020, green: 0.047, blue: 0.067, alpha: 1) /** figma: onSurface #050c11 */
|
|
@@ -58,6 +61,6 @@ public class KinetixTheme {
|
|
|
58
61
|
public static let colorSuccessForeground = UIColor(red: 0.945, green: 0.953, blue: 0.945, alpha: 1) /** synth */
|
|
59
62
|
public static let colorTertiary = UIColor(red: 0.690, green: 0.690, blue: 0.690, alpha: 1) /** figma: tertiary — switch off-track */
|
|
60
63
|
public static let colorTertiaryForeground = UIColor(red: 0.941, green: 0.969, blue: 1.000, alpha: 1)
|
|
61
|
-
public static let colorWarning = UIColor(red: 0.
|
|
64
|
+
public static let colorWarning = UIColor(red: 0.498, green: 0.357, blue: 0.129, alpha: 1) /** a11y: Figma onWarningContainer #f97907 is 2.7:1 as text on the page / 2.6:1 in the Tag warning variant — fails WCAG AA. amber.800 #7f5b21 clears 6.1:1 / 5.8:1. Dark --warning stays bright (amber.400). See ACCESSIBILITY-AUDIT.md. */
|
|
62
65
|
public static let colorWarningForeground = UIColor(red: 1.000, green: 0.973, blue: 0.922, alpha: 1) /** figma: warningContainer #fff8eb */
|
|
63
66
|
}
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
/* Generated by Style Dictionary — shadow + typography composites. */
|
|
2
|
+
|
|
3
|
+
.dark {
|
|
4
|
+
--shadow-focus: 0 0 0 1px #92b2c8, 0 0 0 4px #92b2c852;
|
|
5
|
+
--shadow-focus-destructive: 0 0 0 1px #dd6a6a, 0 0 0 4px #dd6a6a52;
|
|
6
|
+
--shadow-focus-success: 0 0 0 1px #90a08f, 0 0 0 4px #90a08f52;
|
|
7
|
+
--shadow-focus-warning: 0 0 0 1px #ffc975, 0 0 0 4px #ffc97552;
|
|
8
|
+
}
|
package/dist/web/globals.css
CHANGED
|
@@ -196,7 +196,7 @@
|
|
|
196
196
|
--destructive-foreground: var(--semantic-on-error); /** figma: onError #fef3f2 */
|
|
197
197
|
--success: var(--green-600); /** synth: no Figma success token; green ramp step 6 (distinct from secondary) */
|
|
198
198
|
--success-foreground: var(--green-50); /** synth */
|
|
199
|
-
--warning: var(--
|
|
199
|
+
--warning: var(--amber-800); /** a11y: Figma onWarningContainer #f97907 is 2.7:1 as text on the page / 2.6:1 in the Tag warning variant — fails WCAG AA. amber.800 #7f5b21 clears 6.1:1 / 5.8:1. Dark --warning stays bright (amber.400). See ACCESSIBILITY-AUDIT.md. */
|
|
200
200
|
--warning-foreground: var(--semantic-warning-container); /** figma: warningContainer #fff8eb */
|
|
201
201
|
--border: var(--blue-100); /** figma: outline #92b2c8 */
|
|
202
202
|
--input: var(--blue-100); /** figma: outline #92b2c8 (same as border) */
|
|
@@ -206,6 +206,9 @@
|
|
|
206
206
|
--chart-3: var(--amber-500);
|
|
207
207
|
--chart-4: var(--red-400);
|
|
208
208
|
--chart-5: var(--taupe-600);
|
|
209
|
+
--chart-6: var(--blue-300); /** synth: 6th data-viz hue — steel blue, distinct from the navy chart-1 */
|
|
210
|
+
--chart-7: var(--red-600); /** synth: 7th data-viz hue — deep red, distinct from chart-4 */
|
|
211
|
+
--chart-8: var(--green-700); /** synth: 8th data-viz hue — deep green, distinct from chart-2 */
|
|
209
212
|
--sidebar: var(--neutral-50);
|
|
210
213
|
--sidebar-foreground: var(--blue-900);
|
|
211
214
|
--sidebar-primary: var(--blue-500);
|
package/dist/web/tokens.d.ts
CHANGED
|
@@ -139,7 +139,7 @@ declare const tokens: {
|
|
|
139
139
|
"destructive-foreground": "#fef3f2",
|
|
140
140
|
"success": "#5d6d5c",
|
|
141
141
|
"success-foreground": "#f1f3f1",
|
|
142
|
-
"warning": "#
|
|
142
|
+
"warning": "#7f5b21",
|
|
143
143
|
"warning-foreground": "#fff8eb",
|
|
144
144
|
"border": "#92b2c8",
|
|
145
145
|
"input": "#92b2c8",
|
|
@@ -162,6 +162,9 @@ declare const tokens: {
|
|
|
162
162
|
"chart-3": "#ffbc53",
|
|
163
163
|
"chart-4": "#d13a3a",
|
|
164
164
|
"chart-5": "#b4a499",
|
|
165
|
+
"chart-6": "#57778d",
|
|
166
|
+
"chart-7": "#9e0808",
|
|
167
|
+
"chart-8": "#465245",
|
|
165
168
|
"sidebar": "#fafafa",
|
|
166
169
|
"sidebar-foreground": "#050c11",
|
|
167
170
|
"sidebar-primary": "#1b3c53",
|
package/dist/web/tokens.js
CHANGED
|
@@ -139,7 +139,7 @@ export const tokens = {
|
|
|
139
139
|
"destructive-foreground": "#fef3f2",
|
|
140
140
|
"success": "#5d6d5c",
|
|
141
141
|
"success-foreground": "#f1f3f1",
|
|
142
|
-
"warning": "#
|
|
142
|
+
"warning": "#7f5b21",
|
|
143
143
|
"warning-foreground": "#fff8eb",
|
|
144
144
|
"border": "#92b2c8",
|
|
145
145
|
"input": "#92b2c8",
|
|
@@ -162,6 +162,9 @@ export const tokens = {
|
|
|
162
162
|
"chart-3": "#ffbc53",
|
|
163
163
|
"chart-4": "#d13a3a",
|
|
164
164
|
"chart-5": "#b4a499",
|
|
165
|
+
"chart-6": "#57778d",
|
|
166
|
+
"chart-7": "#9e0808",
|
|
167
|
+
"chart-8": "#465245",
|
|
165
168
|
"sidebar": "#fafafa",
|
|
166
169
|
"sidebar-foreground": "#050c11",
|
|
167
170
|
"sidebar-primary": "#1b3c53",
|
package/dist/web/tokens.ts
CHANGED
|
@@ -140,7 +140,7 @@ export const tokens = {
|
|
|
140
140
|
"destructive-foreground": "#fef3f2",
|
|
141
141
|
"success": "#5d6d5c",
|
|
142
142
|
"success-foreground": "#f1f3f1",
|
|
143
|
-
"warning": "#
|
|
143
|
+
"warning": "#7f5b21",
|
|
144
144
|
"warning-foreground": "#fff8eb",
|
|
145
145
|
"border": "#92b2c8",
|
|
146
146
|
"input": "#92b2c8",
|
|
@@ -163,6 +163,9 @@ export const tokens = {
|
|
|
163
163
|
"chart-3": "#ffbc53",
|
|
164
164
|
"chart-4": "#d13a3a",
|
|
165
165
|
"chart-5": "#b4a499",
|
|
166
|
+
"chart-6": "#57778d",
|
|
167
|
+
"chart-7": "#9e0808",
|
|
168
|
+
"chart-8": "#465245",
|
|
166
169
|
"sidebar": "#fafafa",
|
|
167
170
|
"sidebar-foreground": "#050c11",
|
|
168
171
|
"sidebar-primary": "#1b3c53",
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@kinetixui/tokens",
|
|
3
|
-
"version": "0.4.
|
|
3
|
+
"version": "0.4.3",
|
|
4
4
|
"description": "KinetixUI design tokens — CSS variables, a TypeScript object, and native SwiftUI / Jetpack Compose / Flutter text styles, compiled by Style Dictionary.",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"design-tokens",
|
|
@@ -29,6 +29,7 @@
|
|
|
29
29
|
"./css": "./dist/web/globals.css",
|
|
30
30
|
"./css/dark": "./dist/web/globals.dark.css",
|
|
31
31
|
"./css/extras": "./dist/web/extras.css",
|
|
32
|
+
"./css/extras/dark": "./dist/web/extras.dark.css",
|
|
32
33
|
"./package.json": "./package.json"
|
|
33
34
|
},
|
|
34
35
|
"files": [
|