misc_pterodactyl-panel/tailwind.config.js
2022-02-26 21:26:53 -05:00

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',
}),
]
};