manifold/web/tailwind.config.js

21 lines
527 B
JavaScript
Raw Normal View History

module.exports = {
mode: 'jit',
purge: ['./pages/**/*.{js,ts,jsx,tsx}', './components/**/*.{js,ts,jsx,tsx}'],
darkMode: false, // or 'media' or 'class'
theme: {
2021-12-02 23:21:43 +00:00
fontFamily: {
'major-mono': ['Major Mono Display', 'monospace'],
2021-12-10 11:11:05 +00:00
'readex-pro': ['Readex Pro', 'sans-serif'],
2021-12-02 23:21:43 +00:00
},
extend: {
backgroundImage: {
'world-trading': "url('/world-trading-background.jpg')",
2021-12-02 23:39:11 +00:00
},
},
},
variants: {
extend: {},
},
plugins: [require('@tailwindcss/forms'), require('daisyui')],
}