32 lines
965 B
TypeScript
32 lines
965 B
TypeScript
import type { Config } from "tailwindcss";
|
|
|
|
const config: Config = {
|
|
content: ["./src/**/*.{js,ts,jsx,tsx,mdx}"],
|
|
darkMode: "class",
|
|
theme: {
|
|
extend: {
|
|
colors: {
|
|
brand: {
|
|
50: "rgb(var(--accent-50) / <alpha-value>)",
|
|
100: "rgb(var(--accent-100) / <alpha-value>)",
|
|
200: "rgb(var(--accent-200) / <alpha-value>)",
|
|
300: "rgb(var(--accent-300) / <alpha-value>)",
|
|
400: "rgb(var(--accent-400) / <alpha-value>)",
|
|
500: "rgb(var(--accent-500) / <alpha-value>)",
|
|
600: "rgb(var(--accent-600) / <alpha-value>)",
|
|
700: "rgb(var(--accent-700) / <alpha-value>)",
|
|
800: "rgb(var(--accent-800) / <alpha-value>)",
|
|
900: "rgb(var(--accent-900) / <alpha-value>)",
|
|
},
|
|
},
|
|
fontFamily: {
|
|
sans: ["Inter", "system-ui", "sans-serif"],
|
|
mono: ["JetBrains Mono", "monospace"],
|
|
},
|
|
},
|
|
},
|
|
plugins: [],
|
|
};
|
|
|
|
export default config;
|