Skip to content

Instantly share code, notes, and snippets.

@yamoo9
Created June 3, 2014 07:55
Show Gist options
  • Save yamoo9/ce4152a2899ff19d7d3f to your computer and use it in GitHub Desktop.
Save yamoo9/ce4152a2899ff19d7d3f to your computer and use it in GitHub Desktop.
텍스트/배경 색상 대조를 조정하는 SASS 사용자 정의 함수
// 배경색상에 대한 대조(contrast) 글꼴 컬러를 설정하는 사용자 정의 함수
@function contrast-text($bgcolor, $amount: 50%) {
$text-color: null;
// 유효성 검사
@if type-of($bgcolor) != color {
@warn "전달받은 인자의 데이터 형이 잘못되었습니다. color 형이 필요합니다.";
@debug "전달 받은 인자 $bgcolor 값은 #{type-of($bgcolor)} 입니다.";
}
@if lightness($bgcolor) > 50% {
$text-color: darken($bgcolor, $amount);
}
@else {
$text-color: lighten($bgcolor, $amount);
}
@return $text-color;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment