Subject: They're...
Author:
Posted on: 2016-04-21 15:30:00 UTC

... the colours those words come out as when you shove them into a font tag.

So [font color="Delta Juliette"]like this[/font].

They are calculable - we had a long thread a year or two back delving into exactly how the HTML parsed them. Let me think...

What it's doing is splitting your name into three chunks:

DELTA _JULI ETTE0

Then it's reading the first two characters of each chunk as a hex value, rendering everything other than 0-9a-f as 0:

DE 00 E0

... and that's your RGB value. The tricky part comes when a) your name is too short, or b) your name is too long. Oh, or c) your name would come out as 00 00 00.

(From memory: three letters or less gets split into three and then padded from the front: AA becomes AA0 becomes 0A 0A 0A. On the flip side, if the three chunks are more than 8 characters each, it trims them down to 8 from the left before continuing to trim from the right. And it will always trim all three equally from the left until it finds a valid hex code in one of them. It's all very strange.)

hS, rambling a bit

Reply Return to messages