From fc475d61cddeea53d10afc81d1352c5c5baa68c7 Mon Sep 17 00:00:00 2001 From: Buddy Sandidge Date: Mon, 26 Jul 2021 17:28:55 -0700 Subject: [PATCH] Add colors jq module for cli --- base/.jq/colors.jq | 9 +++++++++ 1 file changed, 9 insertions(+) create mode 100644 base/.jq/colors.jq diff --git a/base/.jq/colors.jq b/base/.jq/colors.jq new file mode 100644 index 0000000..6c9eddc --- /dev/null +++ b/base/.jq/colors.jq @@ -0,0 +1,9 @@ +def reset: "\u001b[0m"; +def black: "\u001b[30m"; +def white: "\u001b[97m"; +def blue: "\u001b[34m"; +def cyan: "\u001b[36m"; +def green: "\u001b[32m"; +def yellow: "\u001b[33m"; +def red: "\u001b[31m"; +def magenta: "\u001b[35m";