all repos — shlide @ fe30b0a469aee6e8a639ffcea0b5b9dc21eb847a

slide deck presentation tool written in pure bash

Fix color definitions

Signed-off-by: Anirudh Oppiliappan <x@icyphox.sh>
Anirudh Oppiliappan x@icyphox.sh
Fri, 07 Feb 2020 19:29:35 +0530
commit

fe30b0a469aee6e8a639ffcea0b5b9dc21eb847a

parent

612a1e540c6e9601f56990f7011afce84c87f4e4

1 files changed, 7 insertions(+), 7 deletions(-)

jump to
M shlideshlide

@@ -9,13 +9,13 @@ #

# Copyright (c) 2020 Anirudh Oppiliappan <x@icyphox.sh> # Color definitions. -export BLK="\e[38;5;30m" -export RED="\e[38;5;31m" -export GRN="\e[38;5;32m" -export YLW="\e[38;5;33m" -export BLU="\e[38;5;34m" -export PUR="\e[38;5;35m" -export CYN="\e[38;5;36m" +export BLK="\e[30m" +export RED="\e[31m" +export GRN="\e[32m" +export YLW="\e[33m" +export BLU="\e[34m" +export PUR="\e[35m" +export CYN="\e[36m" export RST="\e[0m" # Other formatting.