@aotearoan/neon 19.0.2 → 20.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.
Files changed (61) hide show
  1. package/dist/components/feedback/dialog/NeonDialog.vue.cjs.js +1 -1
  2. package/dist/components/feedback/dialog/NeonDialog.vue.cjs.js.map +1 -1
  3. package/dist/components/feedback/dialog/NeonDialog.vue.es.js +6 -5
  4. package/dist/components/feedback/dialog/NeonDialog.vue.es.js.map +1 -1
  5. package/dist/components/feedback/note/NeonNote.vue.cjs.js +1 -1
  6. package/dist/components/feedback/note/NeonNote.vue.cjs.js.map +1 -1
  7. package/dist/components/feedback/note/NeonNote.vue.es.js +1 -0
  8. package/dist/components/feedback/note/NeonNote.vue.es.js.map +1 -1
  9. package/dist/components/presentation/icon/NeonIcon.cjs.js.map +1 -1
  10. package/dist/components/presentation/icon/NeonIcon.es.js.map +1 -1
  11. package/dist/components/user-input/field/NeonField.vue.cjs.js +1 -1
  12. package/dist/components/user-input/field/NeonField.vue.cjs.js.map +1 -1
  13. package/dist/components/user-input/field/NeonField.vue.es.js +1 -1
  14. package/dist/components/user-input/field/NeonField.vue.es.js.map +1 -1
  15. package/dist/components/user-input/file/NeonFile.vue.cjs.js +1 -1
  16. package/dist/components/user-input/file/NeonFile.vue.cjs.js.map +1 -1
  17. package/dist/components/user-input/file/NeonFile.vue.es.js +1 -0
  18. package/dist/components/user-input/file/NeonFile.vue.es.js.map +1 -1
  19. package/dist/src/components/feedback/linear-progress/NeonLinearProgress.d.ts +2 -6
  20. package/dist/src/components/presentation/icon/NeonIcon.d.ts +1 -1
  21. package/dist/src/components/user-input/file/NeonFile.d.ts +8 -24
  22. package/dist/src/components/user-input/filter-list/NeonFilterList.d.ts +4 -12
  23. package/dist/src/components/user-input/input/NeonInput.d.ts +8 -2
  24. package/dist/src/components/user-input/select/NeonSelect.d.ts +66 -0
  25. package/package.json +1 -1
  26. package/src/sass/color-variables.scss +6 -4
  27. package/src/sass/components/_action-menu.scss +1 -1
  28. package/src/sass/components/_alert-container.scss +2 -2
  29. package/src/sass/components/_badge.scss +2 -2
  30. package/src/sass/components/_button.scss +1 -1
  31. package/src/sass/components/_card-list.scss +2 -2
  32. package/src/sass/components/_date-picker.scss +7 -7
  33. package/src/sass/components/_dropdown-menu.scss +2 -2
  34. package/src/sass/components/_expansion-panel.scss +2 -2
  35. package/src/sass/components/_filter-list.scss +6 -6
  36. package/src/sass/components/_icon.scss +1 -1
  37. package/src/sass/components/_input.scss +2 -2
  38. package/src/sass/components/_label.scss +1 -1
  39. package/src/sass/components/_linear-progress.scss +1 -1
  40. package/src/sass/components/_list.scss +2 -2
  41. package/src/sass/components/_menu.scss +1 -1
  42. package/src/sass/components/_note.scss +1 -1
  43. package/src/sass/components/_notification-counter.scss +2 -2
  44. package/src/sass/components/_number.scss +2 -2
  45. package/src/sass/components/_range-slider.scss +1 -1
  46. package/src/sass/components/_search.scss +2 -2
  47. package/src/sass/components/_select.scss +2 -2
  48. package/src/sass/components/_slider.scss +1 -1
  49. package/src/sass/components/_stepper.scss +3 -3
  50. package/src/sass/components/_switch.scss +1 -1
  51. package/src/sass/components/_tabs.scss +5 -5
  52. package/src/sass/components/_toggle.scss +3 -3
  53. package/src/sass/components/_tooltip.scss +7 -7
  54. package/src/sass/components/_tree-menu.scss +6 -6
  55. package/src/sass/global/_base-html.scss +23 -15
  56. package/src/sass/global/_table.scss +4 -4
  57. package/src/sass/global/_typography.scss +2 -1
  58. package/src/sass/includes/_outline.scss +1 -1
  59. package/src/sass/includes/_typography.scss +1 -1
  60. package/src/sass/palette.scss +6 -9
  61. package/src/sass/variables.scss +42 -55
@@ -59,7 +59,7 @@
59
59
  align-items: center;
60
60
  width: fit-content;
61
61
  cursor: pointer;
62
- color: var(--neon-color-text);
62
+ color: var(--neon-color-text-secondary);
63
63
 
64
64
  &:focus {
65
65
  outline: none;
@@ -41,7 +41,7 @@
41
41
  display: flex;
42
42
  flex-direction: row;
43
43
  align-items: center;
44
- font-weight: var(--neon-font-weight-semi-bold);
44
+ font-weight: var(--neon-font-weight-medium);
45
45
  }
46
46
 
47
47
  .neon-tabs__menu-item {
@@ -66,14 +66,14 @@
66
66
  outline: none;
67
67
  height: 100%;
68
68
  align-items: center;
69
- color: var(--neon-color-text-strong);
69
+ color: var(--neon-color-text-primary);
70
70
 
71
71
  .neon-svg--stroke {
72
- stroke: var(--neon-color-text-strong);
72
+ stroke: var(--neon-color-text-primary);
73
73
  }
74
74
 
75
75
  .neon-svg--fill {
76
- fill: var(--neon-color-text-strong);
76
+ fill: var(--neon-color-text-primary);
77
77
  }
78
78
 
79
79
  &:before {
@@ -178,7 +178,7 @@
178
178
  width: 100%;
179
179
  padding-top: calc(3 * var(--neon-base-space));
180
180
  padding-bottom: calc(2 * var(--neon-base-space));
181
- font-weight: var(--neon-font-weight-semi-bold);
181
+ font-weight: var(--neon-font-weight-medium);
182
182
  font-size: var(--neon-font-size-xs);
183
183
  line-height: 1.26;
184
184
 
@@ -42,8 +42,8 @@
42
42
  $toggle-color: var(--neon-color-#{$color}) !default;
43
43
 
44
44
  @if ($color == high-contrast) {
45
- $toggle-rgb: var(--neon-rgb-text);
46
- $toggle-color: var(--neon-color-text);
45
+ $toggle-rgb: var(--neon-rgb-text-secondary);
46
+ $toggle-color: var(--neon-color-text-secondary);
47
47
  }
48
48
 
49
49
  @include svg.color-with-svg(rgba($toggle-rgb, var(--neon-opacity-toggle-color)));
@@ -103,7 +103,7 @@
103
103
  }
104
104
 
105
105
  &.neon-toggle__label--checked {
106
- color: var(--neon-color-text);
106
+ color: var(--neon-color-text-secondary);
107
107
 
108
108
  .neon-toggle__radio-button {
109
109
  border: var(--neon-border-width-radio-button) var(--neon-border-style) var(--neon-color-#{$color});
@@ -65,8 +65,8 @@
65
65
  font-size: var(--neon-font-size-xs);
66
66
  text-transform: none;
67
67
  line-height: var(--neon-line-height-ratio);
68
- font-weight: var(--neon-font-weight-semi-bold);
69
- background: var(--neon-color-text);
68
+ font-weight: var(--neon-font-weight-medium);
69
+ background: var(--neon-color-text-secondary);
70
70
  color: var(--neon-color-inverse);
71
71
  border: var(--neon-border-width-tooltip) solid var(--neon-border-color);
72
72
  box-shadow: var(--neon-box-shadow-tooltip);
@@ -97,7 +97,7 @@
97
97
  .neon-tooltip__arrow {
98
98
  top: calc(100% + var(--neon-space-4));
99
99
  margin-top: -6rem;
100
- border-top: 6rem solid var(--neon-color-text);
100
+ border-top: 6rem solid var(--neon-color-text-secondary);
101
101
  z-index: var(--neon-z-index-above-2);
102
102
  }
103
103
  }
@@ -110,7 +110,7 @@
110
110
  .neon-tooltip__arrow {
111
111
  bottom: calc(100% + var(--neon-space-4));
112
112
  margin-bottom: -6rem;
113
- border-bottom: 6rem solid var(--neon-color-text);
113
+ border-bottom: 6rem solid var(--neon-color-text-secondary);
114
114
  z-index: var(--neon-z-index-above-2);
115
115
  }
116
116
  }
@@ -144,7 +144,7 @@
144
144
  .neon-tooltip__arrow {
145
145
  left: calc(100% + var(--neon-space-4));
146
146
  margin-left: -6rem;
147
- border-left: 6rem solid var(--neon-color-text);
147
+ border-left: 6rem solid var(--neon-color-text-secondary);
148
148
  z-index: var(--neon-z-index-above-2);
149
149
  }
150
150
  }
@@ -161,7 +161,7 @@
161
161
  .neon-tooltip__arrow {
162
162
  right: calc(100% + var(--neon-space-4));
163
163
  margin-right: -6rem;
164
- border-right: 6rem solid var(--neon-color-text);
164
+ border-right: 6rem solid var(--neon-color-text-secondary);
165
165
  z-index: var(--neon-z-index-above-2);
166
166
  }
167
167
  }
@@ -199,7 +199,7 @@
199
199
  line-height: var(--neon-line-height-ratio);
200
200
  font-weight: var(--neon-font-weight-normal);
201
201
  background: var(--neon-color-inverse);
202
- color: var(--neon-color-text);
202
+ color: var(--neon-color-text-secondary);
203
203
  }
204
204
 
205
205
  &__content-wrapper {
@@ -24,7 +24,7 @@
24
24
  &,
25
25
  &:hover,
26
26
  &:active {
27
- color: var(--neon-color-text);
27
+ color: var(--neon-color-text-secondary);
28
28
  }
29
29
 
30
30
  &.neon-link--exact-active {
@@ -53,15 +53,15 @@
53
53
 
54
54
  .neon-tree-menu__section-link {
55
55
  font-size: var(--neon-font-size-l);
56
- font-weight: var(--neon-font-weight-bold);
56
+ font-weight: var(--neon-font-weight-semi-bold);
57
57
 
58
58
  &:visited {
59
- color: var(--neon-color-text);
59
+ color: var(--neon-color-text-secondary);
60
60
  }
61
61
  }
62
62
 
63
63
  .neon-tree-menu__section {
64
- color: var(--neon-color-text);
64
+ color: var(--neon-color-text-secondary);
65
65
 
66
66
  & > .neon-tree-menu__link {
67
67
  font-size: var(--neon-font-size-m);
@@ -90,7 +90,7 @@
90
90
  font-weight: var(--neon-font-weight-normal);
91
91
  font-size: var(--neon-font-size-s);
92
92
  margin-bottom: var(--neon-space-2);
93
- color: var(--neon-color-text);
93
+ color: var(--neon-color-text-secondary);
94
94
  }
95
95
 
96
96
  .neon-tree-menu__anchor {
@@ -98,7 +98,7 @@
98
98
  margin-bottom: var(--neon-space-2);
99
99
  padding-left: var(--neon-space-16);
100
100
  font-size: var(--neon-font-size-s);
101
- color: var(--neon-color-text);
101
+ color: var(--neon-color-text-secondary);
102
102
  }
103
103
  }
104
104
 
@@ -9,7 +9,7 @@
9
9
  body {
10
10
  text-rendering: optimizeLegibility;
11
11
  background-color: var(--neon-background-color);
12
- color: var(--neon-color-text);
12
+ color: var(--neon-color-text-secondary);
13
13
  }
14
14
 
15
15
 
@@ -106,7 +106,7 @@
106
106
  }
107
107
 
108
108
  pre.neon--preformatted {
109
- color: var(--neon-color-text-light);
109
+ color: var(--neon-color-text-secondary-dark);
110
110
  background-color: var(--neon-background-color-pre);
111
111
 
112
112
  &:not(.prism-editor__editor) {
@@ -155,8 +155,16 @@
155
155
  }
156
156
  }
157
157
 
158
- .neon-color-text {
159
- color: var(--neon-color-text);
158
+ .neon-color-text-primary {
159
+ color: var(--neon-color-text-primary);
160
+ }
161
+
162
+ .neon-color-text-secondary {
163
+ color: var(--neon-color-text-secondary);
164
+ }
165
+
166
+ .neon-color-text-tertiary {
167
+ color: var(--neon-color-text-tertiary);
160
168
  }
161
169
 
162
170
  .neon-color-inverse {
@@ -164,46 +172,46 @@
164
172
  }
165
173
 
166
174
  .neon-dark-text {
167
- color: var(--neon-color-text-dark);
175
+ color: var(--neon-color-text-secondary-light);
168
176
  }
169
177
 
170
178
  .neon-light-text {
171
- color: var(--neon-color-text-light);
179
+ color: var(--neon-color-text-secondary-dark);
172
180
  }
173
181
 
174
- .neon-color-text-low-contrast {
182
+ .neon-color-low-contrast {
175
183
  color: var(--neon-color-low-contrast);
176
184
  }
177
185
 
178
- .neon-color-text-neutral {
186
+ .neon-color-neutral {
179
187
  color: var(--neon-color-neutral);
180
188
  }
181
189
 
182
- .neon-color-text-high-contrast {
190
+ .neon-color-high-contrast {
183
191
  color: var(--neon-color-high-contrast);
184
192
  }
185
193
 
186
- .neon-color-text-brand {
194
+ .neon-color-brand {
187
195
  color: var(--neon-color-brand);
188
196
  }
189
197
 
190
- .neon-color-text-primary {
198
+ .neon-color-primary {
191
199
  color: var(--neon-color-primary);
192
200
  }
193
201
 
194
- .neon-color-text-info {
202
+ .neon-color-info {
195
203
  color: var(--neon-color-info);
196
204
  }
197
205
 
198
- .neon-color-text-success {
206
+ .neon-color-success {
199
207
  color: var(--neon-color-success);
200
208
  }
201
209
 
202
- .neon-color-text-warn {
210
+ .neon-color-warn {
203
211
  color: var(--neon-color-warn);
204
212
  }
205
213
 
206
- .neon-color-text-error {
214
+ .neon-color-error {
207
215
  color: var(--neon-color-error);
208
216
  }
209
217
  }
@@ -2,7 +2,7 @@
2
2
  table {
3
3
  border-spacing: 0;
4
4
  border-collapse: collapse;
5
- border-bottom: var(--neon-border-width-table) var(--neon-border-style) var(--neon-label-color);
5
+ border-bottom: var(--neon-border-width-table) var(--neon-border-style) var(--neon-color-label);
6
6
 
7
7
  thead {
8
8
  tr {
@@ -10,13 +10,13 @@
10
10
  height: var(--neon-size-m);
11
11
  vertical-align: bottom;
12
12
  font-size: var(--neon-font-size-s);
13
- font-weight: var(--neon-font-weight-semi-bold);
13
+ font-weight: var(--neon-font-weight-medium);
14
14
  text-transform: uppercase;
15
15
  text-align: left;
16
16
  padding: 0 var(--neon-space-24) 0 0;
17
17
  letter-spacing: var(--neon-letter-spacing-m);
18
- border-bottom: var(--neon-border-width-table) var(--neon-border-style) var(--neon-label-color);
19
- color: var(--neon-label-color);
18
+ border-bottom: var(--neon-border-width-table) var(--neon-border-style) var(--neon-color-label);
19
+ color: var(--neon-color-label);
20
20
 
21
21
  &.neon--number {
22
22
  text-align: right;
@@ -18,6 +18,7 @@
18
18
 
19
19
  em {
20
20
  font-weight: var(--neon-font-weight-em);
21
+ margin-right: 1rem; // to account for the slanting text
21
22
  }
22
23
 
23
24
  strong {
@@ -140,6 +141,6 @@
140
141
  h6,
141
142
  .neon-h6,
142
143
  .neon-color-heading {
143
- color: var(--neon-color-heading);
144
+ color: var(--neon-color-text-primary);
144
145
  }
145
146
  }
@@ -9,7 +9,7 @@
9
9
 
10
10
  &:after {
11
11
  content: '';
12
- font-weight: bold;
12
+ font-weight: var(--neon-font-weight-semi-bold);
13
13
  position: absolute;
14
14
  left: 0;
15
15
  bottom: var(--neon-border-bottom-offset-link);
@@ -48,7 +48,7 @@
48
48
  }
49
49
 
50
50
  @mixin label {
51
- color: var(--neon-label-color);
51
+ color: var(--neon-color-label);
52
52
  font-size: var(--neon-font-size-xs);
53
53
  font-weight: var(--neon-font-weight-semi-bold);
54
54
  letter-spacing: var(--neon-letter-spacing-s);
@@ -3,15 +3,12 @@
3
3
  This is why there are 2 color definitions the raw 'rgb' definition and the actual 'color' one
4
4
  */
5
5
  .neon {
6
- // TODO: rename to primary & secondary text
7
- --neon-rgb-text-dark: 48, 48, 48;
8
- --neon-rgb-text-strong-dark: 36, 36, 36;
9
- --neon-rgb-text-light: 221, 221, 221;
10
- --neon-rgb-text-strong-light: 248, 248, 248;
11
- // tertiary text values
12
- --neon-rgb-text-tertiary-dark: 114, 114, 114;
13
- --neon-rgb-text-tertiary-light: 144, 144, 144;
14
-
6
+ --neon-rgb-text-primary-light: 20, 20, 20;
7
+ --neon-rgb-text-secondary-light: 51, 51, 51;
8
+ --neon-rgb-text-tertiary-light: 114, 114, 114;
9
+ --neon-rgb-text-primary-dark: 248, 248, 248;
10
+ --neon-rgb-text-secondary-dark: 221, 221, 221;
11
+ --neon-rgb-text-tertiary-dark: 166, 166, 166;
15
12
  --neon-rgb-disabled-background-dark: 55, 55, 55;
16
13
  --neon-rgb-disabled-border-dark: 65, 65, 65;
17
14
  --neon-rgb-disabled-text-dark: 80, 80, 80;
@@ -115,27 +115,28 @@
115
115
  /* AKA branding font size, used for landing page & banners etc... */
116
116
  --neon-h0-size: calc(var(--neon-font-size-xxl) * var(--neon-typography-scale) * var(--neon-typography-scale) * var(--neon-typography-scale) * var(--neon-typography-scale) * var(--neon-typography-scale));
117
117
 
118
- --neon-font-weight-lighter: 200;
118
+ --neon-font-weight-extra-light: 200;
119
119
  --neon-font-weight-normal: 400;
120
- --neon-font-weight-semi-bold: 500;
121
- --neon-font-weight-bold: 600;
120
+ --neon-font-weight-medium: 500;
121
+ --neon-font-weight-semi-bold: 600;
122
+ --neon-font-weight-bold: 700;
122
123
 
123
124
  --neon-h6-weight: var(--neon-font-weight-normal);
124
- --neon-h5-weight: var(--neon-font-weight-normal);
125
- --neon-h4-weight: var(--neon-font-weight-normal);
125
+ --neon-h5-weight: var(--neon-font-weight-medium);
126
+ --neon-h4-weight: var(--neon-font-weight-medium);
126
127
  --neon-h3-weight: var(--neon-font-weight-semi-bold);
127
128
  --neon-h2-weight: var(--neon-font-weight-semi-bold);
128
129
  --neon-h1-weight: var(--neon-font-weight-bold);
129
130
  --neon-h0-weight: var(--neon-font-weight-bold);
130
131
 
131
- --neon-font-weight-em: var(--neon-font-weight-lighter);
132
- --neon-font-weight-strong: var(--neon-font-weight-bold);
132
+ --neon-font-weight-em: var(--neon-font-weight-extra-light);
133
+ --neon-font-weight-strong: var(--neon-font-weight-medium);
133
134
 
134
135
  --neon-letter-spacing-headings: 0;
135
136
 
136
- --neon-line-height-headings-ratio: 1.2;
137
+ --neon-line-height-headings-ratio: 1.25;
137
138
  --neon-line-height-ratio: 1.4;
138
- --neon-line-height-one: 1.125; // hack for line-height: 1 to prevent cropping of content below the baseline e.g. 'g'
139
+ --neon-line-height-one: 1.25; // hack for line-height: 1 to prevent cropping of content below the baseline e.g. 'g'
139
140
 
140
141
  --neon-system-font-stack: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif,
141
142
  'Apple Color Emoji', 'Segoe UI Emoji', 'Segoe UI Symbol';
@@ -218,7 +219,7 @@
218
219
  --neon-opacity-chip: 0.23;
219
220
 
220
221
  /* toggle chips */
221
- --neon-font-weight-toggle-chip: var(--neon-font-weight-bold);
222
+ --neon-font-weight-toggle-chip: var(--neon-font-weight-semi-bold);
222
223
  --neon-border-width-toggle-chip: 1rem;
223
224
  --neon-border-radius-toggle-chip: 2rem;
224
225
  --neon-opacity-toggle-chip-hover: 0.125;
@@ -256,8 +257,8 @@
256
257
  --neon-font-size-note-text: var(--neon-font-size-s);
257
258
  --neon-font-size-note-text-mobile: var(--neon-font-size-m);
258
259
 
259
- --neon-font-weight-note-title: var(--neon-font-weight-bold);
260
- --neon-font-weight-note-text: var(--neon-font-weight-semi-bold);
260
+ --neon-font-weight-note-title: var(--neon-font-weight-semi-bold);
261
+ --neon-font-weight-note-text: var(--neon-font-weight-medium);
261
262
 
262
263
  --neon-max-width-note: 100%;
263
264
 
@@ -323,21 +324,14 @@
323
324
  --neon-border-card: var(--neon-border);
324
325
  --neon-background-color: var(--neon-color-neutral-d5);
325
326
 
326
- --neon-rgb-text: var(--neon-rgb-text-light);
327
- --neon-color-text: var(--neon-color-text-light);
328
- --neon-rgb-text-strong: var(--neon-rgb-text-strong-light);
329
- --neon-color-text-strong: var(--neon-color-text-strong-light);
330
-
331
- // alias to new variables
332
- --neon-rgb-text-primary: var(--neon-rgb-text-strong);
333
- --neon-color-text-primary: var(--neon-color-text-strong);
334
- --neon-rgb-text-secondary: var(--neon-rgb-text);
335
- --neon-color-text-secondary: var(--neon-color-text);
336
- --neon-rgb-text-tertiary: var(--neon-rgb-text-tertiary-light);
337
- --neon-color-text-tertiary: rgb(var(--neon-rgb-text-tertiary));
338
-
339
- --neon-rgb-inverse: var(--neon-rgb-text-strong-dark);
340
- --neon-color-inverse: var(--neon-color-text-strong-dark);
327
+ --neon-rgb-text-primary: var(--neon-rgb-text-primary-dark);
328
+ --neon-color-text-primary: var(--neon-color-text-primary-dark);
329
+ --neon-rgb-text-secondary: var(--neon-rgb-text-secondary-dark);
330
+ --neon-color-text-secondary: var(--neon-color-text-secondary-dark);
331
+ --neon-rgb-text-tertiary: var(--neon-rgb-text-tertiary-dark);
332
+ --neon-color-text-tertiary: var(--neon-color-text-tertiary-dark);
333
+ --neon-rgb-inverse: var(--neon-rgb-text-primary-light);
334
+ --neon-color-inverse: var(--neon-color-text-primary-light);
341
335
 
342
336
  --neon-rgb-low-contrast: var(--neon-rgb-low-contrast-l1);
343
337
  --neon-rgb-neutral: var(--neon-rgb-neutral-l1);
@@ -375,7 +369,7 @@
375
369
  --neon-border-hr: 1rem var(--neon-border-style) var(--neon-border-color);
376
370
  --neon-color-hr: var(--neon-border-color);
377
371
 
378
- --neon-label-color: var(--neon-color-neutral-l1);
372
+ --neon-color-label: var(--neon-color-text-secondary);
379
373
 
380
374
  --neon-rgb-disabled-text: var(--neon-rgb-disabled-text-dark);
381
375
  --neon-rgb-disabled-border: var(--neon-rgb-disabled-border-dark);
@@ -393,11 +387,11 @@
393
387
 
394
388
  /* solid buttons */
395
389
  --neon-color-solid-button: var(--neon-color-inverse);
396
- --neon-color-solid-button-inverse: var(--neon-color-text-strong);
390
+ --neon-color-solid-button-inverse: var(--neon-color-text-primary);
397
391
 
398
- --neon-background-solid-button-light-high-contrast: var(--neon-color-text-strong);
399
- --neon-background-rgb-solid-button-dark-high-contrast: var(--neon-rgb-text-strong);
400
- --neon-background-solid-button-dark-high-contrast: var(--neon-color-text-strong);
392
+ --neon-background-solid-button-light-high-contrast: var(--neon-color-text-primary);
393
+ --neon-background-rgb-solid-button-dark-high-contrast: var(--neon-rgb-text-primary);
394
+ --neon-background-solid-button-dark-high-contrast: var(--neon-color-text-primary);
401
395
 
402
396
  --neon-background-solid-button-light-inverse: var(--neon-color-inverse);
403
397
  --neon-background-rgb-solid-button-dark-inverse: var(--neon-rgb-inverse);
@@ -473,7 +467,7 @@
473
467
 
474
468
  /* note */
475
469
  --neon-background-color-note: rgba(var(--neon-rgb-high-contrast-d3), 0.5);
476
- --neon-color-note: var(--neon-color-text);
470
+ --neon-color-note: var(--neon-color-text-secondary);
477
471
 
478
472
  /* link */
479
473
  --neon-color-link: var(--neon-color-primary-l1);
@@ -629,21 +623,14 @@
629
623
  --neon-border-card: var(--neon-border);
630
624
  --neon-background-color: var(--neon-color-high-contrast-l4);
631
625
 
632
- --neon-rgb-text: var(--neon-rgb-text-dark);
633
- --neon-color-text: var(--neon-color-text-dark);
634
- --neon-rgb-text-strong: var(--neon-rgb-text-strong-dark);
635
- --neon-color-text-strong: var(--neon-color-text-strong-dark);
636
-
637
- // alias to new variables
638
- --neon-rgb-text-primary: var(--neon-rgb-text-strong);
639
- --neon-color-text-primary: var(--neon-color-text-strong);
640
- --neon-rgb-text-secondary: var(--neon-rgb-text);
641
- --neon-color-text-secondary: var(--neon-color-text);
642
- --neon-rgb-text-tertiary: var(--neon-rgb-text-tertiary-dark);
643
- --neon-color-text-tertiary: rgb(var(--neon-rgb-text-tertiary));
644
-
645
- --neon-rgb-inverse: var(--neon-rgb-text-strong-light);
646
- --neon-color-inverse: var(--neon-color-text-strong-light);
626
+ --neon-rgb-text-primary: var(--neon-rgb-text-primary-light);
627
+ --neon-color-text-primary: var(--neon-color-text-primary-light);
628
+ --neon-rgb-text-secondary: var(--neon-rgb-text-secondary-light);
629
+ --neon-color-text-secondary: var(--neon-color-text-secondary-light);
630
+ --neon-rgb-text-tertiary: var(--neon-rgb-text-tertiary-light);
631
+ --neon-color-text-tertiary: var(--neon-color-text-tertiary-light);
632
+ --neon-rgb-inverse: var(--neon-rgb-text-primary-dark);
633
+ --neon-color-inverse: var(--neon-color-text-primary-dark);
647
634
 
648
635
  --neon-rgb-low-contrast: var(--neon-rgb-low-contrast-d1);
649
636
  --neon-rgb-neutral: var(--neon-rgb-neutral-d1);
@@ -681,7 +668,7 @@
681
668
  --neon-border-hr: 1rem var(--neon-border-style) var(--neon-border-color);
682
669
  --neon-color-hr: var(--neon-border-color);
683
670
 
684
- --neon-label-color: var(--neon-color-neutral-d1);
671
+ --neon-color-label: var(--neon-color-text-secondary);
685
672
 
686
673
  --neon-rgb-disabled-text: var(--neon-rgb-disabled-text-light);
687
674
  --neon-rgb-disabled-border: var(--neon-rgb-disabled-border-light);
@@ -699,11 +686,11 @@
699
686
 
700
687
  /* solid buttons */
701
688
  --neon-color-solid-button: var(--neon-color-inverse);
702
- --neon-color-solid-button-inverse: var(--neon-color-text-strong);
689
+ --neon-color-solid-button-inverse: var(--neon-color-text-primary);
703
690
 
704
- --neon-background-solid-button-light-high-contrast: var(--neon-color-text);
705
- --neon-background-rgb-solid-button-dark-high-contrast: var(--neon-rgb-text);
706
- --neon-background-solid-button-dark-high-contrast: var(--neon-color-text);
691
+ --neon-background-solid-button-light-high-contrast: var(--neon-color-text-secondary);
692
+ --neon-background-rgb-solid-button-dark-high-contrast: var(--neon-rgb-text-secondary);
693
+ --neon-background-solid-button-dark-high-contrast: var(--neon-color-text-secondary);
707
694
 
708
695
  --neon-background-solid-button-light-inverse: var(--neon-color-inverse);
709
696
  --neon-background-rgb-solid-button-dark-inverse: var(--neon-rgb-inverse);
@@ -779,7 +766,7 @@
779
766
 
780
767
  /* note */
781
768
  --neon-background-color-note: rgba(var(--neon-rgb-high-contrast-l3), 0.5);
782
- --neon-color-note: var(--neon-color-text);
769
+ --neon-color-note: var(--neon-color-text-secondary);
783
770
 
784
771
  /* link */
785
772
  --neon-color-link: var(--neon-color-primary-d1);
@@ -822,7 +809,7 @@
822
809
 
823
810
  /* drop zone */
824
811
  --neon-rgb-drop-zone-background: var(--neon-rgb-high-contrast-l4);
825
- --neon-rgb-drop-zone: var(--neon-rgb-text);
812
+ --neon-rgb-drop-zone: var(--neon-rgb-text-secondary);
826
813
 
827
814
  /* alerts */
828
815
  --neon-box-shadow-alert: calc(0.5 * var(--neon-base-space)) calc(0.5 * var(--neon-base-space)) calc(2 * var(--neon-base-space)) rgba(var(--neon-rgb-neutral-d1), 0.5);