Search
 
SCRIPT & CODE EXAMPLE
 

CSS

sass darken

darken($color, $amount)

//darken(#FFF, 30%)
Comment

darken scss

$btn-bkg: purple;
.btn {
  display: inline-block;
  padding: 18px;
  background: $btn-bkg;
  color: white;
  &:hover {
    background: darken($btn-bkg, 10%)
  }
}
Comment

scss darken

darken($color, $amount)
Comment

scss darken color

darken($color, 5%);
Comment

how to darken a color with sass function

darken($color, $amount)
Comment

PREVIOUS NEXT
Code Example
Css :: css change background color of page 
Css :: css wrap text next line align right 
Css :: change angular material icon color 
Css :: sass class with another class 
Css :: How To Disable Swipe To Go Back In Chrome or any browser 
Css :: not checked css 
Css :: avoid side scrolling css 
Css :: css center alignment 
Css :: css select element by role 
Css :: robot font import 
Css :: how to make background image fit to screen 
Css :: dashed lin in css 
Css :: css last item should be flex end 
Css :: custom select tailwind css 
Css :: how to justify text in css 
Css :: outline radius css 
Css :: css text shadow -m 
Css :: rgba green color 
Css :: jest test try catch 
Css :: css set background opacity 
Css :: hide scroll bar but still be scrollable. 
Css :: css set font family for all elements 
Css :: how to set border length in css without div 
Css :: css max width media 
Css :: resize in css 
Css :: transform multiple css 
Css :: nth of type for every 4th after the 1st 
Css :: how to change background color in css 
Css :: bootstrap modal resize with jquery 
Css :: css disable input 
ADD CONTENT
Topic
Content
Source link
Name
2+1 =