initial commit

This commit is contained in:
basil 2025-06-08 14:07:05 -04:00
commit 078bd90570
Signed by: basil
SSH key fingerprint: SHA256:y04xIFL/yqNaG9ae9Vl95vELtHfApGAIoOGLeVLP/fE
9 changed files with 374 additions and 0 deletions

29
README.md Normal file
View file

@ -0,0 +1,29 @@
# 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:
```go
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`