website-2/tailwind.config.js
Nick Bland a80d1e3fc4
Update Background Image
Dynamic background dependant on current theme
2022-07-25 13:27:08 +10:00

44 lines
781 B
JavaScript

module.exports = {
purge: [],
darkMode: "class",
content: [
"./pages/**/*.{js,ts,jsx,tsx}",
"./components/**/*.{js,ts,jsx,tsx}",
],
theme: {
extend: {
colors: {
dark: {
100: '#6D327C',
200: '#4954AA',
300: '#0074CB',
400: '#0092D8',
500: '#00ABD0',
600: '#00C2B5',
},
light: {
100: '#F924F1',
200: '#FF11B1',
300: '#FF6079',
400: '#FF9D53',
500: '#FFCF4C',
600: '#F9F871',
},
},
display: ['dark'],
},
},
variants: {
extend: {
backgroundImage: ['dark'],
display: ['dark'],
},
},
plugins: [
require("daisyui")
],
daisyui: {
themes: false,
},
}