change which 8 bit color is used for dark gray

This commit is contained in:
2026-04-25 06:41:56 +02:00
parent 5231f54c27
commit b7bc9956f9
2 changed files with 2 additions and 2 deletions

View File

@@ -22,7 +22,7 @@ PPM 8bits channels | In-game `RRRGGGBB` value | Name
`0x00_00_00` | `000_000_00` | Black
`0x00_00_FF` | `000_000_11` | Blue
`0x00_FF_00` | `000_111_00` | Green
`0x77_77_77` | `010_011_10` | Gray
`0x77_77_77` | `011_011_10` | Gray
`0xFF_00_00` | `111_000_00` | Red
`0xFF_00_FF` | `111_000_11` | Pink
`0xFF_80_00` | `111_100_00` | Orange

View File

@@ -41,7 +41,7 @@ const spritesMatchingStrings = {
0x00_00_00: '0b000_000_00',
0x00_00_FF: '0b000_000_11',
0x00_FF_00: '0b000_111_00',
0x77_77_77: '0b010_011_10',
0x77_77_77: '0b011_011_10',
0xFF_00_00: '0b111_000_00',
0xFF_00_FF: '0b111_000_11',
0xFF_80_00: '0b111_100_00',