1//! Configuration for the CLI client.
23/// Control whether to use colors in the CLI output.
4#[derive(Clone, Debug)]
5#[non_exhaustive]
6pub enum Color {
7/// Automatically determine whether to use colors.
8Auto,
9/// Always use colors.
10Always,
11/// Never use colors.
12Never,
13}