Skip to content

Instantly share code, notes, and snippets.

@skolhustick
Last active February 22, 2020 14:16
Show Gist options
  • Save skolhustick/d02067058bd1bc9cfa587ffd964ddf1a to your computer and use it in GitHub Desktop.
Save skolhustick/d02067058bd1bc9cfa587ffd964ddf1a to your computer and use it in GitHub Desktop.
NextJS styled-components theme file
const light = {
bg: 'white',
fontColor: 'purple'
}
const dark = {
bg: 'black',
fontColor: 'white'
}
export const darkTheme = { ...dark }
export const lightTheme = { ...light }
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment