添加 tailwindcss

This commit is contained in:
2024-09-28 22:27:23 +08:00
parent a53973433f
commit e5ff18abe6
5 changed files with 30 additions and 0 deletions

17
tonecn/tailwind.config.js Normal file
View File

@@ -0,0 +1,17 @@
/** @type {import('tailwindcss').Config} */
export default {
content: [
"./index.html",
"./src/**/*.{vue,js,ts,jsx,tsx}",
],
theme: {
extend: {
colors: {
'default-bg': '#fafafa',
'dark-bg': '#1a1a1a',
}
},
},
plugins: [],
}