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

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

package ansiec

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