@oneuptime/common 7.0.1987 → 7.0.1989
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/Types/BrandColors.ts
CHANGED
|
@@ -2,7 +2,7 @@ import Color from './Color';
|
|
|
2
2
|
|
|
3
3
|
export const Black: Color = Color.fromString('#000000');
|
|
4
4
|
export const White: Color = Color.fromString('#ffffff');
|
|
5
|
-
export const
|
|
5
|
+
export const Slate: Color = Color.fromString('#564ab1');
|
|
6
6
|
export const Purple: Color = Color.fromString('#6f42c1');
|
|
7
7
|
export const Pink: Color = Color.fromString('#e83e8c');
|
|
8
8
|
export const Red: Color = Color.fromString('#fd625e');
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import Color from './Color';
|
|
2
2
|
export const Black = Color.fromString('#000000');
|
|
3
3
|
export const White = Color.fromString('#ffffff');
|
|
4
|
-
export const
|
|
4
|
+
export const Slate = Color.fromString('#564ab1');
|
|
5
5
|
export const Purple = Color.fromString('#6f42c1');
|
|
6
6
|
export const Pink = Color.fromString('#e83e8c');
|
|
7
7
|
export const Red = Color.fromString('#fd625e');
|