-
Notifications
You must be signed in to change notification settings - Fork 76
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat(dark-mode): add dark mode theme support in the theme provider
- Loading branch information
1 parent
8f85da9
commit bc238d6
Showing
4 changed files
with
97 additions
and
10 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 |
---|---|---|
@@ -0,0 +1,68 @@ | ||
const darkPalette = { | ||
text: { | ||
primary: '#FFFFFF', | ||
secondary: '#636669', | ||
disabled: '#636669', | ||
}, | ||
primary: { | ||
dark: '#0cb259', | ||
main: '#12FF80', | ||
light: '#A1A3A7', | ||
}, | ||
secondary: { | ||
dark: '#636669', | ||
main: '#FFFFFF', | ||
light: '#B0FFC9', | ||
background: '#1B2A22', | ||
}, | ||
border: { | ||
main: '#636669', | ||
light: '#303033', | ||
background: '#121312', | ||
}, | ||
error: { | ||
dark: '#AC2C3B', | ||
main: '#FF5F72', | ||
light: '#FFB4BD', | ||
background: '#2F2527', | ||
}, | ||
success: { | ||
dark: '#028D4C', | ||
main: '#00B460', | ||
light: '#81C784', | ||
background: '#1F2920', | ||
}, | ||
info: { | ||
dark: '#52BFDC', | ||
main: '#5FDDFF', | ||
light: '#B7F0FF', | ||
background: '#19252C', | ||
}, | ||
warning: { | ||
dark: '#C04C32', | ||
main: '#FF8061', | ||
light: '#FFBC9F', | ||
background: '#2F2318', | ||
}, | ||
background: { | ||
default: '#121312', | ||
main: '#121312', | ||
paper: '#1C1C1C', | ||
light: '#1B2A22', | ||
}, | ||
backdrop: { | ||
main: '#636669', | ||
}, | ||
logo: { | ||
main: '#FFFFFF', | ||
background: '#303033', | ||
}, | ||
static: { | ||
main: '#121312', | ||
}, | ||
code: { | ||
main: 'transparent', | ||
}, | ||
} | ||
|
||
export default darkPalette |
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