jq: Use default upstream values for colors (#1870)
As documented here: https://stedolan.github.io/jq/manual/#Colors
This commit is contained in:
parent
de1fa8defb
commit
f9b5172d95
|
@ -51,12 +51,12 @@ in {
|
|||
|
||||
default = {
|
||||
null = "1;30";
|
||||
false = "0;39";
|
||||
true = "0;39";
|
||||
numbers = "0;39";
|
||||
false = "0;37";
|
||||
true = "0;37";
|
||||
numbers = "0;37";
|
||||
strings = "0;32";
|
||||
arrays = "1;39";
|
||||
objects = "1;39";
|
||||
arrays = "1;37";
|
||||
objects = "1;37";
|
||||
};
|
||||
|
||||
type = colorsType;
|
||||
|
|
Loading…
Reference in a new issue