diff options
author | salaaad2 <arthurdurant263@gmail.com> | 2022-04-04 22:38:05 +0200 |
---|---|---|
committer | salaaad2 <arthurdurant263@gmail.com> | 2022-04-04 22:38:05 +0200 |
commit | 725167e3d9a8740ac167508aec4e27be53a04f02 (patch) | |
tree | d71a2a55a5b5ea601ee68bab2210eb499fa84c36 /gosrc/colors.go | |
parent | amazing ui work brother, it is hot here or is it just me \? (diff) | |
download | smith-725167e3d9a8740ac167508aec4e27be53a04f02.tar.gz smith-725167e3d9a8740ac167508aec4e27be53a04f02.tar.bz2 smith-725167e3d9a8740ac167508aec4e27be53a04f02.tar.xz smith-725167e3d9a8740ac167508aec4e27be53a04f02.tar.zst smith-725167e3d9a8740ac167508aec4e27be53a04f02.zip |
cool ui and functioning requests, what can a man ask for (v0.0.1)
Diffstat (limited to 'gosrc/colors.go')
-rw-r--r-- | gosrc/colors.go | 27 |
1 files changed, 0 insertions, 27 deletions
diff --git a/gosrc/colors.go b/gosrc/colors.go deleted file mode 100644 index 6fdf98a..0000000 --- a/gosrc/colors.go +++ /dev/null @@ -1,27 +0,0 @@ -package main - -// Theme defines the colors used when primitives are initialized. -type Theme struct { - colorReset string // Main background color for primitives. - colorRed string // Background color for contrasting elements. - colorGreen string // Background color for even more contrasting elements. - colorYellow string // Box borders. - colorBlue string // Box titles. - colorPurple string // Graphics. - colorCyan string // Primary text. - colorWhite string // Secondary text (e.g. labels). -} - -// Styles defines the theme for applications. The default is for a black -// background and some basic colors: black, white, yellow, green, cyan, and -// blue. -var Styles = Theme{ - colorReset: "\033[0m", - colorRed : "\033[31m", - colorGreen : "\033[32m", - colorYellow : "\033[33m", - colorBlue : "\033[34m", - colorPurple : "\033[35m", - colorCyan : "\033[36m", - colorWhite : "\033[37m", -} |