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.

13 lines
487 B

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