old.martials.no/tailwind.config.js

17 lines
356 B
JavaScript
Raw Normal View History

2022-12-04 17:51:05 +01:00
/** @type {import('tailwindcss').Config} */
module.exports = {
content: [
2022-12-23 14:57:53 +01:00
'./index.html', "./404.html",
2022-12-04 17:51:05 +01:00
'./src/**/*.{js,ts,jsx,tsx,css,md,mdx,html,json,scss}',
],
darkMode: 'class',
theme: {
2022-12-21 13:56:42 +01:00
extend: {
colors: {
"default-bg": "#181a1b",
}
},
2022-12-04 17:51:05 +01:00
},
plugins: [],
};