Skip to content

Instantly share code, notes, and snippets.

@zzarazza
Created April 6, 2021 11:04
Show Gist options
  • Save zzarazza/cb703be7ab95f482314af06a857a65de to your computer and use it in GitHub Desktop.
Save zzarazza/cb703be7ab95f482314af06a857a65de to your computer and use it in GitHub Desktop.
Generated by SassMeister.com.
//@use "sass:map";
// project
// $color--base: green;
// first settings
$color--base: red !default;
$color--hover: $color--base !default;
// second settings
$color--base: blue !default;
$color--hover: $color--base !default;
$color--hover: $color--base;
@mixin color ($c) {
border-color: $c;
}
// actual application
.color {
color: $color--base;
background-color: $color--hover;
@include color($color--base);
@include color($color--hover);
}
.color {
color: red;
background-color: red;
border-color: red;
border-color: red;
}
{
"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