From 1ad53817cdf60c032450271211132e26608d2cf2 Mon Sep 17 00:00:00 2001 From: multipleof4 Date: Thu, 26 Feb 2026 13:51:59 -0800 Subject: [PATCH] Feat: Tailwind content and typography theme --- tailwind.config.js | 22 ++++++++++++++++++++++ 1 file changed, 22 insertions(+) create mode 100644 tailwind.config.js diff --git a/tailwind.config.js b/tailwind.config.js new file mode 100644 index 0000000..0aaf1e6 --- /dev/null +++ b/tailwind.config.js @@ -0,0 +1,22 @@ +/** @type {import('tailwindcss').Config} */ +export default { + content: ["./src/**/*.html", "./src/**/*.js"], + theme: { + extend: { + colors: { + paper: "#fcfcfa", + ink: "#15151b", + accent: "#4f46e5", + soft: "#eef2ff" + }, + fontFamily: { + sans: ['"Space Grotesk Variable"', "ui-sans-serif", "system-ui"], + serif: ['"Source Serif 4"', "ui-serif", "Georgia"] + }, + boxShadow: { + card: "0 10px 30px rgba(0,0,0,.06)" + } + } + }, + plugins: [require("@tailwindcss/typography")] +};