From 207b3611c67cdab74bb0051abd69f544849ae6bb Mon Sep 17 00:00:00 2001 From: Sergio Lindo Mansilla Date: Mon, 15 May 2017 15:17:16 +0200 Subject: [PATCH] Change too bright color to matte - The bright colors makes the labels unreadable on some screens. --- app/models/program.rb | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/app/models/program.rb b/app/models/program.rb index c7168849..e36d65bf 100644 --- a/app/models/program.rb +++ b/app/models/program.rb @@ -184,10 +184,10 @@ class Program < ActiveRecord::Base def create_difficulty_levels DifficultyLevel.create(title: 'Easy', description: 'Events are understandable for everyone without knowledge of the topic.', - color: '#70EF69', program_id: id) + color: '#32CB2A', program_id: id) DifficultyLevel.create(title: 'Medium', description: 'Events require a basic understanding of the topic.', - color: '#EEEF69', program_id: id) + color: '#E6B65B', program_id: id) DifficultyLevel.create(title: 'Hard', description: 'Events require expert knowledge of the topic.', color: '#EF6E69', program_id: id)