7 lines
179 B
Ruby
7 lines
179 B
Ruby
module Colorable
|
|
extend ActiveSupport::Concern
|
|
|
|
COLORS = %w[ #3b3633 #67695e #eb7a32 #bf7c2b #c09c6f #746b1e #2c6da8 #5d618f #663251 #ff63a8 ]
|
|
DEFAULT_COLOR = "#2c6da8"
|
|
end
|