@norwegian/core-components 6.16.1 → 6.18.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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@norwegian/core-components",
3
- "version": "6.16.1",
3
+ "version": "6.18.0",
4
4
  "peerDependencies": {
5
5
  "@angular/common": ">=16.0.0 < 19.0.0",
6
6
  "@angular/core": ">=16.0.0 < 19.0.0"
@@ -39,19 +39,19 @@ $colors: (
39
39
  xlight: #d8d8d8,
40
40
  light: #c3c3c3,
41
41
  base: #909090,
42
- dark: #626363,
42
+ dark: #6f6f6f,
43
43
  xdark: #424141
44
44
  )
45
45
  );
46
46
 
47
47
  // Specific color's
48
48
  // Do not overuse, then your on a wrong path and will be hunted down!
49
+ $color-white: #FFFFFF;
49
50
  $color-light: #fff;
50
51
  $color-dark: color(secondary, dark);
51
52
 
52
53
  $color-approve: #238e00;
53
54
  $color-information: $color-light;
54
- $color-warning: #ffc;
55
55
  $color-focus-ring: #3b99fc;
56
56
  $color-background-badge: #E0EBFF;
57
57
  $color-error: #f1d6dc;
@@ -61,6 +61,21 @@ $color-backdrop: rgba(shade(color(secondary), 50%), 0.17);
61
61
  $color-backdrop--strong: rgba(shade(color(secondary), 70%), 0.7);
62
62
 
63
63
  $color-links: #B12A0B;
64
+ //Alert-colors
65
+ $color-error: #CC3A19;
66
+ $color-error-background: #FFF5F3;
67
+ $color-warning: #FC9E12;
68
+ $color-warning-background: #FFF6EC;
69
+ $color-success: #2EB004;
70
+ $color-success-background: #F4FAF2;
71
+ $color-info-background: #EBF4FF;
72
+ $color-neutral: #eaeaea;
73
+ $color-neutral-background: #F9F9F9;
74
+
75
+ // Typography
76
+ $color-typography-link: #b12a0b;
77
+
64
78
  $color-links-border: color(neutral, xlight);
65
79
  $color-links--hover: color(secondary);
66
80
  $color-background: color(neutral, xxxlight);
81
+