From 2ef5d4ffa3cf02573b5bc187a2f3ed7c62cea402 Mon Sep 17 00:00:00 2001 From: TerryM Date: Tue, 12 May 2026 16:18:21 +0800 Subject: [PATCH] feat: configure Tailwind design tokens --- tailwind.config.mjs | 21 +++++++++++++++++++++ 1 file changed, 21 insertions(+) create mode 100644 tailwind.config.mjs diff --git a/tailwind.config.mjs b/tailwind.config.mjs new file mode 100644 index 0000000..2286922 --- /dev/null +++ b/tailwind.config.mjs @@ -0,0 +1,21 @@ +/** @type {import('tailwindcss').Config} */ +export default { + content: ['./src/**/*.{astro,html,js,jsx,md,mdx,ts,tsx}'], + theme: { + extend: { + colors: { + brand: '#f28a4b', + 'text-primary': '#2e2a28', + 'text-secondary': '#7a726d', + surface: '#f8f3ee', + 'surface-alt': '#f2eae3', + 'surface-footer': '#efe6de', + 'border-light': '#e3d9d1', + }, + fontFamily: { + sans: ['Inter', 'sans-serif'], + }, + }, + }, + plugins: [], +}