Skip to content

Commit

Permalink
docs(faq): add an entry on disabling colors (#5448)
Browse files Browse the repository at this point in the history
  • Loading branch information
eysi09 authored Nov 20, 2023
1 parent 2779705 commit 84ece1d
Showing 1 changed file with 12 additions and 0 deletions.
12 changes: 12 additions & 0 deletions docs/misc/faq.md
Original file line number Diff line number Diff line change
Expand Up @@ -255,3 +255,15 @@ We have a team of people working on it full-time, and we make it a priority to a

Garden is not currently designed to work in air-gapped environments but if you have done the initial setup and use a
local kubernetes provider it might work.

### How do I disable terminal colors?

Garden uses the [Chalk NPM package](https://github.com/chalk/chalk) under the hood which picks a color setting based on what colors your terminal supports.

You can override this behavior with the `FORCE_COLOR` environment variable. For example:

- `FORCE_COLOR=0 garden deploy # No colors`
- `FORCE_COLOR=1 garden deploy # 16 colors`
- `FORCE_COLOR=2 garden deploy # 256 colors`
- `FORCE_COLOR=3 garden deploy # Truecolor (16 million)`

0 comments on commit 84ece1d

Please sign in to comment.