Files
openclaw/apps/android/style.md
T

114 lines
3.6 KiB
Markdown
Raw Normal View History

2026-02-24 18:07:50 +05:30
# OpenClaw Android UI Style Guide
Scope: all native Android UI in `apps/android` (Jetpack Compose).
Goal: one coherent visual system across onboarding, settings, and future screens.
2026-02-24 18:07:50 +05:30
## 1. Design Direction
- Clean, quiet surfaces.
- Strong readability first.
- One clear primary action per screen state.
- Progressive disclosure for advanced controls.
- Deterministic flows: validate early, fail clearly.
2026-02-24 18:07:50 +05:30
## 2. Style Baseline
2026-02-24 18:07:50 +05:30
The onboarding flow defines the current visual baseline.
New screens should match that language unless there is a strong product reason not to.
2026-02-24 18:07:50 +05:30
Baseline traits:
2026-02-24 18:07:50 +05:30
- Light neutral background with subtle depth.
- Clear blue accent for active/primary states.
- Strong border hierarchy for structure.
- Medium/semibold typography (no thin text).
- Divider-and-spacing layout over heavy card nesting.
2026-02-24 18:07:50 +05:30
## 3. Core Tokens
2026-02-24 18:07:50 +05:30
Use these as shared design tokens for new Compose UI.
2026-02-24 18:07:50 +05:30
- Background gradient: `#FFFFFF`, `#F7F8FA`, `#EFF1F5`
- Surface: `#F6F7FA`
- Border: `#E5E7EC`
- Border strong: `#D6DAE2`
- Text primary: `#17181C`
- Text secondary: `#4D5563`
- Text tertiary: `#8A92A2`
- Accent primary: `#1D5DD8`
- Accent soft: `#ECF3FF`
- Success: `#2F8C5A`
- Warning: `#C8841A`
2026-02-24 18:07:50 +05:30
Rule: do not introduce random per-screen colors when an existing token fits.
2026-02-24 18:07:50 +05:30
## 4. Typography
2026-02-24 18:07:50 +05:30
Primary type family: Manrope (`400/500/600/700`).
2026-02-24 18:07:50 +05:30
Recommended scale:
2026-02-24 18:07:50 +05:30
- Display: `34sp / 40sp`, bold
- Section title: `24sp / 30sp`, semibold
- Headline/action: `16sp / 22sp`, semibold
- Body: `15sp / 22sp`, medium
- Callout/helper: `14sp / 20sp`, medium
- Caption 1: `12sp / 16sp`, medium
- Caption 2: `11sp / 14sp`, medium
2026-02-24 18:07:50 +05:30
Use monospace only for commands, setup codes, endpoint-like values.
Hard rule: avoid ultra-thin weights on light backgrounds.
2026-02-24 18:07:50 +05:30
## 5. Layout And Spacing
2026-02-24 18:07:50 +05:30
- Respect safe drawing insets.
- Keep content hierarchy mostly via spacing + dividers.
- Prefer vertical rhythm from `8/10/12/14/20dp`.
- Use pinned bottom actions for multi-step or high-importance flows.
- Avoid unnecessary container nesting.
2026-02-24 18:07:50 +05:30
## 6. Buttons And Actions
2026-02-24 18:07:50 +05:30
- Primary action: filled accent button, visually dominant.
- Secondary action: lower emphasis (outlined/text/surface button).
- Icon-only buttons must remain legible and >=44dp target.
- Back buttons in action rows use rounded-square shape, not circular by default.
2026-02-24 18:07:50 +05:30
## 7. Inputs And Forms
2026-02-24 18:07:50 +05:30
- Always show explicit label or clear context title.
- Keep helper copy short and actionable.
- Validate before advancing steps.
- Prefer immediate inline errors over hidden failure states.
- Keep optional advanced fields explicit (`Manual`, `Advanced`, etc.).
2026-02-24 18:07:50 +05:30
## 8. Progress And Multi-Step Flows
2026-02-24 18:07:50 +05:30
- Use clear step count (`Step X of N`).
- Use labeled progress rail/indicator when steps are discrete.
- Keep navigation predictable: back/next behavior should never surprise.
2026-02-24 18:07:50 +05:30
## 9. Accessibility
2026-02-24 18:07:50 +05:30
- Minimum practical touch target: `44dp`.
- Do not rely on color alone for status.
- Preserve high contrast for all text tiers.
- Add meaningful `contentDescription` for icon-only controls.
2026-02-24 18:07:50 +05:30
## 10. Architecture Rules
2026-02-24 18:07:50 +05:30
- Durable UI state in `MainViewModel`.
- Composables: state in, callbacks out.
- No business/network logic in composables.
- Keep side effects explicit (`LaunchedEffect`, activity result APIs).
2026-02-24 18:07:50 +05:30
## 11. Source Of Truth
2026-02-24 18:07:50 +05:30
- `app/src/main/java/ai/openclaw/android/ui/OpenClawTheme.kt`
- `app/src/main/java/ai/openclaw/android/ui/OnboardingFlow.kt`
- `app/src/main/java/ai/openclaw/android/ui/RootScreen.kt`
- `app/src/main/java/ai/openclaw/android/ui/SettingsSheet.kt`
- `app/src/main/java/ai/openclaw/android/MainViewModel.kt`
2026-02-24 18:07:50 +05:30
If style and implementation diverge, update both in the same change.