2021-12-12 22:37:59 +00:00
|
|
|
const defaultTheme = require('tailwindcss/defaultTheme')
|
|
|
|
|
2021-12-01 19:58:00 +00:00
|
|
|
module.exports = {
|
2021-12-02 23:49:46 +00:00
|
|
|
mode: 'jit',
|
|
|
|
purge: ['./pages/**/*.{js,ts,jsx,tsx}', './components/**/*.{js,ts,jsx,tsx}'],
|
2021-12-01 19:58:00 +00:00
|
|
|
darkMode: false, // or 'media' or 'class'
|
|
|
|
theme: {
|
2021-12-12 22:37:59 +00:00
|
|
|
fontFamily: Object.assign(
|
|
|
|
{ ...defaultTheme.fontFamily },
|
|
|
|
{
|
2021-12-21 06:29:01 +00:00
|
|
|
'major-mono': ['Major Mono Display', 'monospace'],
|
2021-12-12 22:37:59 +00:00
|
|
|
'readex-pro': ['Readex Pro', 'sans-serif'],
|
|
|
|
}
|
|
|
|
),
|
2021-12-01 23:23:48 +00:00
|
|
|
extend: {
|
|
|
|
backgroundImage: {
|
2021-12-13 05:36:02 +00:00
|
|
|
'world-trading': "url('/world-trading-background.webp')",
|
2021-12-02 23:39:11 +00:00
|
|
|
},
|
2021-12-01 23:23:48 +00:00
|
|
|
},
|
2021-12-01 19:58:00 +00:00
|
|
|
},
|
|
|
|
variants: {
|
|
|
|
extend: {},
|
|
|
|
},
|
2021-12-05 08:39:42 +00:00
|
|
|
plugins: [require('@tailwindcss/forms'), require('daisyui')],
|
2021-12-10 23:43:22 +00:00
|
|
|
|
|
|
|
daisyui: {
|
|
|
|
themes: [
|
|
|
|
{
|
|
|
|
mantic: {
|
2021-12-11 00:40:23 +00:00
|
|
|
primary: '#11b981',
|
2021-12-10 23:43:22 +00:00
|
|
|
'primary-focus': '#069668',
|
|
|
|
// Foreground content color to use on primary color
|
|
|
|
'primary-content': '#ffffff',
|
|
|
|
|
|
|
|
secondary: '#a991f7',
|
|
|
|
'secondary-focus': '#8462f4',
|
|
|
|
// Foreground content color to use on secondary color
|
|
|
|
'secondary-content': '#ffffff',
|
|
|
|
|
|
|
|
accent: '#f6d860',
|
|
|
|
'accent-focus': '#f3cc30',
|
|
|
|
// Foreground content color to use on accent color
|
|
|
|
'accent-content': '#ffffff',
|
|
|
|
|
|
|
|
neutral: '#3d4451',
|
|
|
|
'neutral-focus': '#2a2e37',
|
|
|
|
// Foreground content color to use on neutral color
|
|
|
|
'neutral-content': '#ffffff',
|
|
|
|
|
|
|
|
'base-100': '#ffffff' /* Base page color, for blank backgrounds */,
|
|
|
|
'base-200': '#f9fafb' /* Base color, a little darker */,
|
|
|
|
'base-300': '#d1d5db' /* Base color, even more dark */,
|
|
|
|
// Foreground content color to use on base color
|
|
|
|
'base-content': '#1f2937',
|
|
|
|
|
|
|
|
info: '#2094f3',
|
|
|
|
success: '#009485',
|
|
|
|
warning: '#ff9900',
|
|
|
|
error: '#ff5724',
|
|
|
|
},
|
|
|
|
},
|
|
|
|
],
|
|
|
|
},
|
2021-12-02 23:49:46 +00:00
|
|
|
}
|