25 lines
506 B
JavaScript
25 lines
506 B
JavaScript
/** @type {import('tailwindcss').Config} */
|
|
module.exports = {
|
|
content: ['./index.html', './src/**/*.tsx'],
|
|
theme: {
|
|
extend: {
|
|
colors: {
|
|
transparent: 'transparent',
|
|
current: 'currentColor',
|
|
red: '#fd2d01',
|
|
'red-light': '#ffd7d7',
|
|
'grey': '#4E5166',
|
|
'grey-light': '#717695',
|
|
'grey-dark': '#2E3144',
|
|
},
|
|
zIndex: {
|
|
'100': '100',
|
|
},
|
|
padding: {
|
|
'2.5': '0.625rem',
|
|
},
|
|
},
|
|
},
|
|
plugins: [],
|
|
}
|