Solution: Colors
Answer: SILVER

Written by Jon Schneider, Anderson Wang, and Dai Yang

If we try converting some of the colors to their hex values, we can see some patterns in many images. For example, the second image only uses the digits 0-9, and the last one is almost all letters A-F with some 0s thrown in. It turns out that each of the images, when converted to a 6x6 grid of hex characters, forms its own minipuzzle. Figuring out the rules of the puzzle allows you to fill in 6 missing hex digits from each grid, which have always been replaced by 0s. We now explain each of the mini-puzzles in order.



Hex color grid:
0FF211
47F42F
FFFF00
F8F6F2
FFF0F3
20F320

This grid contains several digits and a bunch of Fs. It turns out that this represents a minesweeper board, where Fs represent mines and digits give the number of mines in the up to 8 adjacent cells. We can use simple minesweeper logic to determine the values in the zeroed-out squares:

FFF211
47F42F
FFFF32
F8F6F2
FFF5F3
24F32F


Hex color grid:
118421
509007
481556
110421
307130
261314

For this grid, each digit is equal to the absolute value of the difference of the two digits above it. Some potential observations that help with figuring this out include the fact that many digits seem to be equal to the sum of nearby digits, and in particular it looks like the 2nd row is the sum of the 1st and 3rd rows. We can replace the six 0s with the correct digits to satisfy this condition:

118421
599977
481556
118421
377135
261314


Hex color grid:
2357B0
012358
014159
0130AF
270828
141021

In this puzzle, each row represents either a famous mathematical sequence or the digits of a mathematical constant: from top to bottom, they are prime numbers (note that B=11 in hex), Fibonacci numbers, digits of pi, triangular numbers, digits of e, and digits of the square root of 2. We can fill in the zeroed-out characters in each sequence as follows:

2357BD
112358
314159
0136AF
271828
141421


Hex color grid:
50BEBE
EA0DE0
ACA0EF
0A510A
EDEEEC
DED5DE

In this grid, reading down each column gives an English word with one letter missing, where 1 and 5 represent I and S respectively. The words are SEABED, FACADE, BIASED, EDDIES, BEEFED, and EFFACE.

5FBEBE
EA1DEF
ACADEF
BA51FA
EDEEEC
DED5DE


Hex color grid:
955251
F7CAC9
90A8D1
80B040
5F4B0B
0F6F01

Unlike the other grids which clearly have strange character distributions, this one seems relatively normal. It turns out that colors in this grid actually represent colors: each row is the hex representation of a Pantone color of the year from 2015-2019 in that order. This can be found by googling the first two rows (which don't have 0s, so they cannot change) together.

955251
F7CAC9
92A8D1
88B04B
5F4B8B
FF6F61


Hex color grid:
AC000D
DFBCEA
EA0DBC
BDCEAF
0EDACB
CB0FDE

Other than the 0s, this grid only has letters and no letter appears twice in any row or column, which lets us place the missing characters. In fact, this is actually a sudoku puzzle with 2x3 regions, though that's more of an easter egg and is certainly not needed to fill in the grid.

ACEBFD
DFBCEA
EAFDBC
BDCEAF
FEDACB
CBAFDE

Over all 6 grids, none of the changed characters appears in the same position. This means that we can combine all of them into a single 6x6 grid:

FFEBFD
19197F
32FD32
B886FB
F71585
F4A46F

At the same time, we can look at the six clues at the bottom. Perhaps with the help of some of the clearer associations (Ivy League University=brown, police=blue), we can determine that they all clue colors, and more specifically, X11 web colors.

ClueX11 colorHex representation
A citrus-y piece of lettuceLime Green32CD32
A communist that likes flowers, but only when they're sorta cookedMedium Violet RedC71585
A grim, very expensive piece of fishing equipmentDark GoldenrodB8860B
An Ivy League University in the desertSandy BrownF4A460
The result of putting a nut in boiling waterBlanched AlmondFFEBCD
What you would call the police after darkMidnight Blue191970

When written in hex, each of these colors is almost identical to one of the rows in the above grid, with one of its characters changed to an F (of course, they can't be replaced with 0s as before since no character in the final grid can be a 0).

FFEBCD
191970
32CD32
B8860B
C71585
F4A460

(Note that these two steps can be done simultaneously, and one can help with the other. For example, knowing some of the hex digits in a color can help you find its name, and also knowing the names of the colors can help solve the puzzle without all of the subparts as long as you can guess the replaced digits)

For the final step, we take the hex digits that the Fs change to in row order: C0C0C0. This is the hex representation of SILVER.


Author’s Notes

Anderson: When we were trying to fill in the last couple puzzles in the weeks leading up to the hunt, I saw this idea that Dai submitted and had mostly gone overlooked, and thought it could work well (not to mention that one of the two remaining unassigned answers was a color!). Dai came up with most of the subpuzzle ideas in his original proposal (minesweeper, words, math constants/sequences), and we worked together with Jon to create the remaining ones. The X11 web colors step was also added to give us more flexibility in making the grids.

Some other unused ideas included an addition or multiplication problem (which we eventually decided was too hard to spot and was replaced with the more "local" subtraction), and the colors of the pride flag (we thought it would've fit perfectly in this puzzle, but unfortunately, we couldn't find a canonical set of hex codes and didn't want to arbitrarily use the picture on the Wikipedia article. This was eventually replaced by the Pantone colors.)