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:
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…
Reference in New Issue
Block a user