Below is a screenshot of what I hope to achieve in a way other than manually copying and pasting.
It's the material design color pallet and it looks great in Excel.
How can I loop through range B2:B15 and set each cell background color to its corresponding containing color?
Perhaps a VBA loop to go through the vertical B range of cells, parsing each cell content, and setting the cell background-color to the RGB value that the cell contains.
So a RED-50 cell containing rgb(255, 235, 238) becomes...
Range("B2").Interior.Color = RGB(255, 235, 238)
UPDATE!
Thank you everyone for the help. Below is the google drive link to the Excel material design palette you've help me build.
Press Control + M to activate.
So ALL COLORS become themselves.