mirror of
https://github.com/wavetermdev/waveterm.git
synced 2025-03-09 13:00:53 +01:00
13 lines
197 B
Go
13 lines
197 B
Go
|
// Copyright 2023, Command Line Inc.
|
||
|
// SPDX-License-Identifier: Apache-2.0
|
||
|
|
||
|
package utilfn
|
||
|
|
||
|
func AnsiResetColor() string {
|
||
|
return "\033[0m"
|
||
|
}
|
||
|
|
||
|
func AnsiGreenColor() string {
|
||
|
return "\033[32m"
|
||
|
}
|