leanos/tailwind.config.js
Thomas Lutz Kolter ee203fd9fb leanOS: initial import (basiert auf NEON NOODLE OS)
Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com>
2026-09-15 14:58:54 +02:00

22 lines
673 B
JavaScript

/** @type {import('tailwindcss').Config} */
export default {
content: ["./index.html", "./src/**/*.{ts,tsx}"],
theme: {
extend: {
fontFamily: {
mono: ["'JetBrains Mono'", "ui-monospace", "SFMono-Regular", "monospace"],
sans: ["Inter", "system-ui", "-apple-system", "sans-serif"],
},
keyframes: {
"fade-in": { "0%": { opacity: "0" }, "100%": { opacity: "1" } },
shimmer: { "0%": { backgroundPosition: "-200% 0" }, "100%": { backgroundPosition: "200% 0" } },
},
animation: {
"fade-in": "fade-in 0.3s ease-out",
shimmer: "shimmer 2s linear infinite",
},
},
},
plugins: [],
};