misc_pterodactyl-panel/tailwind.config.js

37 lines
972 B
JavaScript
Raw Normal View History

const colors = require('tailwindcss/colors');
module.exports = {
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: {
2022-02-20 23:35:44 +00:00
black: '#131a20',
2022-02-27 02:26:53 +00:00
// Deprecated, prefer "blue"...
2022-02-27 01:59:29 +00:00
primary: colors.blue,
2022-02-27 02:26:53 +00:00
// Deprecate, prefer "gray"...
neutral: colors.gray,
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-02-27 01:59:29 +00:00
require('@tailwindcss/forms')({
strategy: 'class',
}),
]
};