2024-02-02 09:05:04 -06:00
|
|
|
const defaultTheme = require('tailwindcss/defaultTheme')
|
|
|
|
|
|
|
|
module.exports = {
|
|
|
|
content: [
|
|
|
|
'./public/*.html',
|
|
|
|
'./app/helpers/**/*.rb',
|
2024-02-02 23:06:29 +00:00
|
|
|
'./app/models/**/*.rb',
|
2024-02-02 09:05:04 -06:00
|
|
|
'./app/javascript/**/*.js',
|
|
|
|
'./app/views/**/*.{erb,haml,html,slim}'
|
|
|
|
],
|
|
|
|
theme: {
|
|
|
|
extend: {
|
|
|
|
fontFamily: {
|
|
|
|
sans: ['Inter var', ...defaultTheme.fontFamily.sans],
|
|
|
|
display: ['GeneralSans, sans-serif'],
|
|
|
|
},
|
|
|
|
fontSize: {
|
|
|
|
'2xs': '.625rem',
|
|
|
|
},
|
|
|
|
colors: {
|
|
|
|
black: '#242629',
|
|
|
|
offwhite: '#F9FAFB',
|
|
|
|
},
|
|
|
|
dropShadow: {
|
|
|
|
'form': '0px 4px 10px rgba(52, 54, 60, 0.08)',
|
|
|
|
}
|
|
|
|
},
|
|
|
|
},
|
|
|
|
plugins: [
|
|
|
|
require('@tailwindcss/forms'),
|
|
|
|
require('@tailwindcss/aspect-ratio'),
|
|
|
|
require('@tailwindcss/typography'),
|
|
|
|
require('@tailwindcss/container-queries'),
|
|
|
|
]
|
|
|
|
}
|