module Coco module FormatHelper # Ensures a hex color has a `#` prefix # for use in CSS style values def format_css_hex_color(color) if color.present? "#" + color.to_s.delete_prefix("#") end end end end