Skip to content

Instantly share code, notes, and snippets.

@shanemduggan
Created October 7, 2020 01:17
Show Gist options
  • Save shanemduggan/2f658e6aab20eccee230b10cd184f729 to your computer and use it in GitHub Desktop.
Save shanemduggan/2f658e6aab20eccee230b10cd184f729 to your computer and use it in GitHub Desktop.
Global Styles
import { COLORS } from ./helpers/constants;
const style = {
button: {
backgroundColor: COLORS.DARK_BLUE
}
}
// 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