From 8f5a99258fad438897d2e4ccec3573a62e809ca9 Mon Sep 17 00:00:00 2001 From: Hel Gibbons Date: Thu, 21 Jul 2022 15:01:12 +0100 Subject: [PATCH] add non-binary flag! --- micropython/examples/tufty2040/pride_badge.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/micropython/examples/tufty2040/pride_badge.py b/micropython/examples/tufty2040/pride_badge.py index b50237fa..0e09d4ef 100644 --- a/micropython/examples/tufty2040/pride_badge.py +++ b/micropython/examples/tufty2040/pride_badge.py @@ -20,6 +20,7 @@ BROWN = display.create_pen(97, 57, 21) BLACK = display.create_pen(0, 0, 0) MAGENTA = display.create_pen(255, 33, 140) CYAN = display.create_pen(33, 177, 255) +AMETHYST = display.create_pen(156, 89, 209) # Uncomment one of these to change flag # If adding your own, colour order is left to right (or top to bottom) @@ -28,6 +29,7 @@ COLOUR_ORDER = [RED, ORANGE, YELLOW, GREEN, INDIGO, VIOLET] # traditional pride # COLOUR_ORDER = [BLUE, PINK, WHITE, PINK, BLUE] # trans flag # COLOUR_ORDER = [MAGENTA, YELLOW, CYAN] # pan flag # COLOUR_ORDER = [MAGENTA, VIOLET, INDIGO] # bi flag +# COLOUR_ORDER = [YELLOW, WHITE, AMETHYST, BLACK] # non-binary flag # Change this for vertical stripes STRIPES_DIRECTION = "horizontal"