Skip to content

Commit

Permalink
update default styles
Browse files Browse the repository at this point in the history
  • Loading branch information
koki-develop committed Mar 31, 2023
1 parent 29a8665 commit 6f17b0e
Showing 1 changed file with 6 additions and 5 deletions.
11 changes: 6 additions & 5 deletions styles.go
Expand Up @@ -3,12 +3,13 @@ package fzf
import "github.com/charmbracelet/lipgloss"

var (
defaultColor = "#00ADD8"
defaultStylesOption = stylesOption{
cursor: lipgloss.NewStyle(),
cursorLine: lipgloss.NewStyle(),
matches: lipgloss.NewStyle(),
selectedPrefix: lipgloss.NewStyle(),
unselectedPrefix: lipgloss.NewStyle(),
cursor: lipgloss.NewStyle().Foreground(lipgloss.Color(defaultColor)),
cursorLine: lipgloss.NewStyle().Bold(true),
matches: lipgloss.NewStyle().Foreground(lipgloss.Color(defaultColor)),
selectedPrefix: lipgloss.NewStyle().Foreground(lipgloss.Color(defaultColor)),
unselectedPrefix: lipgloss.NewStyle().Faint(true),
}
)

Expand Down

0 comments on commit 6f17b0e

Please sign in to comment.