You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The selected file in the file tree uses a hardcoded background color (#2d2c35 in pkg/ui/common/styles.go). On most dark terminal themes this is nearly invisible — it barely reads as different from unselected items.
A ui.selectedColor config key would let users match it to their theme:
ui:
selectedColor: "#1e6ab5"
The implementation is small: thread the hex string from UIConfig into common.Colors at startup in filetree.go's updateStyles().
reacted with thumbs up emoji reacted with thumbs down emoji reacted with laugh emoji reacted with hooray emoji reacted with confused emoji reacted with heart emoji reacted with rocket emoji reacted with eyes emoji
Uh oh!
There was an error while loading. Please reload this page.
Uh oh!
There was an error while loading. Please reload this page.
The selected file in the file tree uses a hardcoded background color (
#2d2c35inpkg/ui/common/styles.go). On most dark terminal themes this is nearly invisible — it barely reads as different from unselected items.A
ui.selectedColorconfig key would let users match it to their theme:The implementation is small: thread the hex string from
UIConfigintocommon.Colorsat startup infiletree.go'supdateStyles().Screenshot
How it could be configured to look as an example:

All reactions