fix(onboarding): clearer bubbles and tighter composer

This commit is contained in:
Peter Steinberger
2025-12-20 22:03:24 +00:00
parent 98ff213708
commit 238c0c1b86
3 changed files with 70 additions and 10 deletions

View File

@@ -49,12 +49,22 @@ enum ClawdisChatTheme {
static var onboardingAssistantBubble: Color {
#if os(macOS)
Color(nsColor: .controlBackgroundColor).opacity(0.92)
let base = NSColor.controlBackgroundColor
let blended = base.blended(withFraction: 0.22, of: .white) ?? base
return Color(nsColor: blended)
#else
Color(uiColor: .secondarySystemBackground)
#endif
}
static var onboardingAssistantBorder: Color {
#if os(macOS)
Color.white.opacity(0.12)
#else
Color.white.opacity(0.12)
#endif
}
static var userText: Color { .white }
static var assistantText: Color {