summaryrefslogtreecommitdiffstats
path: root/pkg/gui/workspace_reset_options_panel.go
diff options
context:
space:
mode:
Diffstat (limited to 'pkg/gui/workspace_reset_options_panel.go')
-rw-r--r--pkg/gui/workspace_reset_options_panel.go4
1 files changed, 2 insertions, 2 deletions
diff --git a/pkg/gui/workspace_reset_options_panel.go b/pkg/gui/workspace_reset_options_panel.go
index 872cc4508..de5440d8d 100644
--- a/pkg/gui/workspace_reset_options_panel.go
+++ b/pkg/gui/workspace_reset_options_panel.go
@@ -3,11 +3,11 @@ package gui
import (
"fmt"
- "github.com/fatih/color"
+ "github.com/jesseduffield/lazygit/pkg/gui/style"
)
func (gui *Gui) handleCreateResetMenu() error {
- red := color.New(color.FgRed)
+ red := style.FgRed
nukeStr := "reset --hard HEAD && git clean -fd"
if len(gui.State.Submodules) > 0 {