mirror of
https://github.com/nix-community/home-manager
synced 2024-11-23 11:39:46 +01:00
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
1 changed files with 5 additions and 5 deletions
|
@ -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;
|
||||||
|
|
Loading…
Reference in a new issue