-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
catppuccin-dev-1.rockspec
52 lines (43 loc) · 1.45 KB
/
catppuccin-dev-1.rockspec
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
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",
},
},
}