diff options
author | Jaakko Keränen <jaakko.keranen@iki.fi> | 2020-10-21 11:16:45 +0300 |
---|---|---|
committer | Jaakko Keränen <jaakko.keranen@iki.fi> | 2020-10-21 11:16:45 +0300 |
commit | 07379c4553c337985ec2d903c187bb7a49dbbc9d (patch) | |
tree | bedb72a10de9e55641b2ced73a7631a2fa400bf3 | |
parent | 874b028485bc86c8625156445e924f56b3e02776 (diff) |
GmDocument: Lighter paragraph text in Gray theme
-rw-r--r-- | src/gmdocument.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/gmdocument.c b/src/gmdocument.c index f2ac936f..8390aab6 100644 --- a/src/gmdocument.c +++ b/src/gmdocument.c | |||
@@ -701,7 +701,7 @@ void setThemeSeed_GmDocument(iGmDocument *d, const iBlock *seed) { | |||
701 | set_Color(tmGopherLinkDomain_ColorId, get_Color(magenta_ColorId)); | 701 | set_Color(tmGopherLinkDomain_ColorId, get_Color(magenta_ColorId)); |
702 | set_Color(tmGopherLinkLastVisitDate_ColorId, get_Color(blue_ColorId)); | 702 | set_Color(tmGopherLinkLastVisitDate_ColorId, get_Color(blue_ColorId)); |
703 | } | 703 | } |
704 | /* Set the non-link colors. */ | 704 | /* Set the non-link default colors. */ |
705 | if (theme == colorfulDark_GmDocumentTheme) { | 705 | if (theme == colorfulDark_GmDocumentTheme) { |
706 | const iHSLColor base = { 200, 0, 0.15f, 1.0f }; | 706 | const iHSLColor base = { 200, 0, 0.15f, 1.0f }; |
707 | setHsl_Color(tmBackground_ColorId, base); | 707 | setHsl_Color(tmBackground_ColorId, base); |
@@ -753,7 +753,7 @@ void setThemeSeed_GmDocument(iGmDocument *d, const iBlock *seed) { | |||
753 | } | 753 | } |
754 | else if (theme == gray_GmDocumentTheme) { | 754 | else if (theme == gray_GmDocumentTheme) { |
755 | set_Color(tmBackground_ColorId, mix_Color(get_Color(gray25_ColorId), get_Color(black_ColorId), 0.25f)); | 755 | set_Color(tmBackground_ColorId, mix_Color(get_Color(gray25_ColorId), get_Color(black_ColorId), 0.25f)); |
756 | set_Color(tmParagraph_ColorId, mix_Color(get_Color(gray75_ColorId), get_Color(white_ColorId), 0.0f)); | 756 | set_Color(tmParagraph_ColorId, mix_Color(get_Color(gray75_ColorId), get_Color(white_ColorId), 0.25f)); |
757 | set_Color(tmFirstParagraph_ColorId, mix_Color(get_Color(gray75_ColorId), get_Color(white_ColorId), 0.5f)); | 757 | set_Color(tmFirstParagraph_ColorId, mix_Color(get_Color(gray75_ColorId), get_Color(white_ColorId), 0.5f)); |
758 | set_Color(tmQuote_ColorId, get_Color(orange_ColorId)); | 758 | set_Color(tmQuote_ColorId, get_Color(orange_ColorId)); |
759 | set_Color(tmPreformatted_ColorId, get_Color(orange_ColorId)); | 759 | set_Color(tmPreformatted_ColorId, get_Color(orange_ColorId)); |