Revision 084975df-520a-4ffd-83cb-2b4766a367e0 - Stack Overflow
- The browser will try to convert **chucknorris** into a hexadecimal value.
- Since `c` is the only valid hex character in **chucknorris**, the value turns into: `c00c00000000`(**0 for all values that were invalid**).
- The browser then divides the result into three groupds: `Red = c00c`, `Green = 0000`, `Blue = 0000`.
- Since valid hex values for HTML backgrounds only contain two digits for each color type (**r**, **g**, **b**), the last two digits are truncated from each group, leaving an RGB value of `c00000` which is a brick-reddish toned color.