github.com/status-im/status-go@v1.1.0/scripts/colors.sh (about)

     1  #!/usr/bin/env bash
     2  
     3  # Colors
     4  export YLW='\033[1;33m'
     5  export RED='\033[0;31m'
     6  export GRN='\033[0;32m'
     7  export BLU='\033[0;34m'
     8  export BLD='\033[1m'
     9  export RST='\033[0m'
    10  
    11  # Clear line
    12  export CLR='\033[2K'