From 46ea92966f78ccbddb6d8fdf337f8212593ee0b2 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Nicol=C3=A1s=20Hatcher?= Date: Mon, 23 Jun 2025 18:39:46 +0200 Subject: [PATCH] FIX[import]: Set color black for text properly I would like to have a text case for this. Preferably automatic. But manual is ok, maybe we should have a series of workbooks we check before every large deployment --- xlsx/src/import/styles.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/xlsx/src/import/styles.rs b/xlsx/src/import/styles.rs index 49d1a99..f682dc8 100644 --- a/xlsx/src/import/styles.rs +++ b/xlsx/src/import/styles.rs @@ -94,7 +94,7 @@ pub(super) fn load_styles( let mut i = false; let mut strike = false; // Default color is black - let mut color = Some("000000FF".to_string()); + let mut color = Some("#000000".to_string()); let mut family = 2; let mut scheme = FontScheme::default(); for feature in font.children() {