Files
Claude-Code-Workflow/ccw/frontend/tailwind.config.js

114 lines
3.0 KiB
JavaScript

/** @type {import('tailwindcss').Config} */
export default {
darkMode: ['class', '[data-theme="dark"]'],
content: [
"./index.html",
"./src/**/*.{js,ts,jsx,tsx}",
],
theme: {
extend: {
colors: {
// Base colors
background: "hsl(var(--background))",
foreground: "hsl(var(--foreground))",
card: {
DEFAULT: "hsl(var(--card))",
foreground: "hsl(var(--card-foreground))",
},
border: "hsl(var(--border))",
input: "hsl(var(--input))",
ring: "hsl(var(--ring))",
// Interactive colors
primary: {
DEFAULT: "hsl(var(--primary))",
foreground: "hsl(var(--primary-foreground))",
light: "hsl(var(--primary-light))",
},
secondary: {
DEFAULT: "hsl(var(--secondary))",
foreground: "hsl(var(--secondary-foreground))",
},
accent: {
DEFAULT: "hsl(var(--accent))",
foreground: "hsl(var(--accent-foreground))",
},
destructive: {
DEFAULT: "hsl(var(--destructive))",
foreground: "hsl(var(--destructive-foreground))",
},
// Semantic colors
muted: {
DEFAULT: "hsl(var(--muted))",
foreground: "hsl(var(--muted-foreground))",
},
// Sidebar colors
sidebar: {
background: "hsl(var(--sidebar-background))",
foreground: "hsl(var(--sidebar-foreground))",
},
// State colors
hover: "hsl(var(--hover))",
success: {
DEFAULT: "hsl(var(--success))",
light: "hsl(var(--success-light))",
},
warning: {
DEFAULT: "hsl(var(--warning))",
light: "hsl(var(--warning-light))",
},
info: {
DEFAULT: "hsl(var(--info))",
light: "hsl(var(--info-light))",
},
indigo: {
DEFAULT: "hsl(var(--indigo))",
light: "hsl(var(--indigo-light))",
},
orange: {
DEFAULT: "hsl(var(--orange))",
light: "hsl(var(--orange-light))",
},
},
fontFamily: {
sans: ["Inter", "system-ui", "-apple-system", "sans-serif"],
mono: ["Consolas", "Monaco", "Courier New", "monospace"],
},
boxShadow: {
sm: "0 1px 2px 0 rgb(0 0 0 / 0.05)",
DEFAULT: "0 2px 8px rgb(0 0 0 / 0.08)",
md: "0 4px 12px rgb(0 0 0 / 0.1)",
lg: "0 8px 24px rgb(0 0 0 / 0.12)",
},
borderRadius: {
lg: "0.5rem",
md: "0.375rem",
sm: "0.25rem",
},
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")],
}