MyNixOS website logo

The colors used in colored JSON output.

See the Colors section of the jq manual.

Declarations
Type
submodule
Default
{
  arrays = "1;37";
  false = "0;37";
  null = "1;30";
  numbers = "0;37";
  objects = "1;37";
  strings = "0;32";
  true = "0;37";
}
Example
{
  null    = "1;30";
  false   = "0;31";
  true    = "0;32";
  numbers = "0;36";
  strings = "0;33";
  arrays  = "1;35";
  objects = "1;37";
}