svtools/source/config/colorcfg.cxx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-)
New commits: commit 592df0a2e5e838567f1c8a1e0983e9ffd9886502 Author: Tamás Zolnai <[email protected]> AuthorDate: Tue Nov 4 13:32:28 2025 +0100 Commit: Adolfo Jayme Barrientos <[email protected]> CommitDate: Tue Nov 4 18:58:54 2025 +0100 tdf#89544: Change default grid color to a darker gray in Writer The same change was made earlier for Impress / Draw. Grid in Writer has the same issue in terms of visibility. Apply the same default color in this case. See tdf#117348. Change-Id: If01e8d72bc5fab0133e2315e15a80ae4e9081571 Reviewed-on: https://gerrit.libreoffice.org/c/core/+/193402 Tested-by: Jenkins Reviewed-by: Adolfo Jayme Barrientos <[email protected]> diff --git a/svtools/source/config/colorcfg.cxx b/svtools/source/config/colorcfg.cxx index c7ad2b0b8847..7390433af451 100644 --- a/svtools/source/config/colorcfg.cxx +++ b/svtools/source/config/colorcfg.cxx @@ -536,7 +536,7 @@ Color ColorConfig::GetDefaultColor(ColorConfigEntry eEntry, int nMod) { COL_LIGHTBLUE, Color(0x729FCF) }, // GRAMMAR { COL_LIGHTMAGENTA, Color(0x780373) }, // SMARTTAGS { COL_GRAY, Color(0x1C1C1C) }, // SHADOWCOLOR - { COL_LIGHTGRAY, Color(0x808080) }, // WRITERTEXTGRID + { COL_GRAY7, COL_GRAY7 }, // WRITERTEXTGRID { COL_LIGHTGRAY, COL_LIGHTGRAY }, // WRITERFIELDSHADING { COL_LIGHTGRAY, Color(0x1C1C1C) }, // WRITERIDXSHADINGS { COL_BLACK, COL_BLACK }, // WRITERDIRECTCURSOR
