Mario 64 Color Code Generator _best_ -

A Discord bot and website launched to help the community store and share their custom color codes online. How They Work

If you don’t have a generator handy, here’s how to do it yourself. mario 64 color code generator

red = int(input("Red (0-255): ")) green = int(input("Green (0-255): ")) blue = int(input("Blue (0-255): ")) A Discord bot and website launched to help

# Convert decimal RGB to Hex hex_r = format(r, '02X') hex_g = format(g, '02X') hex_b = format(b, '02X') Formula: n64_color = ((red >> 3) << 10)

With that code, you can replace Mario’s shirt color in a tool like Toad’s Tool 64 or SM64 ROM Manager .

Formula: n64_color = ((red >> 3) << 10) | ((green >> 3) << 5) | (blue >> 3)

Super Mario 64 uses a (often RGB555 or RGB565), not the 24-bit (true color) system you might be used to on the web.