Module:DropsClue: Difference between revisions

From Roat Pkz
Jump to navigation Jump to search
No edit summary
No edit summary
 
Line 8: Line 8:
     -- Define color thresholds and corresponding colors
     -- Define color thresholds and corresponding colors
     local thresholds = {1, 2, 26, 100, 1000} -- Thresholds
     local thresholds = {1, 2, 26, 100, 1000} -- Thresholds
     local colors = {"#afeeee", "#56e156", "#ffed4c", "#ff863c", "#ff6262"} -- Corresponding colors
     local colors = {"#0b5884", "#3c780a", "#a48900", "#b55e0c", "#9f261e"} -- Corresponding colors


     -- Find the appropriate color based on the input number
     -- Find the appropriate color based on the input number

Latest revision as of 14:37, 21 June 2024

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 = {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

    -- 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