Files
sqlchat/tailwind.config.js
boojack c4de3b0d6f feat: implement dark mode (#27)
* feat: implement dark mode

* feat: update data table dark mode style

* chore: update
2023-04-12 11:05:25 +08:00

14 lines
304 B
JavaScript

/** @type {import('tailwindcss').Config} */
module.exports = {
content: ["./src/pages/**/*.{js,ts,jsx,tsx}", "./src/components/**/*.{js,ts,jsx,tsx}"],
darkMode: "class",
theme: {
extend: {
zIndex: {
1: "1",
},
},
},
plugins: [require("@tailwindcss/typography")],
};