import type { Config } from "tailwindcss";

const config: Config = {
  content: ["./src/**/*.{ts,tsx}"],
  theme: {
    extend: {
      colors: {
        ink: {
          950: "#07090f",
          900: "#0b0e17",
          850: "#10141f",
          800: "#151b29",
          700: "#1e2638",
          600: "#2a3550",
        },
        bull: "#22c55e",
        bear: "#ef4444",
        accent: "#38bdf8",
        gold: "#f59e0b",
      },
      fontFamily: {
        mono: ["ui-monospace", "SFMono-Regular", "Menlo", "monospace"],
      },
    },
  },
  plugins: [],
};

export default config;
