manifold/web/tailwind.config.js
Austin Chen 6d1f8b9a45 Port simulator to React
Mostly to re-familiarize myself with the React ecosystem
2021-12-05 00:39:42 -08:00

20 lines
477 B
JavaScript

module.exports = {
mode: 'jit',
purge: ['./pages/**/*.{js,ts,jsx,tsx}', './components/**/*.{js,ts,jsx,tsx}'],
darkMode: false, // or 'media' or 'class'
theme: {
fontFamily: {
'major-mono': ['Major Mono Display', 'monospace'],
},
extend: {
backgroundImage: {
'world-trading': "url('/world-trading-background.jpg')",
},
},
},
variants: {
extend: {},
},
plugins: [require('@tailwindcss/forms'), require('daisyui')],
}