easy-sgr-macros

The proc-macro implementation for the easy-sgr crate

Syntax

The syntax of this crate is a near mirror copy to that of the [fmt] module, with one addition: SGR.

These [keywords] get translated to [SGR] codes at compile time, using them is similar to formatting variables into string literals within the [fmt] crate, as you use block brackets within curly brackets: {[...]} to specify them. Each keyword within is to be separated by spaces.

Examples

```rust use easy_sgr::println;

println!("{[bold green on-red]}This is colorful"); println!("{[!bold default on-default]}This is not"); ```

See the rust docs for more

Keywords

Simple

There are a set of 'simple' keywords, which are made up of a word:

reset is a little different than the others in that it is empty.

Complex

The more complex syntax is entirely reserved for color codes.

Colors are expected to be one of the following, optionally prefixed by 'on-' to indicate being a background color:

And, prefixed with # to indicate hex, but without any commas:

so some example colors could be

TODO