mirror of
https://github.com/status-im/safe-react.git
synced 2025-02-11 09:06:44 +00:00
* WA-280 Added redux logic for safe route * WA-280 Added tests including builders for safe's redux store classes * WA-280 Improving Flow coverage in actions and reducers * WA- 280 Mocking LocalStorage and Web3 in JEST * WA-280 Generating view of Safe route and its logic to store and retrieve info from localstorage * WA-280 Added run-with-testrpc for simulating a testnet in memory while executing tests
38 lines
670 B
JavaScript
38 lines
670 B
JavaScript
// @flow
|
|
const primary = '#1798cc'
|
|
const secondary = '#13222b'
|
|
const tertiary = '#f6f9fc'
|
|
const xs = '4px'
|
|
const sm = '8px'
|
|
const md = '16px'
|
|
const lg = '24px'
|
|
const xl = '42px'
|
|
|
|
module.exports = Object.assign({}, {
|
|
primary,
|
|
secondary,
|
|
tertiary,
|
|
xs,
|
|
sm,
|
|
md,
|
|
lg,
|
|
xl,
|
|
fontSizeHeadingXs: 16,
|
|
fontSizeHeadingSm: 18,
|
|
fontSizeHeadingMd: 21,
|
|
fontSizeHeadingLg: 28,
|
|
regularFontWeight: 400,
|
|
boldFontWeight: 700,
|
|
smallFontSize: '12px',
|
|
mediumFontSize: '14px',
|
|
largeFontSize: '18px',
|
|
extraLargeFontSize: '24px',
|
|
screenXs: 480,
|
|
screenXsMax: 767,
|
|
screenSm: 768,
|
|
screenSmMax: 991,
|
|
screenMd: 992,
|
|
screenMdMax: 1199,
|
|
screenLg: 1200,
|
|
})
|