Skip to content

Commit

Permalink
bold string
Browse files Browse the repository at this point in the history
  • Loading branch information
koki-develop committed Apr 30, 2023
1 parent 5732601 commit e2f1f55
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion internal/printer/printer.go
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ func (p *Printer) Print(w io.Writer, calendar github.Calendar) error {
for _, week := range calendar.Weeks {
for _, d := range week.ContributionDays {
c := lipgloss.Color(p.theme[d.ContributionLevel])
style := lipgloss.NewStyle().Foreground(c)
style := lipgloss.NewStyle().Foreground(c).Bold(true)
grasses = append(grasses, style.Render(p.grass))
}
}
Expand Down

0 comments on commit e2f1f55

Please sign in to comment.