ordinarthur-os/apps/pwa/tailwind.config.ts
ordinarthur bc0c15873f init
2026-04-15 16:41:19 +02:00

35 lines
815 B
TypeScript

import type { Config } from "tailwindcss";
export default {
content: ["./index.html", "./src/**/*.{ts,tsx}"],
theme: {
extend: {
colors: {
bg: "#F5F1EA",
ink: "#0F0F0F",
muted: "#8A8579",
accent: "#FF4A1C",
surface: "#FFFFFF",
},
fontFamily: {
sans: ['"Inter Tight"', "system-ui", "sans-serif"],
mono: ['"Space Mono"', '"JetBrains Mono"', "monospace"],
},
letterSpacing: {
tightest: "-0.03em",
label: "0.06em",
},
keyframes: {
"accent-pulse": {
"0%, 100%": { opacity: "1" },
"50%": { opacity: "0.35" },
},
},
animation: {
"accent-pulse": "accent-pulse 1.6s ease-in-out infinite",
},
},
},
plugins: [],
} satisfies Config;