summaryrefslogtreecommitdiffstats
path: root/NEWS.md
diff options
context:
space:
mode:
authoritchyny <itchyny@cybozu.co.jp>2023-08-05 19:18:07 +0900
committerNico Williams <nico@cryptonector.com>2023-08-05 23:21:12 -0500
commita6920601299913ec5f9c9a8883517ec10dd71ffe (patch)
treeabe1dbc2eb65473186a4962dd4ff156562c2a5e3 /NEWS.md
parentf94a9d463ffb3422861a0da140470dbf5ce76632 (diff)
Change the default color of null to Bright Black
Diffstat (limited to 'NEWS.md')
-rw-r--r--NEWS.md4
1 files changed, 2 insertions, 2 deletions
diff --git a/NEWS.md b/NEWS.md
index b8e4c682..e2235dc7 100644
--- a/NEWS.md
+++ b/NEWS.md
@@ -26,8 +26,8 @@ Full commit log can be found at <https://github.com/jqlang/jq/compare/jq-1.6...j
- Make object key color configurable using `JQ_COLORS` environment variable. @itchyny @haguenau @ericpruitt #2703
```sh
- # this would make "field" yellow (33, the last value)
- $ JQ_COLORS="1;30:0;37:0;37:0;37:0;32:1;37:1;37:1;33" ./jq -n '{field: 123}'
+ # this would make "field" bold yellow (`1;33`, the last value)
+ $ JQ_COLORS="0;90:0;37:0;37:0;37:0;32:1;37:1;37:1;33" ./jq -n '{field: 123}'
{
"field": 123
}