@byuhbll/components 4.2.0 → 4.3.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": "@byuhbll/components",
3
- "version": "4.2.0",
3
+ "version": "4.3.0",
4
4
  "peerDependencies": {
5
5
  "@angular/common": "^18.0.0",
6
6
  "@angular/core": "^18.0.0"
@@ -1,3 +1,46 @@
1
+ // Define color variables
2
+ // Blues
3
+ $color-blue-500: #00245d;
4
+ $color-blue-400: #003995;
5
+ $color-blue-300: #0047ba;
6
+ $color-blue-200: #336cc8;
7
+ $color-blue-150: #ccdaf1;
8
+ $color-blue-100: #e5edf8;
9
+ // Grays
10
+ $color-gray-500: #141414;
11
+ $color-gray-400: #767676;
12
+ $color-gray-300: #8f8f8f;
13
+ $color-gray-200: #d0d0d0;
14
+ $color-gray-100: #e7e7e7;
15
+ $color-gray-50: #f9f9f9;
16
+ // Greens
17
+ $color-green-500: #1d562e;
18
+ $color-green-400: #359351;
19
+ $color-green-300: #3ba35a;
20
+ $color-green-200: #9dd1ac;
21
+ $color-green-100: #ebf6ee;
22
+ // Teals
23
+ $color-teal-500: #26485f;
24
+ $color-teal-400: #3e7295;
25
+ $color-teal-300: #457fa6;
26
+ $color-teal-200: #a2bfd3;
27
+ $color-teal-100: #ecf2f6;
28
+ // Reds
29
+ $color-red-500: #702121;
30
+ $color-red-400: #b33837;
31
+ $color-red-300: #c73e3d;
32
+ $color-red-200: #e39e9e;
33
+ $color-red-100: #f9ecec;
34
+ // Yellows
35
+ $color-yellow-500: #635f04;
36
+ $color-yellow-400: #928c30;
37
+ $color-yellow-300: #d1c844;
38
+ $color-yellow-200: #e8e3a1;
39
+ $color-yellow-100: #faf9ec;
40
+ // Purple
41
+ $color-purple: #b967c7;
42
+
43
+ // TODO: Refactor these to use the above colors
1
44
  $navy-blue: #002e5d;
2
45
  $royal-blue: #0047ba;
3
46
  $royal-blue--hover: #1967e5;