From 68fa1d07174640289d46938cb74f2cecadf99bc8 Mon Sep 17 00:00:00 2001 From: zzlgreat Date: Sat, 22 Nov 2025 13:52:23 +0800 Subject: [PATCH] update pay function --- tailwind.config.js | 27 ++++++++++++++++++++++++++- 1 file changed, 26 insertions(+), 1 deletion(-) diff --git a/tailwind.config.js b/tailwind.config.js index 9ba261eb..986d0b8a 100644 --- a/tailwind.config.js +++ b/tailwind.config.js @@ -12,7 +12,32 @@ module.exports = { "./node_modules/@heroui/react/dist/**/*.{js,ts,jsx,tsx}", ], theme: { - extend: {}, + extend: { + // Brainwave 自定义颜色 + colors: { + n: { + 1: "#FFFFFF", + 2: "#CAC6DD", + 3: "#ADA8C3", + 4: "#757185", + 5: "#3F3A52", + 6: "#252134", + 7: "#15131D", + 8: "#0E0C15", + }, + color: { + 1: "#AC6AFF", + 2: "#FFC876", + 3: "#FF776F", + 4: "#7ADB78", + 5: "#858DFF", + 6: "#FF98E2", + }, + stroke: { + 1: "#26242C", + }, + }, + }, }, darkMode: "class", // 支持深色模式(class 或 media) plugins: [heroui()],