initial commit
This commit is contained in:
commit
078bd90570
9 changed files with 374 additions and 0 deletions
29
README.md
Normal file
29
README.md
Normal 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`
|
||||
Loading…
Add table
Add a link
Reference in a new issue