Files
forex-dashboard/tailwind.config.ts
T
2026-05-27 13:18:45 +02:00

21 lines
352 B
TypeScript

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;