[筆記] SASS / SCSS
lighten($color, $amount) // Makes a color lighter.
darken($color, $amount) // Makes a color darker.
目錄
[TOC]
資料型態(Data Types)
SASSScript 支援 8 種資料型態:
- 數值(number):
1.2,13,10px - 字串(strings):
"foo",'bar',baz(可以有引號或沒有) - 顏色(color):
blue,#04a3f9,rgba(255, 0, 0, 0.4) - nulls:
null - lists of value:
1.5em 1em 0 2em,Helvetica, Arial, sans-serif - maps from one value to another:
(key1: value1, key2: value2) - function references
Data Types @ SASS Reference
String Interpolation
在 SASS 中可以使用 #{} ,裡面的內容會被 SASS 編譯:
@mixin tooltip($background) {
background-image: url(#{$background});
}