vars.rb 1.4 KB

1234567891011121314151617181920212223242526272829303132333435
  1. $social_network_colors = {}
  2. $social_network_colors[:facebook] = "#3b5998"
  3. $social_network_colors[:twitter] = "#55acee"
  4. $social_network_colors[:okcupid] = "#3b5998"
  5. $social_network_colors[:instagram] = "#e95950"
  6. $social_network_colors[:pinterest] = "#cb2027"
  7. $social_network_colors[:linkedin] = "#007bb5"
  8. $social_network_colors[:google] = "#dd4b39"
  9. $social_network_colors[:tumblr] = "#32506d"
  10. $social_network_colors[:vk] = "#45668e"
  11. $social_network_colors[:vimeo] = "#aad450"
  12. $social_network_colors[:foursquare] = "#0072b1"
  13. $social_network_colors[:dribbble] = "#000000"
  14. $social_network_colors[:stumbleupon] = "#000000"
  15. $social_network_colors[:wordpress] = "#000000"
  16. $social_network_colors[:vine] = "#00bf8f"
  17. $social_network_colors[:snapchat] = "#fffc00"
  18. $social_network_colors[:youtube] = "#bb0000"
  19. $social_network_colors[:flickr] = "#ff0084"
  20. $social_network_colors[:github] = "#000000"
  21. $social_network_colors[:yelp] = "#c41200"
  22. $social_network_colors[:soundcloud] = "#ff7700"
  23. $social_network_colors[:lastfm] = "#c3000d"
  24. $social_network_colors[:sourceforge] = "#000000"
  25. $social_network_colors[:meetup] = "#e51937"
  26. $social_network_colors[:reddit] = "#FF5700"
  27. $social_network_colors[:rss] = "#ff6600"
  28. $social_network_colors[:spotify] = "#00e461"
  29. $social_networks = []
  30. $social_network_colors.keys.each do |key|
  31. $social_networks << key.to_s.delete(":")
  32. end
  33. puts ">> LOADED SOCIAL NETWORKS: #{$social_networks}"