- Add findagram.co React frontend with product search, brands, categories - Add findadispo.com React frontend with dispensary locator - Wire findagram to backend /api/az/* endpoints - Update category/brand links to route to /products with filters - Add k8s manifests for both frontends - Add multi-domain user support migrations 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude <noreply@anthropic.com>
105 lines
2.7 KiB
JavaScript
105 lines
2.7 KiB
JavaScript
/** @type {import('tailwindcss').Config} */
|
|
module.exports = {
|
|
darkMode: ["class"],
|
|
content: [
|
|
"./src/**/*.{js,jsx,ts,tsx}",
|
|
"./public/index.html"
|
|
],
|
|
theme: {
|
|
container: {
|
|
center: true,
|
|
padding: "2rem",
|
|
screens: {
|
|
"2xl": "1400px",
|
|
},
|
|
},
|
|
extend: {
|
|
colors: {
|
|
border: "hsl(var(--border))",
|
|
input: "hsl(var(--input))",
|
|
ring: "hsl(var(--ring))",
|
|
background: "hsl(var(--background))",
|
|
foreground: "hsl(var(--foreground))",
|
|
primary: {
|
|
DEFAULT: "#8B5CF6",
|
|
50: "#F5F3FF",
|
|
100: "#EDE9FE",
|
|
200: "#DDD6FE",
|
|
300: "#C4B5FD",
|
|
400: "#A78BFA",
|
|
500: "#8B5CF6",
|
|
600: "#7C3AED",
|
|
700: "#6D28D9",
|
|
800: "#5B21B6",
|
|
900: "#4C1D95",
|
|
foreground: "#ffffff",
|
|
},
|
|
secondary: {
|
|
DEFAULT: "#6366F1",
|
|
50: "#EEF2FF",
|
|
100: "#E0E7FF",
|
|
200: "#C7D2FE",
|
|
300: "#A5B4FC",
|
|
400: "#818CF8",
|
|
500: "#6366F1",
|
|
600: "#4F46E5",
|
|
700: "#4338CA",
|
|
800: "#3730A3",
|
|
900: "#312E81",
|
|
foreground: "#ffffff",
|
|
},
|
|
accent: {
|
|
DEFAULT: "#EC4899",
|
|
50: "#FDF2F8",
|
|
100: "#FCE7F3",
|
|
200: "#FBCFE8",
|
|
300: "#F9A8D4",
|
|
400: "#F472B6",
|
|
500: "#EC4899",
|
|
600: "#DB2777",
|
|
700: "#BE185D",
|
|
800: "#9D174D",
|
|
900: "#831843",
|
|
foreground: "#ffffff",
|
|
},
|
|
destructive: {
|
|
DEFAULT: "hsl(var(--destructive))",
|
|
foreground: "hsl(var(--destructive-foreground))",
|
|
},
|
|
muted: {
|
|
DEFAULT: "hsl(var(--muted))",
|
|
foreground: "hsl(var(--muted-foreground))",
|
|
},
|
|
popover: {
|
|
DEFAULT: "hsl(var(--popover))",
|
|
foreground: "hsl(var(--popover-foreground))",
|
|
},
|
|
card: {
|
|
DEFAULT: "hsl(var(--card))",
|
|
foreground: "hsl(var(--card-foreground))",
|
|
},
|
|
},
|
|
borderRadius: {
|
|
lg: "var(--radius)",
|
|
md: "calc(var(--radius) - 2px)",
|
|
sm: "calc(var(--radius) - 4px)",
|
|
},
|
|
keyframes: {
|
|
"accordion-down": {
|
|
from: { height: 0 },
|
|
to: { height: "var(--radix-accordion-content-height)" },
|
|
},
|
|
"accordion-up": {
|
|
from: { height: "var(--radix-accordion-content-height)" },
|
|
to: { height: 0 },
|
|
},
|
|
},
|
|
animation: {
|
|
"accordion-down": "accordion-down 0.2s ease-out",
|
|
"accordion-up": "accordion-up 0.2s ease-out",
|
|
},
|
|
},
|
|
},
|
|
plugins: [require("tailwindcss-animate")],
|
|
}
|