PC端的部分适配

This commit is contained in:
2026-03-16 17:47:10 +08:00
parent 798dd7c9a0
commit cb2087f779
30 changed files with 4242 additions and 438 deletions

View File

@@ -6,9 +6,9 @@
// ==================== 颜色系统 ====================
export const colors = {
primary: {
main: '#FF6B35', // 胡萝卜
light: '#FF8F66',
dark: '#E5521D',
main: '#FF6B35', // 橙色(主色)
light: '#FFB733',
dark: '#CC8400',
contrast: '#FFFFFF',
},
secondary: {
@@ -16,6 +16,18 @@ export const colors = {
light: '#80E27E',
dark: '#087F23',
},
neutral: {
main: '#6B7280', // 中性灰(辅助色)
light: '#9CA3AF',
dark: '#374151',
bg: '#F3F4F6', // 浅灰背景
bgDark: '#1F2937', // 深灰背景
},
accent: {
main: '#E57373', // 低饱和红(点缀色)
light: '#FFCDD2',
dark: '#C62828',
},
background: {
default: '#F5F5F5',
paper: '#FFFFFF',
@@ -73,6 +85,8 @@ export const spacing = {
'2xl': 24,
'3xl': 32,
'4xl': 40,
'5xl': 48,
'6xl': 56,
};
// ==================== 圆角系统 ====================