mirror of
https://github.com/charmbracelet/glow
synced 2024-11-10 06:04:18 +00:00
fce3edf7db
* 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>
14 lines
231 B
Go
14 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
|
|
)
|