mirror of
https://github.com/mastodon/mastodon.git
synced 2024-12-19 07:57:00 +00:00
Fix sass deprecation warning (#31961)
This commit is contained in:
parent
8b70834035
commit
29656cb9e0
|
@ -1,3 +1,5 @@
|
||||||
|
@use 'sass:color';
|
||||||
|
|
||||||
// Dependent colors
|
// Dependent colors
|
||||||
$black: #000000;
|
$black: #000000;
|
||||||
$white: #ffffff;
|
$white: #ffffff;
|
||||||
|
@ -47,11 +49,19 @@ $account-background-color: $white !default;
|
||||||
|
|
||||||
// Invert darkened and lightened colors
|
// Invert darkened and lightened colors
|
||||||
@function darken($color, $amount) {
|
@function darken($color, $amount) {
|
||||||
@return hsl(hue($color), saturation($color), lightness($color) + $amount);
|
@return hsl(
|
||||||
|
hue($color),
|
||||||
|
color.channel($color, 'saturation', $space: hsl),
|
||||||
|
color.channel($color, 'lightness', $space: hsl) + $amount
|
||||||
|
);
|
||||||
}
|
}
|
||||||
|
|
||||||
@function lighten($color, $amount) {
|
@function lighten($color, $amount) {
|
||||||
@return hsl(hue($color), saturation($color), lightness($color) - $amount);
|
@return hsl(
|
||||||
|
hue($color),
|
||||||
|
color.channel($color, 'saturation', $space: hsl),
|
||||||
|
color.channel($color, 'lightness', $space: hsl) - $amount
|
||||||
|
);
|
||||||
}
|
}
|
||||||
|
|
||||||
$emojis-requiring-inversion: 'chains';
|
$emojis-requiring-inversion: 'chains';
|
||||||
|
|
Loading…
Reference in a new issue