@igo2/core 16.0.0-rc.8 → 16.0.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/core-theme.scss +5 -5
- package/esm2022/lib/activity/index.mjs +1 -1
- package/esm2022/lib/analytics/index.mjs +1 -1
- package/esm2022/lib/analytics/shared/analytics.interface.mjs +1 -1
- package/esm2022/lib/analytics/shared/index.mjs +1 -1
- package/esm2022/lib/compression/compressedData.interface.mjs +1 -1
- package/esm2022/lib/compression/index.mjs +1 -1
- package/esm2022/lib/config/index.mjs +1 -1
- package/esm2022/lib/config/version.mjs +3 -3
- package/esm2022/lib/gesture/gesture.provider.mjs +1 -1
- package/esm2022/lib/language/index.mjs +1 -1
- package/esm2022/lib/language/shared/index.mjs +1 -1
- package/esm2022/lib/language/shared/language.interface.mjs +1 -1
- package/esm2022/lib/language/shared/missing-translation.guard.mjs +2 -2
- package/esm2022/lib/media/index.mjs +1 -1
- package/esm2022/lib/media/media.enum.mjs +1 -1
- package/esm2022/lib/message/index.mjs +1 -1
- package/esm2022/lib/message/shared/message.enum.mjs +1 -1
- package/esm2022/lib/network/index.mjs +1 -1
- package/esm2022/lib/network/network.interfaces.mjs +1 -1
- package/esm2022/lib/regex/index.mjs +1 -1
- package/esm2022/lib/regex/regex.interface.mjs +1 -1
- package/esm2022/lib/request/index.mjs +1 -1
- package/esm2022/lib/route/route.interface.mjs +1 -1
- package/esm2022/lib/storage/index.mjs +1 -1
- package/esm2022/lib/storage/storage.interface.mjs +1 -1
- package/fesm2022/igo2-core.mjs +3 -3
- package/fesm2022/igo2-core.mjs.map +1 -1
- package/lib/message/message.theming.scss +26 -26
- package/locale/en.core.json +28 -28
- package/locale/fr.core.json +28 -28
- package/package.json +2 -2
- package/packages.import.scss +4 -4
- package/style/all-style.scss +3 -3
- package/style/layout.scss +163 -163
- package/style/partial/core-utils.scss +5 -5
- package/style/partial/core.variables.scss +5 -5
- package/style/partial/media.scss +80 -80
- package/style/style.scss +19 -19
- package/theming/all-theme.scss +14 -14
- package/theming/material-theme-override.scss +39 -39
- package/theming/prebuilt-themes/blue-theme.scss +34 -34
- package/theming/prebuilt-themes/bluedark-theme.scss +67 -67
- package/theming/prebuilt-themes/bluedq-theme.scss +66 -66
- package/theming/prebuilt-themes/bluegrey-theme.scss +25 -25
- package/theming/prebuilt-themes/dark-theme.scss +25 -25
- package/theming/prebuilt-themes/deeppurple-theme.scss +25 -25
- package/theming/prebuilt-themes/indigo-theme.scss +25 -25
- package/theming/prebuilt-themes/orange-theme.scss +25 -25
- package/theming/prebuilt-themes/qcca/_index.scss +2 -2
- package/theming/prebuilt-themes/qcca/base/_index.scss +4 -4
- package/theming/prebuilt-themes/qcca/base/breakpoints.scss +57 -57
- package/theming/prebuilt-themes/qcca/base/colors.scss +40 -40
- package/theming/prebuilt-themes/qcca/base/palette.scss +50 -50
- package/theming/prebuilt-themes/qcca/base/typography/_index.scss +2 -2
- package/theming/prebuilt-themes/qcca/base/typography/typography.scss +138 -138
- package/theming/prebuilt-themes/qcca/base/typography/typography.utils.scss +18 -18
- package/theming/prebuilt-themes/qcca/components/_index.theme.scss +5 -5
- package/theming/prebuilt-themes/qcca/components/button.scss +24 -24
- package/theming/prebuilt-themes/qcca/components/dialog.scss +36 -36
- package/theming/prebuilt-themes/qcca/components/form-field.scss +5 -5
- package/theming/prebuilt-themes/qcca/components/input.scss +6 -6
- package/theming/prebuilt-themes/qcca/components/list.scss +24 -24
- package/theming/prebuilt-themes/qcca/components/panel.scss +8 -8
- package/theming/prebuilt-themes/qcca/components/search-bar.scss +41 -41
- package/theming/prebuilt-themes/qcca/components/search-bar.theme.scss +29 -29
- package/theming/prebuilt-themes/qcca-theme.scss +47 -47
- package/theming/prebuilt-themes/teal-theme.scss +25 -25
- package/theming/utils/_foreground.scss +22 -22
|
@@ -1,25 +1,25 @@
|
|
|
1
|
-
@use '@angular/material' as mat;
|
|
2
|
-
@use '../../index' as igo;
|
|
3
|
-
|
|
4
|
-
$primary: mat.define-palette(mat.$indigo-palette);
|
|
5
|
-
$accent: mat.define-palette(mat.$pink-palette, A200, A100, A400);
|
|
6
|
-
$warn: mat.define-palette(mat.$red-palette);
|
|
7
|
-
$typography: igo.$igo-typography;
|
|
8
|
-
|
|
9
|
-
$theme: mat.define-light-theme(
|
|
10
|
-
(
|
|
11
|
-
color: (
|
|
12
|
-
primary: $primary,
|
|
13
|
-
accent: $accent,
|
|
14
|
-
warn: $warn
|
|
15
|
-
),
|
|
16
|
-
typography: $typography,
|
|
17
|
-
density: 0
|
|
18
|
-
)
|
|
19
|
-
);
|
|
20
|
-
|
|
21
|
-
@include mat.core();
|
|
22
|
-
@include mat.typography-hierarchy($typography);
|
|
23
|
-
@include mat.all-component-themes($theme);
|
|
24
|
-
|
|
25
|
-
@include igo.all-component-themes($theme);
|
|
1
|
+
@use '@angular/material' as mat;
|
|
2
|
+
@use '../../index' as igo;
|
|
3
|
+
|
|
4
|
+
$primary: mat.define-palette(mat.$indigo-palette);
|
|
5
|
+
$accent: mat.define-palette(mat.$pink-palette, A200, A100, A400);
|
|
6
|
+
$warn: mat.define-palette(mat.$red-palette);
|
|
7
|
+
$typography: igo.$igo-typography;
|
|
8
|
+
|
|
9
|
+
$theme: mat.define-light-theme(
|
|
10
|
+
(
|
|
11
|
+
color: (
|
|
12
|
+
primary: $primary,
|
|
13
|
+
accent: $accent,
|
|
14
|
+
warn: $warn
|
|
15
|
+
),
|
|
16
|
+
typography: $typography,
|
|
17
|
+
density: 0
|
|
18
|
+
)
|
|
19
|
+
);
|
|
20
|
+
|
|
21
|
+
@include mat.core();
|
|
22
|
+
@include mat.typography-hierarchy($typography);
|
|
23
|
+
@include mat.all-component-themes($theme);
|
|
24
|
+
|
|
25
|
+
@include igo.all-component-themes($theme);
|
|
@@ -1,25 +1,25 @@
|
|
|
1
|
-
@use '@angular/material' as mat;
|
|
2
|
-
@use '../../index' as igo;
|
|
3
|
-
|
|
4
|
-
$primary: mat.define-palette(mat.$orange-palette, 800);
|
|
5
|
-
$accent: mat.define-palette(mat.$light-blue-palette, 600, 100, 800);
|
|
6
|
-
$warn: mat.define-palette(mat.$red-palette, 600);
|
|
7
|
-
$typography: igo.$igo-typography;
|
|
8
|
-
|
|
9
|
-
$theme: mat.define-light-theme(
|
|
10
|
-
(
|
|
11
|
-
color: (
|
|
12
|
-
primary: $primary,
|
|
13
|
-
accent: $accent,
|
|
14
|
-
warn: $warn
|
|
15
|
-
),
|
|
16
|
-
typography: $typography,
|
|
17
|
-
density: 0
|
|
18
|
-
)
|
|
19
|
-
);
|
|
20
|
-
|
|
21
|
-
@include mat.core();
|
|
22
|
-
@include mat.typography-hierarchy($typography);
|
|
23
|
-
@include mat.all-component-themes($theme);
|
|
24
|
-
|
|
25
|
-
@include igo.all-component-themes($theme);
|
|
1
|
+
@use '@angular/material' as mat;
|
|
2
|
+
@use '../../index' as igo;
|
|
3
|
+
|
|
4
|
+
$primary: mat.define-palette(mat.$orange-palette, 800);
|
|
5
|
+
$accent: mat.define-palette(mat.$light-blue-palette, 600, 100, 800);
|
|
6
|
+
$warn: mat.define-palette(mat.$red-palette, 600);
|
|
7
|
+
$typography: igo.$igo-typography;
|
|
8
|
+
|
|
9
|
+
$theme: mat.define-light-theme(
|
|
10
|
+
(
|
|
11
|
+
color: (
|
|
12
|
+
primary: $primary,
|
|
13
|
+
accent: $accent,
|
|
14
|
+
warn: $warn
|
|
15
|
+
),
|
|
16
|
+
typography: $typography,
|
|
17
|
+
density: 0
|
|
18
|
+
)
|
|
19
|
+
);
|
|
20
|
+
|
|
21
|
+
@include mat.core();
|
|
22
|
+
@include mat.typography-hierarchy($typography);
|
|
23
|
+
@include mat.all-component-themes($theme);
|
|
24
|
+
|
|
25
|
+
@include igo.all-component-themes($theme);
|
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
@forward './base';
|
|
2
|
-
@forward './components';
|
|
1
|
+
@forward './base';
|
|
2
|
+
@forward './components';
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
@forward './breakpoints';
|
|
2
|
-
@forward './colors' as colors-*;
|
|
3
|
-
@forward './palette';
|
|
4
|
-
@forward './typography';
|
|
1
|
+
@forward './breakpoints';
|
|
2
|
+
@forward './colors' as colors-*;
|
|
3
|
+
@forward './palette';
|
|
4
|
+
@forward './typography';
|
|
@@ -1,57 +1,57 @@
|
|
|
1
|
-
@use 'sass:map';
|
|
2
|
-
|
|
3
|
-
// There is no standard for breakpoints for the Quebec.ca theme
|
|
4
|
-
// This is the Material breakpoint design by devices
|
|
5
|
-
$device-breakpoints: (
|
|
6
|
-
mobile: (
|
|
7
|
-
max: 599px
|
|
8
|
-
),
|
|
9
|
-
tablet: (
|
|
10
|
-
min: 600px,
|
|
11
|
-
max: 1239px
|
|
12
|
-
),
|
|
13
|
-
laptop: (
|
|
14
|
-
min: 1240px,
|
|
15
|
-
max: 1439px
|
|
16
|
-
),
|
|
17
|
-
desktop: (
|
|
18
|
-
min: 1440px
|
|
19
|
-
)
|
|
20
|
-
);
|
|
21
|
-
|
|
22
|
-
// Source: https://github.com/twbs/bootstrap/blob/main/scss/mixins/_breakpoints.scss
|
|
23
|
-
@function breakpoint-min($name, $breakpoints: $device-breakpoints) {
|
|
24
|
-
$min: map.get($breakpoints, $name, min);
|
|
25
|
-
@return if($min != 0, $min, null);
|
|
26
|
-
}
|
|
27
|
-
|
|
28
|
-
@function breakpoint-max($name, $breakpoints: $device-breakpoints) {
|
|
29
|
-
$max: map.get($breakpoints, $name, max);
|
|
30
|
-
@return if($max and $max > 0, $max, null);
|
|
31
|
-
}
|
|
32
|
-
|
|
33
|
-
// Media of at least the minimum breakpoint width. No query for the smallest breakpoint.
|
|
34
|
-
// Makes the @content apply to the given breakpoint and wider.
|
|
35
|
-
@mixin media-breakpoint-up($name, $breakpoints: $device-breakpoints) {
|
|
36
|
-
$min: breakpoint-min($name, $breakpoints);
|
|
37
|
-
@if $min {
|
|
38
|
-
@media (min-width: $min) {
|
|
39
|
-
@content;
|
|
40
|
-
}
|
|
41
|
-
} @else {
|
|
42
|
-
@content;
|
|
43
|
-
}
|
|
44
|
-
}
|
|
45
|
-
|
|
46
|
-
// Media of at most the maximum breakpoint width. No query for the largest breakpoint.
|
|
47
|
-
// Makes the @content apply to the given breakpoint and narrower.
|
|
48
|
-
@mixin media-breakpoint-down($name, $breakpoints: $device-breakpoints) {
|
|
49
|
-
$max: breakpoint-max($name, $breakpoints);
|
|
50
|
-
@if $max {
|
|
51
|
-
@media (max-width: $max) {
|
|
52
|
-
@content;
|
|
53
|
-
}
|
|
54
|
-
} @else {
|
|
55
|
-
@content;
|
|
56
|
-
}
|
|
57
|
-
}
|
|
1
|
+
@use 'sass:map';
|
|
2
|
+
|
|
3
|
+
// There is no standard for breakpoints for the Quebec.ca theme
|
|
4
|
+
// This is the Material breakpoint design by devices
|
|
5
|
+
$device-breakpoints: (
|
|
6
|
+
mobile: (
|
|
7
|
+
max: 599px
|
|
8
|
+
),
|
|
9
|
+
tablet: (
|
|
10
|
+
min: 600px,
|
|
11
|
+
max: 1239px
|
|
12
|
+
),
|
|
13
|
+
laptop: (
|
|
14
|
+
min: 1240px,
|
|
15
|
+
max: 1439px
|
|
16
|
+
),
|
|
17
|
+
desktop: (
|
|
18
|
+
min: 1440px
|
|
19
|
+
)
|
|
20
|
+
);
|
|
21
|
+
|
|
22
|
+
// Source: https://github.com/twbs/bootstrap/blob/main/scss/mixins/_breakpoints.scss
|
|
23
|
+
@function breakpoint-min($name, $breakpoints: $device-breakpoints) {
|
|
24
|
+
$min: map.get($breakpoints, $name, min);
|
|
25
|
+
@return if($min != 0, $min, null);
|
|
26
|
+
}
|
|
27
|
+
|
|
28
|
+
@function breakpoint-max($name, $breakpoints: $device-breakpoints) {
|
|
29
|
+
$max: map.get($breakpoints, $name, max);
|
|
30
|
+
@return if($max and $max > 0, $max, null);
|
|
31
|
+
}
|
|
32
|
+
|
|
33
|
+
// Media of at least the minimum breakpoint width. No query for the smallest breakpoint.
|
|
34
|
+
// Makes the @content apply to the given breakpoint and wider.
|
|
35
|
+
@mixin media-breakpoint-up($name, $breakpoints: $device-breakpoints) {
|
|
36
|
+
$min: breakpoint-min($name, $breakpoints);
|
|
37
|
+
@if $min {
|
|
38
|
+
@media (min-width: $min) {
|
|
39
|
+
@content;
|
|
40
|
+
}
|
|
41
|
+
} @else {
|
|
42
|
+
@content;
|
|
43
|
+
}
|
|
44
|
+
}
|
|
45
|
+
|
|
46
|
+
// Media of at most the maximum breakpoint width. No query for the largest breakpoint.
|
|
47
|
+
// Makes the @content apply to the given breakpoint and narrower.
|
|
48
|
+
@mixin media-breakpoint-down($name, $breakpoints: $device-breakpoints) {
|
|
49
|
+
$max: breakpoint-max($name, $breakpoints);
|
|
50
|
+
@if $max {
|
|
51
|
+
@media (max-width: $max) {
|
|
52
|
+
@content;
|
|
53
|
+
}
|
|
54
|
+
} @else {
|
|
55
|
+
@content;
|
|
56
|
+
}
|
|
57
|
+
}
|
|
@@ -1,40 +1,40 @@
|
|
|
1
|
-
@use 'sass:map';
|
|
2
|
-
|
|
3
|
-
// https://design.quebec.ca/bases/couleurs#c118192
|
|
4
|
-
$colors: (
|
|
5
|
-
blue: (
|
|
6
|
-
light: #dae6f0,
|
|
7
|
-
light-2: #4a98d9,
|
|
8
|
-
normal: #1472bf,
|
|
9
|
-
normal-piv: #095797,
|
|
10
|
-
medium: #19406c,
|
|
11
|
-
dark: #223654
|
|
12
|
-
),
|
|
13
|
-
grey: (
|
|
14
|
-
light: #f1f1f2,
|
|
15
|
-
light-2: #c5cad2,
|
|
16
|
-
normal: #8893a2,
|
|
17
|
-
medium: #6b778a,
|
|
18
|
-
dark: #4e5662
|
|
19
|
-
),
|
|
20
|
-
red: (
|
|
21
|
-
pink-light: #ffdbd6,
|
|
22
|
-
pink: #e58271,
|
|
23
|
-
normal: #cb381f,
|
|
24
|
-
dark: #692519
|
|
25
|
-
),
|
|
26
|
-
green: (
|
|
27
|
-
light: #d7f0bb,
|
|
28
|
-
normal: #4f813d,
|
|
29
|
-
dark: #2c4024
|
|
30
|
-
),
|
|
31
|
-
yellow: (
|
|
32
|
-
light: #f8e69a,
|
|
33
|
-
normal: #e0ad03,
|
|
34
|
-
dark: #ad781c
|
|
35
|
-
)
|
|
36
|
-
);
|
|
37
|
-
|
|
38
|
-
@function get($color, $name) {
|
|
39
|
-
@return map.get($colors, $color, $name);
|
|
40
|
-
}
|
|
1
|
+
@use 'sass:map';
|
|
2
|
+
|
|
3
|
+
// https://design.quebec.ca/bases/couleurs#c118192
|
|
4
|
+
$colors: (
|
|
5
|
+
blue: (
|
|
6
|
+
light: #dae6f0,
|
|
7
|
+
light-2: #4a98d9,
|
|
8
|
+
normal: #1472bf,
|
|
9
|
+
normal-piv: #095797,
|
|
10
|
+
medium: #19406c,
|
|
11
|
+
dark: #223654
|
|
12
|
+
),
|
|
13
|
+
grey: (
|
|
14
|
+
light: #f1f1f2,
|
|
15
|
+
light-2: #c5cad2,
|
|
16
|
+
normal: #8893a2,
|
|
17
|
+
medium: #6b778a,
|
|
18
|
+
dark: #4e5662
|
|
19
|
+
),
|
|
20
|
+
red: (
|
|
21
|
+
pink-light: #ffdbd6,
|
|
22
|
+
pink: #e58271,
|
|
23
|
+
normal: #cb381f,
|
|
24
|
+
dark: #692519
|
|
25
|
+
),
|
|
26
|
+
green: (
|
|
27
|
+
light: #d7f0bb,
|
|
28
|
+
normal: #4f813d,
|
|
29
|
+
dark: #2c4024
|
|
30
|
+
),
|
|
31
|
+
yellow: (
|
|
32
|
+
light: #f8e69a,
|
|
33
|
+
normal: #e0ad03,
|
|
34
|
+
dark: #ad781c
|
|
35
|
+
)
|
|
36
|
+
);
|
|
37
|
+
|
|
38
|
+
@function get($color, $name) {
|
|
39
|
+
@return map.get($colors, $color, $name);
|
|
40
|
+
}
|
|
@@ -1,50 +1,50 @@
|
|
|
1
|
-
@use 'sass:map';
|
|
2
|
-
@use 'sass:color';
|
|
3
|
-
@use './colors';
|
|
4
|
-
|
|
5
|
-
$blue-light: colors.get(blue, light);
|
|
6
|
-
$blue-light-2: colors.get(blue, light-2);
|
|
7
|
-
$blue-normal: colors.get(blue, normal);
|
|
8
|
-
$blue-normal-piv: colors.get(blue, normal-piv);
|
|
9
|
-
$blue-medium: colors.get(blue, medium);
|
|
10
|
-
$blue-dark: colors.get(blue, dark);
|
|
11
|
-
|
|
12
|
-
// Design Quebec colors
|
|
13
|
-
$primary: $blue-normal-piv;
|
|
14
|
-
$accent: colors.get(red, pink);
|
|
15
|
-
|
|
16
|
-
$dark-primary-text: $blue-dark;
|
|
17
|
-
$light-primary-text: white;
|
|
18
|
-
|
|
19
|
-
$palette: (
|
|
20
|
-
50: $blue-light,
|
|
21
|
-
100: color.adjust($blue-light-2, $lightness: 20%),
|
|
22
|
-
200: color.adjust($blue-light-2, $lightness: 10%),
|
|
23
|
-
300: $blue-light-2,
|
|
24
|
-
400: $blue-normal,
|
|
25
|
-
500: $primary,
|
|
26
|
-
600: color.adjust($primary, $lightness: -10%),
|
|
27
|
-
700: $blue-medium,
|
|
28
|
-
800: color.adjust($blue-medium, $lightness: -10%),
|
|
29
|
-
900: $blue-dark,
|
|
30
|
-
A100: $blue-normal,
|
|
31
|
-
A200: color.adjust($blue-normal, $lightness: 10%),
|
|
32
|
-
A400: colors.get(grey, light-2),
|
|
33
|
-
A700: colors.get(grey, light),
|
|
34
|
-
contrast: (
|
|
35
|
-
50: $dark-primary-text,
|
|
36
|
-
100: $dark-primary-text,
|
|
37
|
-
200: $dark-primary-text,
|
|
38
|
-
300: $dark-primary-text,
|
|
39
|
-
400: $dark-primary-text,
|
|
40
|
-
500: $light-primary-text,
|
|
41
|
-
600: $light-primary-text,
|
|
42
|
-
700: $light-primary-text,
|
|
43
|
-
800: $light-primary-text,
|
|
44
|
-
900: $light-primary-text,
|
|
45
|
-
A100: $dark-primary-text,
|
|
46
|
-
A200: $light-primary-text,
|
|
47
|
-
A400: $light-primary-text,
|
|
48
|
-
A700: $light-primary-text
|
|
49
|
-
)
|
|
50
|
-
);
|
|
1
|
+
@use 'sass:map';
|
|
2
|
+
@use 'sass:color';
|
|
3
|
+
@use './colors';
|
|
4
|
+
|
|
5
|
+
$blue-light: colors.get(blue, light);
|
|
6
|
+
$blue-light-2: colors.get(blue, light-2);
|
|
7
|
+
$blue-normal: colors.get(blue, normal);
|
|
8
|
+
$blue-normal-piv: colors.get(blue, normal-piv);
|
|
9
|
+
$blue-medium: colors.get(blue, medium);
|
|
10
|
+
$blue-dark: colors.get(blue, dark);
|
|
11
|
+
|
|
12
|
+
// Design Quebec colors
|
|
13
|
+
$primary: $blue-normal-piv;
|
|
14
|
+
$accent: colors.get(red, pink);
|
|
15
|
+
|
|
16
|
+
$dark-primary-text: $blue-dark;
|
|
17
|
+
$light-primary-text: white;
|
|
18
|
+
|
|
19
|
+
$palette: (
|
|
20
|
+
50: $blue-light,
|
|
21
|
+
100: color.adjust($blue-light-2, $lightness: 20%),
|
|
22
|
+
200: color.adjust($blue-light-2, $lightness: 10%),
|
|
23
|
+
300: $blue-light-2,
|
|
24
|
+
400: $blue-normal,
|
|
25
|
+
500: $primary,
|
|
26
|
+
600: color.adjust($primary, $lightness: -10%),
|
|
27
|
+
700: $blue-medium,
|
|
28
|
+
800: color.adjust($blue-medium, $lightness: -10%),
|
|
29
|
+
900: $blue-dark,
|
|
30
|
+
A100: $blue-normal,
|
|
31
|
+
A200: color.adjust($blue-normal, $lightness: 10%),
|
|
32
|
+
A400: colors.get(grey, light-2),
|
|
33
|
+
A700: colors.get(grey, light),
|
|
34
|
+
contrast: (
|
|
35
|
+
50: $dark-primary-text,
|
|
36
|
+
100: $dark-primary-text,
|
|
37
|
+
200: $dark-primary-text,
|
|
38
|
+
300: $dark-primary-text,
|
|
39
|
+
400: $dark-primary-text,
|
|
40
|
+
500: $light-primary-text,
|
|
41
|
+
600: $light-primary-text,
|
|
42
|
+
700: $light-primary-text,
|
|
43
|
+
800: $light-primary-text,
|
|
44
|
+
900: $light-primary-text,
|
|
45
|
+
A100: $dark-primary-text,
|
|
46
|
+
A200: $light-primary-text,
|
|
47
|
+
A400: $light-primary-text,
|
|
48
|
+
A700: $light-primary-text
|
|
49
|
+
)
|
|
50
|
+
);
|
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
@forward './typography' as typo-*;
|
|
2
|
-
@forward './typography.utils';
|
|
1
|
+
@forward './typography' as typo-*;
|
|
2
|
+
@forward './typography.utils';
|