[hitori] Change the colour of one of the tags from red to blue



commit 620936a99d81d4321a31d3ff08afb63bf7208ac2
Author: Philip Withnall <philip tecnocode co uk>
Date:   Sun Oct 31 11:40:39 2010 +0000

    Change the colour of one of the tags from red to blue
    
    It's calmer, and looks less like an error condition.

 src/interface.c |    4 ++--
 1 files changed, 2 insertions(+), 2 deletions(-)
---
diff --git a/src/interface.c b/src/interface.c
index 47002c8..56c3c3c 100644
--- a/src/interface.c
+++ b/src/interface.c
@@ -148,9 +148,9 @@ hitori_draw_cb (GtkWidget *drawing_area, cairo_t *cr, Hitori *hitori)
 			/* If the cell is tagged, draw the tag dots */
 			if (hitori->board[iter.x][iter.y].status & CELL_TAG1) {
 				if (hitori->board[iter.x][iter.y].status & CELL_PAINTED)
-					cairo_set_source_rgb (cr, 0.643137255, 0, 0); /* Tango's darkest "scarlet red" */				
+					cairo_set_source_rgb (cr, 0.125490196, 0.290196078, 0.529411765); /* Tango's darkest "sky blue" */
 				else
-					cairo_set_source_rgb (cr, 0.937254902, 0.160784314, 0.160784314); /* Tango's lightest "scarlet red" */
+					cairo_set_source_rgb (cr, 0.447058824, 0.623529412, 0.811764706); /* Tango's lightest "sky blue" */
 
 				cairo_move_to (cr, x_pos, y_pos + TAG_OFFSET);
 				cairo_line_to (cr, x_pos, y_pos);



[Date Prev][Date Next]   [Thread Prev][Thread Next]   [Thread Index] [Date Index] [Author Index]