# HG changeset patch # User bsw # Date 1332355742 -3600 # Node ID 9582f42fd4bcec5fe34deb3647809929e7b85b5b # Parent 03c205fc17f0cdf187f96dccc3676e36e12216f2 Make colors more of bargraph more clear diff -r 03c205fc17f0 -r 9582f42fd4bc app/main/initiative/_list_element.lua --- a/app/main/initiative/_list_element.lua Wed Mar 21 19:43:44 2012 +0100 +++ b/app/main/initiative/_list_element.lua Wed Mar 21 19:49:02 2012 +0100 @@ -45,8 +45,8 @@ quorum_color = "#00F", bars = { { color = "#0a0", value = (initiative.satisfied_supporter_count or 0) }, - { color = "#bbb", value = (initiative.supporter_count or 0) - (initiative.satisfied_supporter_count or 0) }, - { color = "#f7f7f7", value = max_value - (initiative.supporter_count or 0) }, + { color = "#999", value = (initiative.supporter_count or 0) - (initiative.satisfied_supporter_count or 0) }, + { color = "#ddd", value = max_value - (initiative.supporter_count or 0) }, } } end