Commit inicial: Projeto YuClusters

This commit is contained in:
Thiago Moura
2026-06-04 18:12:47 -03:00
commit 0a185c0223
28 changed files with 5093 additions and 0 deletions
+19
View File
@@ -0,0 +1,19 @@
/** @type {import('tailwindcss').Config} */
export default {
content: [
"./index.html",
"./src/**/*.{js,ts,jsx,tsx}",
],
theme: {
extend: {
colors: {
darkBg: "#0B0E14",
darkPanel: "#151B26",
neonGreen: "#00E676",
neonRed: "#FF1744",
goldPOC: "#FFD600",
}
},
},
plugins: [],
}