Commit e2bf22775422468a6f7c791e72c7b1ae3d12c3ad

Authored by Antonio Terceiro
1 parent 692325d6

Better colors in quick-start script

messages now look ok in both black and white backgrounds.
Showing 1 changed file with 2 additions and 2 deletions   Show diff stats
script/quick-start
... ... @@ -2,12 +2,12 @@
2 2  
3 3 say() {
4 4 msg="$@"
5   - printf "\033[33;01m%sm%s\033[m\n" "$msg"33[m\n" "$msg"
  5 + printf "\033[1;34;49m%sm%s\033[m\n" "$msg"33[m\n" "$msg"
6 6 }
7 7  
8 8 complain() {
9 9 msg="$@"
10   - printf "\033[1;31;40m%sm%s\033[m\n" "$msg"33[m\n" "$msg"
  10 + printf "\033[1;31;49m%sm%s\033[m\n" "$msg"33[m\n" "$msg"
11 11 }
12 12  
13 13 run() {
... ...