Created
October 7, 2020 01:17
-
-
Save shanemduggan/2f658e6aab20eccee230b10cd184f729 to your computer and use it in GitHub Desktop.
Global Styles
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
import { COLORS } from ./helpers/constants; | |
const style = { | |
button: { | |
backgroundColor: COLORS.DARK_BLUE | |
} | |
} |
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
// in helpers folder | |
const COLORS = { | |
DARK_BLUE: '#9282812' | |
} | |
const BORDER_STYLES = { | |
DEFAULT_WIDTH: 1, | |
THICK_WIDTH: 2 | |
} | |
export { COLORS, BORDER_STYLES } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment