Module:DropsLineTest: Difference between revisions

From Roat Pkz
Jump to navigation Jump to search
No edit summary
No edit summary
Line 11: Line 11:
     -- Calculate percentages and choose color based on the percentage
     -- Calculate percentages and choose color based on the percentage
     local percentages = {0.85, 0.75, 0.70, 0.65, 0.60} -- Percentages
     local percentages = {0.85, 0.75, 0.70, 0.65, 0.60} -- Percentages
     local colors = {"#FFCCCC", "#FF9999", "#FF6666", "#FF3333", "#FF0000"} -- Corresponding colors
     local colors = {"#ff6262", "#ff6262", "#ff6262", "#ff6262", "#ff6262"} -- Corresponding colors
      
      
     for i, percent in ipairs(percentages) do
     for i, percent in ipairs(percentages) do

Revision as of 17:54, 5 May 2024

Documentation for this module may be created at Module:DropsLineTest/doc

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)

    -- 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", "#ff6262", "#ff6262", "#ff6262", "#ff6262"} -- 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
    
    return table.concat(output, '\n')
end

return p