mirror of
https://github.com/google/pebble.git
synced 2025-03-15 08:41:21 +00:00
9 lines
230 B
SCSS
9 lines
230 B
SCSS
// Add percentage of white to a color
|
|
@function tint($color, $percent){
|
|
@return mix(white, $color, $percent);
|
|
}
|
|
|
|
// Add percentage of black to a color
|
|
@function shade($color, $percent){
|
|
@return mix(black, $color, $percent);
|
|
}
|