Last active
February 7, 2020 21:11
-
-
Save cscottyb/f3e6b742b2924fc03a08151414206ae7 to your computer and use it in GitHub Desktop.
RainBoots: Extend your color palette in Bootstrap 4 to change color, background-color, and fill.
This file contains hidden or 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
// RAINBOOTS | |
// | |
// Set-up: | |
// 1. Add this file to your scss directory in your Bootstrap 4 directory. | |
// 2. Add `@import "rainboots";` to the end of bootstrap.scss. | |
// | |
// Configure: | |
// Comment out lines in the Utilities section that you don't want to include. See below. | |
// | |
// Add classes in your HTML file | |
// Color Examples: bg-lime, text-lime, fill-lime. | |
// Gray Example: bg-gray-200, text-gray-500, fill-gray-900; | |
/* Mixins */ | |
@mixin bg-colors($parent, $color){ | |
#{$parent} { | |
background-color: $color !important; | |
} | |
a#{$parent}, | |
button#{$parent} { | |
@include hover-focus { | |
background-color: darken($color, 10%) !important; | |
} | |
} | |
} | |
@mixin txt-colors($parent, $color){ | |
#{$parent} { | |
color: $color !important; | |
} | |
} | |
@mixin fill-colors($parent, $color){ | |
#{$parent} { | |
fill: $color !important; | |
} | |
} | |
@mixin bg-gray-colors($parent, $gray){ | |
#{$parent} { | |
background-color: $gray !important; | |
} | |
a#{$parent}, | |
button#{$parent} { | |
@include hover-focus { | |
background-color: darken($gray, 10%) !important; | |
} | |
} | |
} | |
@mixin txt-gray-colors($parent, $gray){ | |
#{$parent} { | |
color: $gray !important; | |
} | |
} | |
@mixin fill-gray-colors($parent, $gray){ | |
#{$parent} { | |
fill: $gray !important; | |
} | |
} | |
/* Utilities */ | |
// $colors | |
@each $color, $value in $colors { | |
@include bg-colors(".bg-#{$color}", $value); | |
@include txt-colors(".text-#{$color}", $value); | |
@include fill-colors(".fill-#{$color}", $value); | |
} | |
// $grays | |
@each $gray, $values in $grays { | |
@include bg-gray-colors(".bg-gray-#{$gray}", $values); | |
@include txt-gray-colors(".text-gray-#{$gray}", $values); | |
@include fill-gray-colors(".fill-gray-#{$gray}", $values); | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment