reverting to the original colors in the text

This commit is contained in:
sejo 2024-04-26 19:36:30 +02:00
parent d977fde66e
commit 55c844241b
1 changed files with 5 additions and 5 deletions

View File

@ -199,12 +199,12 @@ how would we read what those literal shorts mean?
we can read each of the colors vertically, from left to right. therefore:
* color0 would have: red: 2, green: 1, blue: 1 (#221111 in hex color notation, brown)
* color1 would be red: e, green: e, blue: e (#eeeeee in hex color notation, white)
* color2 would be red: e, green: b, blue: 2 (#eebb22 in hex color notation, amber)
* color3 would be red: f, green: 8, blue: e (#ff88ee in hex color notation, pink)
* color0, a dark purple, would have: red: 2, green: 0, blue: 2 (#220022 in hex color notation)
* color1, magenta, would have: red: c, green: 1, blue: c (#cc11cc in hex color notation)
* color2, a light pink, would have: red: e, green: c, blue: e (#eeccee in hex color notation)
* color3, a dark red, would have: red: 9, green: 0, blue: 5 (#990055 in hex color notation)
if we run the program now we'll see a brown screen, instead of black as what we had before.
if we run the program now we'll see a dark purple screen (color0), instead of black as what we had before.
try changing the values of color0, i.e. the first column, and see what happens :)