Huehive Logo

HueHive

#000000 Black
#550000 Dark Red
#005500 Dark Green
#555500 Dark Yellow
#000055 Dark Blue
#550055 Dark Magenta
#005555 Dark Cyan
#555555 Gray
#ff5555 Light Red
#55ff55 Light Green
#ffff55 Light Yellow
#5555ff Light Blue
#ff55ff Light Magenta
#55ffff Light Cyan
#aaaaaa Light Gray
#ffffff Bright Gray
#ffffff White

Extended EGA Palette

Palette Description

Absolutely! Let’s create a 16-color palette that adheres to the old-school color constraints, starting with total pitch black ( #000000 ) and ending with white ( #ffffff ). Here’s the palette:

json
{
  "palette_name": "Extended EGA Palette",
  "colors": [
    {
      "name": "Black",
      "hex_code": "
                            
                            #000000
                        "
    },
    {
      "name": "Dark Red",
      "hex_code": "
                            
                            #550000
                        "
    },
    {
      "name": "Dark Green",
      "hex_code": "
                            
                            #005500
                        "
    },
    {
      "name": "Dark Yellow",
      "hex_code": "
                            
                            #555500
                        "
    },
    {
      "name": "Dark Blue",
      "hex_code": "
                            
                            #000055
                        "
    },
    {
      "name": "Dark Magenta",
      "hex_code": "
                            
                            #550055
                        "
    },
    {
      "name": "Dark Cyan",
      "hex_code": "
                            
                            #005555
                        "
    },
    {
      "name": "Gray",
      "hex_code": "
                            
                            #555555
                        "
    },
    {
      "name": "Light Red",
      "hex_code": "
                            
                            #ff5555
                        "
    },
    {
      "name": "Light Green",
      "hex_code": "
                            
                            #55ff55
                        "
    },
    {
      "name": "Light Yellow",
      "hex_code": "
                            
                            #ffff55
                        "
    },
    {
      "name": "Light Blue",
      "hex_code": "
                            
                            #5555ff
                        "
    },
    {
      "name": "Light Magenta",
      "hex_code": "
                            
                            #ff55ff
                        "
    },
    {
      "name": "Light Cyan",
      "hex_code": "
                            
                            #55ffff
                        "
    },
    {
      "name": "Light Gray",
      "hex_code": "
                            
                            #aaaaaa
                        "
    },
    {
      "name": "Bright Gray",
      "hex_code": "
                            
                            #ffffff
                        "
    },
    {
      "name": "White",
      "hex_code": "
                            
                            #ffffff
                        "
    }
  ]
}

This palette features a variety of colors that stay within the quantization constraints of 00, 55, aa, or ff, starting with black and ending with white.

If you need any further adjustments or more palettes, feel free to let me know!