style: change pagination dot to match color of other elements

This commit is contained in:
Slug-Boi
2024-11-25 18:19:00 +01:00
parent abd21e41a5
commit 2260132ba2
2 changed files with 3 additions and 2 deletions
+1 -1
View File
@@ -82,7 +82,7 @@ func newModel() mainModel {
p := paginator.New()
p.Type = paginator.Dots
p.ActiveDot = lipgloss.NewStyle().Foreground(lipgloss.AdaptiveColor{Light: "235", Dark: "252"}).Render("•")
p.ActiveDot = lipgloss.NewStyle().Foreground(lipgloss.AdaptiveColor{Light: "170", Dark: "170"}).Render("•")
p.InactiveDot = lipgloss.NewStyle().Foreground(lipgloss.AdaptiveColor{Light: "250", Dark: "238"}).Render("•")
p.PerPage = cap * lines
p.SetTotalPages(len(content))