From 725167e3d9a8740ac167508aec4e27be53a04f02 Mon Sep 17 00:00:00 2001 From: salaaad2 Date: Mon, 4 Apr 2022 22:38:05 +0200 Subject: cool ui and functioning requests, what can a man ask for (v0.0.1) --- gosrc/colors.go | 27 --------------------------- 1 file changed, 27 deletions(-) delete mode 100644 gosrc/colors.go (limited to 'gosrc/colors.go') 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", -} -- cgit v1.2.3