mirror of
https://github.com/caty21/forex-dashboard.git
synced 2026-07-27 12:27:45 +00:00
27 lines
477 B
TypeScript
27 lines
477 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: [],
|
|
safelist: [
|
|
"group/info",
|
|
"group-hover/info:opacity-100",
|
|
"group/val",
|
|
"group-hover/val:opacity-100",
|
|
],
|
|
};
|
|
|
|
export default config;
|