Skip to content

Commit

Permalink
start with blue in colors.Spaced
Browse files Browse the repository at this point in the history
  • Loading branch information
kkoreilly committed Jan 15, 2025
1 parent df480d5 commit 183e1f9
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions colors/spaced.go
Original file line number Diff line number Diff line change
Expand Up @@ -23,9 +23,9 @@ func Spaced(idx int) color.RGBA {

// spacedLight is the light mode version of [Spaced].
func spacedLight(idx int) color.RGBA {
// red, blue, green, yellow, violet, aqua, orange, blueviolet
// blue, red, green, yellow, violet, aqua, orange, blueviolet
// hues := []float32{30, 280, 140, 110, 330, 200, 70, 305}
hues := []float32{25, 255, 150, 105, 340, 210, 60, 300}
hues := []float32{255, 25, 150, 105, 340, 210, 60, 300}
// even 45: 30, 75, 120, 165, 210, 255, 300, 345,
toffs := []float32{0, -10, 0, 5, 0, 0, 5, 0}
tones := []float32{65, 80, 45, 65, 80}
Expand All @@ -43,9 +43,9 @@ func spacedLight(idx int) color.RGBA {

// spacedDark is the dark mode version of [Spaced].
func spacedDark(idx int) color.RGBA {
// red, blue, green, yellow, violet, aqua, orange, blueviolet
// blue, red, green, yellow, violet, aqua, orange, blueviolet
// hues := []float32{30, 280, 140, 110, 330, 200, 70, 305}
hues := []float32{25, 255, 150, 105, 340, 210, 60, 300}
hues := []float32{255, 25, 150, 105, 340, 210, 60, 300}
// even 45: 30, 75, 120, 165, 210, 255, 300, 345,
toffs := []float32{0, -10, 0, 10, 0, 0, 5, 0}
tones := []float32{65, 80, 45, 65, 80}
Expand Down

0 comments on commit 183e1f9

Please sign in to comment.