Guest User

Untitled

a guest
May 23rd, 2018
88
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.23 KB | None | 0 0
  1. module Sass::Script::Functions
  2. def random(type)
  3. if type.value == "color"
  4. Sass::Script::Color.new(:red => rand(255), :green => rand(255), :blue => rand(255))
  5. else
  6. Sass::Script::Number.new(rand(100))
  7. end
  8. end
  9. end
Add Comment
Please, Sign In to add comment