diff options
author | George Hazan <george.hazan@gmail.com> | 2024-03-27 11:36:30 +0300 |
---|---|---|
committer | George Hazan <george.hazan@gmail.com> | 2024-03-27 11:36:30 +0300 |
commit | b262ecc905e929ab329d40616aab2dcffeb9e012 (patch) | |
tree | ca23c99f4d13179d5b4ff2fbc63adf8e7e5c6f0b /plugins | |
parent | a15d85d634a1809ca57395e803813d3b659df2fc (diff) |
fixes #4289 (fix for a default link color in NewStory)
Diffstat (limited to 'plugins')
-rw-r--r-- | plugins/NewStory/src/fonts.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/plugins/NewStory/src/fonts.cpp b/plugins/NewStory/src/fonts.cpp index 67d02c30c4..df32f891b1 100644 --- a/plugins/NewStory/src/fonts.cpp +++ b/plugins/NewStory/src/fonts.cpp @@ -43,7 +43,7 @@ MyColourID g_colorTable[COLOR_COUNT] = { LPGEN("Quoting"), "Quote", RGB(0x80, 0x80, 0xff) },
{ LPGEN("Separator"), "Separator", RGB(0x60, 0x60, 0x60) },
{ LPGEN("Progress indicator"), "Progress", RGB(0xff, 0x00, 0x00) },
- { LPGEN("Links"), "Links", RGB(0x00, 0x00, 0xff) },
+ { LPGEN("Links"), "Links", RGB(0x24, 0x7E, 0xCA) },
};
MyFontID g_fontTable[FONT_COUNT] =
|