vega-frontend-monorepo/libs/tailwindcss-config/src/theme-lite.js

44 lines
986 B
JavaScript
Raw Normal View History

const theme = require('./theme');
module.exports = {
...theme,
colors: {
...theme.colors,
offBlack: '#252525',
midGrey: '#828282',
borderGrey: '#4f4f4f',
lightGrey: '#F2F2F2',
lightGreen: '#00f780',
darkerGreen: '#008f4A',
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'],
lite: {
black: '#080808',
},
},
fontSize: {
...theme.fontSize,
capMenu: ['15px', { lineHeight: '24px', letterSpacing: '-0.01em' }],
market: ['15px', { lineHeight: '24px' }],
},
boxShadow: {
...theme.boxShadow,
'inset-black': '',
'inset-white': '',
input: 'none',
'input-focus': 'none',
'input-dark': 'none',
'input-focus-dark': 'none',
'input-focus-error': 'none',
'input-focus-error-dark': 'none',
},
};