Description
In crates/ui/src/theme.rs line 10, _accent_color is declared but never used. The underscore prefix suppresses the warning but the variable is still dead code.
Suggested Fix
Either remove the variable entirely, or use it for styling (e.g., for links, buttons, or focus states).
Description
In
crates/ui/src/theme.rsline 10,_accent_coloris declared but never used. The underscore prefix suppresses the warning but the variable is still dead code.Suggested Fix
Either remove the variable entirely, or use it for styling (e.g., for links, buttons, or focus states).