Crates.io | dekor |
lib.rs | dekor |
version | 0.2.2 |
source | src |
created_at | 2024-01-12 21:23:42.868773 |
updated_at | 2024-02-07 23:53:58.275654 |
description | Simple styling and character repository in Rust |
homepage | |
repository | https://github.com/JoshBenn/dekor |
max_upload_size | |
id | 1098025 |
size | 36,198 |
Simple to use general character and styling library for Rust, designed to enhance console output with various text styles and UTF-8 characters.
style!()
macro supports.
ANSI
codes.Utf8
enum provides various UTF-8 characters
Display
and has the function .repeat(n)
where n
is usize
To start using Dekor, add the following to your Cargo.toml
:
[dependencies]
dekor = "0.2.1"
1.56.1
use dekor::*;
fn main() {
let decorated_text_macro = style!(Bold, Underline, FGBlue => "This is decorated text");
println!("{}", decorated_text_macro);
// Output will be blue text that is underlined and bolded.
let styles = [Style::Bold, Style::Underline, Style::FGBlue];
let decorated_text_function = style(styles, "This is decorated text");
assert_eq!(decorated_text_macro, decorated_text_function);
}
use dekor::*;
fn main() {
// Applying RGB colors for foreground and background
let styles = vec![(Style::FGRGB, 255, 100, 50), (Style::BGRGB, 0, 0, 255)];
let rgb_text_function = styler(styles, "RGB Styled Text");
println!("{}", rgb_text_function);
// The text will have a custom foreground and background color.
let rgb_text_macro = style!((FGRGB, 255, 100, 50), (BGRGB, 0, 0, 255) => "RGB Styled Text");
assert_eq!(rgb_text_function, rgb_text_macro);
}
use dekor::*;
fn main() {
let decorated_text = style!(Bold, Underline, FGBlue => "This is decorated text");
let pipes = format!("{}\n{}{}\n{}{}",
Utf8::VPipeSlim,
Utf8::JointPipeSlim, Utf8::HPipeSlim,
Utf8::NodePipeSlim, Utf8::HPipeSlim,
);
// Output:
// This is decorated text <-- Will be blue text that is underlined and bolded
// │
// ├— <-- Note: Markdown will display the horizontal line slimmer than it is
// └—
println!("{}\n{}", decorated_text, pipes);
}
Utf8::VPipeSlim
, Utf8::JointPipeSlim
, Utf8::NodePipeCurved
, Utf8::HPipeSlim
, and Utf8::ModLetterDownArrowhead
FGBlue
, Bold
use dekor::*;
fn main() {
let folder = style!(FGBlue, Bold => "Folder"); // Style the folder
let down_arrow = style!(Bold, FGGreen => Utf8::ModLetterDownArrowhead); // Style the open/close indicator
let hpipe = Utf8::HPipeSlim.repeat(2); // `Utf8` implements `Display` and `.repeat()`
println!("{}\n{}{}[{}]{}",
Utf8::VPipeSlim, Utf8::JointPipeSlim, hpipe, down_arrow, folder
);
}
Create a macro which allows for text styling
Allow for handling RGB and Hex inputs
Provide function implementations of the macros for a more robust approach
Import characters necessary for file tree display
Import the remaining UTF-8 characters
Look into using escape keys for these characters as some of them do not display properly
This project is licensed under the MIT License - see the LICENSE file for details.
._. why would you do this?