Files
maqt-desktop/tailwind.config.ts
Chen Gu 5bd314deb2 chore: initial commit - maqt-desktop v0.2
- Phase 1-5: UI framework, auth, weapon schemes, color filters, system optimization
- Industrial/tech design style with Chinese localization
- Points to gch3n.online/delta backend API
- Hardware monitor, filter editor, and all module pages
2026-05-09 00:31:09 +08:00

41 lines
998 B
TypeScript

import type { Config } from 'tailwindcss';
const config: Config = {
content: ['./index.html', './src/**/*.{js,ts,jsx,tsx}'],
theme: {
extend: {
colors: {
// New palette: Industrial/Tech style
tactical: {
bg: '#1a1a1a',
surface: '#222222',
border: '#333333',
borderLight: '#555555',
text: '#e0e0e0',
textMuted: '#888888',
textDim: '#555555',
accent: '#ff4500',
accentDim: '#cc3700',
black: '#111111',
dark: '#1e1e1e',
gray: '#333333',
green: '#ff4500',
gold: '#ff4500',
goldLight: '#ff6a33',
warn: '#cc3300',
army: '#ff4500',
armyDark: '#1a0a00',
},
},
fontFamily: {
sans: ['Inter', 'Helvetica', 'sans-serif'],
mono: ['JetBrains Mono', 'monospace'],
tech: ['Inter', 'sans-serif'],
},
},
},
plugins: [],
};
export default config;