-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
47c28d4
commit 77f241e
Showing
4 changed files
with
47 additions
and
45 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,55 +1,55 @@ | ||
const light = { | ||
red: "#E53E3E", | ||
redDark: "#C53030", | ||
blue: "#0052FF", | ||
blueDark: "#003EE0", | ||
blue: "#3A3AFF", | ||
blueDark: "#2C2CE5", | ||
green: "#38A169", | ||
greenDark: "#25855A", | ||
bg: "#E0E6EE", | ||
bgGradient: "linear-gradient(67deg, rgba(226, 232, 240, 0.00) 0%, #E2E8F0 100%)", | ||
bgMaskColor: "#E2E8F0", | ||
bg: "#E0E0FF", | ||
bgGradient: "linear-gradient(67deg, rgba(248, 248, 255, 0.70) 0%, #F8F8FF 100%)", | ||
bgMaskColor: "#F8F8FF", | ||
grey: { | ||
black: "#10121B", | ||
black: "#121224", | ||
white: "#FFFFFF", | ||
900: "#171923", | ||
800: "#1A202C", | ||
700: "#2D3748", | ||
600: "#4A5568", | ||
500: "#718096", | ||
900: "#16162B", | ||
800: "#22223F", | ||
700: "#2E2E5C", | ||
600: "#4B4B6A", | ||
500: "#6C7A8F", | ||
450: "#E0E6EE", | ||
400: "#A0AEC0", | ||
300: "#CBD5E0", | ||
200: "#E2E8F0", | ||
100: "#EDF2F7", | ||
50: "#F7FAFC", | ||
400: "#909CAF", | ||
300: "#B0B0DA", | ||
200: "#E0E0FF", | ||
100: "#F0F0FF", | ||
50: "#F8F8FF", | ||
}, | ||
}; | ||
|
||
const dark = { | ||
red: "#E53E3E", | ||
redDark: "#C53030", | ||
blue: "#0052FF", | ||
blueDark: "#003EE0", | ||
blue: "#3A3AFF", | ||
blueDark: "#2C2CE5", | ||
green: "#38A169", | ||
greenDark: "#25855A", | ||
bg: "#0D0F19", | ||
bgGradient: "linear-gradient(67deg, rgba(16, 18, 27, 0.00) 0%, #10121B 100%)", | ||
bgMaskColor: "#10121B", | ||
bg: "#121224", | ||
bgGradient: "linear-gradient(67deg, rgba(22, 22, 43, 0.20) 0%, #16162B 100%)", | ||
bgMaskColor: "#16162B", | ||
grey: { | ||
black: "#FFFFFF", | ||
white: "#1A202C", | ||
900: "#F7FAFC", | ||
800: "#EDF2F7", | ||
700: "#E2E8F0", | ||
600: "#CBD5E0", | ||
500: "#A0AEC0", | ||
white: "#22223F", | ||
900: "#F8F8FF", | ||
800: "#F0F0FF", | ||
700: "#E0E0FF", | ||
600: "#B0B0DA", | ||
500: "#909CAF", | ||
450: "#E0E6EE", | ||
400: "#718096", | ||
300: "#4A5568", | ||
200: "#10121B", | ||
100: "#2D3748", | ||
50: "#171923", | ||
400: "#6C7A8F", | ||
300: "#4B4B6A", | ||
200: "#121224", | ||
100: "#2E2E5C", | ||
50: "#16162B", | ||
}, | ||
}; | ||
|
||
export { light, dark }; | ||
export { light, dark }; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters