hm_colors 0.1.0

A simple Rust crate for converting hackmud color-code characters into ANSI color codes.
Documentation
1
2
3
4
5
6
7
8
9
10
11
# hm_colors
A simple Rust crate for converting hackmud color-code characters into ANSI color codes.

## Usage
```
use hm_colors;

let hackmud_color_character: char = 'D'; // This is the code for bright red.

let ansi_color_code: String = hm_colors::to_ansii(hackmud_color_character);
```