UNPKG

cra-template-rightpair

Version:

The template is made by rightpair for Create React App.

18 lines (15 loc) 244 B
export type ThemeType = { colors: { primary: string } } export const defaultTheme: ThemeType = { colors: { primary: 'black', }, } export const darkTheme: ThemeType = { colors: { primary: 'white', }, }