Module:DropsClue
Documentation for this module may be created at Module:DropsClue/doc
local p = {}
-- Define a function to generate output based on the input number
function p.generateOutput(frame)
local inputNumber = tonumber(frame.args[1]) or 0
local output = {}
-- Define color thresholds and corresponding colors
local thresholds = {100, 200, 300, 400, 500} -- Thresholds
local colors = {"#ff9999", "#7aa7ff", "#d699ff", "#fff59e", "#b3f1ff"} -- Corresponding colors
-- Find the appropriate color based on the input number
local colorIndex = 1
for i, threshold in ipairs(thresholds) do
if inputNumber >= threshold then
colorIndex = i
else
break
end
end
-- Add the input number with the appropriate background color
local color = colors[colorIndex]
table.insert(output, " style=\"background-color: " .. color .. ";\" 1/| " .. inputNumber)
return table.concat(output, '\n')
end
return p