_fonts.sh 337 B

12345678910111213141516
  1. #!/bin/bash
  2. #
  3. # Variables to be used for font styling.
  4. # color
  5. readonly RED="\033[1;31m"
  6. readonly GREEN="\033[1;32m"
  7. readonly BLUE="\033[1;32m"
  8. readonly WHITE="\033[1;37m"
  9. readonly YELLOW="\033[1;33m"
  10. readonly GRAY_LIGHT="\033[0;37m"
  11. readonly CYAN_LIGHT="\033[1;36m"
  12. # thickness
  13. readonly BOLD=$(tput bold)
  14. readonly NORMAL=$(tput sgr0)