Added default text color

pull/85/head
Vladimir Volek 6 years ago
parent 84d71614f6
commit 1a1bfd465a

@ -2,6 +2,8 @@ export default {
WHITE: '#FFFFFF',
BACKGROUND: '#EBEBEB',
TEXT: '#333333',
HEADER: '#1A1A1A',
BODY: '#E3E3E3',
MAIN: '#FBFBFB',

@ -1,4 +1,5 @@
import { injectGlobal } from 'styled-components';
import colors from 'config/colors';
import normalize from 'styled-normalize';
const baseStyles = () => injectGlobal`
@ -11,6 +12,7 @@ const baseStyles = () => injectGlobal`
font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "Roboto", "Helvetica Neue", Arial, sans-serif;
font-weight: 400;
font-size: 14px;
color: ${colors.TEXT};
}
* , *:before , *:after {

Loading…
Cancel
Save