Created
September 21, 2021 14:23
-
-
Save FirstVertex/07d08c167931208a342b3e9b320a1cc8 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
$primary: #0a8287; | |
$secondary: #0e247e; | |
.secondary-700 { | |
color: $secondary; | |
} | |
// target: #003865 00 38 65 | |
.secondary-600 { | |
color: mix($primary, scale-color($secondary, $lightness: 5%, $saturation: 5%), 15%) | |
} | |
// target: #00508a 00 50 8a | |
.secondary-500 { | |
color: mix($primary, scale-color($secondary, $lightness: 5%, $saturation: 15%), 45%) | |
} |
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
.secondary-700 { | |
color: #0e247e; | |
} | |
.secondary-600 { | |
color: #0e368e; | |
} | |
.secondary-500 { | |
color: #0c508d; | |
} |
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