2022-07-18 23:29:52 +00:00
|
|
|
const defaultTheme = require('tailwindcss/defaultTheme');
|
2022-08-31 04:35:46 +00:00
|
|
|
const colors = require('tailwindcss/colors');
|
|
|
|
const theme = require('./theme');
|
2022-06-21 09:21:22 +00:00
|
|
|
|
|
|
|
module.exports = {
|
|
|
|
...theme,
|
|
|
|
colors: {
|
|
|
|
...theme.colors,
|
2022-08-31 04:35:46 +00:00
|
|
|
...colors,
|
|
|
|
deemphasise: '#8A9BA8',
|
2022-08-31 13:23:01 +00:00
|
|
|
amber: '#FFBF00',
|
2022-06-21 09:21:22 +00:00
|
|
|
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-08-31 04:35:46 +00:00
|
|
|
'white-normal': '#F5F8FA',
|
2022-06-28 09:57:47 +00:00
|
|
|
vega: {
|
|
|
|
...theme.colors.vega,
|
|
|
|
'highlight-item': '#000',
|
|
|
|
'highlight-item-dark': '#fff',
|
|
|
|
},
|
2022-08-31 04:35:46 +00:00
|
|
|
'dropdown-bg-dark': colors.neutral[100],
|
2022-07-04 06:26:59 +00:00
|
|
|
lite: {
|
|
|
|
black: '#080808',
|
|
|
|
},
|
2022-06-21 09:21:22 +00:00
|
|
|
},
|
|
|
|
fontSize: {
|
2022-07-18 23:29:52 +00:00
|
|
|
...defaultTheme.fontSize,
|
2022-06-21 09:21:22 +00:00
|
|
|
capMenu: ['15px', { lineHeight: '24px', letterSpacing: '-0.01em' }],
|
2022-06-28 09:57:47 +00:00
|
|
|
market: ['15px', { lineHeight: '24px' }],
|
2022-07-18 09:28:09 +00:00
|
|
|
'ui-small': ['12px', { lineHeight: '14px' }],
|
|
|
|
'ui-tiny': ['10px', { lineHeight: '18px' }],
|
2022-06-28 09:57:47 +00:00
|
|
|
},
|
|
|
|
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
|
|
|
},
|
2022-07-18 23:29:52 +00:00
|
|
|
extend: {
|
|
|
|
transitionProperty: {
|
|
|
|
height: 'height',
|
|
|
|
'max-height': 'max-height',
|
|
|
|
},
|
|
|
|
},
|
2022-06-21 09:21:22 +00:00
|
|
|
};
|