jq: Use default upstream values for colors (#1870)

As documented here: https://stedolan.github.io/jq/manual/#Colors
This commit is contained in:
Dany Marcoux 2021-03-18 23:19:42 +01:00 committed by GitHub
parent de1fa8defb
commit f9b5172d95
Failed to generate hash of commit

View file

@ -51,12 +51,12 @@ in {
default = { default = {
null = "1;30"; null = "1;30";
false = "0;39"; false = "0;37";
true = "0;39"; true = "0;37";
numbers = "0;39"; numbers = "0;37";
strings = "0;32"; strings = "0;32";
arrays = "1;39"; arrays = "1;37";
objects = "1;39"; objects = "1;37";
}; };
type = colorsType; type = colorsType;