this post was submitted on 11 Aug 2024
10 points (100.0% liked)
dailygames
917 readers
43 users here now
Community for daily games like Wordle, Jumblie, Connections etc.
Post your daily games and scores. Discover new games and discuss with others.
Find games
- The most comprehensive list of Wordle-like games and resources
- Lemmy-Thread featuring a lot of Wordle-style recommendations
- NYT Games Various puzzles including the original Wordle
- The Dles Curated collection of 200+ daily games
Share your results
Itβs useful to wrap your results in a markdown codeblock to preserve the layout. Put three backticks ```
before and after your result to create a codeblock.
π¨π¨β¬β¬β¬
π¨π©β¬β¬β¬
π©π©π¨π¨β¬
π©π©π©π©π©
Rules
- Be nice!
- Don't cheat!
founded 5 months ago
MODERATORS
you are viewing a single comment's thread
view the rest of the comments
view the rest of the comments
It's a sequence of three hexadecimal numbers, two digits each. The first two digits denote the amount of red, the middle two green, the last two blue (#rrggbb).
0 to 9 represent the values 0 to 9, A is 11, B is 12, and so forth to F which is 15. For each of the three pairs of digits, you have to multiply the left one by 16 before adding the right one.
For example,
4A = 4 * 16 + 10 = 64 + 10 = 74
. The highest possible value isFF = 15 * 16 + 15 = 240 + 15 = 255
and the lowest is00 = 0 * 16 + 0 = 0
.#ff0000 is the maximum amount of red and zero green or blue, so a bright red. #ff00ff is the maximum amount of red and blue, but no green, a bright magenta. #8000ff is roughly twice as much blue as red, a shade of purple. #ff8080 is a pale red, #800000 a dark red.
If you need more explanation, look up hexadecimal number notation and hexcode colours.
Thank you so much! What an informative post!