36 lines
972 B
JavaScript
36 lines
972 B
JavaScript
const colors = require('tailwindcss/colors');
|
|
|
|
module.exports = {
|
|
content: [
|
|
'./resources/scripts/**/*.{js,ts,tsx}',
|
|
],
|
|
theme: {
|
|
extend: {
|
|
fontFamily: {
|
|
header: [ '"IBM Plex Sans"', '"Roboto"', 'system-ui', 'sans-serif' ],
|
|
},
|
|
colors: {
|
|
black: '#131a20',
|
|
// Deprecated, prefer "blue"...
|
|
primary: colors.blue,
|
|
// Deprecate, prefer "gray"...
|
|
neutral: colors.gray,
|
|
cyan: colors.cyan,
|
|
},
|
|
fontSize: {
|
|
'2xs': '0.625rem',
|
|
},
|
|
transitionDuration: {
|
|
250: '250ms',
|
|
},
|
|
borderColor: theme => ({
|
|
default: theme('colors.neutral.400', 'currentColor'),
|
|
}),
|
|
},
|
|
},
|
|
plugins: [
|
|
require('@tailwindcss/forms')({
|
|
strategy: 'class',
|
|
}),
|
|
]
|
|
};
|