asksuite-citrus 3.13.0-beta.3 → 3.14.0-beta.2

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.
Files changed (54) hide show
  1. package/esm2022/lib/asksuite-citrus.module.mjs +5 -25
  2. package/esm2022/lib/components/accordion/extendable-panel/extendable-panel.component.mjs +2 -2
  3. package/esm2022/lib/components/autocomplete/autocomplete.component.mjs +2 -2
  4. package/esm2022/lib/components/avatar/avatar.component.mjs +2 -2
  5. package/esm2022/lib/components/box/box.component.mjs +2 -2
  6. package/esm2022/lib/components/button/button.component.mjs +2 -2
  7. package/esm2022/lib/components/character-counter/character-counter.component.mjs +2 -2
  8. package/esm2022/lib/components/checkbox/checkbox.component.mjs +2 -2
  9. package/esm2022/lib/components/chips/chips.component.mjs +2 -2
  10. package/esm2022/lib/components/date-picker/date-picker-calendar/date-picker-calendar.component.mjs +2 -2
  11. package/esm2022/lib/components/date-picker/date-picker.component.mjs +2 -2
  12. package/esm2022/lib/components/dropdown-container/dropdown-container.component.mjs +2 -2
  13. package/esm2022/lib/components/input/input.component.mjs +3 -13
  14. package/esm2022/lib/components/modal/confirmation-modal/confirmation-modal.component.mjs +2 -2
  15. package/esm2022/lib/components/modal/modal.component.mjs +2 -2
  16. package/esm2022/lib/components/pagination/pagination.component.mjs +2 -2
  17. package/esm2022/lib/components/phone-ddi/phone-ddi.component.mjs +2 -2
  18. package/esm2022/lib/components/richtext-toolbox/richtext-toolbox.component.mjs +2 -2
  19. package/esm2022/lib/components/richtext-url-prompt/richtext-url-prompt.component.mjs +2 -2
  20. package/esm2022/lib/components/select/select.component.mjs +2 -2
  21. package/esm2022/lib/components/table/table.component.mjs +2 -2
  22. package/esm2022/lib/components/toast/toast.component.mjs +2 -2
  23. package/esm2022/lib/services/storage/storage-util.service.mjs +25 -0
  24. package/esm2022/lib/services/theme/theme.service.mjs +32 -0
  25. package/esm2022/public-api.mjs +2 -5
  26. package/fesm2022/asksuite-citrus.mjs +99 -173
  27. package/fesm2022/asksuite-citrus.mjs.map +1 -1
  28. package/lib/asksuite-citrus.module.d.ts +22 -26
  29. package/lib/components/input/input.component.d.ts +0 -2
  30. package/lib/services/storage/storage-util.service.d.ts +10 -0
  31. package/lib/services/theme/theme.service.d.ts +13 -0
  32. package/package.json +1 -1
  33. package/public-api.d.ts +1 -4
  34. package/styles/ask-mixins.scss +3 -3
  35. package/styles/badge.scss +1 -1
  36. package/styles/button.scss +24 -24
  37. package/styles/colors-dark.scss +351 -0
  38. package/styles/{colors.scss → colors-light.scss} +49 -43
  39. package/styles/list-item.scss +1 -1
  40. package/styles/material.scss +21 -21
  41. package/styles/old-theme.scss +61 -0
  42. package/styles/styles.scss +1 -1
  43. package/styles/theme-colors.scss +13 -0
  44. package/styles/theme-primitives.scss +208 -0
  45. package/styles/tokens.scss +2 -1
  46. package/styles/tooltip.scss +3 -2
  47. package/esm2022/lib/components/arrow-tag/arrow-tag.component.mjs +0 -28
  48. package/esm2022/lib/components/tab-group/tab/tab.component.mjs +0 -19
  49. package/esm2022/lib/components/tab-group/tab-group.component.mjs +0 -37
  50. package/esm2022/lib/components/tag/tag.component.mjs +0 -25
  51. package/lib/components/arrow-tag/arrow-tag.component.d.ts +0 -8
  52. package/lib/components/tab-group/tab/tab.component.d.ts +0 -9
  53. package/lib/components/tab-group/tab-group.component.d.ts +0 -12
  54. package/lib/components/tag/tag.component.d.ts +0 -9
@@ -3,58 +3,58 @@
3
3
  */
4
4
 
5
5
  // brand
6
- $asksuite-orange: #FF5724;
6
+ $asksuite-orange: #ff5724;
7
7
 
8
8
  // neutral
9
- $white: #FFF;
9
+ $white: #fff;
10
10
 
11
11
  // grey
12
- $grey-50: #F5F7FA;
13
- $grey-100: #E4E7EB;
14
- $grey-150: #DBDBDB;
15
- $grey-200: #CBD2D9;
16
- $grey-300: #9AA5B1;
17
- $grey-400: #7B8794;
18
- $grey-500: #616E7C;
19
- $grey-600: #52606D;
20
- $grey-700: #3E4C59;
21
- $grey-800: #2A3042;
22
- $grey-900: #1F2933;
12
+ $grey-50: #f5f7fa;
13
+ $grey-100: #e4e7eb;
14
+ $grey-150: #dbdbdb;
15
+ $grey-200: #cbd2d9;
16
+ $grey-300: #9aa5b1;
17
+ $grey-400: #7b8794;
18
+ $grey-500: #616e7c;
19
+ $grey-600: #52606d;
20
+ $grey-700: #3e4c59;
21
+ $grey-800: #2a3042;
22
+ $grey-900: #1f2933;
23
23
 
24
24
  // yellow
25
- $yellow-50: #FFF8E2;
26
- $yellow-200: #FFECB3;
25
+ $yellow-50: #fff8e2;
26
+ $yellow-200: #ffecb3;
27
27
 
28
28
  // color
29
- $success-green: #4BAF50;
30
- $warning-yellow: #FFC107;
31
- $error-red: #E8453E;
29
+ $success-green: #4baf50;
30
+ $warning-yellow: #ffc107;
31
+ $error-red: #e8453e;
32
32
 
33
33
  // shadow
34
- $shadow: #2A304229;
34
+ $shadow: #2a304229;
35
35
 
36
36
  // livechat tags
37
- $lightblue-tag: #CDF9F3;
38
- $lavender-tag: #D4DAF3;
39
- $green-tag: #CEEEAA;
40
- $pink-tag: #FBC5FF;
41
- $orange-tag: #FED5C9;
42
- $purple-tag: #DDBFE5;
43
- $yellow-tag: #FFE0B2;
44
- $blue-tag: #B2E5FD;
45
- $brown-tag: #EFC89C;
37
+ $lightblue-tag: #cdf9f3;
38
+ $lavender-tag: #d4daf3;
39
+ $green-tag: #ceeeaa;
40
+ $pink-tag: #fbc5ff;
41
+ $orange-tag: #fed5c9;
42
+ $purple-tag: #ddbfe5;
43
+ $yellow-tag: #ffe0b2;
44
+ $blue-tag: #b2e5fd;
45
+ $brown-tag: #efc89c;
46
46
 
47
47
  // communication channels
48
- $whatsapp-green: #68B35D;
49
- $facebook-blue: #0084FF;
50
- $instagram-pink: #D53E91;
51
- $google-blue: #345DC8;
52
- $telegram-blue: #34AADF;
53
- $telephone-yellow: #FECB00;
48
+ $whatsapp-green: #68b35d;
49
+ $facebook-blue: #0084ff;
50
+ $instagram-pink: #d53e91;
51
+ $google-blue: #345dc8;
52
+ $telegram-blue: #34aadf;
53
+ $telephone-yellow: #fecb00;
54
54
 
55
55
  // backgrounds
56
56
  $primary-background: $white;
57
- $secondary-background: #EFF3F8;
57
+ $secondary-background: #eff3f8;
58
58
  $hover-background: $grey-50;
59
59
  $divider-background: $grey-100;
60
60
 
@@ -63,7 +63,6 @@ $font-color-100: $grey-800;
63
63
  $font-color-200: $grey-500;
64
64
  $font-color-300: $grey-300;
65
65
 
66
-
67
66
  // new tokens livechat
68
67
 
69
68
  //reference
@@ -239,13 +238,13 @@ $color-y-600: #d79428;
239
238
  $color-y-700: #be800e;
240
239
  $color-y-800: #a66e0c;
241
240
  $color-y-900: #775409;
242
- $color-a-100: #F9E7E2;
241
+ $color-a-100: #f9e7e2;
243
242
  $color-a-1000: $color-o-1000;
244
243
  $color-a-200: $color-o-200;
245
- $color-a-300: #FBAF99;
244
+ $color-a-300: #fbaf99;
246
245
  $color-a-400: $color-o-400;
247
246
  $color-a-500: $color-o-500;
248
- $color-a-600: #FF5724;
247
+ $color-a-600: #ff5724;
249
248
  $color-a-700: $color-o-700;
250
249
  $color-a-800: $color-o-800;
251
250
  $color-a-900: $color-o-900;
@@ -260,7 +259,6 @@ $color-f-700: $color-v-700;
260
259
  $color-f-800: $color-v-800;
261
260
  $color-f-900: $color-v-900;
262
261
 
263
-
264
262
  $color-light-neutral-NLA200: $color-nla-200;
265
263
  $color-light-neutral-NLA300: #13293921;
266
264
  // livechat - tokens
@@ -588,9 +586,9 @@ $color-texticon-warning: $color-texticon-accent-yellow-contrast;
588
586
  $color-skeleton: $color-nla-200;
589
587
  $color-text-link-default: $color-b-500;
590
588
  $color-texticon-inverse-default: $color-nl-0;
591
- $color-texticon-danger: $color-r-600;
589
+ $color-texticon-danger: $color-r-600;
592
590
 
593
- :root {
591
+ @mixin theme {
594
592
  // brand
595
593
  --asksuite-orange: #{$asksuite-orange};
596
594
 
@@ -672,6 +670,7 @@ $color-texticon-danger: $color-r-600;
672
670
  --color-background-alpha-subtlest-default: #{$color-background-alpha-subtlest-default};
673
671
  --color-background-inverse-default: #{$color-background-inverse-default};
674
672
  --color-background-disabled: #{$color-background-disabled};
673
+ --color-background-skeleton: #{$color-background-disabled};
675
674
  --color-text-contrast: #{$color-text-contrast};
676
675
  --color-text-subtlest: #{$color-text-subtlest};
677
676
  --color-text-disabled: #{$color-text-disabled};
@@ -706,4 +705,11 @@ $color-texticon-danger: $color-r-600;
706
705
  --color-elevation-surface-primary-default: #{$color-elevation-surface-primary-default};
707
706
  --color-background-alpha-subtlest-hovered: #{$color-background-alpha-subtlest-hovered};
708
707
  --color-icon-brand-asksuite-contrast: #{$color-icon-brand-asksuite-contrast};
709
- }
708
+ --color-border-brand-asksuite-contrast: #{$color-border-brand-asksuite-contrast};
709
+ --color-background-bounding-box: #{color-background-bounding-box};
710
+
711
+ --color-background-accent-grey-bold-default: #{$color-background-accent-grey-bold-default};
712
+ --color-border-inverse-subtle: #{$color-border-inverse-subtle};
713
+ --color-background-accent-grey-subtler-hovered: #{$color-background-accent-grey-subtler-hovered};
714
+ }
715
+
@@ -3,6 +3,6 @@
3
3
 
4
4
  &:hover {
5
5
  cursor: pointer;
6
- background-color: $grey-50;
6
+ background-color: var(--grey-50);
7
7
  }
8
8
  }
@@ -1,29 +1,29 @@
1
1
  @use '@angular/material' as mat;
2
2
  @include mat.core();
3
- @import './colors';
3
+ @import './colors-light.scss';
4
4
 
5
5
  $ask-gray-palette: (
6
- 50: $grey-50,
7
- 100: $grey-100,
8
- 200: $grey-200,
9
- 300: $grey-300,
10
- 400: $grey-400,
11
- 500: $grey-500,
12
- 600: $grey-600,
13
- 700: $grey-700,
14
- 800: $grey-800,
15
- 900: $grey-900,
6
+ 50: var(--grey-50),
7
+ 100: var(--grey-100),
8
+ 200: var(--grey-200),
9
+ 300: var(--grey-300),
10
+ 400: var(--grey-400),
11
+ 500: var(--grey-500),
12
+ 600: var(--grey-600),
13
+ 700: var(--grey-700),
14
+ 800: var(--grey-800),
15
+ 900: var(--grey-900),
16
16
  contrast: (
17
- 50: rgba(black, .87),
18
- 100: rgba(black, .87),
19
- 200: rgba(black, .87),
20
- 300: rgba(black, .87),
21
- 400: rgba(black, .87),
22
- 500: white,
23
- 600: white,
24
- 700: white,
25
- 800: white,
26
- 900: white,
17
+ 50: rgba(var(--color-background-bounding-box), .87),
18
+ 100: rgba(var(--color-background-bounding-box), .87),
19
+ 200: rgba(var(--color-background-bounding-box), .87),
20
+ 300: rgba(var(--color-background-bounding-box), .87),
21
+ 400: rgba(var(--color-background-bounding-box), .87),
22
+ 500: var(--white),
23
+ 600: var(--white),
24
+ 700: var(--white),
25
+ 800: var(--white),
26
+ 900: var(--white),
27
27
  )
28
28
  );
29
29
 
@@ -0,0 +1,61 @@
1
+
2
+ // brand
3
+ $asksuite-orange: #ff5724;
4
+
5
+ // neutral
6
+ $white: black;
7
+
8
+ // grey
9
+ $grey-50: #f5f7fa;
10
+ $grey-100: #e4e7eb;
11
+ $grey-150: #dbdbdb;
12
+ $grey-200: #cbd2d9;
13
+ $grey-300: #9aa5b1;
14
+ $grey-400: #7b8794;
15
+ $grey-500: #616e7c;
16
+ $grey-600: #52606d;
17
+ $grey-700: #3e4c59;
18
+ $grey-800: #2a3042;
19
+ $grey-900: #1f2933;
20
+
21
+ // yellow
22
+ $yellow-50: #fff8e2;
23
+ $yellow-200: #ffecb3;
24
+
25
+ // color
26
+ $success-green: #4baf50;
27
+ $warning-yellow: #ffc107;
28
+ $error-red: #e8453e;
29
+
30
+ // shadow
31
+ $shadow: #2a304229;
32
+
33
+ // livechat tags
34
+ $lightblue-tag: #cdf9f3;
35
+ $lavender-tag: #d4daf3;
36
+ $green-tag: #ceeeaa;
37
+ $pink-tag: #fbc5ff;
38
+ $orange-tag: #fed5c9;
39
+ $purple-tag: #ddbfe5;
40
+ $yellow-tag: #ffe0b2;
41
+ $blue-tag: #b2e5fd;
42
+ $brown-tag: #efc89c;
43
+
44
+ // communication channels
45
+ $whatsapp-green: #68b35d;
46
+ $facebook-blue: #0084ff;
47
+ $instagram-pink: #d53e91;
48
+ $google-blue: #345dc8;
49
+ $telegram-blue: #34aadf;
50
+ $telephone-yellow: #fecb00;
51
+
52
+ // backgrounds
53
+ $primary-background: $white;
54
+ $secondary-background: #eff3f8;
55
+ $hover-background: $grey-50;
56
+ $divider-background: $grey-100;
57
+
58
+ // fonts
59
+ $font-color-100: $grey-800;
60
+ $font-color-200: $grey-500;
61
+ $font-color-300: $grey-300;
@@ -7,7 +7,7 @@
7
7
  * Tokens
8
8
  */
9
9
  @import './tokens';
10
-
10
+ @import './colors-light.scss';
11
11
  @import './button';
12
12
  @import './modal';
13
13
  @import './ask-mixins';
@@ -0,0 +1,13 @@
1
+ @forward "colors-light";
2
+
3
+ @use "colors-dark";
4
+ @use "colors-light";
5
+
6
+
7
+ body.light{
8
+ @include colors-light.theme();
9
+ }
10
+
11
+ body.dark{
12
+ @include colors-dark.theme();
13
+ }
@@ -0,0 +1,208 @@
1
+ $color-m-1000: #412746;
2
+ $color-m-900: #62325a;
3
+ $color-m-800: #813e6f;
4
+ $color-m-700: #a14884;
5
+ $color-m-600: #d75ba5;
6
+ $color-m-500: #de77b5;
7
+ $color-m-400: #e490c3;
8
+ $color-m-300: #ebadd2;
9
+ $color-m-200: #f3cee4;
10
+ $color-m-100: #f7deed;
11
+ $color-p-1000: #332c59;
12
+ $color-p-900: #42396f;
13
+ $color-p-800: #534790;
14
+ $color-p-700: #5f4eb1;
15
+ $color-p-600: #7969c9;
16
+ $color-p-500: #9183d2;
17
+ $color-p-400: #ab9fe5;
18
+ $color-p-300: #c2b9f4;
19
+ $color-p-200: #dcd5fb;
20
+ $color-p-100: #ebe5ff;
21
+ $color-b-1000: #0c2e59;
22
+ $color-b-900: #123c76;
23
+ $color-b-800: #174b94;
24
+ $color-b-700: #1c59b2;
25
+ $color-b-600: #276ace;
26
+ $color-b-500: #4f8ce8;
27
+ $color-b-400: #7aa7eb;
28
+ $color-b-300: #a3c2f0;
29
+ $color-b-200: #ceddf3;
30
+ $color-b-100: #e3eaf7;
31
+ $color-t-1000: #0c4153;
32
+ $color-t-900: #125e72;
33
+ $color-t-800: #17798e;
34
+ $color-t-700: #1c92ab;
35
+ $color-t-600: #37b2c8;
36
+ $color-t-500: #4fc9e0;
37
+ $color-t-400: #7ad5e5;
38
+ $color-t-300: #a3e0ec;
39
+ $color-t-200: #ceecf1;
40
+ $color-t-100: #e3f2f6;
41
+ $color-g-1000: #0c3c34;
42
+ $color-g-900: #12513e;
43
+ $color-g-800: #176849;
44
+ $color-g-700: #1c7d54;
45
+ $color-g-600: #279661;
46
+ $color-g-500: #45ba82;
47
+ $color-g-400: #73deaa;
48
+ $color-g-300: #a7ecd0;
49
+ $color-g-200: #c6f5df;
50
+ $color-g-100: #e1f9ee;
51
+ $color-l-1000: #2c4a31;
52
+ $color-l-900: #41673a;
53
+ $color-l-800: #568444;
54
+ $color-l-700: #6ba04e;
55
+ $color-l-600: #77be41;
56
+ $color-l-500: #8ed558;
57
+ $color-l-400: #a9e17f;
58
+ $color-l-300: #c8ecac;
59
+ $color-l-200: #ddf6ca;
60
+ $color-l-100: #e9f9dc;
61
+ $color-y-1000: #5b4007;
62
+ $color-y-900: #775409;
63
+ $color-y-800: #a66e0c;
64
+ $color-y-700: #be800e;
65
+ $color-y-600: #d79428;
66
+ $color-y-500: #edb24a;
67
+ $color-y-400: #fbc560;
68
+ $color-y-300: #fed88c;
69
+ $color-y-200: #ffe5b2;
70
+ $color-y-100: #fff1d6;
71
+ $color-o-1000: #3d231e;
72
+ $color-o-900: #6d301f;
73
+ $color-o-800: #9e3d22;
74
+ $color-o-700: #ce4a23;
75
+ $color-o-600: #ff5724;
76
+ $color-o-500: #fe6f44;
77
+ $color-o-400: #fd906e;
78
+ $color-o-300: #fbaf99;
79
+ $color-o-200: #fad0c4;
80
+ $color-o-100: #f9e7e2;
81
+ $color-r-1000: #331b2e;
82
+ $color-r-900: #5c1f36;
83
+ $color-r-800: #87233f;
84
+ $color-r-700: #b02747;
85
+ $color-r-600: #d92b50;
86
+ $color-r-500: #df5372;
87
+ $color-r-400: #e57d94;
88
+ $color-r-300: #eaa5b6;
89
+ $color-r-200: #f5c7d1;
90
+ $color-r-100: #fbe9ed;
91
+ $color-v-1000: #1c1829;
92
+ $color-v-900: #2b1935;
93
+ $color-v-800: #3b1a43;
94
+ $color-v-700: #4a1b4f;
95
+ $color-v-600: #5a1d5b;
96
+ $color-v-500: #6a336b;
97
+ $color-v-400: #916a92;
98
+ $color-v-300: #a98aa9;
99
+ $color-v-200: #d0c1d2;
100
+ $color-v-100: #daceda;
101
+ $color-a-100: $color-o-100;
102
+ $color-a-200: $color-o-200;
103
+ $color-a-300: $color-o-300;
104
+ $color-a-400: $color-o-400;
105
+ $color-a-500: $color-o-500;
106
+ $color-a-600: $color-o-600;
107
+ $color-a-700: $color-o-700;
108
+ $color-a-800: $color-o-800;
109
+ $color-a-900: $color-o-900;
110
+ $color-a-1000: $color-o-1000;
111
+ $color-f-100: $color-v-100;
112
+ $color-f-200: $color-v-200;
113
+ $color-f-300: $color-v-300;
114
+ $color-f-400: $color-v-400;
115
+ $color-f-500: $color-v-500;
116
+ $color-f-600: $color-v-600;
117
+ $color-f-700: $color-v-700;
118
+ $color-f-800: $color-v-800;
119
+ $color-f-900: $color-v-900;
120
+ $color-f-1000: $color-v-1000;
121
+ //grey light opaque
122
+ $color-nl-0: #ffffff;
123
+ $color-nl-100: #f8f8f9;
124
+ $color-nl-200: #f0f2f3;
125
+ $color-nl-300: #e1e4e6;
126
+ $color-nl-400: #d3d7da;
127
+ $color-nl-500: #c4c9cd;
128
+ $color-nl-600: #b5bcc1;
129
+ $color-nl-700: #a6afb4;
130
+ $color-nl-800: #97a1a8;
131
+ $color-nl-900: #8a959d;
132
+ $color-nl-1000: #7b8790;
133
+ $color-nl-1100: #6c7a84;
134
+ $color-nl-1200: #5d6c77;
135
+ $color-nl-1300: #4e5f6b;
136
+ $color-nl-1400: #40525f;
137
+ $color-nl-1500: #314452;
138
+ $color-nl-1600: #223746;
139
+ $color-nl-1700: #132939;
140
+ //grey light alpha
141
+ $color-nla-0: rgba(255, 255, 255, 0);
142
+ $color-nla-100: rgba(19, 41, 57, 0.03);
143
+ $color-nla-200: rgba(19, 41, 57, 0.06);
144
+ $color-nla-300: rgba(19, 41, 57, 0.13);
145
+ $color-nla-400: rgba(19, 41, 57, 0.19);
146
+ $color-nla-500: rgba(19, 41, 57, 0.25);
147
+ $color-nla-600: rgba(19, 41, 57, 0.31);
148
+ $color-nla-700: rgba(19, 41, 57, 0.38);
149
+ $color-nla-800: rgba(19, 41, 57, 0.44);
150
+ $color-nla-900: rgba(19, 41, 57, 0.5);
151
+ $color-nla-1000: rgba(19, 41, 57, 0.56);
152
+ $color-nla-1100: rgba(19, 41, 57, 0.63);
153
+ $color-nla-1200: rgba(19, 41, 57, 0.69);
154
+ $color-nla-1300: rgba(19, 41, 57, 0.75);
155
+ $color-nla-1400: rgba(19, 41, 57, 0.81);
156
+ $color-nla-1500: rgba(19, 41, 57, 0.88);
157
+ $color-nla-1600: rgba(19, 41, 57, 0.94);
158
+ $color-nla-1700: #132939;
159
+ //grey dark opaque
160
+ $color-nd-1400: #b2beca;
161
+ $color-nd-1300: #a6b2bc;
162
+ $color-nd-1200: #99a4af;
163
+ $color-nd-1100: #8d97a2;
164
+ $color-nd-1000: #7f8b95;
165
+ $color-nd-900: #727d88;
166
+ $color-nd-800: #66707a;
167
+ $color-nd-700: #58646d;
168
+ $color-nd-600: #4c5760;
169
+ $color-nd-500: #3f4952;
170
+ $color-nd-400: #333d45;
171
+ $color-nd-300: #253037;
172
+ $color-nd-200: #19232a;
173
+ $color-nd-100: #131c24;
174
+ $color-nd-0: #0d161c;
175
+ $color-nd-1500: #c0cbd8;
176
+ $color-nd-1600: #ccd8e5;
177
+ $color-nd-1700: #d9e5f2;
178
+ //grey dark alpha
179
+ $color-nda-0: rgba(12, 22, 29, 0);
180
+ $color-nda-100: rgba(217, 229, 242, 0.03);
181
+ $color-nda-200: rgba(217, 229, 242, 0.06);
182
+ $color-nda-300: rgba(217, 229, 242, 0.13);
183
+ $color-nda-400: rgba(217, 229, 242, 0.19);
184
+ $color-nda-500: rgba(217, 229, 242, 0.25);
185
+ $color-nda-600: rgba(217, 229, 242, 0.31);
186
+ $color-nda-700: rgba(217, 229, 242, 0.38);
187
+ $color-nda-800: rgba(217, 229, 242, 0.44);
188
+ $color-nda-900: rgba(217, 229, 242, 0.5);
189
+ $color-nda-1000: rgba(217, 229, 242, 0.56);
190
+ $color-nda-1100: rgba(217, 229, 242, 0.63);
191
+ $color-nda-1200: rgba(217, 229, 242, 0.69);
192
+ $color-nda-1300: rgba(217, 229, 242, 0.75);
193
+ $color-nda-1400: rgba(217, 229, 242, 0.81);
194
+ $color-nda-1500: rgba(217, 229, 242, 0.88);
195
+ $color-nda-1600: rgba(217, 229, 242, 0.94);
196
+ $color-nda-1700: #d9e5f2;
197
+
198
+
199
+
200
+ //outros
201
+
202
+ $color-light-neutral-nla200: $color-nda-200;
203
+ $color-light-neutral-nla300: $color-nda-0;
204
+ $color-elevation-surface-sunken-default: $color-nd-0;
205
+ $color-background-accent-grey-bold-default: $color-nl-1400;
206
+ $color-border-inverse-subtle: $color-nl-400;
207
+ $color-background-accent-grey-subtler-hovered: $color-nl-400;
208
+ //
@@ -1,7 +1,8 @@
1
1
  /*
2
2
  * Tokens
3
3
  */
4
- @import './colors';
4
+ @use 'theme-colors';
5
+ // @forward './colors-light';
5
6
  @import './font-families';
6
7
  @import './font-sizes';
7
8
  @import './font-weights';
@@ -1,6 +1,6 @@
1
1
  .ask-tooltip {
2
- background-color: $grey-400;
3
- color: $white;
2
+ background-color: var(--color-background-alpha-bolder-default);
3
+ color: var(--color-texticon-inverse-default);
4
4
  padding: 4px;
5
5
  border-radius: 8px;
6
6
  position: relative;
@@ -46,4 +46,5 @@
46
46
 
47
47
  ::ng-deep mat-tooltip-component .mat-mdc-tooltip .mdc-tooltip__surface {
48
48
  background-color: transparent !important;
49
+ color: var(--color-texticon-inverse-default) !important;
49
50
  }