这是Module:TextfromBGcolor的当前版本,由VulpesVulpes825(留言 | 贡献)编辑于2019年2月1日 (五) 21:08。这个网址是本页该版本的固定链接。
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