16 lines
433 B
JavaScript
16 lines
433 B
JavaScript
/** @type {import('tailwindcss').Config} */
|
|
export default {
|
|
content: ["./index.html", "./src/**/*.{ts,tsx}"],
|
|
theme: {
|
|
extend: {
|
|
colors: {
|
|
cream: "#F3EEE3", surface: "#FBF8F1", line: "#E4DCCB",
|
|
ink: "#1C1B19", muted: "#7C7361", neg: "#C0493A", pos: "#3B6E4A",
|
|
},
|
|
fontFamily: { sans: ["Inter", "system-ui", "sans-serif"] },
|
|
borderRadius: { xl2: "14px" },
|
|
},
|
|
},
|
|
plugins: [],
|
|
};
|