Initial commit

This commit is contained in:
2026-07-31 16:53:16 +02:00
commit e49d6f0e5b
67 changed files with 20163 additions and 0 deletions

30
tailwind.config.js Normal file
View File

@@ -0,0 +1,30 @@
/** @type {import('tailwindcss').Config} */
module.exports = {
// NOTE: Update this to include the paths to all files that contain Nativewind classes.
content: ["./App.tsx", "./components/**/*.{js,jsx,ts,tsx}", "./app/**/*.{js,jsx,ts,tsx}"],
presets: [require("nativewind/preset")],
theme: {
extend: {
colors: {
primary: {
DEFAULT: '#1071C2', // Blue action (Buttons, highlights, links)
dark: '#082963', // Dark blue (Headers, Main backgrounds, dark icons)
},
background: {
DEFAULT: '#EDF1F7', // Light gray/blue app general background
paper: '#FFFFFF', // Card / form backgrounds
},
text: {
DEFAULT: '#082963', // Main text color
secondary: '#8F9BB3', // Subtitles, captions, disabled text
},
status: {
success: '#109D59', // Checkmarks, in-attendance
danger: '#DC4437', // Close, out-attendance
warning: '#FCBE1F', // Questions, alerts
}
}
},
},
plugins: [],
}