From a19124cc16aea89a0d4e5febeb33aad4d34fe27f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Nicol=C3=A1s=20Hatcher?= Date: Mon, 23 Jun 2025 08:12:20 +0200 Subject: [PATCH] FIX[import xlsx]: Sets default text color to black Default text color was transparent white. I am not sure how this didn't cause more problems :) --- xlsx/src/import/styles.rs | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/xlsx/src/import/styles.rs b/xlsx/src/import/styles.rs index efabe54..49d1a99 100644 --- a/xlsx/src/import/styles.rs +++ b/xlsx/src/import/styles.rs @@ -93,7 +93,8 @@ pub(super) fn load_styles( let mut b = false; let mut i = false; let mut strike = false; - let mut color = Some("FFFFFF00".to_string()); + // Default color is black + let mut color = Some("000000FF".to_string()); let mut family = 2; let mut scheme = FontScheme::default(); for feature in font.children() {