From 0cf3437f6ee0690a30ea97525f51644dc96f3f0a Mon Sep 17 00:00:00 2001 From: Nulo Date: Thu, 5 May 2022 12:03:21 -0300 Subject: [PATCH] =?UTF-8?q?Use=20Ros=C3=A9=20Pine=20Dawn?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- main.go | 13 +++++++++++-- 1 file changed, 11 insertions(+), 2 deletions(-) diff --git a/main.go b/main.go index 615cac3..f6c10c3 100644 --- a/main.go +++ b/main.go @@ -23,11 +23,20 @@ var ROSE_PINE_COLORS = []color.RGBA{ {0x9C, 0xCF, 0xD8, 0xFF}, {0xC4, 0xA7, 0xE7, 0xFF}, } +var ROSE_PINE_DAWN_BASE = color.RGBA{250, 244, 237, 255} +var ROSE_PINE_DAWN_COLORS = []color.RGBA{ + {0xB4, 0x63, 0x7a, 0xFF}, // love + {0xEA, 0x9d, 0x34, 0xFF}, // gold + {0xD7, 0x82, 0x7A, 0xFF}, // rose + {0x28, 0x69, 0x83, 0xFF}, // pine + {0x56, 0x94, 0x9F, 0xFF}, // foam + {0x90, 0x7A, 0xA9, 0xFF}, // iris +} func PrepareCanvas(c *generativeart.Canva) { - c.SetBackground(ROSE_PINE_BASE) + c.SetBackground(ROSE_PINE_DAWN_BASE) c.FillBackground() - c.SetColorSchema(ROSE_PINE_COLORS) + c.SetColorSchema(ROSE_PINE_DAWN_COLORS) } func GenerateCircle(wg *sync.WaitGroup) {