Skip to content

Commit

Permalink
Merge pull request #29 from koki-develop/update-default-styles
Browse files Browse the repository at this point in the history
  • Loading branch information
koki-develop committed Mar 31, 2023
2 parents 29a8665 + 6f17b0e commit 5b9f21b
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 5b9f21b

Please sign in to comment.