29 lines
724 B
Markdown
29 lines
724 B
Markdown
# Onboarding UI Optimization (补充说明)
|
|
|
|
## Colors
|
|
```typescript
|
|
export const OnboardingColors = {
|
|
background: '#FFF4EA',
|
|
textPrimary: '#4A3B32',
|
|
textSecondary: '#8C8C8C', // 占位符颜色
|
|
buttonStart: '#F69F7B',
|
|
buttonEnd: '#F99CC0',
|
|
cardBackground: '#FFFFFF',
|
|
cursor: '#F99CC0', // 假设光标颜色与按钮结束色一致
|
|
};
|
|
```
|
|
|
|
## SVG Assets (Next Arrow)
|
|
```xml
|
|
<!-- 简单的右箭头 SVG 路径参考 -->
|
|
<svg width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="white" stroke-width="2" stroke-linecap="round" stroke-linejoin="round">
|
|
<path d="M5 12h14M12 5l7 7-7 7"/>
|
|
</svg>
|
|
```
|
|
|
|
## Intent Icons (Emojis as placeholders)
|
|
- 爱情: ❤️
|
|
- 生活: ⛅
|
|
- 旅游: 🌴
|
|
- 职场: 💼
|