更多操作
所有CitiZons Wiki公开日志的联合展示。您可以通过选择日志类型、输入用户名(区分大小写)或相关页面(区分大小写)筛选日志条目。
- 2025年4月24日 (四) 02:38 PasbellettiKikka 留言 贡献创建了页面Module:Infobox Custom (创建页面,内容为“local p = {} -- 计算亮度:返回 true 表示背景较亮,用黑字;false 表示背景暗,用白字 local function isLightColor(color) local r, g, b -- 处理 rgb(r, g, b) r, g, b = color:match("rgb%((%d+),%s*(%d+),%s*(%d+)%)") if r and g and b then r, g, b = tonumber(r), tonumber(g), tonumber(b) else -- 处理十六进制 #rrggbb local hex = color:match("#(%x%x%x%x%x%x)") if hex then r…”)