A daily color-guessing game inspired by Wordle. Guess the RGB values of the daily color in 5 tries or less.
npm install
npm run devThen open http://localhost:5173
- Adjust the sliders to set your RGB guess
- Click "Make Guess" to submit
- Read the hints - they tell you which colors to add/remove
- Get feedback on your distance from the target
- Solve in 5 guesses or less!
Enable "Hard mode" for a memory challenge - the target color is only visible for 3 seconds!
The target color is generated deterministically from the current date, so everyone gets the same color each day. New color at midnight UTC.
When you win (or lose), click "Share Results" to copy a grid like:
HUE #142 3/5
⬛🟨🟨⬜⬜
- 🟩 = Exact match
- 🟨 = Close (< 30 delta)
- 🟧 = Getting there (< 80 delta)
- ⬛ = Far off
- React + TypeScript
- Vite
- No backend required - runs entirely in browser
MIT