diff options
author | codewithvk <vivek.javiya@collabora.com> | 2024-03-18 14:03:25 +0530 |
---|---|---|
committer | Tomaž Vajngerl <quikee@gmail.com> | 2024-03-19 11:39:18 +0100 |
commit | 9b6fcd41a7b8f6f844a26e77bb6439caa9bc8e98 (patch) | |
tree | 2c4a05cd54f7d7d3dc112c41b536379e8b751cf7 | |
parent | 73567d60a1c4d2dded06f49df1fae95467e558c3 (diff) |
Remove static font color for headings in Calc
Previously, Calc utilized a static font color (dark) for headings, which resulted in visibility issues for Heading 1 and Heading 2 in dark mode. This commit resolves the problem by removing the static font color, allowing for automatic color adjustment.
Signed-off-by: codewithvk <vivek.javiya@collabora.com>
Change-Id: Idf516077a8cda951c593052c63e53b4d1301d138
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/164990
Tested-by: Jenkins
Reviewed-by: Tomaž Vajngerl <quikee@gmail.com>
-rw-r--r-- | sc/res/xml/styles.xml | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sc/res/xml/styles.xml b/sc/res/xml/styles.xml index 37cfc36afae1..259f50c1e200 100644 --- a/sc/res/xml/styles.xml +++ b/sc/res/xml/styles.xml @@ -1,7 +1,7 @@ <?xml version="1.0"?> <office:styles xmlns:office="urn:oasis:names:tc:opendocument:xmlns:office:1.0" xmlns:style="urn:oasis:names:tc:opendocument:xmlns:style:1.0" xmlns:fo="urn:oasis:names:tc:opendocument:xmlns:xsl-fo-compatible:1.0"> <style:style style:name="Heading" style:family="table-cell" style:parent-style-name="Default"> - <style:text-properties fo:color="#000000" fo:font-size="24pt" fo:font-style="normal" fo:font-weight="bold" style:font-size-asian="24pt" style:font-style-asian="normal" style:font-weight-asian="bold" style:font-size-complex="24pt" style:font-style-complex="normal" style:font-weight-complex="bold"/> + <style:text-properties fo:font-size="24pt" fo:font-style="normal" fo:font-weight="bold" style:font-size-asian="24pt" style:font-style-asian="normal" style:font-weight-asian="bold" style:font-size-complex="24pt" style:font-style-complex="normal" style:font-weight-complex="bold"/> </style:style> <style:style style:name="Heading 1" style:family="table-cell" style:parent-style-name="Heading"> <style:text-properties fo:font-size="18pt" style:font-size-asian="18pt" style:font-size-complex="18pt"/> |