@unitedstatespowersquadrons/components 1.2.4-pre.1 → 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/Colors.tsx +6 -0
- package/Styles.tsx +2 -0
- package/package.json +1 -1
package/Colors.tsx
CHANGED
|
@@ -14,6 +14,11 @@ const hoverColors = {
|
|
|
14
14
|
red: "#660000",
|
|
15
15
|
};
|
|
16
16
|
|
|
17
|
+
const insigniaColors = {
|
|
18
|
+
gold: "#FFBF3F",
|
|
19
|
+
silver: "#AAAAAA",
|
|
20
|
+
};
|
|
21
|
+
|
|
17
22
|
const shades = {
|
|
18
23
|
_0: "black",
|
|
19
24
|
_1: "#111111",
|
|
@@ -114,6 +119,7 @@ const specificColors = {
|
|
|
114
119
|
|
|
115
120
|
const Colors = {
|
|
116
121
|
...baseColors,
|
|
122
|
+
...insigniaColors,
|
|
117
123
|
hover: { ...hoverColors },
|
|
118
124
|
shade,
|
|
119
125
|
shades,
|
package/Styles.tsx
CHANGED
|
@@ -4,11 +4,13 @@ const colorStyles = {
|
|
|
4
4
|
black: { color: Colors.black },
|
|
5
5
|
blue: { color: Colors.blue },
|
|
6
6
|
darkGray: { color: Colors.darkGray },
|
|
7
|
+
gold: { color: Colors.gold },
|
|
7
8
|
gray: { color: Colors.gray },
|
|
8
9
|
green: { color: Colors.green },
|
|
9
10
|
orange: { color: Colors.orange },
|
|
10
11
|
purple: { color: Colors.purple },
|
|
11
12
|
red: { color: Colors.red },
|
|
13
|
+
silver: { color: Colors.silver },
|
|
12
14
|
};
|
|
13
15
|
|
|
14
16
|
const hoverColorStyles = {
|