20 lines
475 B
TypeScript
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;
|