Skip to content

Instantly share code, notes, and snippets.

@jeanverster
Last active November 5, 2019 16:35
Show Gist options
  • Save jeanverster/22a94bdb02d952855938953e8e9997cc to your computer and use it in GitHub Desktop.
Save jeanverster/22a94bdb02d952855938953e8e9997cc to your computer and use it in GitHub Desktop.
Theme.ts
colors: {
text: '#0A0A0A',
background: '#FFF',
primary: '#1476F2',
secondary: '#595959',
border: '#E2E8F0',
modes: {
dark: {
text: '#FFF',
background: '#141414',
primary: '#1476F2',
secondary: '#595959',
border: '#403A3A',
}
}
}
const modes = Object.keys(theme.colors.modes).map((key) => key)
modes.unshift('default')
export { theme, modes }
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment