From f64bee2a9f333b67d304ff0de13d41e8feec0cae Mon Sep 17 00:00:00 2001
From: Bruce Cowan <bruce@bcowan.me.uk>
Date: Fri, 26 Apr 2013 22:19:25 +0100
Subject: [PATCH] Make the colours a bit nicer

---
 rugby.css | 12 +++++++++---
 1 file changed, 9 insertions(+), 3 deletions(-)

diff --git a/rugby.css b/rugby.css
index b411380..c1bcb67 100644
--- a/rugby.css
+++ b/rugby.css
@@ -6,17 +6,23 @@
 .cell.level-cell.fill-block.score-try
 {
 	/* Scarlet red */
-	background-color: #cc0000;
+    background-image: linear-gradient(to top,
+                                      #a40000,
+                                      #cc0000);
 }
 
 .cell.level-cell.fill-block.score-utry
 {
 	/* Chameleon */
-	background-color: #edd400;
+    background-image: linear-gradient(to top,
+                                      #4e9a06,
+                                      #73d216);
 }
 
 .cell.level-cell.fill-block.score-kick
 {
 	/* Butter */
-	background-color: #73d216;
+    background-image: linear-gradient(to top,
+                                      #c4a000,
+                                      #edd400);
 }
-- 
GitLab