@tilde-nlp/ngx-common 6.0.1 → 6.0.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.
- package/package.json +1 -1
- package/styles/tilde-theme.scss +80 -60
package/package.json
CHANGED
package/styles/tilde-theme.scss
CHANGED
|
@@ -1,65 +1,85 @@
|
|
|
1
|
-
|
|
1
|
+
@use "@angular/material" as mat;
|
|
2
|
+
@include mat.all-component-typographies();
|
|
3
|
+
@include mat.core();
|
|
2
4
|
|
|
3
|
-
$tld-accent
|
|
4
|
-
50
|
|
5
|
-
100
|
|
6
|
-
200
|
|
7
|
-
300
|
|
8
|
-
400
|
|
9
|
-
500
|
|
10
|
-
600
|
|
11
|
-
700
|
|
12
|
-
800
|
|
13
|
-
900
|
|
14
|
-
A100
|
|
15
|
-
A200
|
|
16
|
-
A400
|
|
17
|
-
A700
|
|
18
|
-
contrast: (
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
5
|
+
$tld-accent: (
|
|
6
|
+
50: #f5e5e9,
|
|
7
|
+
100: #e6bdc9,
|
|
8
|
+
200: #d691a5,
|
|
9
|
+
300: #c66580,
|
|
10
|
+
400: #b94465,
|
|
11
|
+
500: #ad234a,
|
|
12
|
+
600: #a61f43,
|
|
13
|
+
700: #9c1a3a,
|
|
14
|
+
800: #931532,
|
|
15
|
+
900: #830c22,
|
|
16
|
+
A100: #ffb3bf,
|
|
17
|
+
A200: #ff8093,
|
|
18
|
+
A400: #ff4d68,
|
|
19
|
+
A700: #ff3452,
|
|
20
|
+
contrast: (
|
|
21
|
+
50: #000000,
|
|
22
|
+
100: #000000,
|
|
23
|
+
200: #000000,
|
|
24
|
+
300: #000000,
|
|
25
|
+
400: #ffffff,
|
|
26
|
+
500: #ffffff,
|
|
27
|
+
600: #ffffff,
|
|
28
|
+
700: #ffffff,
|
|
29
|
+
800: #ffffff,
|
|
30
|
+
900: #ffffff,
|
|
31
|
+
A100: #000000,
|
|
32
|
+
A200: #000000,
|
|
33
|
+
A400: #000000,
|
|
34
|
+
A700: #ffffff,
|
|
35
|
+
),
|
|
36
|
+
);
|
|
37
|
+
$tld-primary: (
|
|
38
|
+
50: #ebedee,
|
|
39
|
+
100: #ced1d5,
|
|
40
|
+
200: #adb3b9,
|
|
41
|
+
300: #8c949c,
|
|
42
|
+
400: #737d87,
|
|
43
|
+
500: #5a6672,
|
|
44
|
+
600: #525e6a,
|
|
45
|
+
700: #48535f,
|
|
46
|
+
800: #3f4955,
|
|
47
|
+
900: #2e3842,
|
|
48
|
+
A100: #91c5ff,
|
|
49
|
+
A200: #5eaaff,
|
|
50
|
+
A400: #2b90ff,
|
|
51
|
+
A700: #1282ff,
|
|
52
|
+
contrast: (
|
|
53
|
+
50: #000000,
|
|
54
|
+
100: #000000,
|
|
55
|
+
200: #000000,
|
|
56
|
+
300: #000000,
|
|
57
|
+
900: #ffffff,
|
|
58
|
+
A100: #000000,
|
|
59
|
+
A200: #000000,
|
|
60
|
+
A400: #ffffff,
|
|
61
|
+
A700: #ffffff,
|
|
62
|
+
),
|
|
63
|
+
);
|
|
64
|
+
|
|
65
|
+
$tld-custom-typography: mat.m2-define-typography-config(
|
|
66
|
+
$font-family: var(--tld-font) !important,
|
|
33
67
|
);
|
|
34
68
|
|
|
35
|
-
$tld-
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
800 : #343d49,
|
|
45
|
-
900 : #252d38,
|
|
46
|
-
A100 : #82b5ff,
|
|
47
|
-
A200 : #4f97ff,
|
|
48
|
-
A400 : #1c7aff,
|
|
49
|
-
A700 : #036aff,
|
|
50
|
-
contrast: (50 : #000000,
|
|
51
|
-
100 : #000000,
|
|
52
|
-
200 : #000000,
|
|
53
|
-
300 : #000000,
|
|
54
|
-
400 : #ffffff,
|
|
55
|
-
500 : #ffffff,
|
|
56
|
-
600 : #ffffff,
|
|
57
|
-
700 : #ffffff,
|
|
58
|
-
800 : #ffffff,
|
|
59
|
-
900 : #ffffff,
|
|
60
|
-
A100 : #000000,
|
|
61
|
-
A200 : #000000,
|
|
62
|
-
A400 : #ffffff,
|
|
63
|
-
A700 : #ffffff,
|
|
69
|
+
$tld-accent-pallete: mat.m2-define-palette($tld-accent);
|
|
70
|
+
$tld-primary-pallete: mat.m2-define-palette($tld-primary);
|
|
71
|
+
$tld-translate-theme: mat.m2-define-light-theme(
|
|
72
|
+
(
|
|
73
|
+
color: (
|
|
74
|
+
primary: $tld-primary-pallete,
|
|
75
|
+
accent: $tld-accent-pallete,
|
|
76
|
+
),
|
|
77
|
+
typography: $tld-custom-typography,
|
|
64
78
|
)
|
|
65
79
|
);
|
|
80
|
+
|
|
81
|
+
@include mat.all-component-themes($tld-translate-theme);
|
|
82
|
+
|
|
83
|
+
* {
|
|
84
|
+
letter-spacing: 0 !important;
|
|
85
|
+
}
|