Module:Color: Difference between revisions

Jump to navigation Jump to search
53 bytes added ,  18:32, 22 October 2019
m
no edit summary
(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

Navigation menu