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: #ff6262;\" | 1/" .. inputNumber)
-- Calculate percentages and choose color based on the percentage
local percentages = {0.85, 0.75, 0.70, 0.65, 0.60} -- Percentages
local colors = {"#ff6262", "#4080ff", "#b940ff", "#ffdc40", "#40ffff"} -- Corresponding colors
for i, percent in ipairs(percentages) do
local value = inputNumber * percent
local color = colors[i]
table.insert(output, "| style=\"background-color: " .. color .. ";\" | 1/" .. value)
end
000
1:0
Template used on this page:
Return to Module:DropsLineTest.