Files
verify/frontend/tailwind.config.ts
Mohamed Mathar Irfan ed6610d5d8 Initial project upload
2026-07-28 17:57:02 +05:30

20 lines
475 B
TypeScript

import type { Config } from "tailwindcss";
const config: Config = {
content: ["./app/**/*.{ts,tsx}", "./components/**/*.{ts,tsx}"],
theme: {
extend: {
colors: {
brand: {
50: "#eef4ff", 100: "#dbe7ff", 500: "#2563eb",
600: "#1d4ed8", 700: "#1e40af", 900: "#0b1f4d",
},
sidebar: "#0b1f4d",
},
fontFamily: { sans: ["Inter", "system-ui", "sans-serif"] },
},
},
plugins: [],
};
export default config;