import type { Config } from "tailwindcss"; const config: Config = { content: ["./app/**/*.{js,ts,jsx,tsx,mdx}"], theme: { extend: { colors: { bg: "#0b0d11", panel: "#13161d", panel2: "#1a1e27", border: "#252a35", ink: "#e6e8ee", mute: "#8a94a6", brand: "#5eead4", up: "#34d399", down: "#f87171", warn: "#fbbf24", }, fontFamily: { mono: ["ui-monospace", "SFMono-Regular", "Menlo", "Consolas", "monospace"], }, }, }, plugins: [], }; export default config;