Relocation of the Gitea project

This commit is contained in:
koichixD
2026-02-09 20:57:46 +01:00
parent 99d404efcb
commit b3444c391b
84 changed files with 10115 additions and 0 deletions
+22
View File
@@ -0,0 +1,22 @@
/** @type {import('tailwindcss').Config} */
module.exports = {
content: ["./index.html", "./src/**/*.{js,jsx}"],
darkMode: "class",
theme: {
extend: {
colors: {
bg: "#0f172a",
panel: "#111827",
panel2: "#1e293b",
accent: "#38bdf8",
},
boxShadow: {
soft: "0 0 15px rgba(0,0,0,0.4)",
},
borderRadius: {
xl2: "1rem",
},
},
},
plugins: [],
};