project setup

This commit is contained in:
Sone
2025-11-02 10:08:56 +01:00
commit 568838003e
174 changed files with 27100 additions and 0 deletions
+35
View File
@@ -0,0 +1,35 @@
/** @type {import('tailwindcss').Config} */
module.exports = {
content: ["./components/**/*.{js,jsx,ts,tsx}", "./app/**/*.{js,jsx,ts,tsx}"],
presets: [require("nativewind/preset")],
theme: {
extend: {
fontFamily: {
inter: ["Inter", "sans-serif"],
},
fontSize: {
inter: "16px",
},
colors: {
primaryPurple: "#49385D",
primaryPurpleLight: "#A78FA1",
primaryPurpleDark: "#6750a4",
darkGray: "#49454F",
darkMediumGray: "#7A757C",
mediumGray: "#C4BEBE",
lightGray: "#D9D9D9",
secondary: "#B768FF",
tertiary: "#2E1155",
accent: "#FF00FF",
background: "#1E0933",
highRisk: "#F83434",
mediumRisk: "#F8F834",
lowRisk: "#22C927",
orange: "#FF9800",
blue: "#56B3FA",
},
},
},
plugins: [],
};