misc_pterodactyl-panel/tailwind.config.js

37 lines
1 KiB
JavaScript
Raw Normal View History

const colors = require('tailwindcss/colors');
module.exports = {
2022-11-25 20:25:03 +00:00
content: ['./resources/scripts/**/*.{js,ts,tsx}'],
theme: {
2020-07-04 16:28:03 +00:00
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,
},
2020-07-04 16:28:03 +00:00
fontSize: {
'2xs': '0.625rem',
},
2020-07-04 17:15:06 +00:00
transitionDuration: {
250: '250ms',
},
2020-07-04 16:28:03 +00:00
borderColor: theme => ({
2020-12-26 17:50:09 +00:00
default: theme('colors.neutral.400', 'currentColor'),
2020-07-04 16:28:03 +00:00
}),
},
},
plugins: [
2022-06-12 13:09:01 +00:00
require('@tailwindcss/line-clamp'),
require('@tailwindcss/forms')({
strategy: 'class',
}),
2022-11-25 20:25:03 +00:00
],
};