2022-06-05 20:34:29 +02:00
|
|
|
const colors = require('tailwindcss/colors');
|
|
|
|
|
2020-07-03 22:55:33 +02:00
|
|
|
module.exports = {
|
2022-11-25 21:25:03 +01:00
|
|
|
content: ['./resources/scripts/**/*.{js,ts,tsx}'],
|
2020-07-03 22:55:33 +02:00
|
|
|
theme: {
|
2020-07-04 18:28:03 +02:00
|
|
|
extend: {
|
2022-06-05 20:34:29 +02:00
|
|
|
fontFamily: {
|
|
|
|
header: ['"IBM Plex Sans"', '"Roboto"', 'system-ui', 'sans-serif'],
|
|
|
|
},
|
|
|
|
colors: {
|
|
|
|
black: '#131a20',
|
2022-12-16 03:06:14 +01:00
|
|
|
slate: colors.slate,
|
2022-06-05 20:34:29 +02:00
|
|
|
// "primary" and "neutral" are deprecated, prefer the use of "blue" and "gray"
|
|
|
|
// in new code.
|
|
|
|
primary: colors.blue,
|
2022-12-16 03:06:14 +01:00
|
|
|
neutral: colors.slate,
|
2022-06-05 20:34:29 +02:00
|
|
|
cyan: colors.cyan,
|
|
|
|
},
|
2020-07-04 18:28:03 +02:00
|
|
|
fontSize: {
|
|
|
|
'2xs': '0.625rem',
|
|
|
|
},
|
2020-07-04 19:15:06 +02:00
|
|
|
transitionDuration: {
|
|
|
|
250: '250ms',
|
|
|
|
},
|
2020-07-04 18:28:03 +02:00
|
|
|
borderColor: theme => ({
|
2020-12-26 18:50:09 +01:00
|
|
|
default: theme('colors.neutral.400', 'currentColor'),
|
2020-07-04 18:28:03 +02:00
|
|
|
}),
|
|
|
|
},
|
2020-07-03 22:55:33 +02:00
|
|
|
},
|
2020-12-26 19:41:25 +01:00
|
|
|
plugins: [
|
2022-06-12 15:09:01 +02:00
|
|
|
require('@tailwindcss/line-clamp'),
|
2022-06-05 20:34:29 +02:00
|
|
|
require('@tailwindcss/forms')({
|
|
|
|
strategy: 'class',
|
|
|
|
}),
|
2022-11-25 21:25:03 +01:00
|
|
|
],
|
2020-07-03 22:55:33 +02:00
|
|
|
};
|