跳转到内容

模組:TextfromBGcolor

维基百科,自由的百科全书
local p = {}

function p.textColor(frame)
	local bg = frame.args[1] 
	local result = 'black'
	if bg == 'red' then result = 'white'
	end
	return result
end

return p