old.martials.no/tailwind.config.js
2022-12-23 14:57:53 +01:00

17 lines
356 B
JavaScript

/** @type {import('tailwindcss').Config} */
module.exports = {
content: [
'./index.html', "./404.html",
'./src/**/*.{js,ts,jsx,tsx,css,md,mdx,html,json,scss}',
],
darkMode: 'class',
theme: {
extend: {
colors: {
"default-bg": "#181a1b",
}
},
},
plugins: [],
};