/ TrelliBird / color_names.py
color_names.py
1 # SPDX-FileCopyrightText: 2018 Dave Astels for Adafruit Industries 2 # 3 # SPDX-License-Identifier: MIT 4 5 """ 6 RGB Color Names 7 8 Adafruit invests time and resources providing this open source code. 9 Please support Adafruit and open source hardware by purchasing 10 products from Adafruit! 11 12 Copyright (c) 2018 Adafruit Industries 13 Licensed under the MIT license. 14 15 All text above must be included in any redistribution. 16 """ 17 18 RED = 0xFF0000 19 MAROON = 0x800000 20 ORANGE = 0xFF8000 21 YELLOW = 0xFFFF00 22 OLIVE = 0x808000 23 GREEN = 0x008000 24 AQUA = 0x00FFFF 25 TEAL = 0x008080 26 BLUE = 0x0000FF 27 NAVY = 0x000080 28 PURPLE = 0x800080 29 PINK = 0xFF0080 30 WHITE = 0xFFFFFF 31 BLACK = 0x000000