Files
DailyMeals/meal-plan-frontend/tailwind.config.js
2026-06-04 06:24:56 +02:00

28 lines
599 B
JavaScript

/** @type {import('tailwindcss').Config} */
export default {
content: ["./index.html", "./src/**/*.{ts,tsx}"],
darkMode: "class",
theme: {
extend: {
colors: {
brand: {
50: "#eefaf3",
100: "#d6f1e0",
200: "#b0e3c6",
300: "#7dcda4",
400: "#47b07e",
500: "#22935f",
600: "#16774c",
700: "#125f3f",
800: "#114c34",
900: "#0e3e2c",
},
},
fontFamily: {
sans: ["Inter", "system-ui", "-apple-system", "sans-serif"],
},
},
},
plugins: [],
};