No description
Find a file
2025-06-08 14:14:42 -04:00
tool add tool links to readme & auto generation warning 2025-06-08 14:14:42 -04:00
.gitignore add palette.json to gitignore 2025-06-08 14:08:57 -04:00
colors.go add tool links to readme & auto generation warning 2025-06-08 14:14:42 -04:00
gen.go initial commit 2025-06-08 14:07:05 -04:00
go.mod initial commit 2025-06-08 14:07:05 -04:00
go.sum initial commit 2025-06-08 14:07:05 -04:00
Justfile initial commit 2025-06-08 14:07:05 -04:00
README.md add tool links to readme & auto generation warning 2025-06-08 14:14:42 -04:00

lipgloss-catppuccin

auto-generated lipgloss colors for catppuccin palettes

usage

  1. go get git.red-panda.pet/pandaware/lipgloss-catppuccin
  2. import and use like so:
package main

import (
	"github.com/charmbracelet/lipgloss"
	"git.red-panda.pet/pandaware/lipgloss-catppuccin"
)

func main() {
	coolStyle := lipgloss.NewStyle().
		Foreground(catppuccin.Mocha.Sky).
		Background(catppuccin.Mocha.Surface0)
}

developing

  1. install just and go >= 1.23
  2. run just generate

todo

  • make some of the generated names (like those with numbers) a bit friendlier
  • clean up tools/generate.go