first commit

This commit is contained in:
2026-02-05 01:24:42 +08:00
commit 590c9e04f8
578 changed files with 58741 additions and 0 deletions

View File

@@ -0,0 +1,21 @@
/** @type {import('tailwindcss').Config} */
export default {
content: ["./src/**/*.{html,js,vue,ts}"],
theme: {
extend: {
borderRadius: {
full: "100%",
},
fontSize: {
'custom-size': '0.4rem', // 20px
'mid-size': '0.5rem', // 24px
'min-size': '0.3rem', // 12px
},
backgroundImage: {
"bg-pattern": "url('@/assets/bg.png')",
'custom-gradient': 'linear-gradient(180deg, #58A3FE 0%, #43C5E8 100%, #3FC6E8 100%)',
}
},
},
plugins: [],
};