cats-data-grid 2.0.82 → 2.0.83
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/README.md +465 -33
- package/assets/images/add-more-right-blue.svg +3 -3
- package/assets/images/autosize-all.svg +3 -3
- package/assets/images/autosize-this.svg +3 -3
- package/assets/images/check-white.svg +3 -3
- package/assets/images/eye-custom-header.svg +4 -4
- package/assets/images/eye-off-custom-header.svg +3 -3
- package/assets/images/gripper.svg +8 -8
- package/assets/images/minus-blue.svg +3 -3
- package/assets/images/pin.svg +4 -4
- package/assets/images/sort_down.svg +6 -6
- package/assets/images/sort_up.svg +6 -6
- package/assets/images/t-arrow-down.svg +4 -4
- package/assets/images/t-arrow-up.svg +4 -4
- package/assets/images/t-choose-column.svg +3 -3
- package/assets/images/t-data-pipeline.svg +13 -13
- package/assets/images/t-filter-applied.svg +4 -4
- package/assets/images/t-filter.svg +3 -3
- package/assets/images/t-gripper.svg +8 -8
- package/assets/images/t-group-by-name.svg +3 -3
- package/assets/images/t-more-vertical.svg +5 -5
- package/assets/images/t-move.svg +15 -15
- package/assets/images/t-x.svg +4 -4
- package/fesm2022/cats-data-grid.mjs +15 -12
- package/fesm2022/cats-data-grid.mjs.map +1 -1
- package/package.json +1 -1
- package/styles/_index.scss +3 -3
- package/styles/base/_fonts.scss +74 -74
- package/styles/base/_index.scss +1 -1
- package/styles/base/_reset.scss +60 -60
- package/styles/component/_form.scss +426 -426
- package/styles/component/_index.scss +1 -1
- package/styles/sass-utils/_function.scss +14 -14
- package/styles/sass-utils/_index.scss +3 -3
- package/styles/sass-utils/_mixin.scss +100 -100
- package/styles/sass-utils/_variable.scss +128 -128
|
@@ -1 +1 @@
|
|
|
1
|
-
@forward "./form";
|
|
1
|
+
@forward "./form";
|
|
@@ -1,14 +1,14 @@
|
|
|
1
|
-
@use "sass:math";
|
|
2
|
-
@use "sass:list";
|
|
3
|
-
|
|
4
|
-
$font-size: 12px;
|
|
5
|
-
html {
|
|
6
|
-
font-size: $font-size;
|
|
7
|
-
}
|
|
8
|
-
@function rem($pxValue) {
|
|
9
|
-
// @return math.div($pxValue, $font-size) * 1rem;
|
|
10
|
-
// @return calc(math.div($pxValue, $font-size) * 1rem / var(--scale));
|
|
11
|
-
$val: calc($pxValue/$font-size);
|
|
12
|
-
@return calc($val * 1rem / var(--scale));
|
|
13
|
-
// @return list.slash(calc(math.div($pxValue, $font-size) * 1rem), var(--scale));
|
|
14
|
-
}
|
|
1
|
+
@use "sass:math";
|
|
2
|
+
@use "sass:list";
|
|
3
|
+
|
|
4
|
+
$font-size: 12px;
|
|
5
|
+
html {
|
|
6
|
+
font-size: $font-size;
|
|
7
|
+
}
|
|
8
|
+
@function rem($pxValue) {
|
|
9
|
+
// @return math.div($pxValue, $font-size) * 1rem;
|
|
10
|
+
// @return calc(math.div($pxValue, $font-size) * 1rem / var(--scale));
|
|
11
|
+
$val: calc($pxValue/$font-size);
|
|
12
|
+
@return calc($val * 1rem / var(--scale));
|
|
13
|
+
// @return list.slash(calc(math.div($pxValue, $font-size) * 1rem), var(--scale));
|
|
14
|
+
}
|
|
@@ -1,3 +1,3 @@
|
|
|
1
|
-
@forward "./variable";
|
|
2
|
-
@forward "./function";
|
|
3
|
-
@forward "./mixin";
|
|
1
|
+
@forward "./variable";
|
|
2
|
+
@forward "./function";
|
|
3
|
+
@forward "./mixin";
|
|
@@ -1,100 +1,100 @@
|
|
|
1
|
-
@use "variable" as *;
|
|
2
|
-
@use "function" as *;
|
|
3
|
-
|
|
4
|
-
$tablet: 1024px;
|
|
5
|
-
$mediumDesktop: 1280px;
|
|
6
|
-
$largeDesktop: 1360px;
|
|
7
|
-
$extraLargeDesktop: 1440px;
|
|
8
|
-
$xxlargeDesktop: 1536px;
|
|
9
|
-
$ultraWideDesktop: 1919px;
|
|
10
|
-
|
|
11
|
-
// --------------- MEDIA QUERY ------------------------
|
|
12
|
-
@mixin width-range($min, $max) {
|
|
13
|
-
@media only screen and (min-width: $min) and (max-width: $max) {
|
|
14
|
-
@content;
|
|
15
|
-
}
|
|
16
|
-
}
|
|
17
|
-
// Example: how to use this mixin
|
|
18
|
-
// You can use any range
|
|
19
|
-
// @include width-range($mobile, $tablet - 1px) {
|
|
20
|
-
// // Styles for screens between mobile and tablet width
|
|
21
|
-
// }
|
|
22
|
-
|
|
23
|
-
// -------------- BOX HEIGHT AND WIDTH -------
|
|
24
|
-
@mixin box($width, $height: 100%) {
|
|
25
|
-
width: $width;
|
|
26
|
-
height: $height;
|
|
27
|
-
}
|
|
28
|
-
|
|
29
|
-
// ------------- FONT STYLE
|
|
30
|
-
@mixin fontStyle($fontSize, $lineHeight, $fontWeight: 400) {
|
|
31
|
-
font-size: $fontSize;
|
|
32
|
-
line-height: $lineHeight;
|
|
33
|
-
font-weight: $fontWeight;
|
|
34
|
-
}
|
|
35
|
-
|
|
36
|
-
// ------------- FLEX PROPERTY ------------------------
|
|
37
|
-
@mixin flex(
|
|
38
|
-
$justify: flex-start,
|
|
39
|
-
$align: stretch,
|
|
40
|
-
$gap: 0,
|
|
41
|
-
$direction: row,
|
|
42
|
-
$wrap: nowrap
|
|
43
|
-
) {
|
|
44
|
-
display: flex;
|
|
45
|
-
flex-direction: $direction;
|
|
46
|
-
justify-content: $justify;
|
|
47
|
-
align-items: $align;
|
|
48
|
-
flex-wrap: $wrap;
|
|
49
|
-
gap: $gap;
|
|
50
|
-
}
|
|
51
|
-
|
|
52
|
-
// USE CASE: IF YOU WANT ONLY 2 PROP. THEN OTHER PROP WILL APPLY AS DEFAULT PROP.
|
|
53
|
-
// @include flex(center, stretch,row, wrap, 10px);
|
|
54
|
-
|
|
55
|
-
// Positioning element
|
|
56
|
-
@mixin positioning($top, $left) {
|
|
57
|
-
top: $top;
|
|
58
|
-
left: $left;
|
|
59
|
-
}
|
|
60
|
-
|
|
61
|
-
// ------------- Border PROPERTY with width,color and radius ---------------------
|
|
62
|
-
@mixin border(
|
|
63
|
-
$width: rem(1px),
|
|
64
|
-
$style: solid,
|
|
65
|
-
$color: var(--border-core-default),
|
|
66
|
-
$radius: rem(4px)
|
|
67
|
-
) {
|
|
68
|
-
border: $width $style $color;
|
|
69
|
-
border-radius: $radius;
|
|
70
|
-
}
|
|
71
|
-
|
|
72
|
-
// ------------- On table top header Swap image on hover ---------------------
|
|
73
|
-
@mixin hoverSwap($base, $hover) {
|
|
74
|
-
#{$hover} {
|
|
75
|
-
display: none;
|
|
76
|
-
}
|
|
77
|
-
|
|
78
|
-
&:hover {
|
|
79
|
-
#{$base} {
|
|
80
|
-
display: none;
|
|
81
|
-
}
|
|
82
|
-
|
|
83
|
-
#{$hover} {
|
|
84
|
-
display: flex;
|
|
85
|
-
}
|
|
86
|
-
}
|
|
87
|
-
}
|
|
88
|
-
$base-color: #f4f4f4;
|
|
89
|
-
$shine-color: rgba(229, 229, 229, 0.8);
|
|
90
|
-
$animation-duration: 2s;
|
|
91
|
-
$avatar-offset: 52 + 16;
|
|
92
|
-
@mixin background-gradient {
|
|
93
|
-
background-image: linear-gradient(
|
|
94
|
-
90deg,
|
|
95
|
-
$base-color 0px,
|
|
96
|
-
$shine-color 40px,
|
|
97
|
-
$base-color 80px
|
|
98
|
-
);
|
|
99
|
-
background-size: 600px;
|
|
100
|
-
}
|
|
1
|
+
@use "variable" as *;
|
|
2
|
+
@use "function" as *;
|
|
3
|
+
|
|
4
|
+
$tablet: 1024px;
|
|
5
|
+
$mediumDesktop: 1280px;
|
|
6
|
+
$largeDesktop: 1360px;
|
|
7
|
+
$extraLargeDesktop: 1440px;
|
|
8
|
+
$xxlargeDesktop: 1536px;
|
|
9
|
+
$ultraWideDesktop: 1919px;
|
|
10
|
+
|
|
11
|
+
// --------------- MEDIA QUERY ------------------------
|
|
12
|
+
@mixin width-range($min, $max) {
|
|
13
|
+
@media only screen and (min-width: $min) and (max-width: $max) {
|
|
14
|
+
@content;
|
|
15
|
+
}
|
|
16
|
+
}
|
|
17
|
+
// Example: how to use this mixin
|
|
18
|
+
// You can use any range
|
|
19
|
+
// @include width-range($mobile, $tablet - 1px) {
|
|
20
|
+
// // Styles for screens between mobile and tablet width
|
|
21
|
+
// }
|
|
22
|
+
|
|
23
|
+
// -------------- BOX HEIGHT AND WIDTH -------
|
|
24
|
+
@mixin box($width, $height: 100%) {
|
|
25
|
+
width: $width;
|
|
26
|
+
height: $height;
|
|
27
|
+
}
|
|
28
|
+
|
|
29
|
+
// ------------- FONT STYLE
|
|
30
|
+
@mixin fontStyle($fontSize, $lineHeight, $fontWeight: 400) {
|
|
31
|
+
font-size: $fontSize;
|
|
32
|
+
line-height: $lineHeight;
|
|
33
|
+
font-weight: $fontWeight;
|
|
34
|
+
}
|
|
35
|
+
|
|
36
|
+
// ------------- FLEX PROPERTY ------------------------
|
|
37
|
+
@mixin flex(
|
|
38
|
+
$justify: flex-start,
|
|
39
|
+
$align: stretch,
|
|
40
|
+
$gap: 0,
|
|
41
|
+
$direction: row,
|
|
42
|
+
$wrap: nowrap
|
|
43
|
+
) {
|
|
44
|
+
display: flex;
|
|
45
|
+
flex-direction: $direction;
|
|
46
|
+
justify-content: $justify;
|
|
47
|
+
align-items: $align;
|
|
48
|
+
flex-wrap: $wrap;
|
|
49
|
+
gap: $gap;
|
|
50
|
+
}
|
|
51
|
+
|
|
52
|
+
// USE CASE: IF YOU WANT ONLY 2 PROP. THEN OTHER PROP WILL APPLY AS DEFAULT PROP.
|
|
53
|
+
// @include flex(center, stretch,row, wrap, 10px);
|
|
54
|
+
|
|
55
|
+
// Positioning element
|
|
56
|
+
@mixin positioning($top, $left) {
|
|
57
|
+
top: $top;
|
|
58
|
+
left: $left;
|
|
59
|
+
}
|
|
60
|
+
|
|
61
|
+
// ------------- Border PROPERTY with width,color and radius ---------------------
|
|
62
|
+
@mixin border(
|
|
63
|
+
$width: rem(1px),
|
|
64
|
+
$style: solid,
|
|
65
|
+
$color: var(--border-core-default),
|
|
66
|
+
$radius: rem(4px)
|
|
67
|
+
) {
|
|
68
|
+
border: $width $style $color;
|
|
69
|
+
border-radius: $radius;
|
|
70
|
+
}
|
|
71
|
+
|
|
72
|
+
// ------------- On table top header Swap image on hover ---------------------
|
|
73
|
+
@mixin hoverSwap($base, $hover) {
|
|
74
|
+
#{$hover} {
|
|
75
|
+
display: none;
|
|
76
|
+
}
|
|
77
|
+
|
|
78
|
+
&:hover {
|
|
79
|
+
#{$base} {
|
|
80
|
+
display: none;
|
|
81
|
+
}
|
|
82
|
+
|
|
83
|
+
#{$hover} {
|
|
84
|
+
display: flex;
|
|
85
|
+
}
|
|
86
|
+
}
|
|
87
|
+
}
|
|
88
|
+
$base-color: #f4f4f4;
|
|
89
|
+
$shine-color: rgba(229, 229, 229, 0.8);
|
|
90
|
+
$animation-duration: 2s;
|
|
91
|
+
$avatar-offset: 52 + 16;
|
|
92
|
+
@mixin background-gradient {
|
|
93
|
+
background-image: linear-gradient(
|
|
94
|
+
90deg,
|
|
95
|
+
$base-color 0px,
|
|
96
|
+
$shine-color 40px,
|
|
97
|
+
$base-color 80px
|
|
98
|
+
);
|
|
99
|
+
background-size: 600px;
|
|
100
|
+
}
|
|
@@ -1,128 +1,128 @@
|
|
|
1
|
-
:root {
|
|
2
|
-
--green-100: #ecf4ec;
|
|
3
|
-
--green-200: #e1eee2;
|
|
4
|
-
--red-100: #faeaea;
|
|
5
|
-
--red-300: #f0c9c9;
|
|
6
|
-
--yellow-100: #fff9e7;
|
|
7
|
-
--box-shadow: #0a0d1214;
|
|
8
|
-
|
|
9
|
-
//New Variables
|
|
10
|
-
/* TEXT TOKENS */
|
|
11
|
-
--text-heading-primary: #040d17;
|
|
12
|
-
--text-heading-secondary: #434a51;
|
|
13
|
-
--text-heading-inverse: #ffffff;
|
|
14
|
-
|
|
15
|
-
--text-body-primary: #434a51;
|
|
16
|
-
--text-body-secondary: #81858a;
|
|
17
|
-
--text-body-muted: #c0c2c5;
|
|
18
|
-
--text-body-inversed: #ffffff;
|
|
19
|
-
|
|
20
|
-
--text-link-default: #2680ea;
|
|
21
|
-
--text-link-hover: #1c60af;
|
|
22
|
-
--text-link-muted: #c8dff9;
|
|
23
|
-
--text-link-inverse: #5ca0ef;
|
|
24
|
-
|
|
25
|
-
/* SURFACE TOKENS */
|
|
26
|
-
/* Background */
|
|
27
|
-
--surface-background-canvas: #ffffff;
|
|
28
|
-
--surface-background-default: #f0f0f0;
|
|
29
|
-
--surface-background-subtle: #e6e7e8;
|
|
30
|
-
--surface-background-blue: #f7fafe;
|
|
31
|
-
|
|
32
|
-
/* Contextual */
|
|
33
|
-
--surface-contextual-green: #f7fbf7;
|
|
34
|
-
--surface-contextual-red: #fdf7f7;
|
|
35
|
-
--surface-contextual-yellow: #fffdf5;
|
|
36
|
-
|
|
37
|
-
/* Decorative */
|
|
38
|
-
--surface-decorative-sage-green: #f3fcf9;
|
|
39
|
-
--surface-decorative-amber-brown: #f9f1f1;
|
|
40
|
-
--surface-decorative-teal: #eafafb;
|
|
41
|
-
--surface-decorative-pink: #f9ebf5;
|
|
42
|
-
--surface-decorative-orange: #fffbf5;
|
|
43
|
-
--surface-decorative-purple: #f4f0fa;
|
|
44
|
-
--surface-decorative-blue: #f7fafe;
|
|
45
|
-
|
|
46
|
-
/* Action */
|
|
47
|
-
--surface-action-default: #2680ea;
|
|
48
|
-
--surface-action-hover: #1c60af;
|
|
49
|
-
--surface-action-muted: #e6e7e8;
|
|
50
|
-
|
|
51
|
-
/* BORDER TOKENS */
|
|
52
|
-
/* Core */
|
|
53
|
-
--border-core-default: #dadbdc;
|
|
54
|
-
--border-core-muted: #e6e7e8;
|
|
55
|
-
--border-core-strong: #c0c2c5;
|
|
56
|
-
--border-core-inverted: #81858a;
|
|
57
|
-
|
|
58
|
-
/* Interaction */
|
|
59
|
-
--border-interaction-default: #dfecfc;
|
|
60
|
-
--border-interaction-focus: #2680ea;
|
|
61
|
-
|
|
62
|
-
/* Semantics */
|
|
63
|
-
--border-semantics-red: #f7dfdf;
|
|
64
|
-
--border-semantics-green: #cde2ce;
|
|
65
|
-
--border-semantics-yellow: #ffefc1;
|
|
66
|
-
|
|
67
|
-
/* Decorative */
|
|
68
|
-
--border-decorative-purple: #d9c9ed;
|
|
69
|
-
--border-decorative-orange: #ffe5bf;
|
|
70
|
-
--border-decorative-pink: #eec2e0;
|
|
71
|
-
--border-decorative-teal: #b0edee;
|
|
72
|
-
--border-decorative-amber-brown: #e5c1c5;
|
|
73
|
-
--border-decorative-sage-green: #a8e9d2;
|
|
74
|
-
|
|
75
|
-
/* ICON TOKENS */
|
|
76
|
-
--icons-main-primary: #040d17;
|
|
77
|
-
--icons-main-secondary: #434a51;
|
|
78
|
-
--icons-main-hover: #2680ea;
|
|
79
|
-
--icons-main-muted: #c0c2c5;
|
|
80
|
-
--icons-main-inverse: #ffffff;
|
|
81
|
-
|
|
82
|
-
/* SEMANTICS TOKENS */
|
|
83
|
-
/* Success */
|
|
84
|
-
--semantics-success-subtle: #6aaa6d;
|
|
85
|
-
--semantics-success-default: #388e3c;
|
|
86
|
-
--semantics-success-strong: #2a6a2d;
|
|
87
|
-
|
|
88
|
-
/* Error */
|
|
89
|
-
--semantics-error-subtle: #d45e5e;
|
|
90
|
-
--semantics-error-default: #ff0000;
|
|
91
|
-
--semantics-error-strong: #941e1e;
|
|
92
|
-
|
|
93
|
-
/* Warning */
|
|
94
|
-
--semantics-warning-subtle: #ffd145;
|
|
95
|
-
--semantics-warning-default: #ffc107;
|
|
96
|
-
--semantics-warning-strong: #bf9105;
|
|
97
|
-
|
|
98
|
-
/* ACCENT TOKENS */
|
|
99
|
-
/* Orange */
|
|
100
|
-
--accent-orange-subtle: #ffb240;
|
|
101
|
-
--accent-orange-default: #ff9800;
|
|
102
|
-
--accent-orange-strong: #bf7200;
|
|
103
|
-
|
|
104
|
-
/* Teal */
|
|
105
|
-
--accent-teal-subtle: #6adedf;
|
|
106
|
-
--accent-teal-default: #2ac7c9;
|
|
107
|
-
--accent-teal-strong: #23a4a6;
|
|
108
|
-
|
|
109
|
-
/* Purple */
|
|
110
|
-
--accent-purple-subtle: #976dcd;
|
|
111
|
-
--accent-purple-default: #8656c5;
|
|
112
|
-
--accent-purple-strong: #733fb7;
|
|
113
|
-
|
|
114
|
-
/* Amber Brown */
|
|
115
|
-
--accent-amber-brown-subtle: #deafb4;
|
|
116
|
-
--accent-amber-brown-default: #cf8a91;
|
|
117
|
-
--accent-amber-brown-strong: #c77880;
|
|
118
|
-
|
|
119
|
-
/* Sage Green */
|
|
120
|
-
--accent-sage-green-subtle: #33c994;
|
|
121
|
-
--accent-sage-green-default: #29a277;
|
|
122
|
-
--accent-sage-green-dark: #1f7a5a;
|
|
123
|
-
|
|
124
|
-
/* Pink */
|
|
125
|
-
--accent-pink-subtle: #d772b9;
|
|
126
|
-
--accent-pink-default: #d058ab;
|
|
127
|
-
--accent-pink-dark: #c83d9e;
|
|
128
|
-
}
|
|
1
|
+
:root {
|
|
2
|
+
--green-100: #ecf4ec;
|
|
3
|
+
--green-200: #e1eee2;
|
|
4
|
+
--red-100: #faeaea;
|
|
5
|
+
--red-300: #f0c9c9;
|
|
6
|
+
--yellow-100: #fff9e7;
|
|
7
|
+
--box-shadow: #0a0d1214;
|
|
8
|
+
|
|
9
|
+
//New Variables
|
|
10
|
+
/* TEXT TOKENS */
|
|
11
|
+
--text-heading-primary: #040d17;
|
|
12
|
+
--text-heading-secondary: #434a51;
|
|
13
|
+
--text-heading-inverse: #ffffff;
|
|
14
|
+
|
|
15
|
+
--text-body-primary: #434a51;
|
|
16
|
+
--text-body-secondary: #81858a;
|
|
17
|
+
--text-body-muted: #c0c2c5;
|
|
18
|
+
--text-body-inversed: #ffffff;
|
|
19
|
+
|
|
20
|
+
--text-link-default: #2680ea;
|
|
21
|
+
--text-link-hover: #1c60af;
|
|
22
|
+
--text-link-muted: #c8dff9;
|
|
23
|
+
--text-link-inverse: #5ca0ef;
|
|
24
|
+
|
|
25
|
+
/* SURFACE TOKENS */
|
|
26
|
+
/* Background */
|
|
27
|
+
--surface-background-canvas: #ffffff;
|
|
28
|
+
--surface-background-default: #f0f0f0;
|
|
29
|
+
--surface-background-subtle: #e6e7e8;
|
|
30
|
+
--surface-background-blue: #f7fafe;
|
|
31
|
+
|
|
32
|
+
/* Contextual */
|
|
33
|
+
--surface-contextual-green: #f7fbf7;
|
|
34
|
+
--surface-contextual-red: #fdf7f7;
|
|
35
|
+
--surface-contextual-yellow: #fffdf5;
|
|
36
|
+
|
|
37
|
+
/* Decorative */
|
|
38
|
+
--surface-decorative-sage-green: #f3fcf9;
|
|
39
|
+
--surface-decorative-amber-brown: #f9f1f1;
|
|
40
|
+
--surface-decorative-teal: #eafafb;
|
|
41
|
+
--surface-decorative-pink: #f9ebf5;
|
|
42
|
+
--surface-decorative-orange: #fffbf5;
|
|
43
|
+
--surface-decorative-purple: #f4f0fa;
|
|
44
|
+
--surface-decorative-blue: #f7fafe;
|
|
45
|
+
|
|
46
|
+
/* Action */
|
|
47
|
+
--surface-action-default: #2680ea;
|
|
48
|
+
--surface-action-hover: #1c60af;
|
|
49
|
+
--surface-action-muted: #e6e7e8;
|
|
50
|
+
|
|
51
|
+
/* BORDER TOKENS */
|
|
52
|
+
/* Core */
|
|
53
|
+
--border-core-default: #dadbdc;
|
|
54
|
+
--border-core-muted: #e6e7e8;
|
|
55
|
+
--border-core-strong: #c0c2c5;
|
|
56
|
+
--border-core-inverted: #81858a;
|
|
57
|
+
|
|
58
|
+
/* Interaction */
|
|
59
|
+
--border-interaction-default: #dfecfc;
|
|
60
|
+
--border-interaction-focus: #2680ea;
|
|
61
|
+
|
|
62
|
+
/* Semantics */
|
|
63
|
+
--border-semantics-red: #f7dfdf;
|
|
64
|
+
--border-semantics-green: #cde2ce;
|
|
65
|
+
--border-semantics-yellow: #ffefc1;
|
|
66
|
+
|
|
67
|
+
/* Decorative */
|
|
68
|
+
--border-decorative-purple: #d9c9ed;
|
|
69
|
+
--border-decorative-orange: #ffe5bf;
|
|
70
|
+
--border-decorative-pink: #eec2e0;
|
|
71
|
+
--border-decorative-teal: #b0edee;
|
|
72
|
+
--border-decorative-amber-brown: #e5c1c5;
|
|
73
|
+
--border-decorative-sage-green: #a8e9d2;
|
|
74
|
+
|
|
75
|
+
/* ICON TOKENS */
|
|
76
|
+
--icons-main-primary: #040d17;
|
|
77
|
+
--icons-main-secondary: #434a51;
|
|
78
|
+
--icons-main-hover: #2680ea;
|
|
79
|
+
--icons-main-muted: #c0c2c5;
|
|
80
|
+
--icons-main-inverse: #ffffff;
|
|
81
|
+
|
|
82
|
+
/* SEMANTICS TOKENS */
|
|
83
|
+
/* Success */
|
|
84
|
+
--semantics-success-subtle: #6aaa6d;
|
|
85
|
+
--semantics-success-default: #388e3c;
|
|
86
|
+
--semantics-success-strong: #2a6a2d;
|
|
87
|
+
|
|
88
|
+
/* Error */
|
|
89
|
+
--semantics-error-subtle: #d45e5e;
|
|
90
|
+
--semantics-error-default: #ff0000;
|
|
91
|
+
--semantics-error-strong: #941e1e;
|
|
92
|
+
|
|
93
|
+
/* Warning */
|
|
94
|
+
--semantics-warning-subtle: #ffd145;
|
|
95
|
+
--semantics-warning-default: #ffc107;
|
|
96
|
+
--semantics-warning-strong: #bf9105;
|
|
97
|
+
|
|
98
|
+
/* ACCENT TOKENS */
|
|
99
|
+
/* Orange */
|
|
100
|
+
--accent-orange-subtle: #ffb240;
|
|
101
|
+
--accent-orange-default: #ff9800;
|
|
102
|
+
--accent-orange-strong: #bf7200;
|
|
103
|
+
|
|
104
|
+
/* Teal */
|
|
105
|
+
--accent-teal-subtle: #6adedf;
|
|
106
|
+
--accent-teal-default: #2ac7c9;
|
|
107
|
+
--accent-teal-strong: #23a4a6;
|
|
108
|
+
|
|
109
|
+
/* Purple */
|
|
110
|
+
--accent-purple-subtle: #976dcd;
|
|
111
|
+
--accent-purple-default: #8656c5;
|
|
112
|
+
--accent-purple-strong: #733fb7;
|
|
113
|
+
|
|
114
|
+
/* Amber Brown */
|
|
115
|
+
--accent-amber-brown-subtle: #deafb4;
|
|
116
|
+
--accent-amber-brown-default: #cf8a91;
|
|
117
|
+
--accent-amber-brown-strong: #c77880;
|
|
118
|
+
|
|
119
|
+
/* Sage Green */
|
|
120
|
+
--accent-sage-green-subtle: #33c994;
|
|
121
|
+
--accent-sage-green-default: #29a277;
|
|
122
|
+
--accent-sage-green-dark: #1f7a5a;
|
|
123
|
+
|
|
124
|
+
/* Pink */
|
|
125
|
+
--accent-pink-subtle: #d772b9;
|
|
126
|
+
--accent-pink-default: #d058ab;
|
|
127
|
+
--accent-pink-dark: #c83d9e;
|
|
128
|
+
}
|