update pay function

This commit is contained in:
2025-11-22 15:57:17 +08:00
parent a8d38e85d2
commit a15830c97e
2 changed files with 26 additions and 55 deletions

View File

@@ -1,51 +0,0 @@
/** @type {import('tailwindcss').Config} */
const { heroui } = require("@heroui/react");
module.exports = {
// 只扫描项目源码,不包含 node_modules
// Hero UI 通过 @source 指令在 brainwave.css 中声明
content: [
"./src/**/*.{js,jsx}",
"./public/index.html",
],
darkMode: "class",
theme: {
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",
},
},
},
},
plugins: [heroui()],
safelist: [
'bg-gradient-to-br',
'from-blue-500',
'to-purple-500',
'backdrop-blur-xl',
],
}