feat(ui): increase border opacity and adjust color for better visibility

Update the --lora-border CSS custom property to use a darker, more opaque color. The previous border color was too subtle and lacked sufficient contrast against the background. This change improves visual hierarchy and makes interface elements more distinguishable.
This commit is contained in:
Will Miao
2025-11-06 21:17:29 +08:00
parent a7ee883227
commit 035ad4b473

View File

@@ -48,7 +48,7 @@ html, body {
/* Composed Colors */ /* Composed Colors */
--lora-accent: oklch(var(--lora-accent-l) var(--lora-accent-c) var(--lora-accent-h)); --lora-accent: oklch(var(--lora-accent-l) var(--lora-accent-c) var(--lora-accent-h));
--lora-surface: oklch(97% 0 0 / 0.95); --lora-surface: oklch(97% 0 0 / 0.95);
--lora-border: oklch(90% 0.02 256 / 0.15); --lora-border: oklch(72% 0.03 256 / 0.45);
--lora-text: oklch(95% 0.02 256); --lora-text: oklch(95% 0.02 256);
--lora-error: oklch(75% 0.32 29); --lora-error: oklch(75% 0.32 29);
--lora-warning: oklch(var(--lora-warning-l) var(--lora-warning-c) var(--lora-warning-h)); --lora-warning: oklch(var(--lora-warning-l) var(--lora-warning-c) var(--lora-warning-h));