comparison src/gtkconv.c @ 10873:c522fdb85dbc

[gaim-migrate @ 12561] sf patch #1189893, from Steven Garrity "This patch slightly changes the shade of the blue color of inactive tabs on a group chat when someone uses your nickname. The previous blue was a bit too close to the default black, so it was difficult to notice. This blue is a little bit brighter and more staturated. Here's a screenshot to show the difference (current blue in the left column, blue from this patch in the right column): http://actsofvolition.com/images/screenshots/gaim/tab-colors.png The only thing changes is the HEX for the color, so this could easily be applied to oldstatus as well." committer: Tailor Script <tailor@pidgin.im>
author Mark Doliner <mark@kingant.net>
date Tue, 26 Apr 2005 02:02:43 +0000
parents 55e29b8e9689
children 601739f63f23
comparison
equal deleted inserted replaced
10872:beb62c7e9d8b 10873:c522fdb85dbc
5356 { 5356 {
5357 strcpy(color, "#D1940C"); 5357 strcpy(color, "#D1940C");
5358 } 5358 }
5359 else if (gaim_conversation_get_unseen(conv) == GAIM_UNSEEN_NICK) 5359 else if (gaim_conversation_get_unseen(conv) == GAIM_UNSEEN_NICK)
5360 { 5360 {
5361 strcpy(color, "#314E6C"); 5361 strcpy(color, "#0D4E91");
5362 } 5362 }
5363 else if (gaim_conversation_get_unseen(conv) == GAIM_UNSEEN_TEXT) 5363 else if (gaim_conversation_get_unseen(conv) == GAIM_UNSEEN_TEXT)
5364 { 5364 {
5365 strcpy(color, "#DF421E"); 5365 strcpy(color, "#DF421E");
5366 } 5366 }