mirror of
https://gitlab.com/EternalWanderer/dice-roller.git
synced 2024-11-29 05:13:50 +01:00
14 lines
289 B
Go
14 lines
289 B
Go
|
package Colors
|
||
|
|
||
|
type Color string
|
||
|
|
||
|
const (
|
||
|
ColorBlack Color = "\u001b[30m"
|
||
|
ColorRed = "\u001b[31m"
|
||
|
ColorGreen = "\u001b[32m"
|
||
|
ColorYellow = "\u001b[33m"
|
||
|
ColorBlue = "\u001b[34m"
|
||
|
ColorMagenta = "\u001b[35m"
|
||
|
ColorReset = "\u001b[0m"
|
||
|
)
|