@bi-digital/tokens 0.0.27 → 0.2.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/dist/tokens.css +34 -0
- package/dist/tokens.d.ts +46 -0
- package/dist/tokens.js +556 -0
- package/dist/tokens.scss +34 -0
- package/package.json +1 -1
package/dist/tokens.css
CHANGED
|
@@ -115,6 +115,7 @@
|
|
|
115
115
|
--bi-scale-8x: 2rem;
|
|
116
116
|
--bi-scale-9x: 2.25rem;
|
|
117
117
|
--bi-scale-10x: 2.5rem;
|
|
118
|
+
--bi-scale-11x: 2.75rem;
|
|
118
119
|
--bi-scale-12x: 3rem;
|
|
119
120
|
--bi-scale-14x: 3.5rem;
|
|
120
121
|
--bi-scale-16x: 4rem;
|
|
@@ -128,4 +129,37 @@
|
|
|
128
129
|
--bi-scale-64x: 16rem;
|
|
129
130
|
--bi-scale-80x: 20rem;
|
|
130
131
|
--bi-scale-max: 624.9375rem;
|
|
132
|
+
--bi-opacity-dark-80: rgba(38, 51, 63, 0.2);
|
|
133
|
+
--bi-opacity-dark-50: rgba(38, 51, 63, 0.5);
|
|
134
|
+
--bi-opacity-light-100: rgba(255, 255, 255, 0);
|
|
135
|
+
--bi-opacity-light-80: rgba(255, 255, 255, 0.2);
|
|
136
|
+
--bi-opacity-light-50: rgba(255, 255, 255, 0.5);
|
|
137
|
+
--bi-stroke-default: 0.09375rem;
|
|
138
|
+
--bi-elevation-25: rgba(38, 51, 63, 0.15);
|
|
139
|
+
--bi-states-hover-dark: rgba(38, 51, 63, 0.1);
|
|
140
|
+
--bi-states-hover-light: rgba(255, 255, 255, 0.1);
|
|
141
|
+
--bi-states-press-dark: rgba(38, 51, 63, 0.15);
|
|
142
|
+
--bi-states-press-light: rgba(255, 255, 255, 0.15);
|
|
143
|
+
--bi-stroke-none: var(--bi-scale-0);
|
|
144
|
+
--bi-stroke-thin: var(--bi-scale-0-25x);
|
|
145
|
+
--bi-stroke-thick: var(--bi-scale-0-50x);
|
|
146
|
+
--bi-stroke-color-1: var(--bi-neutral-15);
|
|
147
|
+
--bi-stroke-color-2: var(--bi-neutral-25);
|
|
148
|
+
--bi-stroke-color-3: var(--bi-neutral-50);
|
|
149
|
+
--bi-radius-none: var(--bi-scale-0);
|
|
150
|
+
--bi-radius-small: var(--bi-scale-0-50x);
|
|
151
|
+
--bi-radius-medium: var(--bi-scale-1x);
|
|
152
|
+
--bi-radius-large: var(--bi-scale-2x);
|
|
153
|
+
--bi-radius-xl: var(--bi-scale-3x);
|
|
154
|
+
--bi-radius-brand: var(--bi-scale-12x);
|
|
155
|
+
--bi-radius-full: var(--bi-scale-max);
|
|
156
|
+
--bi-icon-xs: var(--bi-scale-5x);
|
|
157
|
+
--bi-icon-small: var(--bi-scale-6x);
|
|
158
|
+
--bi-icon-medium: var(--bi-scale-8x);
|
|
159
|
+
--bi-icon-large: var(--bi-scale-10x);
|
|
160
|
+
--bi-icon-2xl: var(--bi-scale-12x);
|
|
161
|
+
--bi-icon-primary: var(--bi-neutral-95);
|
|
162
|
+
--bi-icon-secondary: var(--bi-neutral-50);
|
|
163
|
+
--bi-icon-disabled: var(--bi-neutral-50);
|
|
164
|
+
--bi-icon-link: var(--bi-primary-50);
|
|
131
165
|
}
|
package/dist/tokens.d.ts
CHANGED
|
@@ -144,6 +144,7 @@ declare const tokens: {
|
|
|
144
144
|
"8x": DesignToken;
|
|
145
145
|
"9x": DesignToken;
|
|
146
146
|
"10x": DesignToken;
|
|
147
|
+
"11x": DesignToken;
|
|
147
148
|
"12x": DesignToken;
|
|
148
149
|
"14x": DesignToken;
|
|
149
150
|
"16x": DesignToken;
|
|
@@ -158,4 +159,49 @@ declare const tokens: {
|
|
|
158
159
|
"80x": DesignToken;
|
|
159
160
|
max: DesignToken;
|
|
160
161
|
};
|
|
162
|
+
opacity: {
|
|
163
|
+
dark_80: DesignToken;
|
|
164
|
+
dark_50: DesignToken;
|
|
165
|
+
light_100: DesignToken;
|
|
166
|
+
light_80: DesignToken;
|
|
167
|
+
light_50: DesignToken;
|
|
168
|
+
};
|
|
169
|
+
stroke: {
|
|
170
|
+
none: DesignToken;
|
|
171
|
+
thin: DesignToken;
|
|
172
|
+
default: DesignToken;
|
|
173
|
+
thick: DesignToken;
|
|
174
|
+
"color-1": DesignToken;
|
|
175
|
+
"color-2": DesignToken;
|
|
176
|
+
"color-3": DesignToken;
|
|
177
|
+
};
|
|
178
|
+
radius: {
|
|
179
|
+
none: DesignToken;
|
|
180
|
+
small: DesignToken;
|
|
181
|
+
medium: DesignToken;
|
|
182
|
+
large: DesignToken;
|
|
183
|
+
xl: DesignToken;
|
|
184
|
+
brand: DesignToken;
|
|
185
|
+
full: DesignToken;
|
|
186
|
+
};
|
|
187
|
+
icon: {
|
|
188
|
+
xs: DesignToken;
|
|
189
|
+
small: DesignToken;
|
|
190
|
+
medium: DesignToken;
|
|
191
|
+
large: DesignToken;
|
|
192
|
+
"2xl": DesignToken;
|
|
193
|
+
Primary: DesignToken;
|
|
194
|
+
Secondary: DesignToken;
|
|
195
|
+
Disabled: DesignToken;
|
|
196
|
+
Link: DesignToken;
|
|
197
|
+
};
|
|
198
|
+
elevation: {
|
|
199
|
+
"25": DesignToken;
|
|
200
|
+
};
|
|
201
|
+
states: {
|
|
202
|
+
"hover-dark": DesignToken;
|
|
203
|
+
"hover-light": DesignToken;
|
|
204
|
+
"press-dark": DesignToken;
|
|
205
|
+
"press-light": DesignToken;
|
|
206
|
+
};
|
|
161
207
|
};
|
package/dist/tokens.js
CHANGED
|
@@ -1812,6 +1812,22 @@ export default {
|
|
|
1812
1812
|
},
|
|
1813
1813
|
path: ["scale", "10x"],
|
|
1814
1814
|
},
|
|
1815
|
+
"11x": {
|
|
1816
|
+
$type: "dimension",
|
|
1817
|
+
$value: "2.75rem",
|
|
1818
|
+
filePath: "tokens/Reference.Mode 1.tokens.json",
|
|
1819
|
+
isSource: true,
|
|
1820
|
+
original: {
|
|
1821
|
+
$type: "dimension",
|
|
1822
|
+
$value: "44px",
|
|
1823
|
+
},
|
|
1824
|
+
name: "bi-scale-11x",
|
|
1825
|
+
attributes: {
|
|
1826
|
+
category: "scale",
|
|
1827
|
+
type: "11x",
|
|
1828
|
+
},
|
|
1829
|
+
path: ["scale", "11x"],
|
|
1830
|
+
},
|
|
1815
1831
|
"12x": {
|
|
1816
1832
|
$type: "dimension",
|
|
1817
1833
|
$value: "3rem",
|
|
@@ -2021,4 +2037,544 @@ export default {
|
|
|
2021
2037
|
path: ["scale", "max"],
|
|
2022
2038
|
},
|
|
2023
2039
|
},
|
|
2040
|
+
opacity: {
|
|
2041
|
+
dark_80: {
|
|
2042
|
+
$type: "color",
|
|
2043
|
+
$value: "#26333f33",
|
|
2044
|
+
filePath: "tokens/System.Mode 1.tokens.json",
|
|
2045
|
+
isSource: true,
|
|
2046
|
+
original: {
|
|
2047
|
+
$type: "color",
|
|
2048
|
+
$value: "#26333f33",
|
|
2049
|
+
},
|
|
2050
|
+
name: "bi-opacity-dark-80",
|
|
2051
|
+
attributes: {
|
|
2052
|
+
category: "opacity",
|
|
2053
|
+
type: "dark_80",
|
|
2054
|
+
},
|
|
2055
|
+
path: ["opacity", "dark_80"],
|
|
2056
|
+
},
|
|
2057
|
+
dark_50: {
|
|
2058
|
+
$type: "color",
|
|
2059
|
+
$value: "#26333f80",
|
|
2060
|
+
filePath: "tokens/System.Mode 1.tokens.json",
|
|
2061
|
+
isSource: true,
|
|
2062
|
+
original: {
|
|
2063
|
+
$type: "color",
|
|
2064
|
+
$value: "#26333f80",
|
|
2065
|
+
},
|
|
2066
|
+
name: "bi-opacity-dark-50",
|
|
2067
|
+
attributes: {
|
|
2068
|
+
category: "opacity",
|
|
2069
|
+
type: "dark_50",
|
|
2070
|
+
},
|
|
2071
|
+
path: ["opacity", "dark_50"],
|
|
2072
|
+
},
|
|
2073
|
+
light_100: {
|
|
2074
|
+
$type: "color",
|
|
2075
|
+
$value: "#ffffff00",
|
|
2076
|
+
filePath: "tokens/System.Mode 1.tokens.json",
|
|
2077
|
+
isSource: true,
|
|
2078
|
+
original: {
|
|
2079
|
+
$type: "color",
|
|
2080
|
+
$value: "#ffffff00",
|
|
2081
|
+
},
|
|
2082
|
+
name: "bi-opacity-light-100",
|
|
2083
|
+
attributes: {
|
|
2084
|
+
category: "opacity",
|
|
2085
|
+
type: "light_100",
|
|
2086
|
+
},
|
|
2087
|
+
path: ["opacity", "light_100"],
|
|
2088
|
+
},
|
|
2089
|
+
light_80: {
|
|
2090
|
+
$type: "color",
|
|
2091
|
+
$value: "#ffffff33",
|
|
2092
|
+
filePath: "tokens/System.Mode 1.tokens.json",
|
|
2093
|
+
isSource: true,
|
|
2094
|
+
original: {
|
|
2095
|
+
$type: "color",
|
|
2096
|
+
$value: "#ffffff33",
|
|
2097
|
+
},
|
|
2098
|
+
name: "bi-opacity-light-80",
|
|
2099
|
+
attributes: {
|
|
2100
|
+
category: "opacity",
|
|
2101
|
+
type: "light_80",
|
|
2102
|
+
},
|
|
2103
|
+
path: ["opacity", "light_80"],
|
|
2104
|
+
},
|
|
2105
|
+
light_50: {
|
|
2106
|
+
$type: "color",
|
|
2107
|
+
$value: "#ffffff80",
|
|
2108
|
+
filePath: "tokens/System.Mode 1.tokens.json",
|
|
2109
|
+
isSource: true,
|
|
2110
|
+
original: {
|
|
2111
|
+
$type: "color",
|
|
2112
|
+
$value: "#ffffff80",
|
|
2113
|
+
},
|
|
2114
|
+
name: "bi-opacity-light-50",
|
|
2115
|
+
attributes: {
|
|
2116
|
+
category: "opacity",
|
|
2117
|
+
type: "light_50",
|
|
2118
|
+
},
|
|
2119
|
+
path: ["opacity", "light_50"],
|
|
2120
|
+
},
|
|
2121
|
+
},
|
|
2122
|
+
stroke: {
|
|
2123
|
+
none: {
|
|
2124
|
+
$type: "dimension",
|
|
2125
|
+
$value: "0",
|
|
2126
|
+
filePath: "tokens/System.Mode 1.tokens.json",
|
|
2127
|
+
isSource: true,
|
|
2128
|
+
original: {
|
|
2129
|
+
$type: "dimension",
|
|
2130
|
+
$value: "{scale.0}",
|
|
2131
|
+
},
|
|
2132
|
+
name: "bi-stroke-none",
|
|
2133
|
+
attributes: {
|
|
2134
|
+
category: "stroke",
|
|
2135
|
+
type: "none",
|
|
2136
|
+
},
|
|
2137
|
+
path: ["stroke", "none"],
|
|
2138
|
+
},
|
|
2139
|
+
thin: {
|
|
2140
|
+
$type: "dimension",
|
|
2141
|
+
$value: "0.0625rem",
|
|
2142
|
+
filePath: "tokens/System.Mode 1.tokens.json",
|
|
2143
|
+
isSource: true,
|
|
2144
|
+
original: {
|
|
2145
|
+
$type: "dimension",
|
|
2146
|
+
$value: "{scale.0,25x}",
|
|
2147
|
+
},
|
|
2148
|
+
name: "bi-stroke-thin",
|
|
2149
|
+
attributes: {
|
|
2150
|
+
category: "stroke",
|
|
2151
|
+
type: "thin",
|
|
2152
|
+
},
|
|
2153
|
+
path: ["stroke", "thin"],
|
|
2154
|
+
},
|
|
2155
|
+
default: {
|
|
2156
|
+
$type: "dimension",
|
|
2157
|
+
$value: "0.09375rem",
|
|
2158
|
+
filePath: "tokens/System.Mode 1.tokens.json",
|
|
2159
|
+
isSource: true,
|
|
2160
|
+
original: {
|
|
2161
|
+
$type: "dimension",
|
|
2162
|
+
$value: "1.5px",
|
|
2163
|
+
},
|
|
2164
|
+
name: "bi-stroke-default",
|
|
2165
|
+
attributes: {
|
|
2166
|
+
category: "stroke",
|
|
2167
|
+
type: "default",
|
|
2168
|
+
},
|
|
2169
|
+
path: ["stroke", "default"],
|
|
2170
|
+
},
|
|
2171
|
+
thick: {
|
|
2172
|
+
$type: "dimension",
|
|
2173
|
+
$value: "0.125rem",
|
|
2174
|
+
filePath: "tokens/System.Mode 1.tokens.json",
|
|
2175
|
+
isSource: true,
|
|
2176
|
+
original: {
|
|
2177
|
+
$type: "dimension",
|
|
2178
|
+
$value: "{scale.0,50x}",
|
|
2179
|
+
},
|
|
2180
|
+
name: "bi-stroke-thick",
|
|
2181
|
+
attributes: {
|
|
2182
|
+
category: "stroke",
|
|
2183
|
+
type: "thick",
|
|
2184
|
+
},
|
|
2185
|
+
path: ["stroke", "thick"],
|
|
2186
|
+
},
|
|
2187
|
+
"color-1": {
|
|
2188
|
+
$type: "color",
|
|
2189
|
+
$value: "#d5dde4",
|
|
2190
|
+
filePath: "tokens/System.Mode 1.tokens.json",
|
|
2191
|
+
isSource: true,
|
|
2192
|
+
original: {
|
|
2193
|
+
$type: "color",
|
|
2194
|
+
$value: "{neutral.15}",
|
|
2195
|
+
},
|
|
2196
|
+
name: "bi-stroke-color-1",
|
|
2197
|
+
attributes: {
|
|
2198
|
+
category: "stroke",
|
|
2199
|
+
type: "color-1",
|
|
2200
|
+
},
|
|
2201
|
+
path: ["stroke", "color-1"],
|
|
2202
|
+
},
|
|
2203
|
+
"color-2": {
|
|
2204
|
+
$type: "color",
|
|
2205
|
+
$value: "#bac6d2",
|
|
2206
|
+
filePath: "tokens/System.Mode 1.tokens.json",
|
|
2207
|
+
isSource: true,
|
|
2208
|
+
original: {
|
|
2209
|
+
$type: "color",
|
|
2210
|
+
$value: "{neutral.25}",
|
|
2211
|
+
},
|
|
2212
|
+
name: "bi-stroke-color-2",
|
|
2213
|
+
attributes: {
|
|
2214
|
+
category: "stroke",
|
|
2215
|
+
type: "color-2",
|
|
2216
|
+
},
|
|
2217
|
+
path: ["stroke", "color-2"],
|
|
2218
|
+
},
|
|
2219
|
+
"color-3": {
|
|
2220
|
+
$type: "color",
|
|
2221
|
+
$value: "#597694",
|
|
2222
|
+
filePath: "tokens/System.Mode 1.tokens.json",
|
|
2223
|
+
isSource: true,
|
|
2224
|
+
original: {
|
|
2225
|
+
$type: "color",
|
|
2226
|
+
$value: "{neutral.50}",
|
|
2227
|
+
},
|
|
2228
|
+
name: "bi-stroke-color-3",
|
|
2229
|
+
attributes: {
|
|
2230
|
+
category: "stroke",
|
|
2231
|
+
type: "color-3",
|
|
2232
|
+
},
|
|
2233
|
+
path: ["stroke", "color-3"],
|
|
2234
|
+
},
|
|
2235
|
+
},
|
|
2236
|
+
radius: {
|
|
2237
|
+
none: {
|
|
2238
|
+
$type: "dimension",
|
|
2239
|
+
$value: "0",
|
|
2240
|
+
filePath: "tokens/System.Mode 1.tokens.json",
|
|
2241
|
+
isSource: true,
|
|
2242
|
+
original: {
|
|
2243
|
+
$type: "dimension",
|
|
2244
|
+
$value: "{scale.0}",
|
|
2245
|
+
},
|
|
2246
|
+
name: "bi-radius-none",
|
|
2247
|
+
attributes: {
|
|
2248
|
+
category: "radius",
|
|
2249
|
+
type: "none",
|
|
2250
|
+
},
|
|
2251
|
+
path: ["radius", "none"],
|
|
2252
|
+
},
|
|
2253
|
+
small: {
|
|
2254
|
+
$type: "dimension",
|
|
2255
|
+
$value: "0.125rem",
|
|
2256
|
+
filePath: "tokens/System.Mode 1.tokens.json",
|
|
2257
|
+
isSource: true,
|
|
2258
|
+
original: {
|
|
2259
|
+
$type: "dimension",
|
|
2260
|
+
$value: "{scale.0,50x}",
|
|
2261
|
+
},
|
|
2262
|
+
name: "bi-radius-small",
|
|
2263
|
+
attributes: {
|
|
2264
|
+
category: "radius",
|
|
2265
|
+
type: "small",
|
|
2266
|
+
},
|
|
2267
|
+
path: ["radius", "small"],
|
|
2268
|
+
},
|
|
2269
|
+
medium: {
|
|
2270
|
+
$type: "dimension",
|
|
2271
|
+
$value: "0.25rem",
|
|
2272
|
+
filePath: "tokens/System.Mode 1.tokens.json",
|
|
2273
|
+
isSource: true,
|
|
2274
|
+
original: {
|
|
2275
|
+
$type: "dimension",
|
|
2276
|
+
$value: "{scale.1x}",
|
|
2277
|
+
},
|
|
2278
|
+
name: "bi-radius-medium",
|
|
2279
|
+
attributes: {
|
|
2280
|
+
category: "radius",
|
|
2281
|
+
type: "medium",
|
|
2282
|
+
},
|
|
2283
|
+
path: ["radius", "medium"],
|
|
2284
|
+
},
|
|
2285
|
+
large: {
|
|
2286
|
+
$type: "dimension",
|
|
2287
|
+
$value: "0.5rem",
|
|
2288
|
+
filePath: "tokens/System.Mode 1.tokens.json",
|
|
2289
|
+
isSource: true,
|
|
2290
|
+
original: {
|
|
2291
|
+
$type: "dimension",
|
|
2292
|
+
$value: "{scale.2x}",
|
|
2293
|
+
},
|
|
2294
|
+
name: "bi-radius-large",
|
|
2295
|
+
attributes: {
|
|
2296
|
+
category: "radius",
|
|
2297
|
+
type: "large",
|
|
2298
|
+
},
|
|
2299
|
+
path: ["radius", "large"],
|
|
2300
|
+
},
|
|
2301
|
+
xl: {
|
|
2302
|
+
$type: "dimension",
|
|
2303
|
+
$value: "0.75rem",
|
|
2304
|
+
filePath: "tokens/System.Mode 1.tokens.json",
|
|
2305
|
+
isSource: true,
|
|
2306
|
+
original: {
|
|
2307
|
+
$type: "dimension",
|
|
2308
|
+
$value: "{scale.3x}",
|
|
2309
|
+
},
|
|
2310
|
+
name: "bi-radius-xl",
|
|
2311
|
+
attributes: {
|
|
2312
|
+
category: "radius",
|
|
2313
|
+
type: "xl",
|
|
2314
|
+
},
|
|
2315
|
+
path: ["radius", "xl"],
|
|
2316
|
+
},
|
|
2317
|
+
brand: {
|
|
2318
|
+
$type: "dimension",
|
|
2319
|
+
$value: "3rem",
|
|
2320
|
+
filePath: "tokens/System.Mode 1.tokens.json",
|
|
2321
|
+
isSource: true,
|
|
2322
|
+
original: {
|
|
2323
|
+
$type: "dimension",
|
|
2324
|
+
$value: "{scale.12x}",
|
|
2325
|
+
},
|
|
2326
|
+
name: "bi-radius-brand",
|
|
2327
|
+
attributes: {
|
|
2328
|
+
category: "radius",
|
|
2329
|
+
type: "brand",
|
|
2330
|
+
},
|
|
2331
|
+
path: ["radius", "brand"],
|
|
2332
|
+
},
|
|
2333
|
+
full: {
|
|
2334
|
+
$type: "dimension",
|
|
2335
|
+
$value: "624.9375rem",
|
|
2336
|
+
filePath: "tokens/System.Mode 1.tokens.json",
|
|
2337
|
+
isSource: true,
|
|
2338
|
+
original: {
|
|
2339
|
+
$type: "dimension",
|
|
2340
|
+
$value: "{scale.max}",
|
|
2341
|
+
},
|
|
2342
|
+
name: "bi-radius-full",
|
|
2343
|
+
attributes: {
|
|
2344
|
+
category: "radius",
|
|
2345
|
+
type: "full",
|
|
2346
|
+
},
|
|
2347
|
+
path: ["radius", "full"],
|
|
2348
|
+
},
|
|
2349
|
+
},
|
|
2350
|
+
icon: {
|
|
2351
|
+
xs: {
|
|
2352
|
+
$type: "dimension",
|
|
2353
|
+
$value: "1.25rem",
|
|
2354
|
+
filePath: "tokens/System.Mode 1.tokens.json",
|
|
2355
|
+
isSource: true,
|
|
2356
|
+
original: {
|
|
2357
|
+
$type: "dimension",
|
|
2358
|
+
$value: "{scale.5x}",
|
|
2359
|
+
},
|
|
2360
|
+
name: "bi-icon-xs",
|
|
2361
|
+
attributes: {
|
|
2362
|
+
category: "icon",
|
|
2363
|
+
type: "xs",
|
|
2364
|
+
},
|
|
2365
|
+
path: ["icon", "xs"],
|
|
2366
|
+
},
|
|
2367
|
+
small: {
|
|
2368
|
+
$type: "dimension",
|
|
2369
|
+
$value: "1.5rem",
|
|
2370
|
+
filePath: "tokens/System.Mode 1.tokens.json",
|
|
2371
|
+
isSource: true,
|
|
2372
|
+
original: {
|
|
2373
|
+
$type: "dimension",
|
|
2374
|
+
$value: "{scale.6x}",
|
|
2375
|
+
},
|
|
2376
|
+
name: "bi-icon-small",
|
|
2377
|
+
attributes: {
|
|
2378
|
+
category: "icon",
|
|
2379
|
+
type: "small",
|
|
2380
|
+
},
|
|
2381
|
+
path: ["icon", "small"],
|
|
2382
|
+
},
|
|
2383
|
+
medium: {
|
|
2384
|
+
$type: "dimension",
|
|
2385
|
+
$value: "2rem",
|
|
2386
|
+
filePath: "tokens/System.Mode 1.tokens.json",
|
|
2387
|
+
isSource: true,
|
|
2388
|
+
original: {
|
|
2389
|
+
$type: "dimension",
|
|
2390
|
+
$value: "{scale.8x}",
|
|
2391
|
+
},
|
|
2392
|
+
name: "bi-icon-medium",
|
|
2393
|
+
attributes: {
|
|
2394
|
+
category: "icon",
|
|
2395
|
+
type: "medium",
|
|
2396
|
+
},
|
|
2397
|
+
path: ["icon", "medium"],
|
|
2398
|
+
},
|
|
2399
|
+
large: {
|
|
2400
|
+
$type: "dimension",
|
|
2401
|
+
$value: "2.5rem",
|
|
2402
|
+
filePath: "tokens/System.Mode 1.tokens.json",
|
|
2403
|
+
isSource: true,
|
|
2404
|
+
original: {
|
|
2405
|
+
$type: "dimension",
|
|
2406
|
+
$value: "{scale.10x}",
|
|
2407
|
+
},
|
|
2408
|
+
name: "bi-icon-large",
|
|
2409
|
+
attributes: {
|
|
2410
|
+
category: "icon",
|
|
2411
|
+
type: "large",
|
|
2412
|
+
},
|
|
2413
|
+
path: ["icon", "large"],
|
|
2414
|
+
},
|
|
2415
|
+
"2xl": {
|
|
2416
|
+
$type: "dimension",
|
|
2417
|
+
$value: "3rem",
|
|
2418
|
+
filePath: "tokens/System.Mode 1.tokens.json",
|
|
2419
|
+
isSource: true,
|
|
2420
|
+
original: {
|
|
2421
|
+
$type: "dimension",
|
|
2422
|
+
$value: "{scale.12x}",
|
|
2423
|
+
},
|
|
2424
|
+
name: "bi-icon-2xl",
|
|
2425
|
+
attributes: {
|
|
2426
|
+
category: "icon",
|
|
2427
|
+
type: "2xl",
|
|
2428
|
+
},
|
|
2429
|
+
path: ["icon", "2xl"],
|
|
2430
|
+
},
|
|
2431
|
+
Primary: {
|
|
2432
|
+
$type: "color",
|
|
2433
|
+
$value: "#26333f",
|
|
2434
|
+
filePath: "tokens/System.Mode 1.tokens.json",
|
|
2435
|
+
isSource: true,
|
|
2436
|
+
original: {
|
|
2437
|
+
$type: "color",
|
|
2438
|
+
$value: "{neutral.95}",
|
|
2439
|
+
},
|
|
2440
|
+
name: "bi-icon-primary",
|
|
2441
|
+
attributes: {
|
|
2442
|
+
category: "icon",
|
|
2443
|
+
type: "Primary",
|
|
2444
|
+
},
|
|
2445
|
+
path: ["icon", "Primary"],
|
|
2446
|
+
},
|
|
2447
|
+
Secondary: {
|
|
2448
|
+
$type: "color",
|
|
2449
|
+
$value: "#597694",
|
|
2450
|
+
filePath: "tokens/System.Mode 1.tokens.json",
|
|
2451
|
+
isSource: true,
|
|
2452
|
+
original: {
|
|
2453
|
+
$type: "color",
|
|
2454
|
+
$value: "{neutral.50}",
|
|
2455
|
+
},
|
|
2456
|
+
name: "bi-icon-secondary",
|
|
2457
|
+
attributes: {
|
|
2458
|
+
category: "icon",
|
|
2459
|
+
type: "Secondary",
|
|
2460
|
+
},
|
|
2461
|
+
path: ["icon", "Secondary"],
|
|
2462
|
+
},
|
|
2463
|
+
Disabled: {
|
|
2464
|
+
$type: "color",
|
|
2465
|
+
$value: "#597694",
|
|
2466
|
+
filePath: "tokens/System.Mode 1.tokens.json",
|
|
2467
|
+
isSource: true,
|
|
2468
|
+
original: {
|
|
2469
|
+
$type: "color",
|
|
2470
|
+
$value: "{neutral.50}",
|
|
2471
|
+
},
|
|
2472
|
+
name: "bi-icon-disabled",
|
|
2473
|
+
attributes: {
|
|
2474
|
+
category: "icon",
|
|
2475
|
+
type: "Disabled",
|
|
2476
|
+
},
|
|
2477
|
+
path: ["icon", "Disabled"],
|
|
2478
|
+
},
|
|
2479
|
+
Link: {
|
|
2480
|
+
$type: "color",
|
|
2481
|
+
$value: "#0a64ff",
|
|
2482
|
+
filePath: "tokens/System.Mode 1.tokens.json",
|
|
2483
|
+
isSource: true,
|
|
2484
|
+
original: {
|
|
2485
|
+
$type: "color",
|
|
2486
|
+
$value: "{primary.50}",
|
|
2487
|
+
},
|
|
2488
|
+
name: "bi-icon-link",
|
|
2489
|
+
attributes: {
|
|
2490
|
+
category: "icon",
|
|
2491
|
+
type: "Link",
|
|
2492
|
+
},
|
|
2493
|
+
path: ["icon", "Link"],
|
|
2494
|
+
},
|
|
2495
|
+
},
|
|
2496
|
+
elevation: {
|
|
2497
|
+
25: {
|
|
2498
|
+
$type: "color",
|
|
2499
|
+
$value: "#26333f26",
|
|
2500
|
+
filePath: "tokens/System.Mode 1.tokens.json",
|
|
2501
|
+
isSource: true,
|
|
2502
|
+
original: {
|
|
2503
|
+
$type: "color",
|
|
2504
|
+
$value: "#26333f26",
|
|
2505
|
+
},
|
|
2506
|
+
name: "bi-elevation-25",
|
|
2507
|
+
attributes: {
|
|
2508
|
+
category: "elevation",
|
|
2509
|
+
type: "25",
|
|
2510
|
+
},
|
|
2511
|
+
path: ["elevation", "25"],
|
|
2512
|
+
},
|
|
2513
|
+
},
|
|
2514
|
+
states: {
|
|
2515
|
+
"hover-dark": {
|
|
2516
|
+
$type: "color",
|
|
2517
|
+
$value: "#26333f1a",
|
|
2518
|
+
filePath: "tokens/System.Mode 1.tokens.json",
|
|
2519
|
+
isSource: true,
|
|
2520
|
+
original: {
|
|
2521
|
+
$type: "color",
|
|
2522
|
+
$value: "#26333f1a",
|
|
2523
|
+
},
|
|
2524
|
+
name: "bi-states-hover-dark",
|
|
2525
|
+
attributes: {
|
|
2526
|
+
category: "states",
|
|
2527
|
+
type: "hover-dark",
|
|
2528
|
+
},
|
|
2529
|
+
path: ["states", "hover-dark"],
|
|
2530
|
+
},
|
|
2531
|
+
"hover-light": {
|
|
2532
|
+
$type: "color",
|
|
2533
|
+
$value: "#ffffff1a",
|
|
2534
|
+
filePath: "tokens/System.Mode 1.tokens.json",
|
|
2535
|
+
isSource: true,
|
|
2536
|
+
original: {
|
|
2537
|
+
$type: "color",
|
|
2538
|
+
$value: "#ffffff1a",
|
|
2539
|
+
},
|
|
2540
|
+
name: "bi-states-hover-light",
|
|
2541
|
+
attributes: {
|
|
2542
|
+
category: "states",
|
|
2543
|
+
type: "hover-light",
|
|
2544
|
+
},
|
|
2545
|
+
path: ["states", "hover-light"],
|
|
2546
|
+
},
|
|
2547
|
+
"press-dark": {
|
|
2548
|
+
$type: "color",
|
|
2549
|
+
$value: "#26333f26",
|
|
2550
|
+
filePath: "tokens/System.Mode 1.tokens.json",
|
|
2551
|
+
isSource: true,
|
|
2552
|
+
original: {
|
|
2553
|
+
$type: "color",
|
|
2554
|
+
$value: "#26333f26",
|
|
2555
|
+
},
|
|
2556
|
+
name: "bi-states-press-dark",
|
|
2557
|
+
attributes: {
|
|
2558
|
+
category: "states",
|
|
2559
|
+
type: "press-dark",
|
|
2560
|
+
},
|
|
2561
|
+
path: ["states", "press-dark"],
|
|
2562
|
+
},
|
|
2563
|
+
"press-light": {
|
|
2564
|
+
$type: "color",
|
|
2565
|
+
$value: "#ffffff26",
|
|
2566
|
+
filePath: "tokens/System.Mode 1.tokens.json",
|
|
2567
|
+
isSource: true,
|
|
2568
|
+
original: {
|
|
2569
|
+
$type: "color",
|
|
2570
|
+
$value: "#ffffff26",
|
|
2571
|
+
},
|
|
2572
|
+
name: "bi-states-press-light",
|
|
2573
|
+
attributes: {
|
|
2574
|
+
category: "states",
|
|
2575
|
+
type: "press-light",
|
|
2576
|
+
},
|
|
2577
|
+
path: ["states", "press-light"],
|
|
2578
|
+
},
|
|
2579
|
+
},
|
|
2024
2580
|
};
|
package/dist/tokens.scss
CHANGED
|
@@ -113,6 +113,7 @@ $bi-scale-6x: 1.5rem;
|
|
|
113
113
|
$bi-scale-8x: 2rem;
|
|
114
114
|
$bi-scale-9x: 2.25rem;
|
|
115
115
|
$bi-scale-10x: 2.5rem;
|
|
116
|
+
$bi-scale-11x: 2.75rem;
|
|
116
117
|
$bi-scale-12x: 3rem;
|
|
117
118
|
$bi-scale-14x: 3.5rem;
|
|
118
119
|
$bi-scale-16x: 4rem;
|
|
@@ -126,3 +127,36 @@ $bi-scale-56x: 14rem;
|
|
|
126
127
|
$bi-scale-64x: 16rem;
|
|
127
128
|
$bi-scale-80x: 20rem;
|
|
128
129
|
$bi-scale-max: 624.9375rem;
|
|
130
|
+
$bi-opacity-dark-80: rgba(38, 51, 63, 0.2);
|
|
131
|
+
$bi-opacity-dark-50: rgba(38, 51, 63, 0.5);
|
|
132
|
+
$bi-opacity-light-100: rgba(255, 255, 255, 0);
|
|
133
|
+
$bi-opacity-light-80: rgba(255, 255, 255, 0.2);
|
|
134
|
+
$bi-opacity-light-50: rgba(255, 255, 255, 0.5);
|
|
135
|
+
$bi-stroke-none: 0;
|
|
136
|
+
$bi-stroke-thin: 0.0625rem;
|
|
137
|
+
$bi-stroke-default: 0.09375rem;
|
|
138
|
+
$bi-stroke-thick: 0.125rem;
|
|
139
|
+
$bi-stroke-color-1: #d5dde4;
|
|
140
|
+
$bi-stroke-color-2: #bac6d2;
|
|
141
|
+
$bi-stroke-color-3: #597694;
|
|
142
|
+
$bi-radius-none: 0;
|
|
143
|
+
$bi-radius-small: 0.125rem;
|
|
144
|
+
$bi-radius-medium: 0.25rem;
|
|
145
|
+
$bi-radius-large: 0.5rem;
|
|
146
|
+
$bi-radius-xl: 0.75rem;
|
|
147
|
+
$bi-radius-brand: 3rem;
|
|
148
|
+
$bi-radius-full: 624.9375rem;
|
|
149
|
+
$bi-icon-xs: 1.25rem;
|
|
150
|
+
$bi-icon-small: 1.5rem;
|
|
151
|
+
$bi-icon-medium: 2rem;
|
|
152
|
+
$bi-icon-large: 2.5rem;
|
|
153
|
+
$bi-icon-2xl: 3rem;
|
|
154
|
+
$bi-icon-primary: #26333f;
|
|
155
|
+
$bi-icon-secondary: #597694;
|
|
156
|
+
$bi-icon-disabled: #597694;
|
|
157
|
+
$bi-icon-link: #0a64ff;
|
|
158
|
+
$bi-elevation-25: rgba(38, 51, 63, 0.15);
|
|
159
|
+
$bi-states-hover-dark: rgba(38, 51, 63, 0.1);
|
|
160
|
+
$bi-states-hover-light: rgba(255, 255, 255, 0.1);
|
|
161
|
+
$bi-states-press-dark: rgba(38, 51, 63, 0.15);
|
|
162
|
+
$bi-states-press-light: rgba(255, 255, 255, 0.15);
|