Use Rosé Pine Dawn

This commit is contained in:
Cat /dev/Nulo 2022-05-05 12:03:21 -03:00
parent cf47c0acf9
commit 0cf3437f6e

13
main.go
View file

@ -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) {