chore(ui/style): drop unused DIM_TEXT palette constant

Defined in Task 2 as a palette slot for section-disabled header styling,
but the final code path never used it — disabled sections rely on egui's
add_enabled auto-dimming instead of a manual header color. Removes the
last dead-code warning from the UI rewrite.
This commit is contained in:
xfy 2026-07-17 16:35:28 +08:00
parent e67a0eaec1
commit 99b23cd056

View File

@ -13,7 +13,6 @@ pub const ACCENT_ORANGE: Color32 = Color32::from_rgb(255, 140, 66); // #FF8C42
pub const PANEL_FILL: Color32 = Color32::from_rgb(14, 16, 20); // #0E1014 pub const PANEL_FILL: Color32 = Color32::from_rgb(14, 16, 20); // #0E1014
pub const EXTREME_BG: Color32 = Color32::from_rgb(8, 9, 12); // #08090C pub const EXTREME_BG: Color32 = Color32::from_rgb(8, 9, 12); // #08090C
pub const MUTED_TEXT: Color32 = Color32::from_rgb(140, 140, 140); // read-only / disabled labels pub const MUTED_TEXT: Color32 = Color32::from_rgb(140, 140, 140); // read-only / disabled labels
pub const DIM_TEXT: Color32 = Color32::from_rgb(110, 110, 110); // section-disabled headers
/// Text sizes applied over egui's default `Proportional` family. No custom /// Text sizes applied over egui's default `Proportional` family. No custom
/// font binary is embedded (spec non-goal). /// font binary is embedded (spec non-goal).