-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
migration of the style configurations
- Loading branch information
1 parent
1a78f8f
commit 31fd979
Showing
2 changed files
with
40 additions
and
0 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,20 @@ | ||
// grey | ||
const primary = { | ||
main: '#212121', | ||
light: '#484848', | ||
dark: '#000000', | ||
} | ||
|
||
// blue | ||
const secondary = { | ||
main: '#0d47a1', | ||
light: '#5472d3', | ||
dark: '#002171', | ||
} | ||
|
||
const themes = { | ||
primary, | ||
secondary, | ||
} | ||
|
||
export default themes |
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,20 @@ | ||
// grey | ||
const primary = { | ||
main: '#fafafa', | ||
light: '#ffffff', | ||
dark: '#c7c7c7', | ||
} | ||
|
||
// blue | ||
const secondary = { | ||
main: '#0d47a1', | ||
light: '#5472d3', | ||
dark: '#002171', | ||
} | ||
|
||
const themes = { | ||
primary, | ||
secondary, | ||
} | ||
|
||
export default themes |