Skip to content

Commit

Permalink
Updated hex codes to different standins. Closes #43
Browse files Browse the repository at this point in the history
  • Loading branch information
DaltonSW committed Sep 26, 2024
1 parent e3f0403 commit 151bcfb
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion internal/resources/UserView.go
Original file line number Diff line number Diff line change
Expand Up @@ -179,7 +179,7 @@ func getRowForYear(userToken string, year, day int) []string {
numStars += 1
}
} else {
sOut = lipgloss.NewStyle().Foreground(styles.SubtitleColor).Render(".")
sOut = lipgloss.NewStyle().Foreground(styles.NoStarsColor).Render(".")
}
stars[d] = sOut
d++
Expand Down
8 changes: 4 additions & 4 deletions internal/styles/colors.go
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ var (
BronzeColor = lipgloss.AdaptiveColor{Light: "#CD7F32", Dark: "#CD7F32"}

// Table colors
TableBorderColor = PurpleTextColor
TableBorderColor = lipgloss.AdaptiveColor{Light: "#8839EF", Dark: "#BD93F9"}

// Puzzle view colors
ItalColor = lipgloss.AdaptiveColor{Light: "#FF3374", Dark: "#FF3374"}
Expand All @@ -35,9 +35,9 @@ var (
CodeColor = lipgloss.AdaptiveColor{Light: "#FAC3D5", Dark: "#FAC3D5"}

// User display colors
BothStarsColor = lipgloss.Color("#FFFF66")
FirstStarColor = lipgloss.Color("#9999CC")
NoStarsColor = lipgloss.Color("#0F0F23")
BothStarsColor = lipgloss.Color("#F1FA8C")
FirstStarColor = lipgloss.Color("#838BA7")
NoStarsColor = lipgloss.Color("#414559")

// Misc colors
UpdateSpinnerColor = lipgloss.Color("#FB25A0")
Expand Down

0 comments on commit 151bcfb

Please sign in to comment.