@vellira-ui/tokens 2.23.0 → 2.24.0

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.
Files changed (69) hide show
  1. package/dist/css/tokens.css +106 -64
  2. package/dist/dark/components/checkbox.d.ts +2 -2
  3. package/dist/dark/components/dropdown.d.ts +1 -1
  4. package/dist/dark/components/input.d.ts +1 -1
  5. package/dist/dark/components/menu.d.ts +1 -1
  6. package/dist/dark/components/radio.d.ts +21 -5
  7. package/dist/dark/components/radio.d.ts.map +1 -1
  8. package/dist/dark/components/radio.js +19 -3
  9. package/dist/dark/semantic/control.d.ts +7 -2
  10. package/dist/dark/semantic/control.d.ts.map +1 -1
  11. package/dist/dark/semantic/control.js +7 -2
  12. package/dist/dark/semantic/status.d.ts +1 -1
  13. package/dist/dark/semantic/status.js +1 -1
  14. package/dist/dark/theme.d.ts +5 -3
  15. package/dist/dark/theme.d.ts.map +1 -1
  16. package/dist/generated/token-types.d.ts +7 -7
  17. package/dist/generated/token-types.d.ts.map +1 -1
  18. package/dist/generated/token-types.js +64 -0
  19. package/dist/highContrast/components/button.d.ts +4 -4
  20. package/dist/highContrast/components/button.d.ts.map +1 -1
  21. package/dist/highContrast/components/button.js +4 -5
  22. package/dist/highContrast/components/checkbox.d.ts +5 -5
  23. package/dist/highContrast/components/formField.d.ts +1 -1
  24. package/dist/highContrast/components/formField.js +1 -1
  25. package/dist/highContrast/components/input.d.ts +2 -2
  26. package/dist/highContrast/components/radio.d.ts +23 -7
  27. package/dist/highContrast/components/radio.d.ts.map +1 -1
  28. package/dist/highContrast/components/radio.js +22 -6
  29. package/dist/highContrast/components/select.d.ts +2 -2
  30. package/dist/highContrast/components/tabs.d.ts +1 -1
  31. package/dist/highContrast/components/tooltip.d.ts +1 -1
  32. package/dist/highContrast/semantic/action.d.ts +1 -1
  33. package/dist/highContrast/semantic/action.js +7 -7
  34. package/dist/highContrast/semantic/control.d.ts +10 -5
  35. package/dist/highContrast/semantic/control.d.ts.map +1 -1
  36. package/dist/highContrast/semantic/control.js +8 -3
  37. package/dist/highContrast/semantic/navigation.d.ts +1 -1
  38. package/dist/highContrast/semantic/status.d.ts +2 -2
  39. package/dist/highContrast/semantic/status.js +2 -2
  40. package/dist/highContrast/semantic/surface.d.ts +1 -1
  41. package/dist/highContrast/semantic/surface.js +1 -1
  42. package/dist/highContrast/semantic/text.d.ts +2 -1
  43. package/dist/highContrast/semantic/text.d.ts.map +1 -1
  44. package/dist/highContrast/semantic/text.js +3 -3
  45. package/dist/highContrast/theme.d.ts +5 -3
  46. package/dist/highContrast/theme.d.ts.map +1 -1
  47. package/dist/index.d.ts +5 -3
  48. package/dist/index.d.ts.map +1 -1
  49. package/dist/light/components/checkbox.d.ts +2 -2
  50. package/dist/light/components/radio.d.ts +18 -2
  51. package/dist/light/components/radio.d.ts.map +1 -1
  52. package/dist/light/components/radio.js +17 -1
  53. package/dist/light/components/select.d.ts +1 -1
  54. package/dist/light/components/tabs.d.ts +1 -1
  55. package/dist/light/components/tooltip.d.ts +1 -1
  56. package/dist/light/semantic/action.js +17 -17
  57. package/dist/light/semantic/control.d.ts +8 -3
  58. package/dist/light/semantic/control.d.ts.map +1 -1
  59. package/dist/light/semantic/control.js +8 -3
  60. package/dist/light/semantic/status.d.ts +1 -1
  61. package/dist/light/semantic/status.js +1 -1
  62. package/dist/light/semantic/text.d.ts +2 -2
  63. package/dist/light/semantic/text.js +2 -2
  64. package/dist/light/theme.d.ts +5 -3
  65. package/dist/light/theme.d.ts.map +1 -1
  66. package/dist/tokens/typography.d.ts +5 -3
  67. package/dist/tokens/typography.d.ts.map +1 -1
  68. package/dist/tokens/typography.js +5 -3
  69. package/package.json +1 -1
@@ -8,8 +8,8 @@ export const status = {
8
8
  },
9
9
  error: {
10
10
  fg: colors.error[400],
11
- bg: colors.gray[900],
12
- border: colors.error[400],
11
+ bg: colors.error[600],
12
+ border: colors.error[500],
13
13
  strong: colors.error[300],
14
14
  },
15
15
  warning: {
@@ -6,7 +6,7 @@ export declare const surface: {
6
6
  readonly pressed: "#111827";
7
7
  readonly danger: string;
8
8
  readonly hover: "#1F2937";
9
- readonly active: "#111827";
9
+ readonly active: "#6B7280";
10
10
  readonly inverse: "#FFFFFF";
11
11
  };
12
12
  //# sourceMappingURL=surface.d.ts.map
@@ -8,6 +8,6 @@ export const surface = {
8
8
  pressed: colors.gray[900],
9
9
  danger: withAlpha(colors.error[800], 0.5),
10
10
  hover: colors.gray[800],
11
- active: colors.gray[900],
11
+ active: colors.gray[500],
12
12
  inverse: colors.mono[50],
13
13
  };
@@ -4,7 +4,8 @@ export declare const text: {
4
4
  readonly muted: "#E5E7EB";
5
5
  readonly disabled: "#6B7280";
6
6
  readonly subtle: "#F3F4F6";
7
- readonly inverse: "#000000";
7
+ readonly elevated: "#9CA3AF";
8
+ readonly inverse: "#F9FAFB";
8
9
  readonly onInverse: "#000000";
9
10
  readonly brand: "#B8A8FF";
10
11
  };
@@ -1 +1 @@
1
- {"version":3,"file":"text.d.ts","sourceRoot":"","sources":["../../../src/highContrast/semantic/text.ts"],"names":[],"mappings":"AAIA,eAAO,MAAM,IAAI;;;;;;;;;CAWP,CAAC"}
1
+ {"version":3,"file":"text.d.ts","sourceRoot":"","sources":["../../../src/highContrast/semantic/text.ts"],"names":[],"mappings":"AAEA,eAAO,MAAM,IAAI;;;;;;;;;;CAYP,CAAC"}
@@ -1,12 +1,12 @@
1
1
  import { colors } from '../../primitives/colors.js';
2
- const inverse = colors.mono[950];
3
2
  export const text = {
4
3
  primary: colors.mono[50],
5
4
  secondary: colors.vellira[150],
6
5
  muted: colors.gray[200],
7
6
  disabled: colors.gray[500],
8
7
  subtle: colors.gray[100],
9
- inverse,
10
- onInverse: inverse,
8
+ elevated: colors.gray[400],
9
+ inverse: colors.mono[100],
10
+ onInverse: colors.mono[950],
11
11
  brand: colors.primary[300],
12
12
  };
@@ -212,10 +212,12 @@ export declare const highContrastTheme: {
212
212
  readonly semibold: "700";
213
213
  };
214
214
  readonly lineHeight: {
215
- readonly sm: 16;
215
+ readonly xs: 16;
216
+ readonly sm: 20;
216
217
  readonly md: 24;
217
- readonly lg: 32;
218
- readonly xl: 40;
218
+ readonly lg: 28;
219
+ readonly xl: 32;
220
+ readonly xxl: 40;
219
221
  };
220
222
  };
221
223
  readonly zIndex: {
@@ -1 +1 @@
1
- {"version":3,"file":"theme.d.ts","sourceRoot":"","sources":["../../src/highContrast/theme.ts"],"names":[],"mappings":"AASA,OAAO,KAAK,UAAU,MAAM,uBAAuB,CAAC;AACpD,OAAO,KAAK,QAAQ,MAAM,qBAAqB,CAAC;AAEhD,eAAO,MAAM,iBAAiB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CAYpB,CAAC"}
1
+ {"version":3,"file":"theme.d.ts","sourceRoot":"","sources":["../../src/highContrast/theme.ts"],"names":[],"mappings":"AASA,OAAO,KAAK,UAAU,MAAM,uBAAuB,CAAC;AACpD,OAAO,KAAK,QAAQ,MAAM,qBAAqB,CAAC;AAEhD,eAAO,MAAM,iBAAiB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CAYpB,CAAC"}
package/dist/index.d.ts CHANGED
@@ -79,10 +79,12 @@ export declare const theme: {
79
79
  readonly semibold: "700";
80
80
  };
81
81
  readonly lineHeight: {
82
- readonly sm: 16;
82
+ readonly xs: 16;
83
+ readonly sm: 20;
83
84
  readonly md: 24;
84
- readonly lg: 32;
85
- readonly xl: 40;
85
+ readonly lg: 28;
86
+ readonly xl: 32;
87
+ readonly xxl: 40;
86
88
  };
87
89
  };
88
90
  readonly zIndex: {
@@ -1 +1 @@
1
- {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,SAAS,EAAE,MAAM,iBAAiB,CAAC;AAC5C,OAAO,EAAE,iBAAiB,EAAE,MAAM,yBAAyB,CAAC;AAC5D,OAAO,EAAE,UAAU,EAAE,MAAM,kBAAkB,CAAC;AAE9C,OAAO,EAAE,SAAS,EAAE,iBAAiB,EAAE,UAAU,EAAE,CAAC;AAEpD,YAAY,EACV,mBAAmB,EACnB,aAAa,EACb,cAAc,EACd,kBAAkB,EAClB,eAAe,EACf,SAAS,EACT,iBAAiB,EACjB,UAAU,EACV,iBAAiB,EACjB,oBAAoB,EACpB,SAAS,EACT,SAAS,EACT,iBAAiB,EACjB,aAAa,EACb,sBAAsB,EACtB,qBAAqB,EACrB,YAAY,EACZ,gBAAgB,GACjB,MAAM,4BAA4B,CAAC;AACpC,OAAO,EACL,oBAAoB,EACpB,cAAc,EACd,eAAe,EACf,mBAAmB,EACnB,gBAAgB,EAChB,kBAAkB,EAClB,qBAAqB,EACrB,UAAU,EACV,UAAU,GACX,MAAM,4BAA4B,CAAC;AACpC,OAAO,EAAE,OAAO,EAAE,MAAM,uBAAuB,CAAC;AAEhD,eAAO,MAAM,KAAK;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CAIR,CAAC"}
1
+ {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,SAAS,EAAE,MAAM,iBAAiB,CAAC;AAC5C,OAAO,EAAE,iBAAiB,EAAE,MAAM,yBAAyB,CAAC;AAC5D,OAAO,EAAE,UAAU,EAAE,MAAM,kBAAkB,CAAC;AAE9C,OAAO,EAAE,SAAS,EAAE,iBAAiB,EAAE,UAAU,EAAE,CAAC;AAEpD,YAAY,EACV,mBAAmB,EACnB,aAAa,EACb,cAAc,EACd,kBAAkB,EAClB,eAAe,EACf,SAAS,EACT,iBAAiB,EACjB,UAAU,EACV,iBAAiB,EACjB,oBAAoB,EACpB,SAAS,EACT,SAAS,EACT,iBAAiB,EACjB,aAAa,EACb,sBAAsB,EACtB,qBAAqB,EACrB,YAAY,EACZ,gBAAgB,GACjB,MAAM,4BAA4B,CAAC;AACpC,OAAO,EACL,oBAAoB,EACpB,cAAc,EACd,eAAe,EACf,mBAAmB,EACnB,gBAAgB,EAChB,kBAAkB,EAClB,qBAAqB,EACrB,UAAU,EACV,UAAU,GACX,MAAM,4BAA4B,CAAC;AACpC,OAAO,EAAE,OAAO,EAAE,MAAM,uBAAuB,CAAC;AAEhD,eAAO,MAAM,KAAK;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CAIR,CAAC"}
@@ -6,7 +6,7 @@ export declare const checkbox: {
6
6
  };
7
7
  readonly hover: {
8
8
  readonly bg: "#F4F3FF";
9
- readonly fg: "#342580";
9
+ readonly fg: "#5037C8";
10
10
  readonly border: "#5037C8";
11
11
  };
12
12
  readonly checked: {
@@ -22,7 +22,7 @@ export declare const checkbox: {
22
22
  };
23
23
  readonly pressed: {
24
24
  readonly bg: "#21164F";
25
- readonly fg: "#FFFFFF";
25
+ readonly fg: "#0F0F0F";
26
26
  readonly border: "#21164F";
27
27
  };
28
28
  };
@@ -6,9 +6,14 @@ export declare const radio: {
6
6
  };
7
7
  readonly hover: {
8
8
  readonly bg: "#F4F3FF";
9
- readonly fg: "#342580";
9
+ readonly fg: "#5037C8";
10
10
  readonly border: "#5037C8";
11
11
  };
12
+ readonly pressed: {
13
+ readonly bg: "#E9E6FF";
14
+ readonly fg: "#342580";
15
+ readonly border: "#402C9F";
16
+ };
12
17
  readonly checked: {
13
18
  readonly default: {
14
19
  readonly fg: "#5037C8";
@@ -21,13 +26,24 @@ export declare const radio: {
21
26
  readonly border: "#402C9F";
22
27
  };
23
28
  readonly pressed: {
29
+ readonly fg: "#5037C8";
24
30
  readonly bg: "#21164F";
25
- readonly fg: "#FFFFFF";
26
31
  readonly border: "#21164F";
27
32
  };
33
+ readonly disabled: {
34
+ readonly bg: "#FFFFFF";
35
+ readonly fg: "#9CA3AF";
36
+ readonly border: "#BBB2D2";
37
+ };
38
+ };
39
+ readonly invalid: {
40
+ readonly bg: "#F4F1FB";
41
+ readonly fg: "#0F0F0F";
42
+ readonly border: "#E11D48";
28
43
  };
29
44
  readonly focus: {
30
45
  readonly ring: "#5037C8";
46
+ readonly border: "#5037C8";
31
47
  };
32
48
  readonly disabled: {
33
49
  readonly bg: "#FFFFFF";
@@ -1 +1 @@
1
- {"version":3,"file":"radio.d.ts","sourceRoot":"","sources":["../../../src/light/components/radio.ts"],"names":[],"mappings":"AAMA,eAAO,MAAM,KAAK;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CA8BR,CAAC"}
1
+ {"version":3,"file":"radio.d.ts","sourceRoot":"","sources":["../../../src/light/components/radio.ts"],"names":[],"mappings":"AAOA,eAAO,MAAM,KAAK;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CAkDR,CAAC"}
@@ -1,6 +1,7 @@
1
1
  import { border } from '../semantic/border.js';
2
2
  import { control } from '../semantic/control.js';
3
3
  import { focus } from '../semantic/focus.js';
4
+ import { status } from '../semantic/status.js';
4
5
  import { surface } from '../semantic/surface.js';
5
6
  import { text } from '../semantic/text.js';
6
7
  export const radio = {
@@ -10,6 +11,7 @@ export const radio = {
10
11
  border: border.default,
11
12
  },
12
13
  hover: control.hover,
14
+ pressed: control.active,
13
15
  checked: {
14
16
  default: {
15
17
  ...control.selected.default,
@@ -19,10 +21,24 @@ export const radio = {
19
21
  ...control.selected.hover,
20
22
  fg: text.brand,
21
23
  },
22
- pressed: control.selected.active,
24
+ pressed: {
25
+ ...control.selected.active,
26
+ fg: text.brand,
27
+ },
28
+ disabled: {
29
+ bg: surface.subtle,
30
+ fg: text.disabled,
31
+ border: border.default,
32
+ },
33
+ },
34
+ invalid: {
35
+ bg: surface.default,
36
+ fg: text.inverse,
37
+ border: status.error.border,
23
38
  },
24
39
  focus: {
25
40
  ring: focus.ring,
41
+ border: border.focus,
26
42
  },
27
43
  disabled: {
28
44
  bg: surface.subtle,
@@ -7,7 +7,7 @@ export declare const select: {
7
7
  };
8
8
  readonly hover: {
9
9
  readonly bg: "#F4F3FF";
10
- readonly fg: "#342580";
10
+ readonly fg: "#5037C8";
11
11
  readonly border: "#5037C8";
12
12
  };
13
13
  readonly focus: {
@@ -40,7 +40,7 @@ export declare const tabs: {
40
40
  };
41
41
  readonly active: {
42
42
  readonly bg: "#5037C8";
43
- readonly fg: "#FFFFFF";
43
+ readonly fg: "#0F0F0F";
44
44
  readonly border: "#7C5CFF";
45
45
  };
46
46
  readonly disabled: {
@@ -1,7 +1,7 @@
1
1
  export declare const tooltip: {
2
2
  readonly content: {
3
3
  readonly bg: "#181521";
4
- readonly fg: "#FFFFFF";
4
+ readonly fg: "#0F0F0F";
5
5
  readonly border: "#BBB2D2";
6
6
  };
7
7
  readonly arrow: {
@@ -4,22 +4,22 @@ export const action = {
4
4
  primary: {
5
5
  default: {
6
6
  bg: colors.primary[600],
7
- fg: text.inverse,
7
+ fg: text.onInverse,
8
8
  border: colors.primary[600],
9
9
  },
10
10
  hover: {
11
11
  bg: colors.primary[700],
12
- fg: text.inverse,
12
+ fg: text.onInverse,
13
13
  border: colors.primary[700],
14
14
  },
15
15
  active: {
16
16
  bg: colors.primary[800],
17
- fg: text.inverse,
17
+ fg: text.onInverse,
18
18
  border: colors.primary[800],
19
19
  },
20
20
  muted: {
21
21
  bg: colors.primary[500],
22
- fg: text.inverse,
22
+ fg: text.onInverse,
23
23
  border: colors.primary[500],
24
24
  },
25
25
  subtle: {
@@ -31,71 +31,71 @@ export const action = {
31
31
  secondary: {
32
32
  default: {
33
33
  bg: colors.secondary[700],
34
- fg: text.inverse,
34
+ fg: text.onInverse,
35
35
  border: colors.secondary[700],
36
36
  },
37
37
  hover: {
38
38
  bg: colors.secondary[800],
39
- fg: text.inverse,
39
+ fg: text.onInverse,
40
40
  border: colors.secondary[800],
41
41
  },
42
42
  active: {
43
43
  bg: colors.secondary[900],
44
- fg: text.inverse,
44
+ fg: text.onInverse,
45
45
  border: colors.secondary[900],
46
46
  },
47
47
  muted: {
48
48
  bg: colors.secondary[500],
49
- fg: text.inverse,
49
+ fg: text.onInverse,
50
50
  border: colors.secondary[500],
51
51
  },
52
52
  subtle: {
53
53
  bg: colors.secondary[50],
54
- fg: text.inverse,
54
+ fg: text.onInverse,
55
55
  border: colors.secondary[700],
56
56
  },
57
57
  },
58
58
  close: {
59
59
  default: {
60
60
  bg: colors.grayBlue[200],
61
- fg: text.onInverse,
61
+ fg: text.inverse,
62
62
  border: colors.grayBlue[200],
63
63
  },
64
64
  hover: {
65
65
  bg: colors.grayBlue[300],
66
- fg: text.onInverse,
66
+ fg: text.inverse,
67
67
  border: colors.grayBlue[300],
68
68
  },
69
69
  active: {
70
70
  bg: colors.grayBlue[400],
71
- fg: text.onInverse,
71
+ fg: text.inverse,
72
72
  border: colors.grayBlue[400],
73
73
  },
74
74
  muted: {
75
75
  bg: colors.grayBlue[600],
76
- fg: text.inverse,
76
+ fg: text.onInverse,
77
77
  border: colors.grayBlue[600],
78
78
  },
79
79
  subtle: {
80
80
  bg: colors.grayBlue[500],
81
- fg: text.inverse,
81
+ fg: text.onInverse,
82
82
  border: colors.grayBlue[500],
83
83
  },
84
84
  },
85
85
  danger: {
86
86
  default: {
87
87
  bg: colors.error[700],
88
- fg: text.inverse,
88
+ fg: text.onInverse,
89
89
  border: colors.error[700],
90
90
  },
91
91
  hover: {
92
92
  bg: colors.error[800],
93
- fg: text.inverse,
93
+ fg: text.onInverse,
94
94
  border: colors.error[800],
95
95
  },
96
96
  active: {
97
97
  bg: colors.error[900],
98
- fg: text.inverse,
98
+ fg: text.onInverse,
99
99
  border: colors.error[900],
100
100
  },
101
101
  subtle: {
@@ -6,9 +6,14 @@ export declare const control: {
6
6
  };
7
7
  readonly hover: {
8
8
  readonly bg: "#F4F3FF";
9
- readonly fg: "#342580";
9
+ readonly fg: "#5037C8";
10
10
  readonly border: "#5037C8";
11
11
  };
12
+ readonly active: {
13
+ readonly bg: "#E9E6FF";
14
+ readonly fg: "#342580";
15
+ readonly border: "#402C9F";
16
+ };
12
17
  readonly selected: {
13
18
  readonly default: {
14
19
  readonly bg: "#5037C8";
@@ -22,12 +27,12 @@ export declare const control: {
22
27
  };
23
28
  readonly active: {
24
29
  readonly bg: "#21164F";
25
- readonly fg: "#FFFFFF";
30
+ readonly fg: "#0F0F0F";
26
31
  readonly border: "#21164F";
27
32
  };
28
33
  readonly muted: {
29
34
  readonly bg: "#5037C8";
30
- readonly fg: "#FFFFFF";
35
+ readonly fg: "#0F0F0F";
31
36
  readonly border: "#7C5CFF";
32
37
  };
33
38
  };
@@ -1 +1 @@
1
- {"version":3,"file":"control.d.ts","sourceRoot":"","sources":["../../../src/light/semantic/control.ts"],"names":[],"mappings":"AAMA,eAAO,MAAM,OAAO;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CAiCV,CAAC"}
1
+ {"version":3,"file":"control.d.ts","sourceRoot":"","sources":["../../../src/light/semantic/control.ts"],"names":[],"mappings":"AAMA,eAAO,MAAM,OAAO;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CA4CV,CAAC"}
@@ -10,18 +10,23 @@ export const control = {
10
10
  },
11
11
  hover: {
12
12
  bg: colors.primary[50],
13
- fg: colors.primary[900],
13
+ fg: colors.primary[700],
14
14
  border: colors.primary[700],
15
15
  },
16
+ active: {
17
+ bg: colors.primary[100],
18
+ fg: colors.primary[900],
19
+ border: colors.primary[800],
20
+ },
16
21
  selected: {
17
22
  default: {
18
23
  bg: colors.primary[700],
19
- fg: text.inverse,
24
+ fg: text.onInverse,
20
25
  border: colors.primary[700],
21
26
  },
22
27
  hover: {
23
28
  bg: colors.primary[800],
24
- fg: text.inverse,
29
+ fg: text.onInverse,
25
30
  border: colors.primary[800],
26
31
  },
27
32
  active: {
@@ -8,7 +8,7 @@ export declare const status: {
8
8
  readonly error: {
9
9
  readonly fg: "#E11D48";
10
10
  readonly bg: "#FFE4E6";
11
- readonly border: "#FDA4AF";
11
+ readonly border: "#E11D48";
12
12
  readonly strong: "#BE123C";
13
13
  };
14
14
  readonly warning: {
@@ -9,7 +9,7 @@ export const status = {
9
9
  error: {
10
10
  fg: colors.error[600],
11
11
  bg: colors.error[100],
12
- border: colors.error[300],
12
+ border: colors.error[600],
13
13
  strong: colors.error[700],
14
14
  },
15
15
  warning: {
@@ -4,8 +4,8 @@ export declare const text: {
4
4
  readonly muted: "#958CB0";
5
5
  readonly disabled: "#9CA3AF";
6
6
  readonly subtle: "#1A1A1A";
7
- readonly inverse: "#FFFFFF";
8
- readonly onInverse: "#0F0F0F";
7
+ readonly inverse: "#0F0F0F";
8
+ readonly onInverse: "#FFFFFF";
9
9
  readonly brand: "#5037C8";
10
10
  };
11
11
  //# sourceMappingURL=text.d.ts.map
@@ -5,7 +5,7 @@ export const text = {
5
5
  muted: colors.vellira[400],
6
6
  disabled: colors.gray[400],
7
7
  subtle: colors.mono[800],
8
- inverse: colors.mono[50],
9
- onInverse: colors.mono[900],
8
+ inverse: colors.mono[900],
9
+ onInverse: colors.mono[50],
10
10
  brand: colors.primary[700],
11
11
  };
@@ -212,10 +212,12 @@ export declare const lightTheme: {
212
212
  readonly semibold: "700";
213
213
  };
214
214
  readonly lineHeight: {
215
- readonly sm: 16;
215
+ readonly xs: 16;
216
+ readonly sm: 20;
216
217
  readonly md: 24;
217
- readonly lg: 32;
218
- readonly xl: 40;
218
+ readonly lg: 28;
219
+ readonly xl: 32;
220
+ readonly xxl: 40;
219
221
  };
220
222
  };
221
223
  readonly zIndex: {
@@ -1 +1 @@
1
- {"version":3,"file":"theme.d.ts","sourceRoot":"","sources":["../../src/light/theme.ts"],"names":[],"mappings":"AASA,OAAO,KAAK,UAAU,MAAM,uBAAuB,CAAC;AACpD,OAAO,KAAK,QAAQ,MAAM,qBAAqB,CAAC;AAEhD,eAAO,MAAM,UAAU;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CAYb,CAAC"}
1
+ {"version":3,"file":"theme.d.ts","sourceRoot":"","sources":["../../src/light/theme.ts"],"names":[],"mappings":"AASA,OAAO,KAAK,UAAU,MAAM,uBAAuB,CAAC;AACpD,OAAO,KAAK,QAAQ,MAAM,qBAAqB,CAAC;AAEhD,eAAO,MAAM,UAAU;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CAYb,CAAC"}
@@ -21,10 +21,12 @@ export declare const typography: {
21
21
  readonly semibold: "700";
22
22
  };
23
23
  readonly lineHeight: {
24
- readonly sm: 16;
24
+ readonly xs: 16;
25
+ readonly sm: 20;
25
26
  readonly md: 24;
26
- readonly lg: 32;
27
- readonly xl: 40;
27
+ readonly lg: 28;
28
+ readonly xl: 32;
29
+ readonly xxl: 40;
28
30
  };
29
31
  };
30
32
  //# sourceMappingURL=typography.d.ts.map
@@ -1 +1 @@
1
- {"version":3,"file":"typography.d.ts","sourceRoot":"","sources":["../../src/tokens/typography.ts"],"names":[],"mappings":"AAAA,eAAO,MAAM,UAAU;;;;;;;;;;;;;;;;;;;;;;;;;;;;CA+Bb,CAAC"}
1
+ {"version":3,"file":"typography.d.ts","sourceRoot":"","sources":["../../src/tokens/typography.ts"],"names":[],"mappings":"AAAA,eAAO,MAAM,UAAU;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CAiCb,CAAC"}
@@ -21,9 +21,11 @@ export const typography = {
21
21
  semibold: '700',
22
22
  },
23
23
  lineHeight: {
24
- sm: 16,
24
+ xs: 16,
25
+ sm: 20,
25
26
  md: 24,
26
- lg: 32,
27
- xl: 40,
27
+ lg: 28,
28
+ xl: 32,
29
+ xxl: 40,
28
30
  },
29
31
  };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@vellira-ui/tokens",
3
- "version": "2.23.0",
3
+ "version": "2.24.0",
4
4
  "description": "Design tokens for Vellira Design System",
5
5
  "author": "Roman Bakurov",
6
6
  "license": "MIT",