2022-02-20 23:22:56 +00:00
|
|
|
const colors = require('tailwindcss/colors');
|
|
|
|
|
2020-07-03 20:55:33 +00:00
|
|
|
module.exports = {
|
2022-02-20 23:22:56 +00:00
|
|
|
content: [
|
|
|
|
'./resources/scripts/**/*.{js,ts,tsx}',
|
|
|
|
],
|
2020-07-03 20:55:33 +00:00
|
|
|
theme: {
|
|
|
|
fontFamily: {
|
2020-12-26 17:50:09 +00:00
|
|
|
sans: [ 'Rubik', '-apple-system', 'BlinkMacSystemFont', '"Helvetica Neue"', '"Roboto"', 'system-ui', 'sans-serif' ],
|
|
|
|
header: [ '"IBM Plex Sans"', '"Roboto"', 'system-ui', 'sans-serif' ],
|
|
|
|
mono: [ '"IBM Plex Mono"', '"Source Code Pro"', 'SourceCodePro', 'Menlo', 'Monaco', 'Consolas', 'monospace' ],
|
2020-07-03 20:55:33 +00:00
|
|
|
},
|
2020-07-04 16:28:03 +00:00
|
|
|
extend: {
|
2022-02-20 23:22:56 +00:00
|
|
|
colors: {
|
|
|
|
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
|
|
|
}),
|
|
|
|
},
|
2020-07-03 20:55:33 +00:00
|
|
|
},
|
2020-12-26 18:41:25 +00:00
|
|
|
plugins: [
|
|
|
|
require('@tailwindcss/forms'),
|
|
|
|
]
|
2020-07-03 20:55:33 +00:00
|
|
|
};
|