summaryrefslogtreecommitdiffstats
path: root/pkg/commands/branch.go
diff options
context:
space:
mode:
Diffstat (limited to 'pkg/commands/branch.go')
-rw-r--r--pkg/commands/branch.go4
1 files changed, 3 insertions, 1 deletions
diff --git a/pkg/commands/branch.go b/pkg/commands/branch.go
index cbcab2712..d1cafdfb4 100644
--- a/pkg/commands/branch.go
+++ b/pkg/commands/branch.go
@@ -4,6 +4,8 @@ import (
"fmt"
"strings"
+ "github.com/jesseduffield/lazygit/pkg/theme"
+
"github.com/fatih/color"
"github.com/jesseduffield/lazygit/pkg/utils"
)
@@ -38,7 +40,7 @@ func (b *Branch) GetColor() color.Attribute {
case "hotfix":
return color.FgRed
default:
- return color.FgWhite
+ return theme.DefaultTextColor
}
}