depot/web/quotes/theme/static_src/tailwind.config.js

32 lines
875 B
JavaScript

// This is a minimal config.
// If you need the full config, get it from here:
// https://unpkg.com/browse/tailwindcss@latest/stubs/defaultConfig.stub.js
module.exports = {
purge: [
'../templates/**/*.html',
'../../templates/**/*.html',
],
darkMode: false, // or 'media' or 'class'
theme: {
extend: {
colors: {
bfobGray: {
dark: '#222222',
DEFAULT: '#7E7F7F',
},
bfobOrange: '#F38120',
},
fontFamily: {
bnto: ['BigNoodleTooOblique'],
bnt: ['BigNoodleToo'],
},
gridTemplateColumns: {
formSideBySide: 'minmax(150px, min-content) minmax(0, 1fr)',
},
},
},
variants: {
extend: {},
},
plugins: [],
}