import type { Config } from "tailwindcss"; const config: Config = { content: ["./app/**/*.{ts,tsx}", "./components/**/*.{ts,tsx}"], theme: { extend: { colors: { ink: "#0b0f17", panel: "#121826", panel2: "#1a2234", edge: "#243049", accent: "#5b8cff", accent2: "#22d3ee", good: "#34d399", warn: "#fbbf24", bad: "#f87171", muted: "#8a96ad", }, }, }, plugins: [], }; export default config;