mirror of
https://github.com/charmbracelet/glow.git
synced 2025-11-08 23:05:00 -06:00
* feat!: cleanup Signed-off-by: Carlos Alexandro Becker <caarlos0@users.noreply.github.com> * more cleanup Signed-off-by: Carlos Alexandro Becker <caarlos0@users.noreply.github.com> * fix: more cleanup Signed-off-by: Carlos Alexandro Becker <caarlos0@users.noreply.github.com> * fix: more cleanup --------- Signed-off-by: Carlos Alexandro Becker <caarlos0@users.noreply.github.com>
15 lines
231 B
Go
15 lines
231 B
Go
package main
|
|
|
|
import "github.com/charmbracelet/lipgloss"
|
|
|
|
var (
|
|
keyword = lipgloss.NewStyle().
|
|
Foreground(lipgloss.Color("#04B575")).
|
|
Render
|
|
|
|
paragraph = lipgloss.NewStyle().
|
|
Width(78).
|
|
Padding(0, 0, 0, 2).
|
|
Render
|
|
)
|