From dd08991104484fcfd27ef79f6053ad8f7d3fe66e Mon Sep 17 00:00:00 2001 From: Jason Zimdars Date: Mon, 27 Jan 2025 17:18:59 -0600 Subject: [PATCH] Add a new, more cheerful default color --- app/models/bubble/colored.rb | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/app/models/bubble/colored.rb b/app/models/bubble/colored.rb index 613a4e4a0..9c5535691 100644 --- a/app/models/bubble/colored.rb +++ b/app/models/bubble/colored.rb @@ -1,9 +1,9 @@ module Bubble::Colored extend ActiveSupport::Concern - COLORS = %w[ #BF1B1B #ED3F1C #ED8008 #7C956B #698F9C #3B4B59 #5D618F #3B3633 #67695E ] + COLORS = %w[ #BF1B1B #ED3F1C #ED8008 #7C956B #698F9C #266ec3 #3B4B59 #5D618F #3B3633 #67695E ] included do - attribute :color, default: "#698F9C" + attribute :color, default: "#266ec3" end end