db319c0fdc
* Refactor list of emoji requiring added outlines so that it can be theme-specific * Split inaccessible emoji to emoji requiring an outline and ones that can be inverted * Drop the “silouhettes” from black emoji as they seem to have changed color * Add inaccessible emojis list for the light theme * Use bordered emoji variant instead of unreliable CSS
13 lines
487 B
SCSS
13 lines
487 B
SCSS
$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;
|
|
|
|
%emoji-color-inversion {
|
|
filter: invert(1);
|
|
}
|
|
|
|
.emojione {
|
|
@each $emoji in $emojis-requiring-inversion {
|
|
&[title=':#{$emoji}:'] {
|
|
@extend %emoji-color-inversion;
|
|
}
|
|
}
|
|
}
|