Files
yuclusters-mt5/frontend/tailwind.config.js
T
2026-06-04 18:12:47 -03:00

20 lines
354 B
JavaScript

/** @type {import('tailwindcss').Config} */
export default {
content: [
"./index.html",
"./src/**/*.{js,ts,jsx,tsx}",
],
theme: {
extend: {
colors: {
darkBg: "#0B0E14",
darkPanel: "#151B26",
neonGreen: "#00E676",
neonRed: "#FF1744",
goldPOC: "#FFD600",
}
},
},
plugins: [],
}