06488f0237
功能: - Go后端 (Gin + GORM + PostgreSQL) - UniApp用户端 (iOS/Android/小程序) - DaisyUI5后台管理 - JWT认证 + 微信登录 - 盲选加权算法 - 会员系统 + 优惠券 - 打分评价 + 偏好学习
35 lines
710 B
JavaScript
35 lines
710 B
JavaScript
/** @type {import('tailwindcss').Config} */
|
|
module.exports = {
|
|
content: ['./index.html', './src/**/*.{vue,js,ts}'],
|
|
theme: {
|
|
extend: {
|
|
colors: {
|
|
primary: '#FF6B35',
|
|
secondary: '#FF8C42',
|
|
}
|
|
}
|
|
},
|
|
plugins: [
|
|
require('daisyui')
|
|
],
|
|
daisyui: {
|
|
themes: [
|
|
{
|
|
blind: {
|
|
"primary": "#FF6B35",
|
|
"secondary": "#FF8C42",
|
|
"accent": "#667eea",
|
|
"neutral": "#1a1a2e",
|
|
"base-100": "#ffffff",
|
|
"base-200": "#f5f5f5",
|
|
"base-300": "#e8e8e8",
|
|
"info": "#2196f3",
|
|
"success": "#4caf50",
|
|
"warning": "#ff9800",
|
|
"error": "#f44336",
|
|
}
|
|
}
|
|
]
|
|
}
|
|
}
|