// 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: '#373535', DEFAULT: '#7E7F7F', }, bfobOrange: '#F48735', }, fontFamily: { bnto: ['BigNoodleTooOblique'], bnt: ['BigNoodleToo'], }, gridTemplateColumns: { formSideBySide: 'minmax(150px, min-content) minmax(0, 1fr)', }, }, }, variants: { extend: {}, }, plugins: [], }