Created
July 3, 2014 13:42
-
-
Save hagenburger/9207a14a283fc54382d6 to your computer and use it in GitHub Desktop.
Generated by SassMeister.com.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// ---- | |
// Sass (v3.3.9) | |
// Compass (v1.0.0.alpha.20) | |
// ---- | |
/* lighten() only works well with dark colors: */ | |
#test { | |
$color-1: hsl(100, 100, 10%); | |
useful-1: 28%; | |
/*= 20% lighter */ | |
actual-1: lightness(lighten($color-1, 20%)); | |
/*= 20 percentage points lighter */ | |
/* ========================================== */ | |
$color-2: hsl(100, 100, 70%); | |
useful-2: 76%; | |
/*= 20% lighter */ | |
actual-2: lightness(lighten($color-2, 20%)); | |
/*= 20 percentage points lighter */ | |
/* ========================================== */ | |
$color-3: hsl(100, 100, 95%); | |
useful-3: 97%; | |
/*= 20% lighter */ | |
actual-3: lightness(lighten($color-3, 20%)); | |
/*= white; 5 percentage points lighter */ | |
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* lighten() only works well with dark colors: */ | |
#test { | |
useful-1: 28%; | |
/*= 20% lighter */ | |
actual-1: 30%; | |
/*= 20 percentage points lighter */ | |
/* ========================================== */ | |
useful-2: 76%; | |
/*= 20% lighter */ | |
actual-2: 90%; | |
/*= 20 percentage points lighter */ | |
/* ========================================== */ | |
useful-3: 97%; | |
/*= 20% lighter */ | |
actual-3: 100%; | |
/*= white; 5 percentage points lighter */ | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment