Created
June 16, 2021 08:07
-
-
Save matthieutirelli-pro/74202dfabd5419e1de5250c54cab1f0e to your computer and use it in GitHub Desktop.
Generated by SassMeister.com.
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
/* Colors */ | |
$primary: #07698D; | |
$primaryBackgroundOpacity: 0; | |
/* Opacities */ | |
$activeOpacity: 1; | |
$disabledOpacity: 0.5; | |
/* Usage */ | |
.buttonPrimaryDisabled { | |
background: rgba($primary, $primaryBackgroundOpacity); | |
opacity: $disabledOpacity; | |
} | |
.buttonPrimary { | |
background: rgba($primary, $primaryBackgroundOpacity); | |
opacity: $activeOpacity; | |
} |
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
/* Colors */ | |
/* Opacities */ | |
/* Usage */ | |
.buttonPrimaryDisabled { | |
background: rgba(7, 105, 141, 0); | |
opacity: 0.5; | |
} | |
.buttonPrimary { | |
background: rgba(7, 105, 141, 0); | |
opacity: 1; | |
} |
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
{ | |
"sass": { | |
"compiler": "dart-sass/1.32.12", | |
"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