@anyknown/ui 0.2.0 → 0.3.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.
@@ -17,6 +17,8 @@ export declare const lightColor: stylex.Theme<stylex.VarGroup<Readonly<{
17
17
  successSubtle: string;
18
18
  warning: string;
19
19
  warningSubtle: string;
20
+ info: string;
21
+ infoSubtle: string;
20
22
  focusRing: string;
21
23
  bone: string;
22
24
  sheen: string;
@@ -99,6 +101,8 @@ export declare const darkColor: stylex.Theme<stylex.VarGroup<Readonly<{
99
101
  successSubtle: string;
100
102
  warning: string;
101
103
  warningSubtle: string;
104
+ info: string;
105
+ infoSubtle: string;
102
106
  focusRing: string;
103
107
  bone: string;
104
108
  sheen: string;
@@ -182,6 +186,8 @@ export declare const light: readonly [stylex.Theme<stylex.VarGroup<Readonly<{
182
186
  successSubtle: string;
183
187
  warning: string;
184
188
  warningSubtle: string;
189
+ info: string;
190
+ infoSubtle: string;
185
191
  focusRing: string;
186
192
  bone: string;
187
193
  sheen: string;
@@ -258,6 +264,8 @@ export declare const dark: readonly [stylex.Theme<stylex.VarGroup<Readonly<{
258
264
  successSubtle: string;
259
265
  warning: string;
260
266
  warningSubtle: string;
267
+ info: string;
268
+ infoSubtle: string;
261
269
  focusRing: string;
262
270
  bone: string;
263
271
  sheen: string;
@@ -23,6 +23,8 @@ export const lightColor = stylex.createTheme(color, {
23
23
  successSubtle: "#E7F0EB",
24
24
  warning: "#9A6A1B",
25
25
  warningSubtle: "#F5EBD9",
26
+ info: "#2C5C86",
27
+ infoSubtle: "#E4EDF5",
26
28
  focusRing: "#23705A",
27
29
  bone: "#ECE9DF",
28
30
  sheen: "#F6F4EC",
@@ -105,6 +107,8 @@ export const darkColor = stylex.createTheme(color, {
105
107
  successSubtle: "#22352E",
106
108
  warning: "#D9A254",
107
109
  warningSubtle: "#3A2F1D",
110
+ info: "#6FA3CE",
111
+ infoSubtle: "#1E2C38",
108
112
  focusRing: "#4FA184",
109
113
  bone: "#2A2620",
110
114
  sheen: "#35302A",
package/dist/tokens.css CHANGED
@@ -25,6 +25,8 @@ html {
25
25
  --ak-success-subtle: #e7f0eb;
26
26
  --ak-warning: #9a6a1b;
27
27
  --ak-warning-subtle: #f5ebd9;
28
+ --ak-info: #2c5c86;
29
+ --ak-info-subtle: #e4edf5;
28
30
  --ak-focus-ring: #23705a;
29
31
  --ak-bone: #ece9df;
30
32
  --ak-sheen: #f6f4ec;
@@ -71,6 +73,8 @@ html {
71
73
  --ak-success-subtle: #22352e;
72
74
  --ak-warning: #d9a254;
73
75
  --ak-warning-subtle: #3a2f1d;
76
+ --ak-info: #6fa3ce;
77
+ --ak-info-subtle: #1e2c38;
74
78
  --ak-focus-ring: #4fa184;
75
79
  --ak-bone: #2a2620;
76
80
  --ak-sheen: #35302a;
@@ -106,5 +110,7 @@ html {
106
110
  --ak-success-subtle: #22352e;
107
111
  --ak-warning: #d9a254;
108
112
  --ak-warning-subtle: #3a2f1d;
113
+ --ak-info: #6fa3ce;
114
+ --ak-info-subtle: #1e2c38;
109
115
  --ak-focus-ring: #4fa184;
110
116
  }
@@ -17,6 +17,8 @@ export declare const color: stylex.VarGroup<Readonly<{
17
17
  successSubtle: string;
18
18
  warning: string;
19
19
  warningSubtle: string;
20
+ info: string;
21
+ infoSubtle: string;
20
22
  focusRing: string;
21
23
  bone: string;
22
24
  sheen: string;
@@ -21,6 +21,8 @@ export const color = stylex.defineVars({
21
21
  successSubtle: { default: "#E7F0EB", [DARK]: "#22352E" },
22
22
  warning: { default: "#9A6A1B", [DARK]: "#D9A254" },
23
23
  warningSubtle: { default: "#F5EBD9", [DARK]: "#3A2F1D" },
24
+ info: { default: "#2C5C86", [DARK]: "#6FA3CE" },
25
+ infoSubtle: { default: "#E4EDF5", [DARK]: "#1E2C38" },
24
26
  focusRing: { default: "#23705A", [DARK]: "#4FA184" },
25
27
  bone: { default: "#ECE9DF", [DARK]: "#2A2620" },
26
28
  sheen: { default: "#F6F4EC", [DARK]: "#35302A" },
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@anyknown/ui",
3
- "version": "0.2.0",
3
+ "version": "0.3.0",
4
4
  "description": "AnyKnown design system — StyleX tokens, themes, and 34 components",
5
5
  "homepage": "https://ui.anyknown.com",
6
6
  "bugs": {