You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

16 lines
493 B

  1. $emojis-requiring-inversion: 'back' 'copyright' 'curly_loop' 'currency_exchange'
  2. 'end' 'heavy_check_mark' 'heavy_division_sign' 'heavy_dollar_sign'
  3. 'heavy_minus_sign' 'heavy_multiplication_x' 'heavy_plus_sign' 'on'
  4. 'registered' 'soon' 'spider' 'telephone_receiver' 'tm' 'top' 'wavy_dash' !default;
  5. %emoji-color-inversion {
  6. filter: invert(1);
  7. }
  8. .emojione {
  9. @each $emoji in $emojis-requiring-inversion {
  10. &[title=':#{$emoji}:'] {
  11. @extend %emoji-color-inversion;
  12. }
  13. }
  14. }