This repository has been archived on 2025-07-12. You can view files and clone it, but cannot push or open issues or pull requests.
Files
old.martials.no/tailwind.config.js

14 lines
291 B
JavaScript
Raw Normal View History

2022-12-04 17:51:05 +01:00
/** @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: []
}