* feat: [console-lite] - market list - improve list view * feat: [console-lite] - market list - add column sorting, improve ag-grid styles * feat: [console-lite] - market list - remove unnecessary changes * feat: [console-lite] - market list - fixes for eslint errors * feat: [console-lite] - market list - remove redundant changes * feat: [console-lite] - market list - add resize handler and other small improvements Co-authored-by: maciek <maciek@vegaprotocol.io>
33 lines
713 B
JavaScript
33 lines
713 B
JavaScript
const theme = require('./theme');
|
|
|
|
module.exports = {
|
|
...theme,
|
|
colors: {
|
|
...theme.colors,
|
|
offBlack: '#252525',
|
|
midGrey: '#828282',
|
|
borderGrey: '#4f4f4f',
|
|
lightGrey: '#F2F2F2',
|
|
yellow: '#DFFF0B',
|
|
mint: '#00F780',
|
|
pink: '#FF077F',
|
|
blue: '#2E6DE5',
|
|
vega: {
|
|
...theme.colors.vega,
|
|
'highlight-item': '#000',
|
|
'highlight-item-dark': '#fff',
|
|
},
|
|
'dropdown-bg-dark': theme.colors.black['100'],
|
|
},
|
|
fontSize: {
|
|
...theme.fontSize,
|
|
capMenu: ['15px', { lineHeight: '24px', letterSpacing: '-0.01em' }],
|
|
market: ['15px', { lineHeight: '24px' }],
|
|
},
|
|
boxShadow: {
|
|
...theme.boxShadow,
|
|
'inset-black': '',
|
|
'inset-white': '',
|
|
},
|
|
};
|