Browse Source

Fix bootstrap colors

master
Victor Berger 7 years ago
parent
commit
5b80ba1849
1 changed files with 4 additions and 4 deletions
  1. +4
    -4
      .yadm/bootstrap

+ 4
- 4
.yadm/bootstrap View File

@@ -1,8 +1,8 @@
#!/bin/sh #!/bin/sh


RED='\033[0;31m'
GREEN='\033[0;32m'
CYAN='\033[0;36m'
RED='\033[1;31m'
GREEN='\033[1;32m'
CYAN='\033[1;36m'
NC='\033[0m' NC='\033[0m'


info() { info() {
@@ -15,7 +15,7 @@ error() {
} }


success() { success() {
echo -e "${RED}$1${NC}"
echo -e "${GREEN}$1${NC}"
} }


# Fish configuration # Fish configuration


Loading…
Cancel
Save