Files
youclonedl/frontend/tailwind.config.js
Mattias Thall 52279752e4 Minimal flat redesign: white accent, remove card backgrounds
Replace yellow accent (#f5a623) with white (#ffffff) across the entire
app. Flatten VideoCard grid variant by removing zinc-900 card background
so content sits directly on the page. Simplify active states, badges,
progress bars, and hover effects throughout.

Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
2026-05-26 21:50:44 +02:00

25 lines
536 B
JavaScript

/** @type {import('tailwindcss').Config} */
export default {
content: ["./index.html", "./src/**/*.{js,jsx,ts,tsx}"],
darkMode: "class",
theme: {
extend: {
fontFamily: {
sans: ["DM Sans", "system-ui", "sans-serif"],
display: ["Space Grotesk", "system-ui", "sans-serif"],
},
colors: {
accent: {
DEFAULT: "#ffffff",
light: "#f4f4f5",
dark: "#d4d4d8",
},
},
aspectRatio: {
video: "16 / 9",
},
},
},
plugins: [],
};