Initial commit: tinovisas (visa management app)

This commit is contained in:
devyouz
2026-05-18 23:25:10 +00:00
commit ab0d059a63
101 changed files with 15822 additions and 0 deletions
+31
View File
@@ -0,0 +1,31 @@
/** @type {import(tailwindcss).Config} */
module.exports = {
content: [
"./src/pages/**/*.{js,ts,jsx,tsx,mdx}",
"./src/components/**/*.{js,ts,jsx,tsx,mdx}",
"./src/app/**/*.{js,ts,jsx,tsx,mdx}"
],
darkMode: "class",
theme: {
extend: {
colors: {
dark: {
900: "#0a0a0f",
800: "#12121a",
700: "#1a1a2e",
600: "#24243a",
500: "#2d2d44"
},
accent: {
blue: "#3b82f6",
cyan: "#06b6d4",
purple: "#8b5cf6",
green: "#10b981",
red: "#ef4444",
orange: "#f59e0b"
}
}
}
},
plugins: []
};