#[cfg_attr(feature = "custom-default-colors", doc = "```rust")]
#[cfg_attr(not(feature = "custom-default-colors"), doc = "```rust,compile_fail")]
#[doc = "```"]
pub static DEFAULT_DEFAULT_COLOR_SCHEME: AnsiColorScheme = AnsiColorScheme {
default: "\u{1b}[0m",
location: "\u{1b}[94m",
fn_keyword: "\u{1b}[33m",
func_name: "\u{1b}[93m",
func_braces: "\u{1b}[0m",
value_braces: "\u{1b}[0m",
ident: "\u{1b}[0;33m",
item: "\u{1b}[0;33m",
boolean: "\u{1b}[1;93m",
number: "\u{1b}[0;96m",
quoted: "\u{1b}[0;32m",
escaped: "\u{1b}[0;95m",
};
#[doc(hidden)]
#[deprecated(since = "0.2.0", note = "renamed to `DEFAULT_DEFAULT_COLOR_SCHEME`.")]
pub use DEFAULT_DEFAULT_COLOR_SCHEME as DEFAULT_ANSI_COLOR_SCHEME;
#[cfg_attr(feature = "custom-default-colors", doc = "```rust")]
#[cfg_attr(not(feature = "custom-default-colors"), doc = "```rust,compile_fail")]
#[doc = "```"]
#[doc = ""]
#[derive(Copy, Clone, Eq, PartialEq, Ord, PartialOrd, Hash, Debug)]
pub struct AnsiColorScheme {
pub default: &'static str,
pub location: &'static str,
pub fn_keyword: &'static str,
pub func_name: &'static str,
pub func_braces: &'static str,
pub value_braces: &'static str,
pub ident: &'static str,
pub item: &'static str,
pub boolean: &'static str,
pub number: &'static str,
pub quoted: &'static str,
pub escaped: &'static str,
}