lua/catppuccin-dev-1.rockspec
2023-06-18 06:33:03 +08:00

53 lines
1.5 KiB
Lua
Raw Permalink Blame History

This file contains invisible Unicode characters

This file contains invisible Unicode characters that are indistinguishable to humans but may be processed differently by a computer. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

rockspec_format = "3.0"
package = "catppuccin"
version = "dev-1"
source = {
url = "git+https://github.com/UrNightmaree/catppuccin-lua.git",
-- tag = "@VERSION@"
}
description = {
summary = "🌚 Soothing pastel theme for Lua",
detailed = [[
🌚 Soothing pastel theme for Lua
Usage:
Get Mocha palette
local palette = require("catppuccin").mocha()
or
local palette = require("catppuccin.mocha")
Get the flavor name of currently used palette.
=palette.name --> "mocha"
Get Blue color from Mocha palette.
=palette.blue --> { hex: string; rgb: { number, number, number }; hsl: { number, number, number } }
See more on https://github.com/catppuccin/lua]],
homepage = "https://github.com/catppuccin/lua",
license = "MIT",
}
build = {
type = "builtin",
modules = {
["catppuccin.init"] = "catppuccin/init.lua",
["catppuccin.latte"] = "catppuccin/latte.lua",
["catppuccin.frappe"] = "catppuccin/frappe.lua",
["catppuccin.macchiato"] = "catppuccin/macchiato.lua",
["catppuccin.mocha"] = "catppuccin/mocha.lua",
},
install = {
lua = {
["catppuccin"] = "catppuccin.d.tl",
["catppuccin.latte"] = "catppuccin/latte.d.tl",
["catppuccin.frappe"] = "catppuccin/frappe.d.tl",
["catppuccin.macchiato"] = "catppuccin/macchiato.d.tl",
["catppuccin.mocha"] = "catppuccin/mocha.d.tl",
},
},
}