diff options
author | Michael Monreal <mmonreal@svn.gnome.org> | 2007-11-06 18:02:42 +0800 |
---|---|---|
committer | Michael Monreal <mmonreal@src.gnome.org> | 2007-11-06 18:02:42 +0800 |
commit | e57bc4e409481165726cd503efd2405cd778c534 (patch) | |
tree | 10bb2e716a208509e177c2a963f807e36829cba6 /mail/mail-config.c | |
parent | aed824675f0cc43c90c43d6a0495ee952ed3a648 (diff) | |
download | gsoc2013-evolution-e57bc4e409481165726cd503efd2405cd778c534.tar.gz gsoc2013-evolution-e57bc4e409481165726cd503efd2405cd778c534.tar.zst gsoc2013-evolution-e57bc4e409481165726cd503efd2405cd778c534.zip |
** Fix for bug #492170
2007-11-06 Michael Monreal <mmonreal@svn.gnome.org>
** Fix for bug #492170
* em-migrate.c:
* evolution-mail.schemas.in:
* mail-config.c:
Replace the old color definitions with very similar colors from
the Tango color palette.
svn path=/trunk/; revision=34515
Diffstat (limited to 'mail/mail-config.c')
-rw-r--r-- | mail/mail-config.c | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/mail/mail-config.c b/mail/mail-config.c index 19e46073b2..ef16f521a6 100644 --- a/mail/mail-config.c +++ b/mail/mail-config.c @@ -78,11 +78,11 @@ /* Note, the first element of each MailConfigLabel must NOT be translated */ MailConfigLabel label_defaults[5] = { - { "important", N_("I_mportant"), "#ff0000" }, /* red */ - { "work", N_("_Work"), "#ff8c00" }, /* orange */ - { "personal", N_("_Personal"), "#008b00" }, /* forest green */ - { "todo", N_("_To Do"), "#0000ff" }, /* blue */ - { "later", N_("_Later"), "#8b008b" } /* magenta */ + { "important", N_("I_mportant"), "#EF2929" }, /* red */ + { "work", N_("_Work"), "#F57900" }, /* orange */ + { "personal", N_("_Personal"), "#4E9A06" }, /* green */ + { "todo", N_("_To Do"), "#3465A4" }, /* blue */ + { "later", N_("_Later"), "#75507B" } /* purple */ }; typedef struct { |