2022-06-21 09:21:22 +00:00
|
|
|
const theme = require('./theme');
|
|
|
|
|
|
|
|
module.exports = {
|
|
|
|
...theme,
|
|
|
|
colors: {
|
|
|
|
...theme.colors,
|
|
|
|
offBlack: '#252525',
|
|
|
|
midGrey: '#828282',
|
|
|
|
borderGrey: '#4f4f4f',
|
|
|
|
lightGrey: '#F2F2F2',
|
2022-07-04 06:26:59 +00:00
|
|
|
lightGreen: '#00f780',
|
|
|
|
darkerGreen: '#008f4A',
|
2022-06-21 09:21:22 +00:00
|
|
|
yellow: '#DFFF0B',
|
|
|
|
mint: '#00F780',
|
|
|
|
pink: '#FF077F',
|
2022-06-27 15:55:51 +00:00
|
|
|
blue: '#2E6DE5',
|
2022-06-28 09:57:47 +00:00
|
|
|
vega: {
|
|
|
|
...theme.colors.vega,
|
|
|
|
'highlight-item': '#000',
|
|
|
|
'highlight-item-dark': '#fff',
|
|
|
|
},
|
|
|
|
'dropdown-bg-dark': theme.colors.black['100'],
|
2022-07-04 06:26:59 +00:00
|
|
|
lite: {
|
|
|
|
black: '#080808',
|
|
|
|
},
|
2022-06-21 09:21:22 +00:00
|
|
|
},
|
|
|
|
fontSize: {
|
|
|
|
...theme.fontSize,
|
|
|
|
capMenu: ['15px', { lineHeight: '24px', letterSpacing: '-0.01em' }],
|
2022-06-28 09:57:47 +00:00
|
|
|
market: ['15px', { lineHeight: '24px' }],
|
|
|
|
},
|
|
|
|
boxShadow: {
|
|
|
|
...theme.boxShadow,
|
|
|
|
'inset-black': '',
|
|
|
|
'inset-white': '',
|
2022-07-11 13:27:28 +00:00
|
|
|
input: 'none',
|
|
|
|
'input-focus': 'none',
|
|
|
|
'input-dark': 'none',
|
|
|
|
'input-focus-dark': 'none',
|
|
|
|
'input-focus-error': 'none',
|
|
|
|
'input-focus-error-dark': 'none',
|
2022-06-21 09:21:22 +00:00
|
|
|
},
|
|
|
|
};
|