feat(validation): complete validation editor and master data modules

This commit is contained in:
Schubert Ferenc 2026-07-10 22:42:03 +02:00
parent 2b5c765e41
commit f73a24df13
73 changed files with 10194 additions and 0 deletions

View file

@ -0,0 +1,32 @@
import type { Config } from "tailwindcss";
const config: Config = {
content: ["./app/**/*.{ts,tsx}", "./components/**/*.{ts,tsx}", "./lib/**/*.{ts,tsx}"],
theme: {
extend: {
colors: {
primary: "#6C8A96",
"primary-dark": "#4F6A74",
accent: "#A7C7C7",
background: "#F7F8F8",
surface: "#FFFFFF",
border: "#E6EAEA",
text: "#2E3B40",
"text-light": "#6B7C85",
success: "#66A26B",
warning: "#D6A53A",
danger: "#C95C54"
},
fontFamily: {
sans: ["Inter", "ui-sans-serif", "system-ui"]
},
boxShadow: {
soft: "0 14px 40px rgba(46, 59, 64, 0.08)"
}
}
},
plugins: []
};
export default config;