Method: Maglev::Content::Color#brightness
- Defined in:
- app/components/maglev/content/color.rb
#brightness ⇒ Object
14 15 16 17 |
# File 'app/components/maglev/content/color.rb', line 14 def brightness r, g, b = content.match(/^#(..)(..)(..)$/).captures.map(&:hex) (r * 299 + g * 587 + b * 114) / 1000.0 end |