Skip to content

Commit

Permalink
Color tweaks
Browse files Browse the repository at this point in the history
  • Loading branch information
oz committed Mar 4, 2021
1 parent 01ff381 commit 8704db7
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions view.go
Original file line number Diff line number Diff line change
Expand Up @@ -109,15 +109,15 @@ func hourColorCode(hour int) (color string) {

// Day
case 9, 10, 11, 12, 13, 14, 15, 16, 17:
color = "11"
color = "227"

// Evening
case 18, 19:
color = "3"
color = "202"

// Night
default:
color = "17"
color = "27"
}
return color
}

0 comments on commit 8704db7

Please sign in to comment.