feat: add darkMode

This commit is contained in:
alisa
2023-04-25 01:02:59 +08:00
parent 9ff69c68cd
commit ab0fb2252e
2 changed files with 39 additions and 21 deletions
+3 -6
View File
@@ -1,9 +1,7 @@
/** @type {import('tailwindcss').Config} */
module.exports = {
content: [
"./index.html",
"./src/**/*.{vue,js,ts,jsx,tsx}",
],
darkMode: ['class'],
content: ['./index.html', './src/**/*.{vue,js,ts,jsx,tsx}'],
theme: {
extend: {
colors: {
@@ -15,5 +13,4 @@ module.exports = {
},
},
plugins: [],
}
};