Created
January 27, 2021 07:33
-
-
Save jasonmelgoza/99b49ccc399ed172c3d3b8a20c620791 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
$gray-50: #555; | |
$gray-100: #000; | |
$gray-200: #000; | |
$gray-300: #000; | |
$gray-400: #000; | |
$gray-500: #000; | |
$gray-600: #000; | |
$gray-700: #000; | |
$gray-800: #000; | |
$gray-900: #000; | |
$colors: ( | |
"transparent": transparent, | |
"current": currentColor, | |
"black": $gray-700, | |
"white": #fff, | |
"gray-50": $gray-50, | |
"gray-100": $gray-100, | |
"gray-200": $gray-200, | |
"gray-300": $gray-300, | |
"gray-400": $gray-400 | |
); | |
@each $name, $color in $colors { | |
.b-#{$name} { | |
border-color: $color !important; | |
} | |
} |
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
.b-transparent { | |
border-color: transparent !important; | |
} | |
.b-current { | |
border-color: currentColor !important; | |
} | |
.b-black { | |
border-color: #000 !important; | |
} | |
.b-white { | |
border-color: #fff !important; | |
} | |
.b-gray-50 { | |
border-color: #555 !important; | |
} | |
.b-gray-100 { | |
border-color: #000 !important; | |
} | |
.b-gray-200 { | |
border-color: #000 !important; | |
} | |
.b-gray-300 { | |
border-color: #000 !important; | |
} | |
.b-gray-400 { | |
border-color: #000 !important; | |
} |
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": { | |
"compiler": "dart-sass/1.26.11", | |
"extensions": {}, | |
"syntax": "SCSS", | |
"outputStyle": "expanded" | |
}, | |
"autoprefixer": false | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment