Colorfle Answer Today
Puzzle #1484 — the three source colors that mix to create today's target. May 18, 2026.
Recent Colorfle Answers
What is Colorfle?
Colorfle is a daily color-mixing puzzle. Each day, the game generates a target color and your job is to identify the three component colors that, when mixed together with specific weights, produce that target. The game uses a fixed palette of twenty named colors — White, Light Yellow, Pink, Light Green, Lavender, Cyan, Yellow, Lime, Orange, Green, Magenta, Olive, Teal, Brown, Red, Blue, Purple, Maroon, Navy, and Black. You guess which three of these twenty colors combine to make the daily target. The limited palette means you are working with a constrained set of possibilities, but the number of three-color permutations is still large enough to make brute-force guessing impractical.
The mixing is not simple averaging. Colorfle uses weighted channel mixing across both YCC and RGB color spaces, then averages the two results. The weights are fixed: the first color contributes 50% of the final mix, the second contributes 34%, and the third contributes 16%. This weighted approach means the dominant color — the one in the first position — has an outsized influence on the result, while the third color adds subtle shading or an undertone that can shift the target in unexpected directions. Understanding this weight distribution is crucial for solving the puzzle efficiently.
The game launched in April 2022 during the wave of daily puzzle spinoffs that followed Wordle's explosive popularity. While most of those clones stuck to words and letters, Colorfle carved out a unique niche by focusing entirely on color perception and color mixing theory. The player base is smaller than Wordle's but noticeably dedicated — designers, artists, photographers, and front-end developers who work with color daily and enjoy having their perception tested in a structured, repeatable format. The daily reset creates a shared experience that players discuss and compare, much like Wordle's social sharing mechanic.
Understanding Today's Colorfle Components
The answer section above shows the three source colors with their names, hex codes, and weights. The weight tells you what percentage of the final mix each component represents. The first color carries 50% weight — it dominates the target. You should see that color's hue clearly in the result. The second color at 34% adds the secondary influence, and the third at 16% provides the subtle undertone or shading. Think of the first color as the base, the second as the modifier, and the third as the accent that gives the target its unique character.
When you look at the target color hex and compare it to the three source colors, you can see how the mixing works in practice. The dominant source pushes the target toward its hue family — if the first color is Red, the target will have a reddish quality regardless of what the other two colors are. The secondary source shifts the target in a different direction — if the dominant is a warm color and the secondary is cool, the target lands somewhere between the two on the color wheel. The tertiary source at 16% is often barely visible to the untrained eye but adds a specific quality that distinguishes the target from a simple two-color mix. Learning to spot that 16% contribution is one of the skills Colorfle tests.
Try browsing the recent answers grid above. Compare the source colors with the target for a few past puzzles and you will start seeing patterns in how certain combinations produce specific results. Red plus Yellow typically pushes toward orange territory. Blue plus Green moves toward teal. Adding White as the 16% component lightens the result, while Black darkens it. That pattern recognition is the core skill Colorfle tests, and it develops faster than you might expect with regular practice — especially if you use the unlimited mode to get more repetitions per session.
Strategy Tips for Colorfle
Start by identifying the dominant hue in the target. Is it mostly blue? Mostly green? Does it lean warm or cool? The component with the 50% weight drives the hue, so if the target looks clearly blue, one of your three picks should be a strong blue from the palette. Then think about what modifies that dominant color. If the blue target has a greenish cast, the secondary component might be Green or Teal. If it has a grayish quality, the secondary or tertiary might be a neutral like White or Black. This two-step process — identify the dominant, then identify the modifier — is the most reliable approach for your first guess.
Color perception has three dimensions: hue (what color family), saturation (how vivid), and brightness (how light or dark). Address each dimension separately. The dominant color usually controls hue. A secondary or tertiary color adjusts saturation — mixing a vivid color with a neutral like White or Black changes how saturated the result looks. Brightness is a function of all three components together. If the target is very bright, it probably includes White or a light color. If it is very dark, it probably includes Black or a dark color like Navy or Maroon.
If the target is a desaturated gray or brown, the component colors likely include complementary pairs — colors that sit opposite each other on the color wheel. Mixing Red and Cyan, or Blue and Orange, produces neutral tones because the opposing wavelengths cancel each other out. Desaturated targets are the hardest to solve because the component colors can be surprising — you would not intuitively guess that a gray target might be made from Red, Green, and White, but the math works out that way. The Colorfle solver is especially helpful for these cases because it can test all possible combinations mechanically rather than relying on intuition.
The answer reveal on this page uses pure CSS with no JavaScript. The answer starts hidden and becomes visible only when you click the reveal button. This keeps the page lightweight and fast-loading. We intentionally designed the reveal to be a deliberate action so you can read the strategy content without accidentally seeing the solution. If you prefer to solve the puzzle yourself first, scroll past the answer card and click the solver link instead.
How Colorfle Mixing Actually Works
Colorfle mixes colors in two different color spaces simultaneously and averages the results. In RGB space, each of the three source colors contributes its red, green, and blue channel values proportionally to its weight. So the first color's red channel is multiplied by 0.5, the second by 0.34, and the third by 0.16, and those values are summed to get the target's red channel. The same calculation applies to green and blue channels independently. This produces a straightforward weighted average in RGB space.
Simultaneously, each source color is converted to YCC color space — a luminance-chrominance representation that separates brightness from color information — and the weighted mixing happens in YCC space too. The YCC result is then converted back to RGB. Finally, the RGB result and the YCC-derived RGB result are averaged together to produce the final target color. This dual-space approach produces more visually accurate color mixing than pure RGB averaging, which tends to create muddy desaturated midtones that do not match how humans perceive mixed colors in the real world.
This is why guessing the component colors from the target is hard — the relationship between the source colors and the target is not a simple linear mapping. Two very different sets of source colors can produce nearly identical targets. The solver handles this by checking all possible combinations and ranking them by similarity, but even the solver cannot always distinguish between two valid combinations without feedback from actual guesses. That is where the feedback-based elimination mode becomes essential — it uses the green, yellow, and gray signals from your actual game guesses to rule out combinations that are mathematically consistent but factually wrong.