import type { Config } from "tailwindcss"; const config: Config = { content: [ "./app/**/*.{js,ts,jsx,tsx,mdx}", "./components/**/*.{js,ts,jsx,tsx,mdx}", ], theme: { extend: { colors: { bull: "#16a34a", bear: "#dc2626", neutral: "#6b7280", }, }, }, plugins: [], }; export default config;