GameBoy (Color) port of the GTA San Andreas arcade game Duality
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

palette.py 326B

123456789101112131415161718
  1. #!/usr/bin/env python3
  2. colors = [
  3. # (8, 24, 32),
  4. # (52, 104, 86),
  5. # (136, 192, 112),
  6. # (224, 248, 208),
  7. (15, 56, 15),
  8. (48, 98, 48),
  9. (139, 172, 15),
  10. (155, 188, 15),
  11. ]
  12. def convert(c):
  13. return (round(c[0] / 8), round(c[1] / 4), round(c[2]/ 8))
  14. for c in colors:
  15. print(f"{c} -> {convert(c)}")