aboutsummaryrefslogtreecommitdiff
path: root/forged/internal/ansiec/style.go
diff options
context:
space:
mode:
Diffstat (limited to 'forged/internal/ansiec/style.go')
-rw-r--r--forged/internal/ansiec/style.go11
1 files changed, 11 insertions, 0 deletions
diff --git a/forged/internal/ansiec/style.go b/forged/internal/ansiec/style.go
new file mode 100644
index 0000000..dd37344
--- /dev/null
+++ b/forged/internal/ansiec/style.go
@@ -0,0 +1,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"
+)