Hi,
I made this really simple table to define all of my colors. There are about 80 colors and everything was working great until I needed a color name to have a space in it. Is there any way to list “powder blue” with a space in it? I display the name on the screen later, so removing the space creates a problem.
local M = {}
M.colorTable = {
pistachio = {174/255,203/255,128/255},
plum = {95/255,43/255,80/255},
powder blue = {153/255,193/255,211/255}
}
Thanks!