CSS/SASS

SASS를 이용해서 특정 색의 밝기를 비율로 조절하는 방법

Socratone 2021. 2. 14. 01:42
.button--lighten {
  background: lighten(#6b717f, 20%);
}

.button--darken {
  background: darken(#6b717f, 20%);
}

 

lighten과 darken 함수에 따라서 원래 색이 변환된다.