From 138e1a82739367e2e15047fd24c3d2b34aa64188 Mon Sep 17 00:00:00 2001 From: Josh Knapp Date: Sun, 12 Jul 2026 20:14:10 -0700 Subject: [PATCH] Bump muted/dim text contrast and block label legibility - --color-text-muted #71717a -> #8b8b96 (~4.9:1 on surface) - --color-text-dim #52525b -> #6e6e78 (~3.3:1, decorative-only text) - .block-item-label 10px -> 11px, .block-item-icon 18px -> 20px for hierarchy in the Blocks panel tile grid Co-Authored-By: Claude Opus 4.8 (1M context) --- craft/src/styles/editor.css | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/craft/src/styles/editor.css b/craft/src/styles/editor.css index 409499e..2937a34 100644 --- a/craft/src/styles/editor.css +++ b/craft/src/styles/editor.css @@ -16,8 +16,8 @@ --color-border: #2d2d3a; --color-border-light: #3f3f46; --color-text: #e4e4e7; - --color-text-muted: #71717a; - --color-text-dim: #52525b; + --color-text-muted: #8b8b96; + --color-text-dim: #6e6e78; --color-accent: #3b82f6; --color-accent-hover: #2563eb; --color-accent-subtle: rgba(59, 130, 246, 0.12); @@ -704,7 +704,7 @@ body { } .block-item-icon { - font-size: 18px; + font-size: 20px; color: var(--color-text-muted); transition: color var(--transition-fast); } @@ -714,7 +714,7 @@ body { } .block-item-label { - font-size: 10px; + font-size: 11px; font-weight: 500; color: var(--color-text-muted); text-align: center;