teaql-tool-std 0.1.1

Zero-dependency standard utilities for the TeaQL Tool ecosystem.
Documentation
1
2
3
4
5
6
7
8
9
10
11
use teaql_tool_std::color::ColorTool;

#[test]
fn test_color_operations() {
    let tool = ColorTool::new();
    
    assert_eq!(tool.alice_blue(), "#F0F8FF");
    assert_eq!(tool.black(), "#000000");
    assert_eq!(tool.white(), "#FFFFFF");
    assert_eq!(tool.red(), "#FF0000");
}