vector-prototype-tokens 0.0.1

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/fonts.css ADDED
@@ -0,0 +1,48 @@
1
+ /**
2
+ * Do not edit directly — generated by build-fonts.mjs.
3
+ * Fonte: Poppins via @fontsource/poppins
4
+ */
5
+
6
+ @font-face {
7
+ font-family: 'Poppins';
8
+ font-style: normal;
9
+ font-weight: 400;
10
+ font-display: swap;
11
+ src: url('./fonts/poppins-latin-400-normal.woff2') format('woff2');
12
+ unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6,
13
+ U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193,
14
+ U+2212, U+2215, U+FEFF, U+FFFD;
15
+ }
16
+
17
+ @font-face {
18
+ font-family: 'Poppins';
19
+ font-style: normal;
20
+ font-weight: 500;
21
+ font-display: swap;
22
+ src: url('./fonts/poppins-latin-500-normal.woff2') format('woff2');
23
+ unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6,
24
+ U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193,
25
+ U+2212, U+2215, U+FEFF, U+FFFD;
26
+ }
27
+
28
+ @font-face {
29
+ font-family: 'Poppins';
30
+ font-style: normal;
31
+ font-weight: 600;
32
+ font-display: swap;
33
+ src: url('./fonts/poppins-latin-600-normal.woff2') format('woff2');
34
+ unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6,
35
+ U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193,
36
+ U+2212, U+2215, U+FEFF, U+FFFD;
37
+ }
38
+
39
+ @font-face {
40
+ font-family: 'Poppins';
41
+ font-style: normal;
42
+ font-weight: 700;
43
+ font-display: swap;
44
+ src: url('./fonts/poppins-latin-700-normal.woff2') format('woff2');
45
+ unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6,
46
+ U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193,
47
+ U+2212, U+2215, U+FEFF, U+FFFD;
48
+ }
package/package.json ADDED
@@ -0,0 +1,22 @@
1
+ {
2
+ "name": "vector-prototype-tokens",
3
+ "version": "0.0.1",
4
+ "description": "Vector — tokens CSS do design system (custom properties, fontes, reset).",
5
+ "type": "module",
6
+ "license": "UNLICENSED",
7
+ "exports": {
8
+ ".": {
9
+ "types": "./tokens.d.ts",
10
+ "import": "./tokens.js"
11
+ },
12
+ "./tokens.css": "./tokens.css",
13
+ "./fonts.css": "./fonts.css",
14
+ "./reset.css": "./reset.css"
15
+ },
16
+ "sideEffects": [
17
+ "*.css"
18
+ ],
19
+ "publishConfig": {
20
+ "access": "public"
21
+ }
22
+ }
package/tokens.css ADDED
@@ -0,0 +1,161 @@
1
+ /**
2
+ * Do not edit directly, this file was auto-generated.
3
+ */
4
+
5
+ :root {
6
+ --color-canvas-neutral-default: #f1f1f5;
7
+ --color-canvas-neutral-white: #ffffff;
8
+ --color-fill-neutral-subtle: #f1f1f5;
9
+ --color-fill-neutral-muted: #e0e1e8;
10
+ --color-fill-neutral-default: #8e91a5;
11
+ --color-fill-neutral-strong: #434560;
12
+ --color-fill-neutral-intense: #0e0f23;
13
+ --color-fill-brand-subtle: #ebf1ff;
14
+ --color-fill-brand-muted: #cfdeff;
15
+ --color-fill-brand-default: #1545de;
16
+ --color-fill-brand-strong: #0c31b6;
17
+ --color-fill-brand-intense: #031a77;
18
+ --color-fill-interaction-brand-hover: #092daa;
19
+ --color-fill-interaction-brand-pressed: #031971;
20
+ --color-fill-interaction-brand-subtle-hover: #cfdeff;
21
+ --color-fill-interaction-neutral-muted-hover: #c8cad4;
22
+ --color-fill-interaction-neutral-subtle-hover: #f1f1f5;
23
+ --color-fill-feedback-info-subtle: #ebf1ff;
24
+ --color-fill-feedback-info-muted: #cfdeff;
25
+ --color-fill-feedback-info-default: #1545de;
26
+ --color-fill-feedback-info-strong: #0c31b6;
27
+ --color-fill-feedback-success-subtle: #e6f9ec;
28
+ --color-fill-feedback-success-muted: #69e59f;
29
+ --color-fill-feedback-success-default: #00874d;
30
+ --color-fill-feedback-success-strong: #006338;
31
+ --color-fill-feedback-warning-subtle: #fff6d5;
32
+ --color-fill-feedback-warning-muted: #ffd96f;
33
+ --color-fill-feedback-warning-default: #fdb500;
34
+ --color-fill-feedback-warning-strong: #cd8c00;
35
+ --color-fill-feedback-danger-subtle: #ffeeef;
36
+ --color-fill-feedback-danger-muted: #ffbbbd;
37
+ --color-fill-feedback-danger-default: #e90800;
38
+ --color-fill-feedback-danger-strong: #b00006;
39
+ --color-fill-feedback-neutral-subtle: #fafafc;
40
+ --color-fill-feedback-neutral-muted: #e0e1e8;
41
+ --color-fill-feedback-neutral-default: #8e91a5;
42
+ --color-fill-feedback-neutral-strong: #434560;
43
+ --color-fill-feedback-highlight-subtle: #f3ebf9;
44
+ --color-fill-feedback-highlight-muted: #caa3e2;
45
+ --color-fill-feedback-highlight-default: #8f3dc1;
46
+ --color-fill-feedback-highlight-strong: #6c00ae;
47
+ --color-stroke-neutral-default: #e0e1e8;
48
+ --color-stroke-brand-default: #1545de;
49
+ --color-stroke-interaction-neutral-hover: #c8cad4;
50
+ --color-stroke-interaction-neutral-expanded: #c8cad4;
51
+ --color-stroke-interaction-danger-hover: #b00006;
52
+ --color-stroke-interaction-brand-hover: #0c31b6;
53
+ --color-stroke-interaction-brand-focus: #1545de;
54
+ --color-stroke-feedback-success-subtle: #b3efcb;
55
+ --color-stroke-feedback-success-default: #00874d;
56
+ --color-stroke-feedback-warning-subtle: #ffe7a1;
57
+ --color-stroke-feedback-warning-default: #fdb500;
58
+ --color-stroke-feedback-danger-subtle: #fed7d9;
59
+ --color-stroke-feedback-danger-default: #e90800;
60
+ --color-stroke-feedback-info-subtle: #cfdefe;
61
+ --color-stroke-feedback-info-default: #1545de;
62
+ --color-text-neutral-default: #24263f;
63
+ --color-text-neutral-mudle: #434560;
64
+ --color-text-neutral-subtle: #676a83;
65
+ --color-text-neutral-subtlest: #8e91a5;
66
+ --color-text-neutral-inverse: #ffffff;
67
+ --color-text-brand-default: #1545de;
68
+ --color-text-brand-strong: #0c31b6;
69
+ --color-text-interaction-danger-hover: #b00006;
70
+ --color-text-interaction-brand-hover: #0c31b6;
71
+ --color-text-feedback-warning-default: #fdb500;
72
+ --color-text-feedback-success-default: #00874d;
73
+ --color-text-feedback-danger-default: #e90800;
74
+ --color-icon-neutral-default: #434560;
75
+ --color-icon-neutral-mudle: #676a83;
76
+ --color-icon-neutral-subtle: #aeb0be;
77
+ --color-icon-neutral-inverse: #ffffff;
78
+ --color-icon-brand-default: #1545de;
79
+ --color-icon-interaction-danger-hover: #b00006;
80
+ --color-icon-interaction-neutral-hover: #d9d9d9;
81
+ --color-icon-feedback-warning-default: #fdb500;
82
+ --color-icon-feedback-success-default: #00874d;
83
+ --color-icon-feedback-danger-default: #e90800;
84
+ --color-icon-feedback-info-default: #1545de;
85
+ --color-palette-white: #ffffff;
86
+ --color-palette-black: #000000;
87
+ --color-palette-red-100: #ffeeef;
88
+ --color-palette-red-200: #ffd7d9;
89
+ --color-palette-red-300: #ffbbbd;
90
+ --color-palette-red-400: #ff9898;
91
+ --color-palette-red-500: #ff6762;
92
+ --color-palette-red-600: #e90800;
93
+ --color-palette-red-700: #b00006;
94
+ --color-palette-red-800: #80000d;
95
+ --color-palette-red-900: #52000e;
96
+ --color-palette-blue-100: #ebf1ff;
97
+ --color-palette-blue-200: #cfdeff;
98
+ --color-palette-blue-300: #adc6ff;
99
+ --color-palette-blue-400: #88a9fe;
100
+ --color-palette-blue-500: #5a84f6;
101
+ --color-palette-blue-600: #1545de;
102
+ --color-palette-blue-700: #0c31b6;
103
+ --color-palette-blue-800: #031a77;
104
+ --color-palette-blue-900: #020b3b;
105
+ --color-palette-green-100: #e6f9ec;
106
+ --color-palette-green-200: #b3efcb;
107
+ --color-palette-green-300: #69e59f;
108
+ --color-palette-green-400: #17d171;
109
+ --color-palette-green-500: #09b261;
110
+ --color-palette-green-600: #00874d;
111
+ --color-palette-green-700: #006338;
112
+ --color-palette-green-800: #004226;
113
+ --color-palette-green-900: #002514;
114
+ --color-palette-yellow-100: #fff6d5;
115
+ --color-palette-yellow-200: #ffe7a1;
116
+ --color-palette-yellow-300: #ffd96f;
117
+ --color-palette-yellow-400: #ffcd45;
118
+ --color-palette-yellow-500: #ffc226;
119
+ --color-palette-yellow-600: #fdb500;
120
+ --color-palette-yellow-700: #cd8c00;
121
+ --color-palette-yellow-800: #986500;
122
+ --color-palette-yellow-900: #593900;
123
+ --color-palette-cool-gray-50: #fafafc;
124
+ --color-palette-cool-gray-100: #f1f1f5;
125
+ --color-palette-cool-gray-200: #e0e1e8;
126
+ --color-palette-cool-gray-300: #c8cad4;
127
+ --color-palette-cool-gray-400: #aeb0be;
128
+ --color-palette-cool-gray-500: #8e91a5;
129
+ --color-palette-cool-gray-600: #676a83;
130
+ --color-palette-cool-gray-700: #434560;
131
+ --color-palette-cool-gray-800: #24263f;
132
+ --color-palette-cool-gray-900: #0e0f23;
133
+ --font-family-base: Poppins;
134
+ --font-size-10: 10px;
135
+ --font-size-12: 12px;
136
+ --font-size-14: 14px;
137
+ --font-size-16: 16px;
138
+ --font-size-18: 18px;
139
+ --font-size-20: 20px;
140
+ --font-size-24: 24px;
141
+ --font-size-28: 28px;
142
+ --font-line-height-10: 16px;
143
+ --font-line-height-12: 16px;
144
+ --font-line-height-14: 20px;
145
+ --font-line-height-16: 24px;
146
+ --font-line-height-18: 28px;
147
+ --font-line-height-20: 28px;
148
+ --font-line-height-24: 32px;
149
+ --font-line-height-28: 36px;
150
+ --font-weight-regular: 400;
151
+ --font-weight-medium: 500;
152
+ --font-weight-semibold: 600;
153
+ --font-weight-bold: 700;
154
+ --shadow-focus: 0px 0px 0px 3px #cfdeff;
155
+ --shadow-layer-xs: 0px 1px 2px #0e0f2312;
156
+ --shadow-layer-sm: 0px 1px 2px #0e0f2312, 0px 2px 4px #0e0f2312;
157
+ --shadow-layer-md: 0px 1px 2px #0e0f2312, 0px 2px 4px #0e0f2312, 0px 4px 8px #0e0f2312;
158
+ --shadow-layer-lg: 0px 1px 2px #0e0f2312, 0px 2px 4px #0e0f2312, 0px 4px 8px #0e0f2312, 0px 8px 16px #0e0f2312;
159
+ --shadow-layer-xl: 0px 1px 2px #0e0f2312, 0px 2px 4px #0e0f2312, 0px 4px 8px #0e0f2312, 0px 8px 16px #0e0f2312, 0px 16px 32px #0e0f2312;
160
+ --shadow-layer-xxl: 0px 1px 2px #0e0f2312, 0px 2px 4px #0e0f2312, 0px 4px 8px #0e0f2312, 0px 8px 16px #0e0f2312, 0px 16px 32px #0e0f2312, 0px 32px 64px #0e0f2312;
161
+ }
package/tokens.d.ts ADDED
@@ -0,0 +1,159 @@
1
+ /**
2
+ * Do not edit directly, this file was auto-generated.
3
+ */
4
+
5
+ export const ColorCanvasNeutralDefault: string;
6
+ export const ColorCanvasNeutralWhite: string;
7
+ export const ColorFillNeutralSubtle: string;
8
+ export const ColorFillNeutralMuted: string;
9
+ export const ColorFillNeutralDefault: string;
10
+ export const ColorFillNeutralStrong: string;
11
+ export const ColorFillNeutralIntense: string;
12
+ export const ColorFillBrandSubtle: string;
13
+ export const ColorFillBrandMuted: string;
14
+ export const ColorFillBrandDefault: string;
15
+ export const ColorFillBrandStrong: string;
16
+ export const ColorFillBrandIntense: string;
17
+ export const ColorFillInteractionBrandHover: string;
18
+ export const ColorFillInteractionBrandPressed: string;
19
+ export const ColorFillInteractionBrandSubtleHover: string;
20
+ export const ColorFillInteractionNeutralMutedHover: string;
21
+ export const ColorFillInteractionNeutralSubtleHover: string;
22
+ export const ColorFillFeedbackInfoSubtle: string;
23
+ export const ColorFillFeedbackInfoMuted: string;
24
+ export const ColorFillFeedbackInfoDefault: string;
25
+ export const ColorFillFeedbackInfoStrong: string;
26
+ export const ColorFillFeedbackSuccessSubtle: string;
27
+ export const ColorFillFeedbackSuccessMuted: string;
28
+ export const ColorFillFeedbackSuccessDefault: string;
29
+ export const ColorFillFeedbackSuccessStrong: string;
30
+ export const ColorFillFeedbackWarningSubtle: string;
31
+ export const ColorFillFeedbackWarningMuted: string;
32
+ export const ColorFillFeedbackWarningDefault: string;
33
+ export const ColorFillFeedbackWarningStrong: string;
34
+ export const ColorFillFeedbackDangerSubtle: string;
35
+ export const ColorFillFeedbackDangerMuted: string;
36
+ export const ColorFillFeedbackDangerDefault: string;
37
+ export const ColorFillFeedbackDangerStrong: string;
38
+ export const ColorFillFeedbackNeutralSubtle: string;
39
+ export const ColorFillFeedbackNeutralMuted: string;
40
+ export const ColorFillFeedbackNeutralDefault: string;
41
+ export const ColorFillFeedbackNeutralStrong: string;
42
+ export const ColorFillFeedbackHighlightSubtle: string;
43
+ export const ColorFillFeedbackHighlightMuted: string;
44
+ export const ColorFillFeedbackHighlightDefault: string;
45
+ export const ColorFillFeedbackHighlightStrong: string;
46
+ export const ColorStrokeNeutralDefault: string;
47
+ export const ColorStrokeBrandDefault: string;
48
+ export const ColorStrokeInteractionNeutralHover: string;
49
+ export const ColorStrokeInteractionNeutralExpanded: string;
50
+ export const ColorStrokeInteractionDangerHover: string;
51
+ export const ColorStrokeInteractionBrandHover: string;
52
+ export const ColorStrokeInteractionBrandFocus: string;
53
+ export const ColorStrokeFeedbackSuccessSubtle: string;
54
+ export const ColorStrokeFeedbackSuccessDefault: string;
55
+ export const ColorStrokeFeedbackWarningSubtle: string;
56
+ export const ColorStrokeFeedbackWarningDefault: string;
57
+ export const ColorStrokeFeedbackDangerSubtle: string;
58
+ export const ColorStrokeFeedbackDangerDefault: string;
59
+ export const ColorStrokeFeedbackInfoSubtle: string;
60
+ export const ColorStrokeFeedbackInfoDefault: string;
61
+ export const ColorTextNeutralDefault: string;
62
+ export const ColorTextNeutralMudle: string;
63
+ export const ColorTextNeutralSubtle: string;
64
+ export const ColorTextNeutralSubtlest: string;
65
+ export const ColorTextNeutralInverse: string;
66
+ export const ColorTextBrandDefault: string;
67
+ export const ColorTextBrandStrong: string;
68
+ export const ColorTextInteractionDangerHover: string;
69
+ export const ColorTextInteractionBrandHover: string;
70
+ export const ColorTextFeedbackWarningDefault: string;
71
+ export const ColorTextFeedbackSuccessDefault: string;
72
+ export const ColorTextFeedbackDangerDefault: string;
73
+ export const ColorIconNeutralDefault: string;
74
+ export const ColorIconNeutralMudle: string;
75
+ export const ColorIconNeutralSubtle: string;
76
+ export const ColorIconNeutralInverse: string;
77
+ export const ColorIconBrandDefault: string;
78
+ export const ColorIconInteractionDangerHover: string;
79
+ export const ColorIconInteractionNeutralHover: string;
80
+ export const ColorIconFeedbackWarningDefault: string;
81
+ export const ColorIconFeedbackSuccessDefault: string;
82
+ export const ColorIconFeedbackDangerDefault: string;
83
+ export const ColorIconFeedbackInfoDefault: string;
84
+ export const ColorPaletteWhite: string;
85
+ export const ColorPaletteBlack: string;
86
+ export const ColorPaletteRed100: string;
87
+ export const ColorPaletteRed200: string;
88
+ export const ColorPaletteRed300: string;
89
+ export const ColorPaletteRed400: string;
90
+ export const ColorPaletteRed500: string;
91
+ export const ColorPaletteRed600: string;
92
+ export const ColorPaletteRed700: string;
93
+ export const ColorPaletteRed800: string;
94
+ export const ColorPaletteRed900: string;
95
+ export const ColorPaletteBlue100: string;
96
+ export const ColorPaletteBlue200: string;
97
+ export const ColorPaletteBlue300: string;
98
+ export const ColorPaletteBlue400: string;
99
+ export const ColorPaletteBlue500: string;
100
+ export const ColorPaletteBlue600: string;
101
+ export const ColorPaletteBlue700: string;
102
+ export const ColorPaletteBlue800: string;
103
+ export const ColorPaletteBlue900: string;
104
+ export const ColorPaletteGreen100: string;
105
+ export const ColorPaletteGreen200: string;
106
+ export const ColorPaletteGreen300: string;
107
+ export const ColorPaletteGreen400: string;
108
+ export const ColorPaletteGreen500: string;
109
+ export const ColorPaletteGreen600: string;
110
+ export const ColorPaletteGreen700: string;
111
+ export const ColorPaletteGreen800: string;
112
+ export const ColorPaletteGreen900: string;
113
+ export const ColorPaletteYellow100: string;
114
+ export const ColorPaletteYellow200: string;
115
+ export const ColorPaletteYellow300: string;
116
+ export const ColorPaletteYellow400: string;
117
+ export const ColorPaletteYellow500: string;
118
+ export const ColorPaletteYellow600: string;
119
+ export const ColorPaletteYellow700: string;
120
+ export const ColorPaletteYellow800: string;
121
+ export const ColorPaletteYellow900: string;
122
+ export const ColorPaletteCoolGray50: string;
123
+ export const ColorPaletteCoolGray100: string;
124
+ export const ColorPaletteCoolGray200: string;
125
+ export const ColorPaletteCoolGray300: string;
126
+ export const ColorPaletteCoolGray400: string;
127
+ export const ColorPaletteCoolGray500: string;
128
+ export const ColorPaletteCoolGray600: string;
129
+ export const ColorPaletteCoolGray700: string;
130
+ export const ColorPaletteCoolGray800: string;
131
+ export const ColorPaletteCoolGray900: string;
132
+ export const FontFamilyBase: string;
133
+ export const FontSize10: string;
134
+ export const FontSize12: string;
135
+ export const FontSize14: string;
136
+ export const FontSize16: string;
137
+ export const FontSize18: string;
138
+ export const FontSize20: string;
139
+ export const FontSize24: string;
140
+ export const FontSize28: string;
141
+ export const FontLineHeight10: string;
142
+ export const FontLineHeight12: string;
143
+ export const FontLineHeight14: string;
144
+ export const FontLineHeight16: string;
145
+ export const FontLineHeight18: string;
146
+ export const FontLineHeight20: string;
147
+ export const FontLineHeight24: string;
148
+ export const FontLineHeight28: string;
149
+ export const FontWeightRegular: string;
150
+ export const FontWeightMedium: string;
151
+ export const FontWeightSemibold: string;
152
+ export const FontWeightBold: string;
153
+ export const ShadowFocus: string;
154
+ export const ShadowLayerXs: string;
155
+ export const ShadowLayerSm: string;
156
+ export const ShadowLayerMd: string;
157
+ export const ShadowLayerLg: string;
158
+ export const ShadowLayerXl: string;
159
+ export const ShadowLayerXxl: string;
package/tokens.js ADDED
@@ -0,0 +1,163 @@
1
+ /**
2
+ * Do not edit directly, this file was auto-generated.
3
+ */
4
+
5
+ export const ColorCanvasNeutralDefault = "#f1f1f5";
6
+ export const ColorCanvasNeutralWhite = "#ffffff";
7
+ export const ColorFillNeutralSubtle = "#f1f1f5";
8
+ export const ColorFillNeutralMuted = "#e0e1e8";
9
+ export const ColorFillNeutralDefault = "#8e91a5";
10
+ export const ColorFillNeutralStrong = "#434560";
11
+ export const ColorFillNeutralIntense = "#0e0f23";
12
+ export const ColorFillBrandSubtle = "#ebf1ff";
13
+ export const ColorFillBrandMuted = "#cfdeff";
14
+ export const ColorFillBrandDefault = "#1545de";
15
+ export const ColorFillBrandStrong = "#0c31b6";
16
+ export const ColorFillBrandIntense = "#031a77";
17
+ export const ColorFillInteractionBrandHover = "#092daa";
18
+ export const ColorFillInteractionBrandPressed = "#031971";
19
+ export const ColorFillInteractionBrandSubtleHover = "#cfdeff";
20
+ export const ColorFillInteractionNeutralMutedHover = "#c8cad4";
21
+ export const ColorFillInteractionNeutralSubtleHover = "#f1f1f5";
22
+ export const ColorFillFeedbackInfoSubtle = "#ebf1ff";
23
+ export const ColorFillFeedbackInfoMuted = "#cfdeff";
24
+ export const ColorFillFeedbackInfoDefault = "#1545de";
25
+ export const ColorFillFeedbackInfoStrong = "#0c31b6";
26
+ export const ColorFillFeedbackSuccessSubtle = "#e6f9ec";
27
+ export const ColorFillFeedbackSuccessMuted = "#69e59f";
28
+ export const ColorFillFeedbackSuccessDefault = "#00874d";
29
+ export const ColorFillFeedbackSuccessStrong = "#006338";
30
+ export const ColorFillFeedbackWarningSubtle = "#fff6d5";
31
+ export const ColorFillFeedbackWarningMuted = "#ffd96f";
32
+ export const ColorFillFeedbackWarningDefault = "#fdb500";
33
+ export const ColorFillFeedbackWarningStrong = "#cd8c00";
34
+ export const ColorFillFeedbackDangerSubtle = "#ffeeef";
35
+ export const ColorFillFeedbackDangerMuted = "#ffbbbd";
36
+ export const ColorFillFeedbackDangerDefault = "#e90800";
37
+ export const ColorFillFeedbackDangerStrong = "#b00006";
38
+ export const ColorFillFeedbackNeutralSubtle = "#fafafc";
39
+ export const ColorFillFeedbackNeutralMuted = "#e0e1e8";
40
+ export const ColorFillFeedbackNeutralDefault = "#8e91a5";
41
+ export const ColorFillFeedbackNeutralStrong = "#434560";
42
+ export const ColorFillFeedbackHighlightSubtle = "#f3ebf9";
43
+ export const ColorFillFeedbackHighlightMuted = "#caa3e2";
44
+ export const ColorFillFeedbackHighlightDefault = "#8f3dc1";
45
+ export const ColorFillFeedbackHighlightStrong = "#6c00ae";
46
+ export const ColorStrokeNeutralDefault = "#e0e1e8";
47
+ export const ColorStrokeBrandDefault = "#1545de";
48
+ export const ColorStrokeInteractionNeutralHover = "#c8cad4";
49
+ export const ColorStrokeInteractionNeutralExpanded = "#c8cad4";
50
+ export const ColorStrokeInteractionDangerHover = "#b00006";
51
+ export const ColorStrokeInteractionBrandHover = "#0c31b6";
52
+ export const ColorStrokeInteractionBrandFocus = "#1545de";
53
+ export const ColorStrokeFeedbackSuccessSubtle = "#b3efcb";
54
+ export const ColorStrokeFeedbackSuccessDefault = "#00874d";
55
+ export const ColorStrokeFeedbackWarningSubtle = "#ffe7a1";
56
+ export const ColorStrokeFeedbackWarningDefault = "#fdb500";
57
+ export const ColorStrokeFeedbackDangerSubtle = "#fed7d9";
58
+ export const ColorStrokeFeedbackDangerDefault = "#e90800";
59
+ export const ColorStrokeFeedbackInfoSubtle = "#cfdefe";
60
+ export const ColorStrokeFeedbackInfoDefault = "#1545de";
61
+ export const ColorTextNeutralDefault = "#24263f";
62
+ export const ColorTextNeutralMudle = "#434560";
63
+ export const ColorTextNeutralSubtle = "#676a83";
64
+ export const ColorTextNeutralSubtlest = "#8e91a5";
65
+ export const ColorTextNeutralInverse = "#ffffff";
66
+ export const ColorTextBrandDefault = "#1545de";
67
+ export const ColorTextBrandStrong = "#0c31b6";
68
+ export const ColorTextInteractionDangerHover = "#b00006";
69
+ export const ColorTextInteractionBrandHover = "#0c31b6";
70
+ export const ColorTextFeedbackWarningDefault = "#fdb500";
71
+ export const ColorTextFeedbackSuccessDefault = "#00874d";
72
+ export const ColorTextFeedbackDangerDefault = "#e90800";
73
+ export const ColorIconNeutralDefault = "#434560";
74
+ export const ColorIconNeutralMudle = "#676a83";
75
+ export const ColorIconNeutralSubtle = "#aeb0be";
76
+ export const ColorIconNeutralInverse = "#ffffff";
77
+ export const ColorIconBrandDefault = "#1545de";
78
+ export const ColorIconInteractionDangerHover = "#b00006";
79
+ export const ColorIconInteractionNeutralHover = "#d9d9d9";
80
+ export const ColorIconFeedbackWarningDefault = "#fdb500";
81
+ export const ColorIconFeedbackSuccessDefault = "#00874d";
82
+ export const ColorIconFeedbackDangerDefault = "#e90800";
83
+ export const ColorIconFeedbackInfoDefault = "#1545de";
84
+ export const ColorPaletteWhite = "#ffffff";
85
+ export const ColorPaletteBlack = "#000000";
86
+ export const ColorPaletteRed100 = "#ffeeef";
87
+ export const ColorPaletteRed200 = "#ffd7d9";
88
+ export const ColorPaletteRed300 = "#ffbbbd";
89
+ export const ColorPaletteRed400 = "#ff9898";
90
+ export const ColorPaletteRed500 = "#ff6762";
91
+ export const ColorPaletteRed600 = "#e90800";
92
+ export const ColorPaletteRed700 = "#b00006";
93
+ export const ColorPaletteRed800 = "#80000d";
94
+ export const ColorPaletteRed900 = "#52000e";
95
+ export const ColorPaletteBlue100 = "#ebf1ff";
96
+ export const ColorPaletteBlue200 = "#cfdeff";
97
+ export const ColorPaletteBlue300 = "#adc6ff";
98
+ export const ColorPaletteBlue400 = "#88a9fe";
99
+ export const ColorPaletteBlue500 = "#5a84f6";
100
+ export const ColorPaletteBlue600 = "#1545de";
101
+ export const ColorPaletteBlue700 = "#0c31b6";
102
+ export const ColorPaletteBlue800 = "#031a77";
103
+ export const ColorPaletteBlue900 = "#020b3b";
104
+ export const ColorPaletteGreen100 = "#e6f9ec";
105
+ export const ColorPaletteGreen200 = "#b3efcb";
106
+ export const ColorPaletteGreen300 = "#69e59f";
107
+ export const ColorPaletteGreen400 = "#17d171";
108
+ export const ColorPaletteGreen500 = "#09b261";
109
+ export const ColorPaletteGreen600 = "#00874d";
110
+ export const ColorPaletteGreen700 = "#006338";
111
+ export const ColorPaletteGreen800 = "#004226";
112
+ export const ColorPaletteGreen900 = "#002514";
113
+ export const ColorPaletteYellow100 = "#fff6d5";
114
+ export const ColorPaletteYellow200 = "#ffe7a1";
115
+ export const ColorPaletteYellow300 = "#ffd96f";
116
+ export const ColorPaletteYellow400 = "#ffcd45";
117
+ export const ColorPaletteYellow500 = "#ffc226";
118
+ export const ColorPaletteYellow600 = "#fdb500";
119
+ export const ColorPaletteYellow700 = "#cd8c00";
120
+ export const ColorPaletteYellow800 = "#986500";
121
+ export const ColorPaletteYellow900 = "#593900";
122
+ export const ColorPaletteCoolGray50 = "#fafafc";
123
+ export const ColorPaletteCoolGray100 = "#f1f1f5";
124
+ export const ColorPaletteCoolGray200 = "#e0e1e8";
125
+ export const ColorPaletteCoolGray300 = "#c8cad4";
126
+ export const ColorPaletteCoolGray400 = "#aeb0be";
127
+ export const ColorPaletteCoolGray500 = "#8e91a5";
128
+ export const ColorPaletteCoolGray600 = "#676a83";
129
+ export const ColorPaletteCoolGray700 = "#434560";
130
+ export const ColorPaletteCoolGray800 = "#24263f";
131
+ export const ColorPaletteCoolGray900 = "#0e0f23";
132
+ export const FontFamilyBase = "Poppins";
133
+ export const FontSize10 = "10px";
134
+ export const FontSize12 = "12px";
135
+ export const FontSize14 = "14px";
136
+ export const FontSize16 = "16px";
137
+ export const FontSize18 = "18px";
138
+ export const FontSize20 = "20px";
139
+ export const FontSize24 = "24px";
140
+ export const FontSize28 = "28px";
141
+ export const FontLineHeight10 = "16px";
142
+ export const FontLineHeight12 = "16px";
143
+ export const FontLineHeight14 = "20px";
144
+ export const FontLineHeight16 = "24px";
145
+ export const FontLineHeight18 = "28px";
146
+ export const FontLineHeight20 = "28px";
147
+ export const FontLineHeight24 = "32px";
148
+ export const FontLineHeight28 = "36px";
149
+ export const FontWeightRegular = "400";
150
+ export const FontWeightMedium = "500";
151
+ export const FontWeightSemibold = "600";
152
+ export const FontWeightBold = "700";
153
+ export const ShadowFocus = "0px 0px 0px 3px #cfdeff";
154
+ export const ShadowLayerXs = "0px 1px 2px #0e0f2312";
155
+ export const ShadowLayerSm = "0px 1px 2px #0e0f2312, 0px 2px 4px #0e0f2312";
156
+ export const ShadowLayerMd =
157
+ "0px 1px 2px #0e0f2312, 0px 2px 4px #0e0f2312, 0px 4px 8px #0e0f2312";
158
+ export const ShadowLayerLg =
159
+ "0px 1px 2px #0e0f2312, 0px 2px 4px #0e0f2312, 0px 4px 8px #0e0f2312, 0px 8px 16px #0e0f2312";
160
+ export const ShadowLayerXl =
161
+ "0px 1px 2px #0e0f2312, 0px 2px 4px #0e0f2312, 0px 4px 8px #0e0f2312, 0px 8px 16px #0e0f2312, 0px 16px 32px #0e0f2312";
162
+ export const ShadowLayerXxl =
163
+ "0px 1px 2px #0e0f2312, 0px 2px 4px #0e0f2312, 0px 4px 8px #0e0f2312, 0px 8px 16px #0e0f2312, 0px 16px 32px #0e0f2312, 0px 32px 64px #0e0f2312";