From a21d3669f96137206def4ff4ed54ae8bbedb44ed Mon Sep 17 00:00:00 2001 From: zgaetano Date: Tue, 31 Mar 2026 15:29:55 -0400 Subject: [PATCH] Add tailwind.config.js --- tailwind.config.js | 21 +++++++++++++++++++++ 1 file changed, 21 insertions(+) create mode 100644 tailwind.config.js diff --git a/tailwind.config.js b/tailwind.config.js new file mode 100644 index 0000000..bcf114e --- /dev/null +++ b/tailwind.config.js @@ -0,0 +1,21 @@ +/** @type {import('tailwindcss').Config} */ +export default { + content: ["./index.html", "./src/**/*.{js,ts,jsx,tsx}"], + theme: { + extend: { + colors: { + // Dark theme matching Moonlight/Parsec vibes + surface: { + DEFAULT: "#1a1a2e", + raised: "#16213e", + elevated: "#0f3460", + }, + accent: { + DEFAULT: "#e94560", + hover: "#c73652", + }, + }, + }, + }, + plugins: [], +};