35 lines
815 B
TypeScript
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;
|