🔨 Refactor: setting page

This commit is contained in:
PiEgg
2023-07-09 10:12:49 +08:00
parent 8d9a4000f3
commit 10e0584c96
39 changed files with 1736 additions and 1018 deletions
+18
View File
@@ -0,0 +1,18 @@
/** @type {import('tailwindcss').Config} */
module.exports = {
content: [
'./public/index.html',
'./src/**/*.{js,ts,jsx,tsx,vue}'
],
theme: {
extend: {
colors: {
blue: '#49B1F5',
green: '#44B363',
red: '#F15140',
yellow: '#F1BE48'
}
}
},
plugins: []
}