[WIP] feature: add app theme

This commit is contained in:
George Lima 2018-11-28 19:02:42 -03:00
parent ee2f5e20f1
commit a65d9df809
1 changed files with 23 additions and 0 deletions

23
app/theme.js Normal file
View File

@ -0,0 +1,23 @@
// @flow
import theme from 'styled-theming';
import { DARK } from './constants/themes';
export default {
mode: DARK,
fontFamily: 'Open Sans',
colors: {
primary: theme('mode', {
light: '#fff',
dark: '#000',
}),
secondary: theme('mode', {
light: '#000',
dark: '#fff',
}),
},
size: {
title: 18,
paragraph: 12,
},
};