Files
video-flow/web/tailwind.config.js
2026-01-09 14:09:16 +08:00

56 lines
1.0 KiB
JavaScript

/** @type {import('tailwindcss').Config} */
export default {
content: [
"./index.html",
"./src/**/*.{js,ts,jsx,tsx}",
],
theme: {
extend: {
colors: {
// 深色主题 - 专业视频编辑器风格
editor: {
bg: '#1a1a1a',
panel: '#242424',
surface: '#2d2d2d',
border: '#3d3d3d',
hover: '#404040',
accent: '#3b82f6',
'accent-hover': '#2563eb',
text: '#e5e5e5',
'text-muted': '#a3a3a3',
success: '#22c55e',
warning: '#f59e0b',
danger: '#ef4444',
},
track: {
video: '#3b82f6',
audio: '#22c55e',
voiceover: '#8b5cf6',
subtitle: '#f59e0b',
fancy: '#ec4899',
bgm: '#06b6d4',
}
},
fontFamily: {
sans: ['Inter', 'system-ui', '-apple-system', 'sans-serif'],
mono: ['JetBrains Mono', 'Menlo', 'Monaco', 'monospace'],
},
},
},
plugins: [],
}