misc_pterodactyl-panel/tailwind.config.js
2022-12-15 19:06:14 -07:00

36 lines
1 KiB
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',
slate: colors.slate,
// "primary" and "neutral" are deprecated, prefer the use of "blue" and "gray"
// in new code.
primary: colors.blue,
neutral: colors.slate,
cyan: colors.cyan,
},
fontSize: {
'2xs': '0.625rem',
},
transitionDuration: {
250: '250ms',
},
borderColor: theme => ({
default: theme('colors.neutral.400', 'currentColor'),
}),
},
},
plugins: [
require('@tailwindcss/line-clamp'),
require('@tailwindcss/forms')({
strategy: 'class',
}),
],
};