Skip to main content

Color Puzzle Solver

Colorfle Solver

Paste your target hex or use the color picker to get matching three-color combinations. Refine with green, yellow, and gray feedback.

You can enter a hex with or without the leading #.

Suggestions

0 shown

Start by entering a target hex above or use the color picker. After that, you can use the feedback cycle to refine the remaining Colorfle combinations.

More Solvers

Colorfle Solver, From a Daily Player

Colorfle is the daily game that shows you one color and asks you to figure out which three colors were mixed to make it. You get six tries, and each guess of three colors comes back with a green, yellow, or gray mark on every slot. I built this Colorfle solver to do the mixing math for me, feed it the target hex and it finds the three-color combinations that come closest. Here is how it works and how I finally stopped guessing at random.

How the Colorfle solver works

Colorfle's target is not a color you simply pick from a wheel. It is the result of mixing three unique colors from a palette, weighted so the first color contributes the most. The game gives you six tries to name the three, and after each guess it marks each of your three choices green, yellow, or gray.

Green means that color is in the mix in the right position. Yellow means it is in the mix but in the wrong slot. Gray means it is not in the mix at all. My solver reads those marks and keeps only the three-color combinations that are still consistent with everything you have seen.

You can also start from the target itself. Paste the hex code Colorfle shows you and the solver computes the top combinations whose mix lands closest to that shade. Either path gets you to the answer in a handful of guesses instead of a dozen.

Three colors, one target

The whole game is three colors in three slots. Lock one slot to green and you only have two left to find, which is when Colorfle gets dramatically easier.

The part that confused me for days

I assumed Colorfle was like the color mixing I learned in school, where red plus blue makes purple. It is not additive like that. The target is a weighted blend of three palette colors, and the positions matter. I spent my first week trying to eyeball the mix and failing every time.

The feedback marks were the thing I misread early. Yellow does not mean close to the right color, it means the right color in the wrong slot. Once I started treating yellow as a position hint rather than a quality hint, my guesses stopped chasing their own tail.

Position matters because the weights are not equal. The first color contributes the most to the final shade, so getting the first slot right changes the result far more than nailing the third. That is why I lock the first slot first.

A clean first guess

For a first guess I pick three colors that are as different from each other as possible, spread across the palette. If two of them come back gray, I have eliminated a huge chunk of the palette in one move. If one comes back green, I have a foundation to build on.

I keep my guesses varied early and precise late. Early guesses are about killing candidates, and late guesses are about testing the one or two slots still gray.

When I get a green I never move that color. When I get a yellow I try the same color in a different slot before I reach for a brand-new one.

Reading the green, yellow, and gray marks

The three marks are the entire feedback loop, and each one tells me a different kind of thing. I keep this mapping straight so I do not second-guess myself mid-solve.

What each Colorfle mark means

  • Green, the right color in the right slot, lock it
  • Yellow, the right color in the wrong slot, move it
  • Gray, not in the mix at all, drop it
  • A green in slot one matters most, because the first color contributes the most to the shade

Mistakes I keep seeing

The most common one is ignoring position. Two players can hold the exact same three colors and only one of them solves, because the order changes the mix. The solver tracks position for exactly this reason.

The second is abandoning a yellow too fast. If a color comes back yellow it is in the mix, you just have it in the wrong slot. Swapping it is almost always a better move than introducing a new color.

The third is assuming the target is a clean, saturated color. Plenty of Colorfle targets are muddy or pale because the three source colors blend toward a muted result. The solver does not get fooled by how the shade looks.

The weighted mix, fifty, thirty, twenty

The mix is not equal. A normal Colorfle target is fifty percent of the first color, thirty percent of the second, and twenty percent of the third. That weighting is why position matters so much, and why a green in the first slot changes the entire result.

Once I understood the weights I started thinking about which slot a color should be in. The dominant color in a target is almost always the first slot, and the accent is usually the third. Reading a target's brightness and hue through that lens got me a lot closer on my first guess.

Hard mode shifts the split to four colors, forty, thirty, twenty, and ten. The same green, yellow, and gray logic applies, but there is one more slot to nail and the tail color barely moves the shade, which makes it easy to overthink.

Palette landmarks I reason from

I keep a few anchor colors in my head, mid-blue, mid-green, mid-red, and the neutrals, and I reason every other shade as a step from one of them. That mental coordinate system is faster than staring at a hundred swatches.

When a target looks like a pale, washed-out blue I think mid-blue pushed toward white, which usually means a light or neutral color is in the mix. When it looks muddy brown I think a warm color crossed with its complement.

The solver does this landmark reasoning automatically, which is how it reaches a target in a handful of guesses. Watching it taught me to think the same way instead of guessing by feel.

My daily rhythm

I play Colorfle at lunch, when my eyes are least likely to fool me. Screens and bad lighting wreck color perception, so I always check the target on a properly lit display before I commit a hex to the solver.

I also screenshot the target and paste the hex into the solver rather than eyeballing it, because a shade that looks pink to me might be a light coral in hex. The numbers do not lie the way my eyes do.

The complementary trap

Two guesses that both feel wrong can still sit on opposite sides of the target, which is the trap I fell into most. I would think the palette felt warm and keep guessing warm, when the marks were quietly telling me to go cooler.

The solver does not have that bias. It tracks the marks cumulatively, so the picture I lose after three guesses stays intact on screen. Trusting the numbers over my short-term memory is the skill I built here.

Why I write my guesses down

I keep a tiny log of my guesses and their marks, even though the game shows them. Writing a gray list down is what stops me from re-guessing a color I have already eliminated, which I did constantly when I trusted memory.

Hex, RGB, and the solver's honest limits

The solver works in the same units the game uses: hex values and the color names from the palette. Paste a hex like #8ce874 and it returns the closest three-color blends with their names and hexes, so I can type the same thing straight into Colorfle.

Honest limit: the solver finds the combinations that best match the target I enter. If I mistype the hex or pick the wrong shade off a screenshot, the results will be close but not exact. I always double-check the hex against the game before I trust a solve.

The daily answers I publish on the site are confirmed from the official Colorfle game, so the target I am chasing is the real one and not my best guess.

Colorfle Solver FAQ

How does the Colorfle solver work?

It computes which three-color combinations from the palette mix closest to the target hex you enter, and it also filters those combinations using the green, yellow, and gray marks from your guesses.

What do green, yellow, and gray mean in Colorfle?

Green means the right color in the right slot, yellow means the right color in the wrong slot, and gray means the color is not in the mix at all.

How many tries do you get in Colorfle?

Six. Each try is a guess of three colors, and the marks come back on all three slots.

Is Colorfle the same as mixing red and blue?

Not exactly. The target is a weighted blend of three unique palette colors, and the first color contributes the most. Position matters, which is why yellow is a position hint, not a quality hint.

Why does position matter in Colorfle?

Because the mix is weighted, the first color changes the shade more than the third. The same three colors in a different order make a different target.

More WordSolverX tools

Photo of Preston Hayes

Written by

Preston Hayes

Preston Hayes is the credited editor for WordSolverX answer pages and puzzle strategy content. His work focuses on clear answer presentation, source verification, solver guidance, and fast corrections when a game changes.