managarten/apps/nutriphi/apps/landing/tailwind.config.cjs
Till-JS b6af01ed67 feat(nutriphi): add AI-powered nutrition tracking app
- NestJS backend with Gemini AI for food photo analysis
- SvelteKit web app with Svelte 5 runes
- Drizzle ORM schema for meals, goals, favorites, recommendations
- Unified auth pages using shared-auth-ui components
- Landing page with Astro
- Shared types and utilities package
2026-01-25 13:19:51 +01:00

18 lines
377 B
JavaScript

/** @type {import('tailwindcss').Config} */
module.exports = {
content: ['./src/**/*.{astro,html,js,jsx,md,mdx,svelte,ts,tsx,vue}'],
theme: {
extend: {
colors: {
primary: {
DEFAULT: '#22C55E',
hover: '#16A34A',
light: '#86EFAC',
},
secondary: '#F97316',
accent: '#14B8A6',
},
},
},
plugins: [require('@tailwindcss/typography')],
};