diff options
author | Mataes <mataes2007@gmail.com> | 2020-04-04 01:36:50 +0300 |
---|---|---|
committer | Mataes <mataes2007@gmail.com> | 2020-04-04 01:36:50 +0300 |
commit | 40269f18dd845b95093877f479f179f1c59a101a (patch) | |
tree | e163f4f530ba4ee416c36f22cdc08ec17b599cfd | |
parent | 4597ab70beb479202f220f98e2bea95c721d2465 (diff) |
newstory: changed dafault colors
-rw-r--r-- | plugins/NewStory/src/fonts.cpp | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/plugins/NewStory/src/fonts.cpp b/plugins/NewStory/src/fonts.cpp index d3756b995c..fcbb90748e 100644 --- a/plugins/NewStory/src/fonts.cpp +++ b/plugins/NewStory/src/fonts.cpp @@ -2,13 +2,13 @@ MyColourID colors[] = { - { "Incoming Messages", "ColorMsgIn", RGB(0xff, 0xff, 0xff) }, - { "Outgoing Messages", "ColorMsgOut", RGB(0xff, 0xff, 0xff) }, + { "Incoming Messages", "ColorMsgIn", RGB(0xd6, 0xf5, 0xc0) }, + { "Outgoing Messages", "ColorMsgOut", RGB(0xf5, 0xe7, 0xd8) }, - { "Incoming Files", "ColorFileIn", RGB(0xff, 0xff, 0xff) }, - { "Outgoing Files", "ColorFileOut", RGB(0xff, 0xff, 0xff) }, + { "Incoming Files", "ColorFileIn", RGB(0xe3, 0xee, 0x9b) }, + { "Outgoing Files", "ColorFileOut", RGB(0xe3, 0xee, 0x9b) }, - { "Status changes", "ColorStatus", RGB(0xff, 0xff, 0xff) }, + { "Status changes", "ColorStatus", RGB(0xf0, 0xf0, 0xf0) }, { "Other Outgoing Events", "ColorOut", RGB(0xff, 0xff, 0xff) }, { "Other Incoming Events", "ColorIn", RGB(0xff, 0xff, 0xff) }, |