View source for Module:DropsClue
Jump to navigation
Jump to search
You do not have permission to edit this page, for the following reason:
You can view and copy the source of this page.
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 = {1, 2, 26, 100, 1000} -- Thresholds
local colors = {"#0b5884", "#3c780a", "#a48900", "#b55e0c", "#9f261e"} -- 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
000
1:0
Template used on this page:
Return to Module:DropsClue.