Initial commit: Activiteiten Inventaris applicatie

This commit is contained in:
2026-01-06 01:23:45 +01:00
commit 6d26aea0cf
38 changed files with 9818 additions and 0 deletions

48
tailwind.config.js Normal file
View File

@@ -0,0 +1,48 @@
/** @type {import('tailwindcss').Config} */
export default {
content: [
"./index.html",
"./src/**/*.{js,ts,jsx,tsx}",
],
theme: {
extend: {
colors: {
bg: {
DEFAULT: '#0f1419',
elevated: '#1a2027',
card: '#232b35',
input: '#2a343f',
},
border: {
DEFAULT: '#38444d',
light: '#2c3640',
},
text: {
DEFAULT: '#e8ecf0',
muted: '#8899a6',
faint: '#5c6d7e',
},
accent: {
DEFAULT: '#ff6b4a',
hover: '#ff8266',
dark: '#e85a3a',
},
success: {
DEFAULT: '#17bf63',
muted: 'rgba(23, 191, 99, 0.15)',
},
danger: {
DEFAULT: '#e0245e',
hover: '#f04070',
muted: 'rgba(224, 36, 94, 0.15)',
},
},
fontFamily: {
sans: ['DM Sans', 'system-ui', 'sans-serif'],
mono: ['JetBrains Mono', 'monospace'],
},
},
},
plugins: [],
}