Refactor color mixing to use the new Sass color module

This commit is contained in:
codecalm 2025-09-15 19:54:49 +02:00
parent 629f06d0e7
commit ebbc80be77
1 changed files with 3 additions and 1 deletions

View File

@ -1,3 +1,5 @@
@use 'sass:color';
$breakpoint: 50rem;
$primary: #206bc4;
$border: #eeeeee;
@ -483,7 +485,7 @@ $border-color: #e0e0e0;
height: 2rem;
align-items: center;
justify-content: center;
color: mix($dark, #fff, 75%);
color: color.mix($dark, #fff, 75%);
svg {
width: 1.25rem;