Module:Color: Difference between revisions

From Caves of Qud Wiki
Jump to navigation Jump to search
(Created page with "local luatable = { ['r'] = "#a64a2e", ['R'] = "#d74200", ['g'] = "#009403", ['G'] = "#00c420", ['b'] = "#0048bd",...")
 
mNo edit summary
Line 1: Line 1:
local p = {}
local luatable = {
local luatable = {
             ['r'] = "#a64a2e",
             ['r'] = "#a64a2e",
Line 19: Line 20:
             ['O'] = "#e99f10"
             ['O'] = "#e99f10"
}
}
return luatable
 
function p.parse(x)
  return luatable[x]
end
 
return p

Revision as of 18:32, 22 October 2019


local p = {}
local luatable = {
            ['r'] = "#a64a2e",
            ['R'] = "#d74200",
            ['g'] = "#009403",
            ['G'] = "#00c420",
            ['b'] = "#0048bd",
            ['B'] = "#0096ff",
            ['c'] = "#40a4b9",
            ['C'] = "#77bfcf",
            ['m'] = "#b154cf",
            ['M'] = "#da5bd6",
            ['w'] = "#98875f",
            ['W'] = "#cfc041",
            ['k'] = "#0f3b3a",
            ['K'] = "#155352",
            ['y'] = "#b1c9c3",
            ['Y'] = "#FFFFFF",
            ['o'] = "#f15f22",
            ['O'] = "#e99f10"
}

function p.parse(x)
  return luatable[x]
end

return p