We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 1527d22 commit c7668b6Copy full SHA for c7668b6
ui/common.go
@@ -6,19 +6,11 @@ import (
6
"github.com/muesli/termenv"
7
)
8
9
-const (
10
- progressBarWidth = 71
11
- progressFullChar = "█"
12
- progressEmptyChar = "░"
13
-)
14
-
15
// General stuff for styling the view
16
var (
17
- term = termenv.EnvColorProfile()
18
- keyword = makeFgStyle("211")
19
- subtle = makeFgStyle("241")
20
- progressEmpty = subtle(progressEmptyChar)
21
- dot = colorFg(" • ", "236")
+ term = termenv.EnvColorProfile()
+ subtle = makeFgStyle("241")
+ dot = colorFg(" • ", "236")
22
23
24
// makeFgStyle returns a function that will colorize the foreground of a given.
0 commit comments