Emiliano Fierro wrote: ↑November 16th, 2019, 8:21 pm
Here are the conversions I want to do:
The blue text Background from 16 0 97 to 37 37 37
The Palace wall marks from 195 154 81 to 143 143 143
The red potion Bubbles from 227 0 48 to 91 91 91
blue text background:
Search: B8 04 00 50 2B C0 50 B8 18 00 50
Change: 04 to the red component, 2B to B0, C0 to the green component, 18 to the blue component.
The new RGB values are 0x09 in your case. (37/4 rounded to integer.)
palace wall marks:
viewtopic.php?p=15233#p15233
Search for: B8 30 00 50 B8 26 00 50 B8 14 00 50
Change: 30, 26, 14 to the RGB values of the new color.
The new RGB values are 0x24 in your case. (143/4 rounded to integer.)
red potion bubbles:
viewtopic.php?p=26260#p26260 -- under option a)
Search: B8 38 00 50 2B C0 50 B8 0C 00 50
Change: 38 to the red component, 2B to B0, C0 to the green component, 0C to the blue component.
The new RGB values are 0x17 in your case. (91/4 rounded to integer.)