Files
FunConnect/web/tailwind.config.js
FunMC b17679cec6 feat: FunConnect v1.0.0 - Minecraft联机平台完整版
- server: Node.js TCP中继服务器,支持多节点集群
- web: React管理面板(仪表盘、房间管理、节点管理)
- client: Electron桌面客户端(连接、创建/加入房间、本地代理)
- deploy: Ubuntu一键部署脚本
2026-02-22 23:33:00 +08:00

26 lines
490 B
JavaScript

/** @type {import('tailwindcss').Config} */
export default {
content: [
"./index.html",
"./src/**/*.{js,ts,jsx,tsx}",
],
theme: {
extend: {
colors: {
mc: {
green: '#4CAF50',
dark: '#1a1a2e',
darker: '#16213e',
accent: '#0f3460',
highlight: '#e94560',
gold: '#FFD700',
}
},
fontFamily: {
minecraft: ['"Press Start 2P"', 'monospace'],
}
},
},
plugins: [],
}