@vellira-ui/tokens 2.29.0 → 2.31.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.
- package/dist/css/tokens.css +2427 -16
- package/dist/dark/components/formField.d.ts +52 -0
- package/dist/dark/components/formField.d.ts.map +1 -1
- package/dist/dark/components/formField.js +55 -0
- package/dist/dark/components/input.d.ts +109 -4
- package/dist/dark/components/input.d.ts.map +1 -1
- package/dist/dark/components/input.js +81 -4
- package/dist/dark/components/select.d.ts +1702 -3
- package/dist/dark/components/select.d.ts.map +1 -1
- package/dist/dark/components/select.js +163 -6
- package/dist/factories/createInputPalette.d.ts +78 -0
- package/dist/factories/createInputPalette.d.ts.map +1 -0
- package/dist/factories/createInputPalette.js +78 -0
- package/dist/factories/createSelectPalette.d.ts +347 -0
- package/dist/factories/createSelectPalette.d.ts.map +1 -0
- package/dist/factories/createSelectPalette.js +41 -0
- package/dist/factories/index.d.ts +1 -0
- package/dist/factories/index.d.ts.map +1 -1
- package/dist/factories/index.js +1 -0
- package/dist/generated/token-types.d.ts +4 -4
- package/dist/generated/token-types.d.ts.map +1 -1
- package/dist/generated/token-types.js +3220 -4
- package/dist/highContrast/components/formField.d.ts +52 -0
- package/dist/highContrast/components/formField.d.ts.map +1 -1
- package/dist/highContrast/components/formField.js +55 -0
- package/dist/highContrast/components/input.d.ts +109 -4
- package/dist/highContrast/components/input.d.ts.map +1 -1
- package/dist/highContrast/components/input.js +101 -4
- package/dist/highContrast/components/select.d.ts +1701 -2
- package/dist/highContrast/components/select.d.ts.map +1 -1
- package/dist/highContrast/components/select.js +187 -5
- package/dist/light/components/formField.d.ts +52 -0
- package/dist/light/components/formField.d.ts.map +1 -1
- package/dist/light/components/formField.js +55 -0
- package/dist/light/components/input.d.ts +110 -5
- package/dist/light/components/input.d.ts.map +1 -1
- package/dist/light/components/input.js +81 -4
- package/dist/light/components/select.d.ts +1702 -3
- package/dist/light/components/select.d.ts.map +1 -1
- package/dist/light/components/select.js +164 -6
- package/dist/light/semantic/icons.d.ts +1 -1
- package/dist/light/semantic/icons.js +1 -1
- package/package.json +3 -2
|
@@ -2,6 +2,14 @@ export declare const formField: {
|
|
|
2
2
|
readonly label: {
|
|
3
3
|
readonly fg: "#FFFFFF";
|
|
4
4
|
};
|
|
5
|
+
readonly optional: {
|
|
6
|
+
readonly fg: "#EEE8FA";
|
|
7
|
+
};
|
|
8
|
+
readonly labelInfo: {
|
|
9
|
+
readonly fg: "#EEE8FA";
|
|
10
|
+
readonly border: "#EEE8FA";
|
|
11
|
+
readonly radius: 999;
|
|
12
|
+
};
|
|
5
13
|
readonly description: {
|
|
6
14
|
readonly fg: "#EEE8FA";
|
|
7
15
|
};
|
|
@@ -30,5 +38,49 @@ export declare const formField: {
|
|
|
30
38
|
readonly descriptionFg: "#6B7280";
|
|
31
39
|
readonly helperTextFg: "#6B7280";
|
|
32
40
|
};
|
|
41
|
+
readonly size: {
|
|
42
|
+
readonly sm: {
|
|
43
|
+
readonly gap: 4;
|
|
44
|
+
readonly horizontalGap: 12;
|
|
45
|
+
readonly labelFontSize: 14;
|
|
46
|
+
readonly labelLineHeight: 20;
|
|
47
|
+
readonly descriptionFontSize: 12;
|
|
48
|
+
readonly descriptionLineHeight: 16;
|
|
49
|
+
readonly helperTextFontSize: 12;
|
|
50
|
+
readonly helperTextLineHeight: 16;
|
|
51
|
+
readonly optionalFontSize: 12;
|
|
52
|
+
readonly optionalLineHeight: 16;
|
|
53
|
+
readonly labelInfoSize: 16;
|
|
54
|
+
readonly labelInfoFontSize: 12;
|
|
55
|
+
};
|
|
56
|
+
readonly md: {
|
|
57
|
+
readonly gap: 8;
|
|
58
|
+
readonly horizontalGap: 16;
|
|
59
|
+
readonly labelFontSize: 16;
|
|
60
|
+
readonly labelLineHeight: 24;
|
|
61
|
+
readonly descriptionFontSize: 14;
|
|
62
|
+
readonly descriptionLineHeight: 20;
|
|
63
|
+
readonly helperTextFontSize: 14;
|
|
64
|
+
readonly helperTextLineHeight: 20;
|
|
65
|
+
readonly optionalFontSize: 12;
|
|
66
|
+
readonly optionalLineHeight: 16;
|
|
67
|
+
readonly labelInfoSize: 16;
|
|
68
|
+
readonly labelInfoFontSize: 12;
|
|
69
|
+
};
|
|
70
|
+
readonly lg: {
|
|
71
|
+
readonly gap: 12;
|
|
72
|
+
readonly horizontalGap: 20;
|
|
73
|
+
readonly labelFontSize: 20;
|
|
74
|
+
readonly labelLineHeight: 28;
|
|
75
|
+
readonly descriptionFontSize: 16;
|
|
76
|
+
readonly descriptionLineHeight: 24;
|
|
77
|
+
readonly helperTextFontSize: 16;
|
|
78
|
+
readonly helperTextLineHeight: 24;
|
|
79
|
+
readonly optionalFontSize: 14;
|
|
80
|
+
readonly optionalLineHeight: 20;
|
|
81
|
+
readonly labelInfoSize: 20;
|
|
82
|
+
readonly labelInfoFontSize: 14;
|
|
83
|
+
};
|
|
84
|
+
};
|
|
33
85
|
};
|
|
34
86
|
//# sourceMappingURL=formField.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"formField.d.ts","sourceRoot":"","sources":["../../../src/highContrast/components/formField.ts"],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"file":"formField.d.ts","sourceRoot":"","sources":["../../../src/highContrast/components/formField.ts"],"names":[],"mappings":"AAMA,eAAO,MAAM,SAAS;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CA+FZ,CAAC"}
|
|
@@ -1,9 +1,20 @@
|
|
|
1
|
+
import { radius } from '../../tokens/radius.js';
|
|
2
|
+
import { spacing } from '../../tokens/spacing.js';
|
|
3
|
+
import { typography } from '../../tokens/typography.js';
|
|
1
4
|
import { status } from '../semantic/status.js';
|
|
2
5
|
import { text } from '../semantic/text.js';
|
|
3
6
|
export const formField = {
|
|
4
7
|
label: {
|
|
5
8
|
fg: text.primary,
|
|
6
9
|
},
|
|
10
|
+
optional: {
|
|
11
|
+
fg: text.secondary,
|
|
12
|
+
},
|
|
13
|
+
labelInfo: {
|
|
14
|
+
fg: text.secondary,
|
|
15
|
+
border: text.secondary,
|
|
16
|
+
radius: radius.full,
|
|
17
|
+
},
|
|
7
18
|
description: {
|
|
8
19
|
fg: text.secondary,
|
|
9
20
|
},
|
|
@@ -32,4 +43,48 @@ export const formField = {
|
|
|
32
43
|
descriptionFg: text.disabled,
|
|
33
44
|
helperTextFg: text.disabled,
|
|
34
45
|
},
|
|
46
|
+
size: {
|
|
47
|
+
sm: {
|
|
48
|
+
gap: spacing[1],
|
|
49
|
+
horizontalGap: spacing[3],
|
|
50
|
+
labelFontSize: typography.size.sm,
|
|
51
|
+
labelLineHeight: typography.lineHeight.sm,
|
|
52
|
+
descriptionFontSize: typography.size.xs,
|
|
53
|
+
descriptionLineHeight: typography.lineHeight.xs,
|
|
54
|
+
helperTextFontSize: typography.size.xs,
|
|
55
|
+
helperTextLineHeight: typography.lineHeight.xs,
|
|
56
|
+
optionalFontSize: typography.size.xs,
|
|
57
|
+
optionalLineHeight: typography.lineHeight.xs,
|
|
58
|
+
labelInfoSize: spacing[4],
|
|
59
|
+
labelInfoFontSize: typography.size.xs,
|
|
60
|
+
},
|
|
61
|
+
md: {
|
|
62
|
+
gap: spacing[2],
|
|
63
|
+
horizontalGap: spacing[4],
|
|
64
|
+
labelFontSize: typography.size.md,
|
|
65
|
+
labelLineHeight: typography.lineHeight.md,
|
|
66
|
+
descriptionFontSize: typography.size.sm,
|
|
67
|
+
descriptionLineHeight: typography.lineHeight.sm,
|
|
68
|
+
helperTextFontSize: typography.size.sm,
|
|
69
|
+
helperTextLineHeight: typography.lineHeight.sm,
|
|
70
|
+
optionalFontSize: typography.size.xs,
|
|
71
|
+
optionalLineHeight: typography.lineHeight.xs,
|
|
72
|
+
labelInfoSize: spacing[4],
|
|
73
|
+
labelInfoFontSize: typography.size.xs,
|
|
74
|
+
},
|
|
75
|
+
lg: {
|
|
76
|
+
gap: spacing[3],
|
|
77
|
+
horizontalGap: spacing[5],
|
|
78
|
+
labelFontSize: typography.size.lg,
|
|
79
|
+
labelLineHeight: typography.lineHeight.lg,
|
|
80
|
+
descriptionFontSize: typography.size.md,
|
|
81
|
+
descriptionLineHeight: typography.lineHeight.md,
|
|
82
|
+
helperTextFontSize: typography.size.md,
|
|
83
|
+
helperTextLineHeight: typography.lineHeight.md,
|
|
84
|
+
optionalFontSize: typography.size.sm,
|
|
85
|
+
optionalLineHeight: typography.lineHeight.sm,
|
|
86
|
+
labelInfoSize: spacing[5],
|
|
87
|
+
labelInfoFontSize: typography.size.sm,
|
|
88
|
+
},
|
|
89
|
+
},
|
|
35
90
|
};
|
|
@@ -1,4 +1,94 @@
|
|
|
1
1
|
export declare const input: {
|
|
2
|
+
readonly primary: {
|
|
3
|
+
readonly ring: string;
|
|
4
|
+
readonly outline: {
|
|
5
|
+
default: import("../../factories/createInputPalette.js").InputState;
|
|
6
|
+
hover: import("../../factories/createInputPalette.js").InputState;
|
|
7
|
+
focus: import("../../factories/createInputPalette.js").InputState;
|
|
8
|
+
};
|
|
9
|
+
readonly filled: {
|
|
10
|
+
default: import("../../factories/createInputPalette.js").InputState;
|
|
11
|
+
hover: import("../../factories/createInputPalette.js").InputState;
|
|
12
|
+
focus: import("../../factories/createInputPalette.js").InputState;
|
|
13
|
+
};
|
|
14
|
+
readonly soft: {
|
|
15
|
+
default: import("../../factories/createInputPalette.js").InputState;
|
|
16
|
+
hover: import("../../factories/createInputPalette.js").InputState;
|
|
17
|
+
focus: import("../../factories/createInputPalette.js").InputState;
|
|
18
|
+
};
|
|
19
|
+
};
|
|
20
|
+
readonly neutral: {
|
|
21
|
+
readonly ring: string;
|
|
22
|
+
readonly outline: {
|
|
23
|
+
default: import("../../factories/createInputPalette.js").InputState;
|
|
24
|
+
hover: import("../../factories/createInputPalette.js").InputState;
|
|
25
|
+
focus: import("../../factories/createInputPalette.js").InputState;
|
|
26
|
+
};
|
|
27
|
+
readonly filled: {
|
|
28
|
+
default: import("../../factories/createInputPalette.js").InputState;
|
|
29
|
+
hover: import("../../factories/createInputPalette.js").InputState;
|
|
30
|
+
focus: import("../../factories/createInputPalette.js").InputState;
|
|
31
|
+
};
|
|
32
|
+
readonly soft: {
|
|
33
|
+
default: import("../../factories/createInputPalette.js").InputState;
|
|
34
|
+
hover: import("../../factories/createInputPalette.js").InputState;
|
|
35
|
+
focus: import("../../factories/createInputPalette.js").InputState;
|
|
36
|
+
};
|
|
37
|
+
};
|
|
38
|
+
readonly success: {
|
|
39
|
+
readonly ring: string;
|
|
40
|
+
readonly outline: {
|
|
41
|
+
default: import("../../factories/createInputPalette.js").InputState;
|
|
42
|
+
hover: import("../../factories/createInputPalette.js").InputState;
|
|
43
|
+
focus: import("../../factories/createInputPalette.js").InputState;
|
|
44
|
+
};
|
|
45
|
+
readonly filled: {
|
|
46
|
+
default: import("../../factories/createInputPalette.js").InputState;
|
|
47
|
+
hover: import("../../factories/createInputPalette.js").InputState;
|
|
48
|
+
focus: import("../../factories/createInputPalette.js").InputState;
|
|
49
|
+
};
|
|
50
|
+
readonly soft: {
|
|
51
|
+
default: import("../../factories/createInputPalette.js").InputState;
|
|
52
|
+
hover: import("../../factories/createInputPalette.js").InputState;
|
|
53
|
+
focus: import("../../factories/createInputPalette.js").InputState;
|
|
54
|
+
};
|
|
55
|
+
};
|
|
56
|
+
readonly warning: {
|
|
57
|
+
readonly ring: string;
|
|
58
|
+
readonly outline: {
|
|
59
|
+
default: import("../../factories/createInputPalette.js").InputState;
|
|
60
|
+
hover: import("../../factories/createInputPalette.js").InputState;
|
|
61
|
+
focus: import("../../factories/createInputPalette.js").InputState;
|
|
62
|
+
};
|
|
63
|
+
readonly filled: {
|
|
64
|
+
default: import("../../factories/createInputPalette.js").InputState;
|
|
65
|
+
hover: import("../../factories/createInputPalette.js").InputState;
|
|
66
|
+
focus: import("../../factories/createInputPalette.js").InputState;
|
|
67
|
+
};
|
|
68
|
+
readonly soft: {
|
|
69
|
+
default: import("../../factories/createInputPalette.js").InputState;
|
|
70
|
+
hover: import("../../factories/createInputPalette.js").InputState;
|
|
71
|
+
focus: import("../../factories/createInputPalette.js").InputState;
|
|
72
|
+
};
|
|
73
|
+
};
|
|
74
|
+
readonly danger: {
|
|
75
|
+
readonly ring: string;
|
|
76
|
+
readonly outline: {
|
|
77
|
+
default: import("../../factories/createInputPalette.js").InputState;
|
|
78
|
+
hover: import("../../factories/createInputPalette.js").InputState;
|
|
79
|
+
focus: import("../../factories/createInputPalette.js").InputState;
|
|
80
|
+
};
|
|
81
|
+
readonly filled: {
|
|
82
|
+
default: import("../../factories/createInputPalette.js").InputState;
|
|
83
|
+
hover: import("../../factories/createInputPalette.js").InputState;
|
|
84
|
+
focus: import("../../factories/createInputPalette.js").InputState;
|
|
85
|
+
};
|
|
86
|
+
readonly soft: {
|
|
87
|
+
default: import("../../factories/createInputPalette.js").InputState;
|
|
88
|
+
hover: import("../../factories/createInputPalette.js").InputState;
|
|
89
|
+
focus: import("../../factories/createInputPalette.js").InputState;
|
|
90
|
+
};
|
|
91
|
+
};
|
|
2
92
|
readonly default: {
|
|
3
93
|
readonly bg: "transparent";
|
|
4
94
|
readonly fg: "#FFFFFF";
|
|
@@ -32,10 +122,6 @@ export declare const input: {
|
|
|
32
122
|
readonly border: "#FB7185";
|
|
33
123
|
readonly ring: "#FB7185";
|
|
34
124
|
};
|
|
35
|
-
readonly success: {
|
|
36
|
-
readonly border: "#5EEAD4";
|
|
37
|
-
readonly ring: "#5EEAD4";
|
|
38
|
-
};
|
|
39
125
|
readonly readOnly: {
|
|
40
126
|
readonly bg: "#1F2937";
|
|
41
127
|
readonly fg: "#EEE8FA";
|
|
@@ -60,5 +146,24 @@ export declare const input: {
|
|
|
60
146
|
readonly focusBg: "#1F2937";
|
|
61
147
|
readonly pressedBg: "#374151";
|
|
62
148
|
};
|
|
149
|
+
readonly revealButton: {
|
|
150
|
+
readonly fg: "#FFFFFF";
|
|
151
|
+
readonly hoverFg: "#FFFFFF";
|
|
152
|
+
readonly hoverBg: "#374151";
|
|
153
|
+
};
|
|
154
|
+
readonly addon: {
|
|
155
|
+
readonly bg: "#111827";
|
|
156
|
+
readonly fg: "#EEE8FA";
|
|
157
|
+
readonly border: "#9CA3AF";
|
|
158
|
+
};
|
|
159
|
+
readonly affix: {
|
|
160
|
+
readonly fg: "#FFFFFF";
|
|
161
|
+
};
|
|
162
|
+
readonly counter: {
|
|
163
|
+
readonly fg: "#EEE8FA";
|
|
164
|
+
};
|
|
165
|
+
readonly spinner: {
|
|
166
|
+
readonly fg: "#9CA3AF";
|
|
167
|
+
};
|
|
63
168
|
};
|
|
64
169
|
//# sourceMappingURL=input.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"input.d.ts","sourceRoot":"","sources":["../../../src/highContrast/components/input.ts"],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"file":"input.d.ts","sourceRoot":"","sources":["../../../src/highContrast/components/input.ts"],"names":[],"mappings":"AAoHA,eAAO,MAAM,KAAK;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CA+FR,CAAC"}
|
|
@@ -1,10 +1,92 @@
|
|
|
1
|
+
import { createInputColorPalette } from '../../factories/createInputPalette.js';
|
|
2
|
+
import { colors } from '../../primitives/colors.js';
|
|
1
3
|
import { border } from '../semantic/border.js';
|
|
2
4
|
import { focus } from '../semantic/focus.js';
|
|
3
5
|
import { icons } from '../semantic/icons.js';
|
|
4
6
|
import { status } from '../semantic/status.js';
|
|
5
7
|
import { surface } from '../semantic/surface.js';
|
|
6
8
|
import { text } from '../semantic/text.js';
|
|
9
|
+
const inputPaletteDefaults = {
|
|
10
|
+
fg: text.primary,
|
|
11
|
+
placeholder: text.secondary,
|
|
12
|
+
filledFocusBg: surface.subtle,
|
|
13
|
+
hoverBg: surface.hover,
|
|
14
|
+
};
|
|
15
|
+
const primary = createInputColorPalette({
|
|
16
|
+
...inputPaletteDefaults,
|
|
17
|
+
accent: colors.primary[300],
|
|
18
|
+
accentHover: colors.primary[400],
|
|
19
|
+
accentSoft: colors.primary[900],
|
|
20
|
+
filledBg: colors.primary[950],
|
|
21
|
+
filledHoverBg: colors.primary[900],
|
|
22
|
+
filledDefaultBorder: colors.primary[300],
|
|
23
|
+
filledHoverBorder: colors.primary[400],
|
|
24
|
+
softDefaultBorder: colors.primary[300],
|
|
25
|
+
softHoverBorder: colors.primary[400],
|
|
26
|
+
ring: colors.primary[400],
|
|
27
|
+
});
|
|
28
|
+
const neutral = createInputColorPalette({
|
|
29
|
+
...inputPaletteDefaults,
|
|
30
|
+
accent: colors.grayBlue[200],
|
|
31
|
+
accentHover: colors.gray[200],
|
|
32
|
+
accentSoft: colors.grayBlue[800],
|
|
33
|
+
filledBg: colors.grayBlue[900],
|
|
34
|
+
filledHoverBg: colors.grayBlue[800],
|
|
35
|
+
filledDefaultBorder: colors.grayBlue[200],
|
|
36
|
+
filledHoverBorder: colors.gray[200],
|
|
37
|
+
softDefaultBorder: colors.grayBlue[200],
|
|
38
|
+
softHoverBorder: colors.gray[200],
|
|
39
|
+
hoverBg: colors.grayBlue[900],
|
|
40
|
+
ring: colors.grayBlue[400],
|
|
41
|
+
});
|
|
42
|
+
const success = createInputColorPalette({
|
|
43
|
+
...inputPaletteDefaults,
|
|
44
|
+
accent: colors.success[300],
|
|
45
|
+
accentHover: colors.success[400],
|
|
46
|
+
accentSoft: colors.success[900],
|
|
47
|
+
filledBg: colors.success[950],
|
|
48
|
+
filledHoverBg: colors.success[900],
|
|
49
|
+
filledDefaultBorder: colors.success[300],
|
|
50
|
+
filledHoverBorder: colors.success[400],
|
|
51
|
+
softDefaultBorder: colors.success[300],
|
|
52
|
+
softHoverBorder: colors.success[400],
|
|
53
|
+
hoverBg: colors.success[950],
|
|
54
|
+
ring: colors.success[500],
|
|
55
|
+
});
|
|
56
|
+
const warning = createInputColorPalette({
|
|
57
|
+
...inputPaletteDefaults,
|
|
58
|
+
accent: colors.warning[500],
|
|
59
|
+
accentHover: colors.warning[400],
|
|
60
|
+
accentSoft: colors.warning[900],
|
|
61
|
+
filledBg: colors.warning[900],
|
|
62
|
+
filledHoverBg: colors.warning[800],
|
|
63
|
+
filledDefaultBorder: colors.warning[500],
|
|
64
|
+
filledHoverBorder: colors.warning[400],
|
|
65
|
+
softDefaultBorder: colors.warning[500],
|
|
66
|
+
softHoverBorder: colors.warning[400],
|
|
67
|
+
hoverBg: colors.warning[950],
|
|
68
|
+
ring: colors.warning[500],
|
|
69
|
+
});
|
|
70
|
+
const danger = createInputColorPalette({
|
|
71
|
+
...inputPaletteDefaults,
|
|
72
|
+
accent: colors.error[400],
|
|
73
|
+
accentHover: colors.error[300],
|
|
74
|
+
accentSoft: colors.error[900],
|
|
75
|
+
filledBg: colors.error[950],
|
|
76
|
+
filledHoverBg: colors.error[900],
|
|
77
|
+
filledDefaultBorder: colors.error[400],
|
|
78
|
+
filledHoverBorder: colors.error[300],
|
|
79
|
+
softDefaultBorder: colors.error[400],
|
|
80
|
+
softHoverBorder: colors.error[300],
|
|
81
|
+
hoverBg: colors.error[950],
|
|
82
|
+
ring: colors.error[500],
|
|
83
|
+
});
|
|
7
84
|
export const input = {
|
|
85
|
+
primary,
|
|
86
|
+
neutral,
|
|
87
|
+
success,
|
|
88
|
+
warning,
|
|
89
|
+
danger,
|
|
8
90
|
default: {
|
|
9
91
|
bg: 'transparent',
|
|
10
92
|
fg: text.primary,
|
|
@@ -38,10 +120,6 @@ export const input = {
|
|
|
38
120
|
border: status.error.border,
|
|
39
121
|
ring: status.error.ring,
|
|
40
122
|
},
|
|
41
|
-
success: {
|
|
42
|
-
border: status.success.border,
|
|
43
|
-
ring: status.success.ring,
|
|
44
|
-
},
|
|
45
123
|
readOnly: {
|
|
46
124
|
bg: surface.subtle,
|
|
47
125
|
fg: text.secondary,
|
|
@@ -66,4 +144,23 @@ export const input = {
|
|
|
66
144
|
focusBg: surface.subtle,
|
|
67
145
|
pressedBg: surface.active,
|
|
68
146
|
},
|
|
147
|
+
revealButton: {
|
|
148
|
+
fg: text.primary,
|
|
149
|
+
hoverFg: text.primary,
|
|
150
|
+
hoverBg: surface.hover,
|
|
151
|
+
},
|
|
152
|
+
addon: {
|
|
153
|
+
bg: surface.muted,
|
|
154
|
+
fg: text.secondary,
|
|
155
|
+
border: border.default,
|
|
156
|
+
},
|
|
157
|
+
affix: {
|
|
158
|
+
fg: text.primary,
|
|
159
|
+
},
|
|
160
|
+
counter: {
|
|
161
|
+
fg: text.secondary,
|
|
162
|
+
},
|
|
163
|
+
spinner: {
|
|
164
|
+
fg: icons.muted,
|
|
165
|
+
},
|
|
69
166
|
};
|