Initial Animatrix import

This commit is contained in:
Sagnik
2026-04-17 19:11:57 +05:30
commit c7994d17a9
60 changed files with 8516 additions and 0 deletions

View File

@@ -0,0 +1,21 @@
/** @type {import('tailwindcss').Config} */
module.exports = {
content: ["./src/**/*.{js,ts,jsx,tsx,mdx}"],
theme: {
extend: {
colors: {
ink: "#0a0a0d",
panel: "#141419",
soft: "#1c1d24",
edge: "#2a2c35",
text: "#f2f4f8",
subtext: "#99a1b3",
accent: "#1ed760"
},
boxShadow: {
glow: "0 0 0 1px rgba(255,255,255,0.06), 0 20px 80px rgba(0,0,0,0.35)"
}
}
},
plugins: []
};