289c808257
Rebrand the public café-discovery app: directories web/finder→web/koja and docker/finder→docker/koja, plus all service wiring (docker-compose, Caddy subdomain koja.meezi.ir, env vars KOJA_PORT / NEXT_PUBLIC_KOJA_URL, CI workflows) and the app's display name (Koja / کجا). Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
30 lines
600 B
TypeScript
30 lines
600 B
TypeScript
import type { Config } from "tailwindcss";
|
|
|
|
const config: Config = {
|
|
content: ["./src/**/*.{js,ts,jsx,tsx,mdx}"],
|
|
theme: {
|
|
extend: {
|
|
colors: {
|
|
brand: {
|
|
50: "#f0faf6",
|
|
100: "#d8f3e8",
|
|
200: "#b4e8d3",
|
|
300: "#82d4b7",
|
|
400: "#4cb896",
|
|
500: "#289b78",
|
|
600: "#1a7d60",
|
|
700: "#0F6E56",
|
|
800: "#0e5a46",
|
|
900: "#0d4a3a",
|
|
},
|
|
},
|
|
fontFamily: {
|
|
sans: ["var(--font-sans)", "system-ui", "sans-serif"],
|
|
},
|
|
},
|
|
},
|
|
plugins: [],
|
|
};
|
|
|
|
export default config;
|