first commit

This commit is contained in:
2026-07-16 12:22:02 +07:00
parent 04a2239def
commit adaab69b82
26 changed files with 3953 additions and 56 deletions
+17
View File
@@ -0,0 +1,17 @@
/** @type {import('tailwindcss').Config} */
module.exports = {
content: ["./App.{js,jsx,ts,tsx}", "./src/**/*.{js,jsx,ts,tsx}"],
presets: [require("nativewind/preset")],
theme: {
extend: {
colors: {
carbon: "#08080a",
titan: "#1f1f23",
amber: {
500: "#f59e0b",
}
}
},
},
plugins: [],
}