Files

27 lines
477 B
TypeScript
Raw Permalink Normal View History

2026-05-27 13:18:45 +02:00
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: [],
2026-06-02 17:52:36 +02:00
safelist: [
"group/info",
"group-hover/info:opacity-100",
"group/val",
"group-hover/val:opacity-100",
],
2026-05-27 13:18:45 +02:00
};
export default config;