24 lines
407 B
JavaScript
24 lines
407 B
JavaScript
const defaultTheme = require('tailwindcss/defaultTheme')
|
|
|
|
module.exports = {
|
|
purge: [
|
|
"./app/**/*.html.erb",
|
|
"./app/helpers/**/*.rb",
|
|
"./app/javascript/**/*.js"
|
|
],
|
|
darkMode: false, // or 'media' or 'class'
|
|
theme: {
|
|
extend: {
|
|
fontFamily: {
|
|
heading: ['Raleway']
|
|
}
|
|
},
|
|
},
|
|
variants: {
|
|
extend: {},
|
|
},
|
|
plugins: [
|
|
require('@tailwindcss/forms')
|
|
],
|
|
}
|