-
Beta Was this translation helpful? Give feedback.
Answered by
00-kat
Jun 13, 2025
Replies: 1 comment 5 replies
-
|
I doubt it's $ echo '{"foo":null}' | faketty jq -c . | cat -v
^[[1;39m{^[[0m^[[1;34m"foo"^[[0m^[[1;39m:^[[0m^[[0;90mnull^[[0m^[[1;39m}^[[0m^M
$ echo '{"foo":null}' | TERM=xterm-256color faketty jq -c . | cat -v
^[[1;39m{^[[0m^[[1;34m"foo"^[[0m^[[1;39m:^[[0m^[[0;90mnull^[[0m^[[1;39m}^[[0m^Mthat doesn't seem to change jq's output. |
Beta Was this translation helpful? Give feedback.
5 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment




I assume Ubuntu's jq is older, since you have identical output to me on macOS, but this is the part that's important:
on Ubuntu, and
on macOS.
Those aren't the same colours;
90is light grey while30is dark grey.And indeed, on my system with Dracula+, something like
reproduces it.
The foreground for
30seems to be#21222c, and the background seems to be#212121, which are way too close to notice a difference in colour.I have no idea what the correct colour is meant to be, but something like
would be a workaround (that hex code is what
90is set to).The themes actually aren't Ghostty's; they're ta…