chore: sync code and project files
This commit is contained in:
55
web/tailwind.config.js
Normal file
55
web/tailwind.config.js
Normal file
@@ -0,0 +1,55 @@
|
||||
/** @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: [],
|
||||
}
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
Reference in New Issue
Block a user