feat: AR-ProjectManagement initial commit — JavaScript (Node.js / React) Express + Prisma (backend) / React + Axios (frontend)

This commit is contained in:
2026-07-03 12:16:44 -04:00
commit 0c1a9a802c
100 changed files with 56764 additions and 0 deletions
+30
View File
@@ -0,0 +1,30 @@
/** @type {import('tailwindcss').Config} */
module.exports = {
content: ['./src/**/*.{js,jsx,ts,tsx}'],
darkMode: 'class',
theme: {
extend: {
fontFamily: {
sans: ['Inter', 'system-ui', 'sans-serif'],
},
colors: {
primary: {
50: '#eff6ff',
500: '#2563EB',
600: '#1d4ed8',
700: '#1e40af',
},
success: '#10B981',
warning: '#F59E0B',
danger: '#EF4444',
surface: {
900: '#0F1117',
800: '#161B27',
700: '#1E2433',
600: '#252D3D',
},
},
},
},
plugins: [],
};