Skip to content

Commit 7f7d9b1

Browse files
committed
Tweak file icons
YML icon should be purple, and folder icon should be grey
1 parent 3dd2e25 commit 7f7d9b1

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

pkg/gui/presentation/icons/file_icons.go

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -10,9 +10,9 @@ import (
1010
// https://github.com/nvim-tree/nvim-web-devicons/blob/master/lua/nvim-web-devicons/icons-default.lua
1111

1212
var (
13-
DEFAULT_FILE_ICON = IconProperties{Icon: "\uf15b", Color: "#ECECEC"} // 
13+
DEFAULT_FILE_ICON = IconProperties{Icon: "\uf15b", Color: "#878787"} // 
1414
DEFAULT_SUBMODULE_ICON = IconProperties{Icon: "\U000f02a2", Color: "#FF4F00"} // 󰊢
15-
DEFAULT_DIRECTORY_ICON = IconProperties{Icon: "\uf07b", Color: "#0087FF"} // 
15+
DEFAULT_DIRECTORY_ICON = IconProperties{Icon: "\uf07b", Color: "#878787"} // 
1616
)
1717

1818
var nameIconMap = map[string]IconProperties{
@@ -742,8 +742,8 @@ var extIconMap = map[string]IconProperties{
742742
".xpi": {Icon: "\ueae6", Color: "#375A8E"}, // 
743743
".xul": {Icon: "\uf121", Color: "#DC682E"}, // 
744744
".xz": {Icon: "\uf410", Color: "#ECA517"}, // 
745-
".yaml": {Icon: "\ue6a8", Color: "#C90F02"}, // 
746-
".yml": {Icon: "\ue6a8", Color: "#C90F02"}, // 
745+
".yaml": {Icon: "\ue6a8", Color: "#a074b3"}, // 
746+
".yml": {Icon: "\ue6a8", Color: "#a074b3"}, // 
747747
".zig": {Icon: "\ue6a9", Color: "#FAA825"}, // 
748748
".zip": {Icon: "\uf410", Color: "#ECA517"}, // 
749749
".zsh": {Icon: "\U000f018d", Color: "#FF7043"}, // 󰆍

0 commit comments

Comments
 (0)