@bi-digital/tokens 0.12.0 → 0.12.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 +10 -10
- package/dist/tokens.d.ts +4 -4
- package/dist/tokens.js +75 -75
- package/package.json +2 -2
- package/readme.md +1 -21
- package/dist/tokens.scss +0 -357
package/dist/tokens.css
CHANGED
|
@@ -157,15 +157,15 @@
|
|
|
157
157
|
--bi-scale-84x: 21rem;
|
|
158
158
|
--bi-scale-128x: 32rem;
|
|
159
159
|
--bi-scale-max: 624.9375rem;
|
|
160
|
+
--bi-color-stroke-basic-subtle: rgba(0, 0, 0, 0.1);
|
|
161
|
+
--bi-color-stroke-basic: rgba(0, 0, 0, 0.2);
|
|
162
|
+
--bi-color-stroke-basic-strong: rgba(0, 0, 0, 0.3);
|
|
163
|
+
--bi-color-stroke-basic-contrast: rgba(0, 0, 0, 0.5);
|
|
160
164
|
--bi-color-primary-text-secondary: rgba(4, 47, 91, 0.7);
|
|
161
165
|
--bi-color-info-text-secondary: rgba(46, 11, 97, 0.7);
|
|
162
166
|
--bi-color-warning-text-secondary: rgba(74, 60, 1, 0.7);
|
|
163
167
|
--bi-color-success-text-secondary: rgba(20, 58, 22, 0.7);
|
|
164
168
|
--bi-color-alert-text-secondary: rgba(106, 27, 22, 0.7);
|
|
165
|
-
--bi-color-stroke-basic-subtle: rgba(0, 0, 0, 0.1);
|
|
166
|
-
--bi-color-stroke-basic: rgba(0, 0, 0, 0.2);
|
|
167
|
-
--bi-color-stroke-basic-strong: rgba(0, 0, 0, 0.3);
|
|
168
|
-
--bi-color-stroke-basic-contrast: rgba(0, 0, 0, 0.5);
|
|
169
169
|
--bi-states-hover: rgba(38, 51, 63, 0.1);
|
|
170
170
|
--bi-states-press: rgba(38, 51, 63, 0.15);
|
|
171
171
|
--bi-states-hover-dark: rgba(38, 51, 63, 0.1);
|
|
@@ -480,6 +480,10 @@
|
|
|
480
480
|
}
|
|
481
481
|
|
|
482
482
|
[data-color-scheme="dark"] {
|
|
483
|
+
--bi-color-stroke-basic-subtle: #ffffff1a;
|
|
484
|
+
--bi-color-stroke-basic: #ffffff33;
|
|
485
|
+
--bi-color-stroke-basic-strong: #ffffff4d;
|
|
486
|
+
--bi-color-stroke-basic-contrast: #ffffff66;
|
|
483
487
|
--bi-color-neutral-background: var(--bi-neutral-100);
|
|
484
488
|
--bi-color-neutral-surface-subtle: var(--bi-neutral-95);
|
|
485
489
|
--bi-color-neutral-surface: var(--bi-neutral-90);
|
|
@@ -512,8 +516,8 @@
|
|
|
512
516
|
--bi-color-primary-text-secondary: #ffffffb2;
|
|
513
517
|
--bi-color-primary-text-subtle: var(--bi-primary-10);
|
|
514
518
|
--bi-color-primary-text-accent: var(--bi-primary-30);
|
|
515
|
-
--bi-color-primary-contrast: var(--bi-primary-
|
|
516
|
-
--bi-color-primary-contrast-hover: var(--bi-primary-
|
|
519
|
+
--bi-color-primary-contrast: var(--bi-primary-30);
|
|
520
|
+
--bi-color-primary-contrast-hover: var(--bi-primary-20);
|
|
517
521
|
--bi-color-primary-fill: var(--bi-primary-50);
|
|
518
522
|
--bi-color-primary-on-fill: var(--bi-basic-white);
|
|
519
523
|
--bi-color-info-background: var(--bi-info-100);
|
|
@@ -588,10 +592,6 @@
|
|
|
588
592
|
--bi-color-alert-contrast-hover: var(--bi-alert-15);
|
|
589
593
|
--bi-color-alert-fill: var(--bi-alert-60);
|
|
590
594
|
--bi-color-alert-on-fill: var(--bi-basic-white);
|
|
591
|
-
--bi-color-stroke-basic-subtle: #ffffff1a;
|
|
592
|
-
--bi-color-stroke-basic: #ffffff33;
|
|
593
|
-
--bi-color-stroke-basic-strong: #ffffff4d;
|
|
594
|
-
--bi-color-stroke-basic-contrast: #ffffff66;
|
|
595
595
|
--bi-states-hover: #ffffff1a;
|
|
596
596
|
--bi-states-press: #ffffff26;
|
|
597
597
|
--bi-states-focus: var(--bi-primary-30);
|
package/dist/tokens.d.ts
CHANGED
|
@@ -188,6 +188,10 @@ declare const tokens: {
|
|
|
188
188
|
max: DesignToken;
|
|
189
189
|
};
|
|
190
190
|
color: {
|
|
191
|
+
"stroke-basic-subtle": DesignToken;
|
|
192
|
+
"stroke-basic": DesignToken;
|
|
193
|
+
"stroke-basic-strong": DesignToken;
|
|
194
|
+
"stroke-basic-contrast": DesignToken;
|
|
191
195
|
neutral: {
|
|
192
196
|
background: DesignToken;
|
|
193
197
|
"surface-subtle": DesignToken;
|
|
@@ -308,10 +312,6 @@ declare const tokens: {
|
|
|
308
312
|
fill: DesignToken;
|
|
309
313
|
"on-fill": DesignToken;
|
|
310
314
|
};
|
|
311
|
-
"stroke-basic-subtle": DesignToken;
|
|
312
|
-
"stroke-basic": DesignToken;
|
|
313
|
-
"stroke-basic-strong": DesignToken;
|
|
314
|
-
"stroke-basic-contrast": DesignToken;
|
|
315
315
|
};
|
|
316
316
|
states: {
|
|
317
317
|
hover: DesignToken;
|
package/dist/tokens.js
CHANGED
|
@@ -2201,7 +2201,7 @@ export default {
|
|
|
2201
2201
|
0: {
|
|
2202
2202
|
key: "{scale.0}",
|
|
2203
2203
|
$type: "dimension",
|
|
2204
|
-
$value: 0,
|
|
2204
|
+
$value: "0",
|
|
2205
2205
|
filePath: "tokens/Reference.Mode 1.tokens.json",
|
|
2206
2206
|
isSource: true,
|
|
2207
2207
|
original: {
|
|
@@ -2794,6 +2794,78 @@ export default {
|
|
|
2794
2794
|
},
|
|
2795
2795
|
},
|
|
2796
2796
|
color: {
|
|
2797
|
+
"stroke-basic-subtle": {
|
|
2798
|
+
key: "{color.stroke-basic-subtle}",
|
|
2799
|
+
$type: "color",
|
|
2800
|
+
$value: "rgba(0, 0, 0, 0.1)",
|
|
2801
|
+
filePath: "tokens/Semantic.light.tokens.json",
|
|
2802
|
+
isSource: true,
|
|
2803
|
+
original: {
|
|
2804
|
+
$type: "color",
|
|
2805
|
+
$value: "#0000001a",
|
|
2806
|
+
key: "{color.stroke-basic-subtle}",
|
|
2807
|
+
},
|
|
2808
|
+
name: "bi-color-stroke-basic-subtle",
|
|
2809
|
+
attributes: {
|
|
2810
|
+
category: "color",
|
|
2811
|
+
type: "stroke-basic-subtle",
|
|
2812
|
+
},
|
|
2813
|
+
path: ["color", "stroke-basic-subtle"],
|
|
2814
|
+
},
|
|
2815
|
+
"stroke-basic": {
|
|
2816
|
+
key: "{color.stroke-basic}",
|
|
2817
|
+
$type: "color",
|
|
2818
|
+
$value: "rgba(0, 0, 0, 0.2)",
|
|
2819
|
+
filePath: "tokens/Semantic.light.tokens.json",
|
|
2820
|
+
isSource: true,
|
|
2821
|
+
original: {
|
|
2822
|
+
$type: "color",
|
|
2823
|
+
$value: "#00000033",
|
|
2824
|
+
key: "{color.stroke-basic}",
|
|
2825
|
+
},
|
|
2826
|
+
name: "bi-color-stroke-basic",
|
|
2827
|
+
attributes: {
|
|
2828
|
+
category: "color",
|
|
2829
|
+
type: "stroke-basic",
|
|
2830
|
+
},
|
|
2831
|
+
path: ["color", "stroke-basic"],
|
|
2832
|
+
},
|
|
2833
|
+
"stroke-basic-strong": {
|
|
2834
|
+
key: "{color.stroke-basic-strong}",
|
|
2835
|
+
$type: "color",
|
|
2836
|
+
$value: "rgba(0, 0, 0, 0.3)",
|
|
2837
|
+
filePath: "tokens/Semantic.light.tokens.json",
|
|
2838
|
+
isSource: true,
|
|
2839
|
+
original: {
|
|
2840
|
+
$type: "color",
|
|
2841
|
+
$value: "#0000004d",
|
|
2842
|
+
key: "{color.stroke-basic-strong}",
|
|
2843
|
+
},
|
|
2844
|
+
name: "bi-color-stroke-basic-strong",
|
|
2845
|
+
attributes: {
|
|
2846
|
+
category: "color",
|
|
2847
|
+
type: "stroke-basic-strong",
|
|
2848
|
+
},
|
|
2849
|
+
path: ["color", "stroke-basic-strong"],
|
|
2850
|
+
},
|
|
2851
|
+
"stroke-basic-contrast": {
|
|
2852
|
+
key: "{color.stroke-basic-contrast}",
|
|
2853
|
+
$type: "color",
|
|
2854
|
+
$value: "rgba(0, 0, 0, 0.5)",
|
|
2855
|
+
filePath: "tokens/Semantic.light.tokens.json",
|
|
2856
|
+
isSource: true,
|
|
2857
|
+
original: {
|
|
2858
|
+
$type: "color",
|
|
2859
|
+
$value: "#00000080",
|
|
2860
|
+
key: "{color.stroke-basic-contrast}",
|
|
2861
|
+
},
|
|
2862
|
+
name: "bi-color-stroke-basic-contrast",
|
|
2863
|
+
attributes: {
|
|
2864
|
+
category: "color",
|
|
2865
|
+
type: "stroke-basic-contrast",
|
|
2866
|
+
},
|
|
2867
|
+
path: ["color", "stroke-basic-contrast"],
|
|
2868
|
+
},
|
|
2797
2869
|
neutral: {
|
|
2798
2870
|
background: {
|
|
2799
2871
|
key: "{color.neutral.background}",
|
|
@@ -4858,78 +4930,6 @@ export default {
|
|
|
4858
4930
|
path: ["color", "alert", "on-fill"],
|
|
4859
4931
|
},
|
|
4860
4932
|
},
|
|
4861
|
-
"stroke-basic-subtle": {
|
|
4862
|
-
key: "{color.stroke-basic-subtle}",
|
|
4863
|
-
$type: "color",
|
|
4864
|
-
$value: "rgba(0, 0, 0, 0.1)",
|
|
4865
|
-
filePath: "tokens/Semantic.light.tokens.json",
|
|
4866
|
-
isSource: true,
|
|
4867
|
-
original: {
|
|
4868
|
-
$type: "color",
|
|
4869
|
-
$value: "#0000001a",
|
|
4870
|
-
key: "{color.stroke-basic-subtle}",
|
|
4871
|
-
},
|
|
4872
|
-
name: "bi-color-stroke-basic-subtle",
|
|
4873
|
-
attributes: {
|
|
4874
|
-
category: "color",
|
|
4875
|
-
type: "stroke-basic-subtle",
|
|
4876
|
-
},
|
|
4877
|
-
path: ["color", "stroke-basic-subtle"],
|
|
4878
|
-
},
|
|
4879
|
-
"stroke-basic": {
|
|
4880
|
-
key: "{color.stroke-basic}",
|
|
4881
|
-
$type: "color",
|
|
4882
|
-
$value: "rgba(0, 0, 0, 0.2)",
|
|
4883
|
-
filePath: "tokens/Semantic.light.tokens.json",
|
|
4884
|
-
isSource: true,
|
|
4885
|
-
original: {
|
|
4886
|
-
$type: "color",
|
|
4887
|
-
$value: "#00000033",
|
|
4888
|
-
key: "{color.stroke-basic}",
|
|
4889
|
-
},
|
|
4890
|
-
name: "bi-color-stroke-basic",
|
|
4891
|
-
attributes: {
|
|
4892
|
-
category: "color",
|
|
4893
|
-
type: "stroke-basic",
|
|
4894
|
-
},
|
|
4895
|
-
path: ["color", "stroke-basic"],
|
|
4896
|
-
},
|
|
4897
|
-
"stroke-basic-strong": {
|
|
4898
|
-
key: "{color.stroke-basic-strong}",
|
|
4899
|
-
$type: "color",
|
|
4900
|
-
$value: "rgba(0, 0, 0, 0.3)",
|
|
4901
|
-
filePath: "tokens/Semantic.light.tokens.json",
|
|
4902
|
-
isSource: true,
|
|
4903
|
-
original: {
|
|
4904
|
-
$type: "color",
|
|
4905
|
-
$value: "#0000004d",
|
|
4906
|
-
key: "{color.stroke-basic-strong}",
|
|
4907
|
-
},
|
|
4908
|
-
name: "bi-color-stroke-basic-strong",
|
|
4909
|
-
attributes: {
|
|
4910
|
-
category: "color",
|
|
4911
|
-
type: "stroke-basic-strong",
|
|
4912
|
-
},
|
|
4913
|
-
path: ["color", "stroke-basic-strong"],
|
|
4914
|
-
},
|
|
4915
|
-
"stroke-basic-contrast": {
|
|
4916
|
-
key: "{color.stroke-basic-contrast}",
|
|
4917
|
-
$type: "color",
|
|
4918
|
-
$value: "rgba(0, 0, 0, 0.5)",
|
|
4919
|
-
filePath: "tokens/Semantic.light.tokens.json",
|
|
4920
|
-
isSource: true,
|
|
4921
|
-
original: {
|
|
4922
|
-
$type: "color",
|
|
4923
|
-
$value: "#00000080",
|
|
4924
|
-
key: "{color.stroke-basic-contrast}",
|
|
4925
|
-
},
|
|
4926
|
-
name: "bi-color-stroke-basic-contrast",
|
|
4927
|
-
attributes: {
|
|
4928
|
-
category: "color",
|
|
4929
|
-
type: "stroke-basic-contrast",
|
|
4930
|
-
},
|
|
4931
|
-
path: ["color", "stroke-basic-contrast"],
|
|
4932
|
-
},
|
|
4933
4933
|
},
|
|
4934
4934
|
states: {
|
|
4935
4935
|
hover: {
|
|
@@ -5191,7 +5191,7 @@ export default {
|
|
|
5191
5191
|
none: {
|
|
5192
5192
|
key: "{stroke.none}",
|
|
5193
5193
|
$type: "dimension",
|
|
5194
|
-
$value: 0,
|
|
5194
|
+
$value: "0",
|
|
5195
5195
|
filePath: "tokens/System.Mode 1.tokens.json",
|
|
5196
5196
|
isSource: true,
|
|
5197
5197
|
original: {
|
|
@@ -5337,7 +5337,7 @@ export default {
|
|
|
5337
5337
|
none: {
|
|
5338
5338
|
key: "{radius.none}",
|
|
5339
5339
|
$type: "dimension",
|
|
5340
|
-
$value: 0,
|
|
5340
|
+
$value: "0",
|
|
5341
5341
|
filePath: "tokens/System.Mode 1.tokens.json",
|
|
5342
5342
|
isSource: true,
|
|
5343
5343
|
original: {
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@bi-digital/tokens",
|
|
3
3
|
"type": "module",
|
|
4
|
-
"version": "0.12.
|
|
4
|
+
"version": "0.12.1",
|
|
5
5
|
"description": "CSS and SASS variables for the BI Design System",
|
|
6
6
|
"author": "BI Digital",
|
|
7
7
|
"homepage": "https://designsystem.bi.no/?path=/docs/styles-colors--docs",
|
|
@@ -29,7 +29,7 @@
|
|
|
29
29
|
"/dist"
|
|
30
30
|
],
|
|
31
31
|
"devDependencies": {
|
|
32
|
-
"style-dictionary": "^5.
|
|
32
|
+
"style-dictionary": "^5.5.0",
|
|
33
33
|
"vitest": "^4.1.4"
|
|
34
34
|
},
|
|
35
35
|
"scripts": {
|
package/readme.md
CHANGED
|
@@ -21,16 +21,6 @@ In `.css`-files:
|
|
|
21
21
|
}
|
|
22
22
|
```
|
|
23
23
|
|
|
24
|
-
In `.scss`-files:
|
|
25
|
-
|
|
26
|
-
```scss
|
|
27
|
-
@use '@bi-digital/tokens/dist/tokens' as tokens;
|
|
28
|
-
|
|
29
|
-
.example {
|
|
30
|
-
color: tokens.$bi-primary-80;
|
|
31
|
-
}
|
|
32
|
-
```
|
|
33
|
-
|
|
34
24
|
CDN:
|
|
35
25
|
|
|
36
26
|
```html
|
|
@@ -41,17 +31,7 @@ We recommend replacing `latest` with a specific version to avoid errors when the
|
|
|
41
31
|
|
|
42
32
|
### Variables in media queries
|
|
43
33
|
|
|
44
|
-
CSS custom properties
|
|
45
|
-
|
|
46
|
-
```scss
|
|
47
|
-
@use '@bi-digital/tokens/dist/tokens' as tokens;
|
|
48
|
-
|
|
49
|
-
@media (min-width: tokens.$bi-breakpoints-sm) {
|
|
50
|
-
.example {
|
|
51
|
-
color: tokens.$bi-primary-80;
|
|
52
|
-
}
|
|
53
|
-
}
|
|
54
|
-
```
|
|
34
|
+
CSS custom properties can't be used inside media query conditions, so this library does not expose any breakpoint tokens.
|
|
55
35
|
|
|
56
36
|
### VSCode-extensions
|
|
57
37
|
|
package/dist/tokens.scss
DELETED
|
@@ -1,357 +0,0 @@
|
|
|
1
|
-
|
|
2
|
-
// Do not edit directly, this file was auto-generated.
|
|
3
|
-
|
|
4
|
-
$bi-basic-key: #000000;
|
|
5
|
-
$bi-basic-white: #ffffff;
|
|
6
|
-
$bi-neutral-0: #fafbfc;
|
|
7
|
-
$bi-neutral-5: #f5f7fa;
|
|
8
|
-
$bi-neutral-10: #e4e8ed;
|
|
9
|
-
$bi-neutral-15: #d5dde4;
|
|
10
|
-
$bi-neutral-20: #c8d1db;
|
|
11
|
-
$bi-neutral-25: #bac6d2;
|
|
12
|
-
$bi-neutral-30: #acbbca;
|
|
13
|
-
$bi-neutral-40: #90a3b7;
|
|
14
|
-
$bi-neutral-50: #597694;
|
|
15
|
-
$bi-neutral-60: #475e75;
|
|
16
|
-
$bi-neutral-70: #3e5266;
|
|
17
|
-
$bi-neutral-75: #344557;
|
|
18
|
-
$bi-neutral-80: #303f4f;
|
|
19
|
-
$bi-neutral-85: #2b3947;
|
|
20
|
-
$bi-neutral-90: #26333f;
|
|
21
|
-
$bi-neutral-95: #222d38;
|
|
22
|
-
$bi-neutral-100: #171f26;
|
|
23
|
-
$bi-primary-0: #ebf3ff;
|
|
24
|
-
$bi-primary-5: #d9e6f9;
|
|
25
|
-
$bi-primary-10: #c5d9f7;
|
|
26
|
-
$bi-primary-15: #b2cdf4;
|
|
27
|
-
$bi-primary-20: #9ec0f1;
|
|
28
|
-
$bi-primary-25: #8bb3ee;
|
|
29
|
-
$bi-primary-30: #75a5f1;
|
|
30
|
-
$bi-primary-40: #6196f4;
|
|
31
|
-
$bi-primary-50: #0a64ff;
|
|
32
|
-
$bi-primary-60: #0b4db4;
|
|
33
|
-
$bi-primary-70: #0b49a1;
|
|
34
|
-
$bi-primary-75: #0c468f;
|
|
35
|
-
$bi-primary-80: #093f82;
|
|
36
|
-
$bi-primary-85: #083a76;
|
|
37
|
-
$bi-primary-90: #042f5b;
|
|
38
|
-
$bi-primary-95: #002341;
|
|
39
|
-
$bi-primary-100: #001932;
|
|
40
|
-
$bi-secondary-0: #fffbeb;
|
|
41
|
-
$bi-secondary-5: #fff7d5;
|
|
42
|
-
$bi-secondary-10: #fff2bf;
|
|
43
|
-
$bi-secondary-15: #ffea95;
|
|
44
|
-
$bi-secondary-20: #ffe680;
|
|
45
|
-
$bi-secondary-25: #ffe26a;
|
|
46
|
-
$bi-secondary-30: #ffde55;
|
|
47
|
-
$bi-secondary-40: #ffd52b;
|
|
48
|
-
$bi-secondary-50: #ffcd00;
|
|
49
|
-
$bi-secondary-60: #deb300;
|
|
50
|
-
$bi-secondary-70: #bd9800;
|
|
51
|
-
$bi-secondary-75: #9d7e00;
|
|
52
|
-
$bi-secondary-80: #7c6400;
|
|
53
|
-
$bi-secondary-85: #5b4900;
|
|
54
|
-
$bi-secondary-90: #4a3c01;
|
|
55
|
-
$bi-secondary-95: #3a2f00;
|
|
56
|
-
$bi-secondary-100: #262000;
|
|
57
|
-
$bi-info-0: #f3ebff;
|
|
58
|
-
$bi-info-5: #e6d5ff;
|
|
59
|
-
$bi-info-10: #d9bfff;
|
|
60
|
-
$bi-info-15: #cdaaff;
|
|
61
|
-
$bi-info-20: #c094ff;
|
|
62
|
-
$bi-info-25: #b480ff;
|
|
63
|
-
$bi-info-30: #a76aff;
|
|
64
|
-
$bi-info-40: #822bff;
|
|
65
|
-
$bi-info-50: #6900ff;
|
|
66
|
-
$bi-info-60: #5c03dc;
|
|
67
|
-
$bi-info-70: #4f05b9;
|
|
68
|
-
$bi-info-75: #420896;
|
|
69
|
-
$bi-info-80: #3b0984;
|
|
70
|
-
$bi-info-85: #350a73;
|
|
71
|
-
$bi-info-90: #2e0b61;
|
|
72
|
-
$bi-info-95: #280d50;
|
|
73
|
-
$bi-info-100: #1a0833;
|
|
74
|
-
$bi-warning-0: #fffbeb;
|
|
75
|
-
$bi-warning-5: #fff7d5;
|
|
76
|
-
$bi-warning-10: #fff2bf;
|
|
77
|
-
$bi-warning-15: #ffea95;
|
|
78
|
-
$bi-warning-20: #ffe680;
|
|
79
|
-
$bi-warning-25: #ffe26a;
|
|
80
|
-
$bi-warning-30: #ffde55;
|
|
81
|
-
$bi-warning-40: #ffd52b;
|
|
82
|
-
$bi-warning-50: #ffcd00;
|
|
83
|
-
$bi-warning-60: #deb300;
|
|
84
|
-
$bi-warning-70: #bd9800;
|
|
85
|
-
$bi-warning-75: #9d7e00;
|
|
86
|
-
$bi-warning-80: #7c6400;
|
|
87
|
-
$bi-warning-85: #5b4900;
|
|
88
|
-
$bi-warning-90: #4a3c01;
|
|
89
|
-
$bi-warning-95: #3a2f00;
|
|
90
|
-
$bi-warning-100: #262000;
|
|
91
|
-
$bi-success-0: #ebffeb;
|
|
92
|
-
$bi-success-5: #d5f4d6;
|
|
93
|
-
$bi-success-10: #bfeec2;
|
|
94
|
-
$bi-success-15: #aae8ae;
|
|
95
|
-
$bi-success-20: #95e299;
|
|
96
|
-
$bi-success-25: #80dd85;
|
|
97
|
-
$bi-success-30: #55d15c;
|
|
98
|
-
$bi-success-40: #2bc634;
|
|
99
|
-
$bi-success-50: #00ab0b;
|
|
100
|
-
$bi-success-60: #04a30d;
|
|
101
|
-
$bi-success-70: #078b0f;
|
|
102
|
-
$bi-success-75: #0b7411;
|
|
103
|
-
$bi-success-80: #0f5d13;
|
|
104
|
-
$bi-success-85: #124515;
|
|
105
|
-
$bi-success-90: #143a16;
|
|
106
|
-
$bi-success-95: #162e17;
|
|
107
|
-
$bi-success-100: #0f1f0f;
|
|
108
|
-
$bi-alert-0: #fff1f0;
|
|
109
|
-
$bi-alert-5: #ffe1df;
|
|
110
|
-
$bi-alert-10: #ffd7d5;
|
|
111
|
-
$bi-alert-15: #ffc3bf;
|
|
112
|
-
$bi-alert-20: #ffafaa;
|
|
113
|
-
$bi-alert-25: #ff8780;
|
|
114
|
-
$bi-alert-30: #ff5f55;
|
|
115
|
-
$bi-alert-40: #ff372b;
|
|
116
|
-
$bi-alert-50: #ff0f00;
|
|
117
|
-
$bi-alert-60: #e41100;
|
|
118
|
-
$bi-alert-70: #c91300;
|
|
119
|
-
$bi-alert-75: #ae1601;
|
|
120
|
-
$bi-alert-80: #931801;
|
|
121
|
-
$bi-alert-85: #731a15;
|
|
122
|
-
$bi-alert-90: #6a1b16;
|
|
123
|
-
$bi-alert-95: #5d1c18;
|
|
124
|
-
$bi-alert-100: #280c0a;
|
|
125
|
-
$bi-scale-0: 0;
|
|
126
|
-
$bi-scale-0-25x: 0.0625rem;
|
|
127
|
-
$bi-scale-0-50x: 0.125rem;
|
|
128
|
-
$bi-scale-0-75x: 0.1875rem;
|
|
129
|
-
$bi-scale-1x: 0.25rem;
|
|
130
|
-
$bi-scale-1-5x: 0.375rem;
|
|
131
|
-
$bi-scale-2x: 0.5rem;
|
|
132
|
-
$bi-scale-3x: 0.75rem;
|
|
133
|
-
$bi-scale-4x: 1rem;
|
|
134
|
-
$bi-scale-5x: 1.25rem;
|
|
135
|
-
$bi-scale-6x: 1.5rem;
|
|
136
|
-
$bi-scale-8x: 2rem;
|
|
137
|
-
$bi-scale-9x: 2.25rem;
|
|
138
|
-
$bi-scale-10x: 2.5rem;
|
|
139
|
-
$bi-scale-11x: 2.75rem;
|
|
140
|
-
$bi-scale-12x: 3rem;
|
|
141
|
-
$bi-scale-14x: 3.5rem;
|
|
142
|
-
$bi-scale-16x: 4rem;
|
|
143
|
-
$bi-scale-18x: 4.5rem;
|
|
144
|
-
$bi-scale-20x: 5rem;
|
|
145
|
-
$bi-scale-21x: 5.25rem;
|
|
146
|
-
$bi-scale-24x: 6rem;
|
|
147
|
-
$bi-scale-32x: 8rem;
|
|
148
|
-
$bi-scale-36x: 9rem;
|
|
149
|
-
$bi-scale-38x: 9.5rem;
|
|
150
|
-
$bi-scale-40x: 10rem;
|
|
151
|
-
$bi-scale-48x: 12rem;
|
|
152
|
-
$bi-scale-56x: 14rem;
|
|
153
|
-
$bi-scale-64x: 16rem;
|
|
154
|
-
$bi-scale-80x: 20rem;
|
|
155
|
-
$bi-scale-84x: 21rem;
|
|
156
|
-
$bi-scale-128x: 32rem;
|
|
157
|
-
$bi-scale-max: 624.9375rem;
|
|
158
|
-
$bi-color-neutral-background: #f5f7fa;
|
|
159
|
-
$bi-color-neutral-surface-subtle: #ffffff;
|
|
160
|
-
$bi-color-neutral-surface: #f5f7fa;
|
|
161
|
-
$bi-color-neutral-surface-strong: #e4e8ed;
|
|
162
|
-
$bi-color-neutral-surface-active: #c8d1db;
|
|
163
|
-
$bi-color-neutral-stroke-subtle: #e4e8ed;
|
|
164
|
-
$bi-color-neutral-stroke: #d5dde4;
|
|
165
|
-
$bi-color-neutral-stroke-strong: #bac6d2;
|
|
166
|
-
$bi-color-neutral-stroke-contrast: #597694;
|
|
167
|
-
$bi-color-neutral-stroke-accent: #0a64ff;
|
|
168
|
-
$bi-color-neutral-text: #222d38;
|
|
169
|
-
$bi-color-neutral-text-secondary: #475e75;
|
|
170
|
-
$bi-color-neutral-text-subtle: #26333f;
|
|
171
|
-
$bi-color-neutral-text-accent: #0b4db4;
|
|
172
|
-
$bi-color-neutral-contrast: #26333f;
|
|
173
|
-
$bi-color-neutral-contrast-hover: #222d38;
|
|
174
|
-
$bi-color-neutral-fill: #597694;
|
|
175
|
-
$bi-color-neutral-on-fill: #ffffff;
|
|
176
|
-
$bi-color-primary-background: #ebf3ff;
|
|
177
|
-
$bi-color-primary-surface-subtle: #ffffff;
|
|
178
|
-
$bi-color-primary-surface: #d9e6f9;
|
|
179
|
-
$bi-color-primary-surface-strong: #c5d9f7;
|
|
180
|
-
$bi-color-primary-surface-active: #9ec0f1;
|
|
181
|
-
$bi-color-primary-stroke-subtle: #c5d9f7;
|
|
182
|
-
$bi-color-primary-stroke: #b2cdf4;
|
|
183
|
-
$bi-color-primary-stroke-strong: #8bb3ee;
|
|
184
|
-
$bi-color-primary-stroke-contrast: #0b4db4;
|
|
185
|
-
$bi-color-primary-stroke-accent: #0a64ff;
|
|
186
|
-
$bi-color-primary-text: #002341;
|
|
187
|
-
$bi-color-primary-text-secondary: rgba(4, 47, 91, 0.7);
|
|
188
|
-
$bi-color-primary-text-subtle: #042f5b;
|
|
189
|
-
$bi-color-primary-text-accent: #0c468f;
|
|
190
|
-
$bi-color-primary-contrast: #0a64ff;
|
|
191
|
-
$bi-color-primary-contrast-hover: #0b4db4;
|
|
192
|
-
$bi-color-primary-fill: #0a64ff;
|
|
193
|
-
$bi-color-primary-on-fill: #ffffff;
|
|
194
|
-
$bi-color-info-background: #f3ebff;
|
|
195
|
-
$bi-color-info-surface-subtle: #ffffff;
|
|
196
|
-
$bi-color-info-surface: #e6d5ff;
|
|
197
|
-
$bi-color-info-surface-strong: #d9bfff;
|
|
198
|
-
$bi-color-info-surface-active: #c094ff;
|
|
199
|
-
$bi-color-info-stroke-subtle: #d9bfff;
|
|
200
|
-
$bi-color-info-stroke: #cdaaff;
|
|
201
|
-
$bi-color-info-stroke-strong: #b480ff;
|
|
202
|
-
$bi-color-info-stroke-contrast: #5c03dc;
|
|
203
|
-
$bi-color-info-stroke-accent: #6900ff;
|
|
204
|
-
$bi-color-info-text: #280d50;
|
|
205
|
-
$bi-color-info-text-secondary: rgba(46, 11, 97, 0.7);
|
|
206
|
-
$bi-color-info-text-subtle: #2e0b61;
|
|
207
|
-
$bi-color-info-text-accent: #420896;
|
|
208
|
-
$bi-color-info-contrast: #2e0b61;
|
|
209
|
-
$bi-color-info-contrast-hover: #280d50;
|
|
210
|
-
$bi-color-info-fill: #6900ff;
|
|
211
|
-
$bi-color-info-on-fill: #ffffff;
|
|
212
|
-
$bi-color-warning-background: #fffbeb;
|
|
213
|
-
$bi-color-warning-surface-subtle: #ffffff;
|
|
214
|
-
$bi-color-warning-surface: #fff2bf;
|
|
215
|
-
$bi-color-warning-surface-strong: #ffea95;
|
|
216
|
-
$bi-color-warning-surface-active: #ffe680;
|
|
217
|
-
$bi-color-warning-stroke-subtle: #fff2bf;
|
|
218
|
-
$bi-color-warning-stroke: #ffea95;
|
|
219
|
-
$bi-color-warning-stroke-strong: #deb300;
|
|
220
|
-
$bi-color-warning-stroke-contrast: #9d7e00;
|
|
221
|
-
$bi-color-warning-stroke-accent: #ffcd00;
|
|
222
|
-
$bi-color-warning-text: #3a2f00;
|
|
223
|
-
$bi-color-warning-text-secondary: rgba(74, 60, 1, 0.7);
|
|
224
|
-
$bi-color-warning-text-subtle: #4a3c01;
|
|
225
|
-
$bi-color-warning-text-accent: #7c6400;
|
|
226
|
-
$bi-color-warning-contrast: #4a3c01;
|
|
227
|
-
$bi-color-warning-contrast-hover: #3a2f00;
|
|
228
|
-
$bi-color-warning-fill: #9d7e00;
|
|
229
|
-
$bi-color-warning-on-fill: #ffffff;
|
|
230
|
-
$bi-color-success-background: #ebffeb;
|
|
231
|
-
$bi-color-success-surface-subtle: #ffffff;
|
|
232
|
-
$bi-color-success-surface: #d5f4d6;
|
|
233
|
-
$bi-color-success-surface-strong: #bfeec2;
|
|
234
|
-
$bi-color-success-surface-active: #95e299;
|
|
235
|
-
$bi-color-success-stroke-subtle: #bfeec2;
|
|
236
|
-
$bi-color-success-stroke: #aae8ae;
|
|
237
|
-
$bi-color-success-stroke-strong: #80dd85;
|
|
238
|
-
$bi-color-success-stroke-contrast: #04a30d;
|
|
239
|
-
$bi-color-success-stroke-accent: #00ab0b;
|
|
240
|
-
$bi-color-success-text: #162e17;
|
|
241
|
-
$bi-color-success-text-secondary: rgba(20, 58, 22, 0.7);
|
|
242
|
-
$bi-color-success-text-subtle: #143a16;
|
|
243
|
-
$bi-color-success-text-accent: #0b7411;
|
|
244
|
-
$bi-color-success-contrast: #143a16;
|
|
245
|
-
$bi-color-success-contrast-hover: #162e17;
|
|
246
|
-
$bi-color-success-fill: #078b0f;
|
|
247
|
-
$bi-color-success-on-fill: #ffffff;
|
|
248
|
-
$bi-color-alert-background: #fff1f0;
|
|
249
|
-
$bi-color-alert-surface-subtle: #ffffff;
|
|
250
|
-
$bi-color-alert-surface: #ffd7d5;
|
|
251
|
-
$bi-color-alert-surface-strong: #ffc3bf;
|
|
252
|
-
$bi-color-alert-surface-active: #ffafaa;
|
|
253
|
-
$bi-color-alert-stroke-subtle: #ffd7d5;
|
|
254
|
-
$bi-color-alert-stroke: #ffc3bf;
|
|
255
|
-
$bi-color-alert-stroke-strong: #ff8780;
|
|
256
|
-
$bi-color-alert-stroke-contrast: #e41100;
|
|
257
|
-
$bi-color-alert-stroke-accent: #ff0f00;
|
|
258
|
-
$bi-color-alert-text: #5d1c18;
|
|
259
|
-
$bi-color-alert-text-secondary: rgba(106, 27, 22, 0.7);
|
|
260
|
-
$bi-color-alert-text-subtle: #6a1b16;
|
|
261
|
-
$bi-color-alert-text-accent: #ae1601;
|
|
262
|
-
$bi-color-alert-contrast: #6a1b16;
|
|
263
|
-
$bi-color-alert-contrast-hover: #5d1c18;
|
|
264
|
-
$bi-color-alert-fill: #e41100;
|
|
265
|
-
$bi-color-alert-on-fill: #ffffff;
|
|
266
|
-
$bi-color-stroke-basic-subtle: rgba(0, 0, 0, 0.1);
|
|
267
|
-
$bi-color-stroke-basic: rgba(0, 0, 0, 0.2);
|
|
268
|
-
$bi-color-stroke-basic-strong: rgba(0, 0, 0, 0.3);
|
|
269
|
-
$bi-color-stroke-basic-contrast: rgba(0, 0, 0, 0.5);
|
|
270
|
-
$bi-states-hover: rgba(38, 51, 63, 0.1);
|
|
271
|
-
$bi-states-press: rgba(38, 51, 63, 0.15);
|
|
272
|
-
$bi-states-focus: #0a64ff;
|
|
273
|
-
$bi-states-focus-background: #ffffff;
|
|
274
|
-
$bi-states-required: #0a64ff;
|
|
275
|
-
$bi-states-hover-dark: rgba(38, 51, 63, 0.1);
|
|
276
|
-
$bi-states-hover-light: rgba(255, 255, 255, 0.1);
|
|
277
|
-
$bi-states-press-dark: rgba(38, 51, 63, 0.15);
|
|
278
|
-
$bi-states-press-light: rgba(255, 255, 255, 0.15);
|
|
279
|
-
$bi-opacity-dark-80: rgba(38, 51, 63, 0.2);
|
|
280
|
-
$bi-opacity-dark-50: rgba(38, 51, 63, 0.5);
|
|
281
|
-
$bi-opacity-light-100: rgba(255, 255, 255, 0);
|
|
282
|
-
$bi-opacity-light-80: rgba(255, 255, 255, 0.2);
|
|
283
|
-
$bi-opacity-light-50: rgba(255, 255, 255, 0.5);
|
|
284
|
-
$bi-stroke-none: 0;
|
|
285
|
-
$bi-stroke-thin: 0.0625rem;
|
|
286
|
-
$bi-stroke-medium: 0.09375rem;
|
|
287
|
-
$bi-stroke-thick: 0.1875rem;
|
|
288
|
-
$bi-stroke-focus: 0.1875rem;
|
|
289
|
-
$bi-stroke-subtle: #e4e8ed;
|
|
290
|
-
$bi-stroke-default: #d5dde4;
|
|
291
|
-
$bi-stroke-strong: #bac6d2;
|
|
292
|
-
$bi-radius-none: 0;
|
|
293
|
-
$bi-radius-small: 0.125rem;
|
|
294
|
-
$bi-radius-medium: 0.25rem;
|
|
295
|
-
$bi-radius-large: 0.5rem;
|
|
296
|
-
$bi-radius-xl: 0.75rem;
|
|
297
|
-
$bi-radius-brand: 3rem;
|
|
298
|
-
$bi-radius-full: 624.9375rem;
|
|
299
|
-
$bi-icon-small: 1.25rem;
|
|
300
|
-
$bi-icon-medium: 1.5rem;
|
|
301
|
-
$bi-icon-large: 2rem;
|
|
302
|
-
$bi-icon-xl: 2.5rem;
|
|
303
|
-
$bi-icon-2xl: 2.75rem;
|
|
304
|
-
$bi-icon-primary: #222d38;
|
|
305
|
-
$bi-icon-secondary: #475e75;
|
|
306
|
-
$bi-icon-disabled: #597694;
|
|
307
|
-
$bi-icon-link: #0a64ff;
|
|
308
|
-
$bi-elevation-25: rgba(38, 51, 63, 0.15);
|
|
309
|
-
$bi-font-family-brand: 'museo-slab', serif;
|
|
310
|
-
$bi-font-family-plain: 'museo-sans', Arial, sans-serif;
|
|
311
|
-
$bi-font-weight-bold: 700;
|
|
312
|
-
$bi-font-weight-regular: 500;
|
|
313
|
-
$bi-font-color-primary: #222d38;
|
|
314
|
-
$bi-font-color-secondary: #475e75;
|
|
315
|
-
$bi-font-color-disabled: #597694;
|
|
316
|
-
$bi-font-color-accent: #0b4db4;
|
|
317
|
-
$bi-font-color-strong-accent: #0a64ff;
|
|
318
|
-
$bi-font-color-primary-dark-background: #ffffff;
|
|
319
|
-
$bi-font-color-secondary-dark-background: rgba(255, 255, 255, 0.7);
|
|
320
|
-
$bi-font-color-disabled-dark-background: rgba(255, 255, 255, 0.7);
|
|
321
|
-
$bi-font-color-accent-dark-background: #9ec0f1;
|
|
322
|
-
$bi-font-color-strong-accent-dark-background: #75a5f1;
|
|
323
|
-
$bi-font-color-primary-light-blue-background: #042f5b;
|
|
324
|
-
$bi-font-color-secondary-light-blue-background: rgba(4, 47, 91, 0.7);
|
|
325
|
-
$bi-font-color-disabled-light-blue-background: rgba(4, 47, 91, 0.7);
|
|
326
|
-
$bi-font-color-accent-light-blue-background: #0c468f;
|
|
327
|
-
$bi-font-color-strong-accent-light-blue-background: #0a64ff;
|
|
328
|
-
$bi-layout-navbar-height: 4rem;
|
|
329
|
-
$bi-font-display-large: 500 4rem/4.5rem 'museo-slab', serif;
|
|
330
|
-
$bi-font-display-medium: 500 3rem/3.5rem 'museo-slab', serif;
|
|
331
|
-
$bi-font-headline-large: 500 2.5rem/2.875rem 'museo-slab', serif;
|
|
332
|
-
$bi-font-headline-medium: 500 2.25rem/2.5rem 'museo-slab', serif;
|
|
333
|
-
$bi-font-headline-small: 500 1.75rem/2rem 'museo-slab', serif;
|
|
334
|
-
$bi-font-title-bold-xxl: 700 2rem/2.25rem 'museo-sans', Arial, sans-serif;
|
|
335
|
-
$bi-font-title-bold-xl: 700 1.75rem/2rem 'museo-sans', Arial, sans-serif;
|
|
336
|
-
$bi-font-title-bold-large: 700 1.5rem/1.6875rem 'museo-sans', Arial, sans-serif;
|
|
337
|
-
$bi-font-title-bold-medium: 700 1.25rem/1.4375rem 'museo-sans', Arial, sans-serif;
|
|
338
|
-
$bi-font-title-bold-small: 700 1.125rem/1.25rem 'museo-sans', Arial, sans-serif;
|
|
339
|
-
$bi-font-title-bold-xs: 700 1rem/1.125rem 'museo-sans', Arial, sans-serif;
|
|
340
|
-
$bi-font-title-bold-xxs: 700 0.875rem/1rem 'museo-sans', Arial, sans-serif;
|
|
341
|
-
$bi-font-title-regular-xxl: 500 2rem/2.25rem 'museo-sans', Arial, sans-serif;
|
|
342
|
-
$bi-font-title-regular-xl: 500 1.75rem/2rem 'museo-sans', Arial, sans-serif;
|
|
343
|
-
$bi-font-title-regular-large: 500 1.5rem/1.6875rem 'museo-sans', Arial, sans-serif;
|
|
344
|
-
$bi-font-title-regular-medium: 500 1.25rem/1.4375rem 'museo-sans', Arial, sans-serif;
|
|
345
|
-
$bi-font-title-regular-small: 500 1.125rem/1.25rem 'museo-sans', Arial, sans-serif;
|
|
346
|
-
$bi-font-title-regular-xs: 500 1rem/1.125rem 'museo-sans', Arial, sans-serif;
|
|
347
|
-
$bi-font-title-regular-xxs: 500 0.875rem/1rem 'museo-sans', Arial, sans-serif;
|
|
348
|
-
$bi-font-label-xl: 700 1.125rem/1.6875rem 'museo-sans', Arial, sans-serif;
|
|
349
|
-
$bi-font-label-large: 700 1rem/1.5rem 'museo-sans', Arial, sans-serif;
|
|
350
|
-
$bi-font-label-medium: 700 0.875rem/1.25rem 'museo-sans', Arial, sans-serif;
|
|
351
|
-
$bi-font-label-small: 700 0.8125rem/1.25rem 'museo-sans', Arial, sans-serif;
|
|
352
|
-
$bi-font-label-xs: 700 0.75rem/1.125rem 'museo-sans', Arial, sans-serif;
|
|
353
|
-
$bi-font-body-xl: 500 1.125rem/1.6875rem 'museo-sans', Arial, sans-serif;
|
|
354
|
-
$bi-font-body-large: 500 1rem/1.5rem 'museo-sans', Arial, sans-serif;
|
|
355
|
-
$bi-font-body-medium: 500 0.875rem/1.3125rem 'museo-sans', Arial, sans-serif;
|
|
356
|
-
$bi-font-body-small: 500 0.8125rem/1.25rem 'museo-sans', Arial, sans-serif;
|
|
357
|
-
$bi-font-body-xs: 500 0.75rem/1.125rem 'museo-sans', Arial, sans-serif;
|