novo-elements 6.1.1 → 6.2.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.
@@ -98,13 +98,13 @@
98
98
  background-color: var(--background-body, $color-silver);
99
99
  }
100
100
  .txc-main {
101
- color: var(--text-main, $color-dark);
102
- }
103
- .txc-bright {
104
- color: var(--text-bright, $color-black);
101
+ color: var(--text-main, $color-charcoal);
105
102
  }
106
103
  .txc-muted {
107
- color: var(--text-muted, $color-slate);
104
+ color: var(--text-muted, $color-neutral);
105
+ }
106
+ .txc-disabled {
107
+ color: var(--text-disabled, $color-slate);
108
108
  }
109
109
 
110
110
  @include theme-colors() using ($name, $color, $contrast, $tint, $shade, $pale) {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "novo-elements",
3
- "version": "6.1.1",
3
+ "version": "6.2.0",
4
4
  "sideEffects": true,
5
5
  "peerDependencies": {
6
6
  "@angular/animations": ">=10",
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "schematics",
3
- "version": "6.1.1",
3
+ "version": "6.2.0",
4
4
  "description": "A novo-element schematics",
5
5
  "scripts": {
6
6
  "build": "tsc -p tsconfig.json",
@@ -7,8 +7,8 @@
7
7
  --selection: #{$color-ocean}; // #1c76c5;
8
8
  --text-selection: #{$color-white};
9
9
  --text-main: #{$color-light};
10
- --text-bright: #{$color-white};
11
- --text-muted: #a9b1ba;
10
+ --text-muted: #{$color-stone};
11
+ --text-disabled: #a9b1ba;
12
12
  --links: #{$color-sky-blue}; // #41adff;
13
13
  --focus: #0096bfab;
14
14
  --border: #{$color-onyx};
@@ -6,19 +6,18 @@
6
6
  --background-bright: #{$color-white}; //fff
7
7
  --background-dark: #{$color-silver}; //e2e2e2
8
8
  --background-muted: #{$color-sand}; //f4f4f4
9
+ --text-main: #{$color-charcoal}; //#363636;
10
+ --text-muted: #{$color-neutral}; //#70777f;
11
+ --text-disabled: #{$color-slate}; //#70777f;
9
12
  --selection: #{$color-ocean}; //#9e9e9e;
10
13
  --text-selection: #{$color-white};
11
- --text-main: #{$color-dark}; //#363636;
12
- --text-bright: #{$color-black};
13
- --text-muted: #{$color-slate}; //#70777f;
14
- // do we need disabled.
15
14
  --links: #{$color-ocean};
16
15
  --focus: #{$color-ocean};
17
16
  --border: #{$color-light}; //#dbdbdb;
18
17
  --code: #{$color-job};
19
18
  --animation-duration: 0.1s;
20
19
  --button-background: #{$light};
21
- --button-text: #{$dark};
20
+ --button-text: #{$color-charcoal};
22
21
  --button-hover: #aaa;
23
22
  --scrollbar-thumb: #{$color-stone};
24
23
  --scrollbar-thumb-hover: #{$color-slate};
@@ -56,16 +56,6 @@ p {
56
56
  padding: 0.25rem 0 0.55rem;
57
57
  }
58
58
 
59
- // h1,
60
- // h2,
61
- // h3,
62
- // h4,
63
- // h5,
64
- // h6,
65
- // strong {
66
- // color: var(--text-bright);
67
- // }
68
-
69
59
  q::before {
70
60
  content: none;
71
61
  }