View source for Module:DropsLineTest
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 numbers based on the input
function p.generateOutput(frame)
local inputNumber = tonumber(frame.args[1]) or 0
local output = {}
-- Add the input number
table.insert(output, "style=\"background-color: #FFCCCC;\" | 1/" .. inputNumber)
-- Define color ranges
local colorRanges = {
{1, 25, "#00FF00"}, -- Green for 1-25
{26, 100, "#FFFF00"}, -- Yellow for 26-100
{101, 1000, "#FFA500"} -- Orange for 101-1000
}
-- Determine color based on input number
local color = "#FF0000" -- Default to red if not in specified ranges
for _, range in ipairs(colorRanges) do
000
1:0
Template used on this page:
Return to Module:DropsLineTest.