aboutsummaryrefslogtreecommitdiff
path: root/internal/ansiec/style.go
blob: bcd0154e169d24462917956fe440f168a8893905 (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

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