@snhaman/pollymorph 1.4.0 → 1.6.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/fonts/PDS-Icon-Font-20.ttf +0 -0
- package/dist/fonts/PDS-Icon-Font-20.woff2 +0 -0
- package/dist/icons.d.mts +23 -0
- package/dist/icons.d.ts +23 -0
- package/dist/icons.js +1165 -0
- package/dist/icons.js.map +1 -0
- package/dist/icons.mjs +1135 -0
- package/dist/icons.mjs.map +1 -0
- package/dist/index.d.mts +4 -4
- package/dist/index.d.ts +4 -4
- package/dist/index.js +1742 -23
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +1721 -19
- package/dist/index.mjs.map +1 -1
- package/dist/pds-icons.css +117 -0
- package/dist/pollymorph.css +573 -0
- package/dist/react-icons.d.mts +753 -0
- package/dist/react-icons.d.ts +753 -0
- package/dist/react-icons.js +3353 -0
- package/dist/react-icons.js.map +1 -0
- package/dist/react-icons.mjs +3143 -0
- package/dist/react-icons.mjs.map +1 -0
- package/dist/rules.d.mts +19 -9
- package/dist/rules.d.ts +19 -9
- package/dist/rules.js +603 -23
- package/dist/rules.js.map +1 -1
- package/dist/rules.mjs +588 -19
- package/dist/rules.mjs.map +1 -1
- package/dist/svg.d.mts +187 -0
- package/dist/svg.d.ts +187 -0
- package/dist/svg.js +1064 -0
- package/dist/svg.js.map +1 -0
- package/dist/svg.mjs +855 -0
- package/dist/svg.mjs.map +1 -0
- package/dist/tokens-B3FQ_Pbh.d.mts +221 -0
- package/dist/tokens-B3FQ_Pbh.d.ts +221 -0
- package/dist/tokens.d.mts +1 -62
- package/dist/tokens.d.ts +1 -62
- package/dist/tokens.js +558 -11
- package/dist/tokens.js.map +1 -1
- package/dist/tokens.mjs +558 -11
- package/dist/tokens.mjs.map +1 -1
- package/package.json +34 -3
- package/dist/types-C6UlcDOW.d.mts +0 -162
- package/dist/types-C6UlcDOW.d.ts +0 -162
|
@@ -0,0 +1,221 @@
|
|
|
1
|
+
interface ColorStep {
|
|
2
|
+
base: string;
|
|
3
|
+
"98": string;
|
|
4
|
+
"95": string;
|
|
5
|
+
"92": string;
|
|
6
|
+
"90": string;
|
|
7
|
+
"85": string;
|
|
8
|
+
"80": string;
|
|
9
|
+
"75": string;
|
|
10
|
+
"70": string;
|
|
11
|
+
"60": string;
|
|
12
|
+
"50": string;
|
|
13
|
+
"40": string;
|
|
14
|
+
"30": string;
|
|
15
|
+
"20": string;
|
|
16
|
+
"10": string;
|
|
17
|
+
"0": string;
|
|
18
|
+
"-10": string;
|
|
19
|
+
"-20": string;
|
|
20
|
+
"-30": string;
|
|
21
|
+
"-40": string;
|
|
22
|
+
"-50": string;
|
|
23
|
+
"-60": string;
|
|
24
|
+
"-80": string;
|
|
25
|
+
}
|
|
26
|
+
interface PlatformSurface {
|
|
27
|
+
type: "gradient";
|
|
28
|
+
stops: Array<{
|
|
29
|
+
color: string;
|
|
30
|
+
stop: string;
|
|
31
|
+
}>;
|
|
32
|
+
css: string;
|
|
33
|
+
}
|
|
34
|
+
interface ColorTokens {
|
|
35
|
+
primary: {
|
|
36
|
+
purple: ColorStep;
|
|
37
|
+
orange: ColorStep;
|
|
38
|
+
};
|
|
39
|
+
secondary: {
|
|
40
|
+
cyan: ColorStep;
|
|
41
|
+
pink: ColorStep;
|
|
42
|
+
blue: ColorStep;
|
|
43
|
+
yellow: ColorStep;
|
|
44
|
+
red: ColorStep;
|
|
45
|
+
green: ColorStep;
|
|
46
|
+
purple: ColorStep;
|
|
47
|
+
};
|
|
48
|
+
neutral: {
|
|
49
|
+
warm: ColorStep;
|
|
50
|
+
cool: ColorStep;
|
|
51
|
+
pure: ColorStep;
|
|
52
|
+
};
|
|
53
|
+
brand: {
|
|
54
|
+
altPurple: ColorStep;
|
|
55
|
+
};
|
|
56
|
+
platform: {
|
|
57
|
+
surface: PlatformSurface;
|
|
58
|
+
sidebar: {
|
|
59
|
+
background: string;
|
|
60
|
+
nestedPanel: string;
|
|
61
|
+
stroke: string;
|
|
62
|
+
};
|
|
63
|
+
};
|
|
64
|
+
standard: {
|
|
65
|
+
white: string;
|
|
66
|
+
black: string;
|
|
67
|
+
transparent: string;
|
|
68
|
+
};
|
|
69
|
+
surface: {
|
|
70
|
+
primary: string;
|
|
71
|
+
secondary: string;
|
|
72
|
+
tertiary: string;
|
|
73
|
+
overlay: string;
|
|
74
|
+
};
|
|
75
|
+
}
|
|
76
|
+
interface ElevationLevel {
|
|
77
|
+
shadow: string;
|
|
78
|
+
}
|
|
79
|
+
interface ElevationTokens {
|
|
80
|
+
none: {
|
|
81
|
+
shadow: string;
|
|
82
|
+
};
|
|
83
|
+
sm: ElevationLevel;
|
|
84
|
+
md: ElevationLevel;
|
|
85
|
+
lg: ElevationLevel;
|
|
86
|
+
xl: ElevationLevel;
|
|
87
|
+
}
|
|
88
|
+
interface FontTokens {
|
|
89
|
+
family: {
|
|
90
|
+
sans: string;
|
|
91
|
+
display: string;
|
|
92
|
+
mono: string;
|
|
93
|
+
icon: string;
|
|
94
|
+
};
|
|
95
|
+
size: Record<string, string>;
|
|
96
|
+
weight: {
|
|
97
|
+
regular: number;
|
|
98
|
+
book: number;
|
|
99
|
+
medium: number;
|
|
100
|
+
thick: number;
|
|
101
|
+
semibold: number;
|
|
102
|
+
bold: number;
|
|
103
|
+
};
|
|
104
|
+
height: Record<string, string>;
|
|
105
|
+
letter: {
|
|
106
|
+
spacing: Record<string, string>;
|
|
107
|
+
};
|
|
108
|
+
}
|
|
109
|
+
interface PollyMorphTokens {
|
|
110
|
+
color: ColorTokens;
|
|
111
|
+
elevation: ElevationTokens;
|
|
112
|
+
font: FontTokens;
|
|
113
|
+
radius: Record<string, string>;
|
|
114
|
+
spacing: Record<string, string>;
|
|
115
|
+
state: Record<string, unknown>;
|
|
116
|
+
}
|
|
117
|
+
interface StatusColorRules {
|
|
118
|
+
yellow: string;
|
|
119
|
+
red: string;
|
|
120
|
+
green: string;
|
|
121
|
+
blue: string;
|
|
122
|
+
}
|
|
123
|
+
interface PollyMorphRules {
|
|
124
|
+
color: {
|
|
125
|
+
brand: {
|
|
126
|
+
primary_purple: string;
|
|
127
|
+
primary_orange: string;
|
|
128
|
+
non_brand_accents: string;
|
|
129
|
+
status_colors: StatusColorRules;
|
|
130
|
+
};
|
|
131
|
+
surface: Record<string, string>;
|
|
132
|
+
text: Record<string, string>;
|
|
133
|
+
badges: Record<string, string>;
|
|
134
|
+
};
|
|
135
|
+
typography: {
|
|
136
|
+
font_families: Record<string, string>;
|
|
137
|
+
scale_rules: Record<string, string>;
|
|
138
|
+
};
|
|
139
|
+
layout: Record<string, string>;
|
|
140
|
+
components: {
|
|
141
|
+
buttons: Record<string, string>;
|
|
142
|
+
tabs: string;
|
|
143
|
+
table_sort: string;
|
|
144
|
+
pagination: string;
|
|
145
|
+
sidebar_active_state: string;
|
|
146
|
+
notification_badges: string;
|
|
147
|
+
};
|
|
148
|
+
spacing: Record<string, string>;
|
|
149
|
+
}
|
|
150
|
+
interface PollyMorph {
|
|
151
|
+
meta: {
|
|
152
|
+
name: string;
|
|
153
|
+
version: string;
|
|
154
|
+
description: string;
|
|
155
|
+
generatedAt: string;
|
|
156
|
+
};
|
|
157
|
+
core: PollyMorphTokens;
|
|
158
|
+
semantic: Record<string, unknown>;
|
|
159
|
+
rules: PollyMorphRules;
|
|
160
|
+
}
|
|
161
|
+
|
|
162
|
+
/** The full typed core token object */
|
|
163
|
+
declare const tokens: PollyMorphTokens;
|
|
164
|
+
declare const colorPurple = "#8E42EE";
|
|
165
|
+
declare const colorOrange = "#F78E12";
|
|
166
|
+
declare const colorPink = "#EC4899";
|
|
167
|
+
declare const colorCyan = "#06B6D4";
|
|
168
|
+
declare const colorRed = "#FF004D";
|
|
169
|
+
declare const colorBlue = "#3C5DE2";
|
|
170
|
+
declare const colorGreen = "#24CF35";
|
|
171
|
+
declare const colorYellow = "#F7E217";
|
|
172
|
+
declare const colorNeutral = "#808080";
|
|
173
|
+
declare const colorSecondaryPurple = "#936DC3";
|
|
174
|
+
declare const colorSecondaryOrange = "#D98C30";
|
|
175
|
+
declare const colorSecondaryPink = "#D85C99";
|
|
176
|
+
declare const colorSecondaryCyan = "#21A3B9";
|
|
177
|
+
declare const colorSecondaryRed = "#CC3361";
|
|
178
|
+
declare const colorSecondaryBlue = "#6173BD";
|
|
179
|
+
declare const colorNeutralPurple = "#968AA6";
|
|
180
|
+
declare const colorNeutralOrange = "#A18768";
|
|
181
|
+
declare const colorNeutralPink = "#AF859A";
|
|
182
|
+
declare const colorNeutralCyan = "#3A91A0";
|
|
183
|
+
declare const colorNeutralRed = "#9F6073";
|
|
184
|
+
declare const colorNeutralBlue = "#7A82A4";
|
|
185
|
+
declare const colorWhite = "#FFFFFF";
|
|
186
|
+
declare const colorBlack = "#000000";
|
|
187
|
+
declare const colorSidebarBg = "#211D33";
|
|
188
|
+
declare const colorSidebarNestedPanel = "#2C2840";
|
|
189
|
+
declare const colorSidebarStroke = "#433B60";
|
|
190
|
+
declare const colorPlatformSurfaceCss = "linear-gradient(180deg, #EFECF1 0%, #F6F4F9 53%, #E1DBE7 99%)";
|
|
191
|
+
declare const fontFamilyGrotesk = "'Space Grotesk', sans-serif";
|
|
192
|
+
declare const fontFamilyInter = "'Inter', sans-serif";
|
|
193
|
+
declare const fontFamilyJetbrains = "'JetBrains Mono', monospace";
|
|
194
|
+
declare const fontFamilyIcon = "'PDS-Icon-Font-20', sans-serif";
|
|
195
|
+
declare const fontFamilyBase = "'Inter', sans-serif";
|
|
196
|
+
declare const fontWeightNormal = 400;
|
|
197
|
+
declare const fontWeightExtraThick = 450;
|
|
198
|
+
declare const fontWeightMedium = 500;
|
|
199
|
+
declare const fontWeightThick = 550;
|
|
200
|
+
declare const fontWeightSemiBold = 600;
|
|
201
|
+
declare const fontWeightBold = 700;
|
|
202
|
+
declare const spacing0 = "0";
|
|
203
|
+
declare const spacing1 = "0.25rem";
|
|
204
|
+
declare const spacing2 = "0.5rem";
|
|
205
|
+
declare const spacing3 = "0.75rem";
|
|
206
|
+
declare const spacing4 = "1rem";
|
|
207
|
+
declare const spacing5 = "1.25rem";
|
|
208
|
+
declare const spacing6 = "1.5rem";
|
|
209
|
+
declare const spacing8 = "2rem";
|
|
210
|
+
declare const spacing10 = "2.5rem";
|
|
211
|
+
declare const spacing12 = "3rem";
|
|
212
|
+
declare const spacing16 = "4rem";
|
|
213
|
+
declare const radiusNone = "0";
|
|
214
|
+
declare const radiusSm = "0.25rem";
|
|
215
|
+
declare const radiusMd = "0.375rem";
|
|
216
|
+
declare const radiusLg = "0.5rem";
|
|
217
|
+
declare const radiusXl = "0.75rem";
|
|
218
|
+
declare const radius2xl = "1rem";
|
|
219
|
+
declare const radiusFull = "9999px";
|
|
220
|
+
|
|
221
|
+
export { radiusSm as $, colorSecondaryRed as A, colorSidebarBg as B, type ColorStep as C, colorSidebarNestedPanel as D, type ElevationLevel as E, type FontTokens as F, colorSidebarStroke as G, colorWhite as H, colorYellow as I, fontFamilyBase as J, fontFamilyGrotesk as K, fontFamilyIcon as L, fontFamilyInter as M, fontFamilyJetbrains as N, fontWeightBold as O, type PollyMorph as P, fontWeightExtraThick as Q, fontWeightMedium as R, type StatusColorRules as S, fontWeightNormal as T, fontWeightSemiBold as U, fontWeightThick as V, radius2xl as W, radiusFull as X, radiusLg as Y, radiusMd as Z, radiusNone as _, type ColorTokens as a, radiusXl as a0, spacing0 as a1, spacing1 as a2, spacing10 as a3, spacing12 as a4, spacing16 as a5, spacing2 as a6, spacing3 as a7, spacing4 as a8, spacing5 as a9, spacing6 as aa, spacing8 as ab, tokens as ac, type ElevationTokens as b, type PlatformSurface as c, type PollyMorphRules as d, type PollyMorphTokens as e, colorBlack as f, colorBlue as g, colorCyan as h, colorGreen as i, colorNeutral as j, colorNeutralBlue as k, colorNeutralCyan as l, colorNeutralOrange as m, colorNeutralPink as n, colorNeutralPurple as o, colorNeutralRed as p, colorOrange as q, colorPink as r, colorPlatformSurfaceCss as s, colorPurple as t, colorRed as u, colorSecondaryBlue as v, colorSecondaryCyan as w, colorSecondaryOrange as x, colorSecondaryPink as y, colorSecondaryPurple as z };
|
package/dist/tokens.d.mts
CHANGED
|
@@ -1,62 +1 @@
|
|
|
1
|
-
|
|
2
|
-
|
|
3
|
-
/** The full typed core token object */
|
|
4
|
-
declare const tokens: PollyMorphTokens;
|
|
5
|
-
declare const colorPurple = "#8E42EE";
|
|
6
|
-
declare const colorOrange = "#F78E12";
|
|
7
|
-
declare const colorPink = "#EC4899";
|
|
8
|
-
declare const colorCyan = "#06B6D4";
|
|
9
|
-
declare const colorRed = "#FF004D";
|
|
10
|
-
declare const colorBlue = "#3C5DE2";
|
|
11
|
-
declare const colorGreen = "#24CF35";
|
|
12
|
-
declare const colorYellow = "#F7E217";
|
|
13
|
-
declare const colorNeutral = "#808080";
|
|
14
|
-
declare const colorSecondaryPurple = "#936DC3";
|
|
15
|
-
declare const colorSecondaryOrange = "#D98C30";
|
|
16
|
-
declare const colorSecondaryPink = "#D85C99";
|
|
17
|
-
declare const colorSecondaryCyan = "#21A3B9";
|
|
18
|
-
declare const colorSecondaryRed = "#CC3361";
|
|
19
|
-
declare const colorSecondaryBlue = "#6173BD";
|
|
20
|
-
declare const colorNeutralPurple = "#968AA6";
|
|
21
|
-
declare const colorNeutralOrange = "#A18768";
|
|
22
|
-
declare const colorNeutralPink = "#AF859A";
|
|
23
|
-
declare const colorNeutralCyan = "#3A91A0";
|
|
24
|
-
declare const colorNeutralRed = "#9F6073";
|
|
25
|
-
declare const colorNeutralBlue = "#7A82A4";
|
|
26
|
-
declare const colorWhite = "#FFFFFF";
|
|
27
|
-
declare const colorBlack = "#000000";
|
|
28
|
-
declare const colorSidebarBg = "#211D33";
|
|
29
|
-
declare const colorSidebarNestedPanel = "#2C2840";
|
|
30
|
-
declare const colorSidebarStroke = "#433B60";
|
|
31
|
-
declare const colorPlatformSurfaceCss = "linear-gradient(180deg, #EFECF1 0%, #F6F4F9 53%, #E1DBE7 99%)";
|
|
32
|
-
declare const fontFamilyGrotesk = "'Space Grotesk', sans-serif";
|
|
33
|
-
declare const fontFamilyInter = "'Inter', sans-serif";
|
|
34
|
-
declare const fontFamilyJetbrains = "'JetBrains Mono', monospace";
|
|
35
|
-
declare const fontFamilyIcon = "'PDS-Icon-Font-20', sans-serif";
|
|
36
|
-
declare const fontFamilyBase = "'Inter', sans-serif";
|
|
37
|
-
declare const fontWeightNormal = 400;
|
|
38
|
-
declare const fontWeightExtraThick = 450;
|
|
39
|
-
declare const fontWeightMedium = 500;
|
|
40
|
-
declare const fontWeightThick = 550;
|
|
41
|
-
declare const fontWeightSemiBold = 600;
|
|
42
|
-
declare const fontWeightBold = 700;
|
|
43
|
-
declare const spacing0 = "0";
|
|
44
|
-
declare const spacing1 = "0.25rem";
|
|
45
|
-
declare const spacing2 = "0.5rem";
|
|
46
|
-
declare const spacing3 = "0.75rem";
|
|
47
|
-
declare const spacing4 = "1rem";
|
|
48
|
-
declare const spacing5 = "1.25rem";
|
|
49
|
-
declare const spacing6 = "1.5rem";
|
|
50
|
-
declare const spacing8 = "2rem";
|
|
51
|
-
declare const spacing10 = "2.5rem";
|
|
52
|
-
declare const spacing12 = "3rem";
|
|
53
|
-
declare const spacing16 = "4rem";
|
|
54
|
-
declare const radiusNone = "0";
|
|
55
|
-
declare const radiusSm = "0.25rem";
|
|
56
|
-
declare const radiusMd = "0.375rem";
|
|
57
|
-
declare const radiusLg = "0.5rem";
|
|
58
|
-
declare const radiusXl = "0.75rem";
|
|
59
|
-
declare const radius2xl = "1rem";
|
|
60
|
-
declare const radiusFull = "9999px";
|
|
61
|
-
|
|
62
|
-
export { colorBlack, colorBlue, colorCyan, colorGreen, colorNeutral, colorNeutralBlue, colorNeutralCyan, colorNeutralOrange, colorNeutralPink, colorNeutralPurple, colorNeutralRed, colorOrange, colorPink, colorPlatformSurfaceCss, colorPurple, colorRed, colorSecondaryBlue, colorSecondaryCyan, colorSecondaryOrange, colorSecondaryPink, colorSecondaryPurple, colorSecondaryRed, colorSidebarBg, colorSidebarNestedPanel, colorSidebarStroke, colorWhite, colorYellow, fontFamilyBase, fontFamilyGrotesk, fontFamilyIcon, fontFamilyInter, fontFamilyJetbrains, fontWeightBold, fontWeightExtraThick, fontWeightMedium, fontWeightNormal, fontWeightSemiBold, fontWeightThick, radius2xl, radiusFull, radiusLg, radiusMd, radiusNone, radiusSm, radiusXl, spacing0, spacing1, spacing10, spacing12, spacing16, spacing2, spacing3, spacing4, spacing5, spacing6, spacing8, tokens };
|
|
1
|
+
export { f as colorBlack, g as colorBlue, h as colorCyan, i as colorGreen, j as colorNeutral, k as colorNeutralBlue, l as colorNeutralCyan, m as colorNeutralOrange, n as colorNeutralPink, o as colorNeutralPurple, p as colorNeutralRed, q as colorOrange, r as colorPink, s as colorPlatformSurfaceCss, t as colorPurple, u as colorRed, v as colorSecondaryBlue, w as colorSecondaryCyan, x as colorSecondaryOrange, y as colorSecondaryPink, z as colorSecondaryPurple, A as colorSecondaryRed, B as colorSidebarBg, D as colorSidebarNestedPanel, G as colorSidebarStroke, H as colorWhite, I as colorYellow, J as fontFamilyBase, K as fontFamilyGrotesk, L as fontFamilyIcon, M as fontFamilyInter, N as fontFamilyJetbrains, O as fontWeightBold, Q as fontWeightExtraThick, R as fontWeightMedium, T as fontWeightNormal, U as fontWeightSemiBold, V as fontWeightThick, W as radius2xl, X as radiusFull, Y as radiusLg, Z as radiusMd, _ as radiusNone, $ as radiusSm, a0 as radiusXl, a1 as spacing0, a2 as spacing1, a3 as spacing10, a4 as spacing12, a5 as spacing16, a6 as spacing2, a7 as spacing3, a8 as spacing4, a9 as spacing5, aa as spacing6, ab as spacing8, ac as tokens } from './tokens-B3FQ_Pbh.mjs';
|
package/dist/tokens.d.ts
CHANGED
|
@@ -1,62 +1 @@
|
|
|
1
|
-
|
|
2
|
-
|
|
3
|
-
/** The full typed core token object */
|
|
4
|
-
declare const tokens: PollyMorphTokens;
|
|
5
|
-
declare const colorPurple = "#8E42EE";
|
|
6
|
-
declare const colorOrange = "#F78E12";
|
|
7
|
-
declare const colorPink = "#EC4899";
|
|
8
|
-
declare const colorCyan = "#06B6D4";
|
|
9
|
-
declare const colorRed = "#FF004D";
|
|
10
|
-
declare const colorBlue = "#3C5DE2";
|
|
11
|
-
declare const colorGreen = "#24CF35";
|
|
12
|
-
declare const colorYellow = "#F7E217";
|
|
13
|
-
declare const colorNeutral = "#808080";
|
|
14
|
-
declare const colorSecondaryPurple = "#936DC3";
|
|
15
|
-
declare const colorSecondaryOrange = "#D98C30";
|
|
16
|
-
declare const colorSecondaryPink = "#D85C99";
|
|
17
|
-
declare const colorSecondaryCyan = "#21A3B9";
|
|
18
|
-
declare const colorSecondaryRed = "#CC3361";
|
|
19
|
-
declare const colorSecondaryBlue = "#6173BD";
|
|
20
|
-
declare const colorNeutralPurple = "#968AA6";
|
|
21
|
-
declare const colorNeutralOrange = "#A18768";
|
|
22
|
-
declare const colorNeutralPink = "#AF859A";
|
|
23
|
-
declare const colorNeutralCyan = "#3A91A0";
|
|
24
|
-
declare const colorNeutralRed = "#9F6073";
|
|
25
|
-
declare const colorNeutralBlue = "#7A82A4";
|
|
26
|
-
declare const colorWhite = "#FFFFFF";
|
|
27
|
-
declare const colorBlack = "#000000";
|
|
28
|
-
declare const colorSidebarBg = "#211D33";
|
|
29
|
-
declare const colorSidebarNestedPanel = "#2C2840";
|
|
30
|
-
declare const colorSidebarStroke = "#433B60";
|
|
31
|
-
declare const colorPlatformSurfaceCss = "linear-gradient(180deg, #EFECF1 0%, #F6F4F9 53%, #E1DBE7 99%)";
|
|
32
|
-
declare const fontFamilyGrotesk = "'Space Grotesk', sans-serif";
|
|
33
|
-
declare const fontFamilyInter = "'Inter', sans-serif";
|
|
34
|
-
declare const fontFamilyJetbrains = "'JetBrains Mono', monospace";
|
|
35
|
-
declare const fontFamilyIcon = "'PDS-Icon-Font-20', sans-serif";
|
|
36
|
-
declare const fontFamilyBase = "'Inter', sans-serif";
|
|
37
|
-
declare const fontWeightNormal = 400;
|
|
38
|
-
declare const fontWeightExtraThick = 450;
|
|
39
|
-
declare const fontWeightMedium = 500;
|
|
40
|
-
declare const fontWeightThick = 550;
|
|
41
|
-
declare const fontWeightSemiBold = 600;
|
|
42
|
-
declare const fontWeightBold = 700;
|
|
43
|
-
declare const spacing0 = "0";
|
|
44
|
-
declare const spacing1 = "0.25rem";
|
|
45
|
-
declare const spacing2 = "0.5rem";
|
|
46
|
-
declare const spacing3 = "0.75rem";
|
|
47
|
-
declare const spacing4 = "1rem";
|
|
48
|
-
declare const spacing5 = "1.25rem";
|
|
49
|
-
declare const spacing6 = "1.5rem";
|
|
50
|
-
declare const spacing8 = "2rem";
|
|
51
|
-
declare const spacing10 = "2.5rem";
|
|
52
|
-
declare const spacing12 = "3rem";
|
|
53
|
-
declare const spacing16 = "4rem";
|
|
54
|
-
declare const radiusNone = "0";
|
|
55
|
-
declare const radiusSm = "0.25rem";
|
|
56
|
-
declare const radiusMd = "0.375rem";
|
|
57
|
-
declare const radiusLg = "0.5rem";
|
|
58
|
-
declare const radiusXl = "0.75rem";
|
|
59
|
-
declare const radius2xl = "1rem";
|
|
60
|
-
declare const radiusFull = "9999px";
|
|
61
|
-
|
|
62
|
-
export { colorBlack, colorBlue, colorCyan, colorGreen, colorNeutral, colorNeutralBlue, colorNeutralCyan, colorNeutralOrange, colorNeutralPink, colorNeutralPurple, colorNeutralRed, colorOrange, colorPink, colorPlatformSurfaceCss, colorPurple, colorRed, colorSecondaryBlue, colorSecondaryCyan, colorSecondaryOrange, colorSecondaryPink, colorSecondaryPurple, colorSecondaryRed, colorSidebarBg, colorSidebarNestedPanel, colorSidebarStroke, colorWhite, colorYellow, fontFamilyBase, fontFamilyGrotesk, fontFamilyIcon, fontFamilyInter, fontFamilyJetbrains, fontWeightBold, fontWeightExtraThick, fontWeightMedium, fontWeightNormal, fontWeightSemiBold, fontWeightThick, radius2xl, radiusFull, radiusLg, radiusMd, radiusNone, radiusSm, radiusXl, spacing0, spacing1, spacing10, spacing12, spacing16, spacing2, spacing3, spacing4, spacing5, spacing6, spacing8, tokens };
|
|
1
|
+
export { f as colorBlack, g as colorBlue, h as colorCyan, i as colorGreen, j as colorNeutral, k as colorNeutralBlue, l as colorNeutralCyan, m as colorNeutralOrange, n as colorNeutralPink, o as colorNeutralPurple, p as colorNeutralRed, q as colorOrange, r as colorPink, s as colorPlatformSurfaceCss, t as colorPurple, u as colorRed, v as colorSecondaryBlue, w as colorSecondaryCyan, x as colorSecondaryOrange, y as colorSecondaryPink, z as colorSecondaryPurple, A as colorSecondaryRed, B as colorSidebarBg, D as colorSidebarNestedPanel, G as colorSidebarStroke, H as colorWhite, I as colorYellow, J as fontFamilyBase, K as fontFamilyGrotesk, L as fontFamilyIcon, M as fontFamilyInter, N as fontFamilyJetbrains, O as fontWeightBold, Q as fontWeightExtraThick, R as fontWeightMedium, T as fontWeightNormal, U as fontWeightSemiBold, V as fontWeightThick, W as radius2xl, X as radiusFull, Y as radiusLg, Z as radiusMd, _ as radiusNone, $ as radiusSm, a0 as radiusXl, a1 as spacing0, a2 as spacing1, a3 as spacing10, a4 as spacing12, a5 as spacing16, a6 as spacing2, a7 as spacing3, a8 as spacing4, a9 as spacing5, aa as spacing6, ab as spacing8, ac as tokens } from './tokens-B3FQ_Pbh.js';
|