// Farbe schattieren mit tint

@function tint($color, $percentage) {
  @return mix(white, $color, $percentage);
}

// Fontgrößen in px und rem

@mixin font-size($sizeValue: 1.6) {
  font-size: ($sizeValue * 10) + px;
  font-size: $sizeValue + rem;
}

// Clearfix

@mixin clearfix {
  &:after {
    content: "";
    display: table;
    clear: both;
  }
}

