mirror of
https://github.com/rose-pine/neovim.git
synced 2025-10-15 12:38:53 +02:00
65 lines
1.5 KiB
Lua
65 lines
1.5 KiB
Lua
local utilities = {}
|
|
|
|
---@param color string
|
|
local function color_to_rgb(color)
|
|
local function byte(value, offset)
|
|
return bit.band(bit.rshift(value, offset), 0xFF)
|
|
end
|
|
|
|
local new_color = vim.api.nvim_get_color_by_name(color)
|
|
if new_color == -1 then
|
|
new_color = vim.opt.background:get() == "dark" and 000 or 255255255
|
|
end
|
|
|
|
return { byte(new_color, 16), byte(new_color, 8), byte(new_color, 0) }
|
|
end
|
|
|
|
local color_cache = {}
|
|
|
|
---@param color string Palette key or hex value
|
|
function utilities.parse_color(color)
|
|
if color_cache[color] then
|
|
return color_cache[color]
|
|
end
|
|
|
|
if color == nil then
|
|
print("Invalid color: " .. color)
|
|
return nil
|
|
end
|
|
|
|
color = color:lower()
|
|
|
|
if not color:find("#") and color ~= "NONE" then
|
|
color = require("rose-pine.palette")[color] or vim.api.nvim_get_color_by_name(color)
|
|
end
|
|
|
|
color_cache[color] = color
|
|
return color
|
|
end
|
|
|
|
local blend_cache = {}
|
|
|
|
---@param fg string Foreground color
|
|
---@param bg string Background color
|
|
---@param alpha number Between 0 (background) and 1 (foreground)
|
|
function utilities.blend(fg, bg, alpha)
|
|
local cache_key = fg .. bg .. alpha
|
|
if blend_cache[cache_key] then
|
|
return blend_cache[cache_key]
|
|
end
|
|
|
|
local fg_rgb = color_to_rgb(fg)
|
|
local bg_rgb = color_to_rgb(bg)
|
|
|
|
local function blend_channel(i)
|
|
local ret = (alpha * fg_rgb[i] + ((1 - alpha) * bg_rgb[i]))
|
|
return math.floor(math.min(math.max(0, ret), 255) + 0.5)
|
|
end
|
|
|
|
local result = string.format("#%02X%02X%02X", blend_channel(1), blend_channel(2), blend_channel(3))
|
|
|
|
blend_cache[cache_key] = result
|
|
return result
|
|
end
|
|
|
|
return utilities
|