基本功能完成,下一步开始美化UI

This commit is contained in:
2025-12-19 16:02:38 +08:00
parent 465d4d7b4a
commit 6ac216d184
46 changed files with 2576 additions and 618 deletions

View File

@@ -8,22 +8,37 @@ export default {
extend: {
colors: {
primary: {
50: '#e6f7ff',
100: '#bae7ff',
200: '#91d5ff',
300: '#69c0ff',
400: '#40a9ff',
500: '#1890ff',
600: '#096dd9',
700: '#0050b3',
800: '#003a8c',
900: '#002766',
50: '#f0fcfc',
100: '#ccf5f5',
200: '#99ebeb',
300: '#66e0e0',
400: '#00A3A3', // Auxiliary Light
500: '#008C8C', // Mars Green (Base)
600: '#006666', // Auxiliary Dark
700: '#004d4d',
800: '#003333',
900: '#001a1a',
},
mars: {
50: '#f0fcfc',
100: '#ccf5f5',
200: '#99ebeb',
300: '#66e0e0',
400: '#00A3A3',
500: '#008C8C',
600: '#006666',
700: '#004d4d',
800: '#003333',
900: '#001a1a',
}
},
fontFamily: {
sans: ['Inter', 'ui-sans-serif', 'system-ui', '-apple-system', 'BlinkMacSystemFont', 'Segoe UI', 'Roboto', 'Helvetica Neue', 'Arial', 'Noto Sans', 'sans-serif', 'Apple Color Emoji', 'Segoe UI Emoji', 'Segoe UI Symbol', 'Noto Color Emoji'],
},
spacing: {
// Ensuring 8px grid alignment (Tailwind defaults are already 4px based, so p-2=8px, p-4=16px)
}
},
},
plugins: [],
}
}