fix(ui): improve edge/vertex visibility on dark backgrounds (#196) #243
Reference in New Issue
Block a user
Delete Branch "fix/edge-visibility"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
Model edges were nearly invisible against the Catppuccin Mocha dark background, especially on cylindrical geometry where edge lines are thin.
Root cause
The default edge color was
RGB(25, 25, 25)(near-black) — the upstream FreeCAD default designed for light backgrounds. The KindredCreate preference pack overrode it toRGB(147, 68, 238)(purple), but that only achieved 2.91:1 contrast against the#181825viewport background.Fix
Change edge and vertex color to Catppuccin Mocha Subtext0
RGB(166, 173, 200)/#a6adc8:ViewParams.hcompile-time default (first-run experience)KindredCreate.cfgpreference packCloses #196