The Subtitle Color Code Generator turns an ordinary hex colour into the exact string a subtitle format expects. Type a value such as FFD700 into the Hex colour (e.g. FFD700) field, choose ASS or HTML in the Format menu, and press Run. The result is a short labelled line you can paste into a style or an override tag, or save as a .txt file.
It exists because of one of the most persistent gotchas in subtitle styling: ASS does not store colours the way the web does. HTML writes red, green, blue in that order, while ASS writes them reversed as blue, green, red behind an &H prefix. Pick a colour in a design tool, paste it into an ASS style unchanged, and gold comes out a strange blue. Fansubbers, motion designers and anyone matching captions to a brand palette lose time to that inversion.
The conversion is mechanical and precise. Any leading # is stripped, then the six digits are split into three pairs treated as red, green and blue. For ASS output the pairs are reassembled in blue-green-red order and wrapped as &H plus the digits plus a closing ampersand; for HTML they are returned in their original order behind a #. Each result is prefixed with a label naming the format, so a copied line stays self-documenting. No file is involved and nothing is transmitted anywhere.