1
0
mirror of https://github.com/trezor/trezor-wallet synced 2024-11-24 09:18:09 +00:00

Added default text color

This commit is contained in:
Vladimir Volek 2018-09-24 15:20:37 +02:00
parent 84d71614f6
commit 1a1bfd465a
2 changed files with 4 additions and 0 deletions

View File

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

View File

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