Created
May 18, 2023 14:33
-
-
Save alanthai/b1374e291bcd03aeb39234c6002f8320 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
:root { | |
--blitz-color-content-primary: #000000; | |
} | |
$blitz-color-content-primary: var(--blitz-color-content-primary, #000000); | |
$blitz-color-content-secondary: #000000; | |
.test { | |
background-color: $blitz-color-content-primary; | |
background-color: $blitz-color-content-secondary; | |
} |
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
:root { | |
--blitz-color-content-primary: #000000; | |
} | |
.test { | |
background-color: var(--blitz-color-content-primary, #000000); | |
background-color: #000000; | |
} |
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