From d9055dbac617d80e2d72f23197528033f8abb80e Mon Sep 17 00:00:00 2001 From: Dominik Picheta Date: Wed, 21 Nov 2018 23:27:29 +0000 Subject: [PATCH] Use fgDefault instead of setting bg/fg. --- src/nimblepkg/cli.nim | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/src/nimblepkg/cli.nim b/src/nimblepkg/cli.nim index a0dc9d3..862ffe5 100644 --- a/src/nimblepkg/cli.nim +++ b/src/nimblepkg/cli.nim @@ -191,10 +191,9 @@ proc promptListInteractive(question: string, args: openarray[string]): string = # The selection loop while not selected: + setForegroundColor(fgDefault) # Loop through the options for i, arg in args: - setBackgroundColor(bgBlack) # We dont known theme of terminal, use Black. - setForegroundColor(fgWhite) # Check if the option is the current if i == current: writeStyled("> " & arg & " <", {styleBright})