qpa-client/packages/qpa-emotion/theme.ts
2019-10-15 12:20:55 +02:00

15 lines
208 B
TypeScript

const theme = {
colors: {
lead: '#043b14',
secondary: '#FFAD00'
}
}
type Theme = typeof theme
export { Theme }
export interface ThemeProps {
theme: Theme
}
export default theme