mirror of
https://github.com/pterodactyl/panel.git
synced 2024-11-22 09:02:28 +01:00
37 lines
1.0 KiB
JavaScript
37 lines
1.0 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',
|
|
}),
|
|
],
|
|
};
|