implemented parsing of color settings of formats [named, numbered, rgb]

(example ['red', 29, #12345F])
This commit is contained in:
2024-12-15 23:30:36 +01:00
parent 77cd64dd60
commit d8f039d76b
3 changed files with 102 additions and 20 deletions
+1 -1
View File
@@ -30,7 +30,7 @@ impl Stack {
Ok(stack)
}
// formats and prints stack to string
/// formats and prints stack to string
pub fn to_formatted_string(&self, config: &Settings) -> Result<String> {
let mut buffer: String = "".to_string();