29 lines
678 B
Markdown
29 lines
678 B
Markdown
# 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`](https://github.com/casey/just) and [`go`](https://go.dev) >= 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`
|