Module:Color: Difference between revisions

Jump to navigation Jump to search
123 bytes added ,  18:38, 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
 
(One intermediate revision by the same user not shown)
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)
  if x.args ~= nil then
    return luatable[x.args[1]]
  else
    return luatable[x]
  end
end
 
return p

Navigation menu