aboutsummaryrefslogtreecommitdiff
path: root/internal/ansiec/style.go
blob: dd373441c2dabcfc6a4ff01567d4d45a744c033a (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11

// SPDX-License-Identifier: AGPL-3.0-only
// SPDX-FileCopyrightText: Copyright (c) 2025 Runxi Yu <https://runxiyu.org>

package ansiec

const (
	Bold      = "\x1b[1m"
	Underline = "\x1b[4m"
	Reversed  = "\x1b[7m"
	Italic    = "\x1b[3m"
)