@new-ui/colors 1.2.4 → 1.2.5

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 CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@new-ui/colors",
3
- "version": "1.2.4",
3
+ "version": "1.2.5",
4
4
  "description": "Colors are now one less thing to worry about.",
5
5
  "source": "src/index.scss",
6
6
  "main": "dist/index.css",
@@ -0,0 +1,16 @@
1
+ /* Links */
2
+ .nu-c-link {
3
+ color: var(--blue5);
4
+
5
+ &:hover {
6
+ color: var(--blue6);
7
+ }
8
+ }
9
+
10
+ .nu-c-link--subtle {
11
+ color: var(--grey8);
12
+
13
+ &:hover {
14
+ color: var(--indigo5);
15
+ }
16
+ }
@@ -284,20 +284,6 @@
284
284
  .nu-u-icon--disabled {color: var(--grey4);}
285
285
  .nu-u-icon--on-color {color: var(--white);}
286
286
 
287
- /* Links */
288
- .nu-u-link {
289
- color: var(--blue5);
290
- &:hover {
291
- color: var(--blue6);
292
- }
293
- }
294
- .nu-u-link--subtle {
295
- color: var(--grey8);
296
- &:hover {
297
- color: var(--indigo5);
298
- }
299
- }
300
-
301
287
  /* Support */
302
288
  .nu-u-support--error {color: var(--red5);}
303
289
  .nu-u-support--warning {color: var(--yellow5);}
package/src/index.scss CHANGED
@@ -1,4 +1,5 @@
1
1
  @import 'theme-light';
2
2
  @import 'theme-light--warm';
3
3
  @import 'theme-light--cold';
4
- @import 'utilities';
4
+ @import 'utilities';
5
+ @import 'components';