Created
January 27, 2021 08:22
-
-
Save bytrangle/e6d689319111d9393490386fb0f370fe 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
@use "sass:color"; | |
@function replaceString($string, $target, $replace: '_') { | |
// Find index of the character to be replaced | |
$index: str-index($string, $target); | |
@if $index { | |
@return str-slice($string, 1, $index - 1) + $replace + str-slice($string, $index + 1); | |
} | |
// If the target character is not part of the string, just return the whole string | |
@else { | |
@return $string; | |
} | |
} | |
$colors: ( | |
mako-grey: #404145, | |
fuel-yellow: #ecaf2d, | |
pastel-green: #5ad864 | |
); | |
@mixin color-modifiers { | |
@each $name, $hex in $colors { | |
--color__#{$name} : #{$hex}; | |
} | |
} | |
$base-unit: 16px; | |
$base-unit-variable: '--spacing__base_unit'; | |
$scaleSystem: 0.25, 0.5, 0.75, 1, 1.5, 2, 3, 4, 6, 8, 12, 16, 24, 32, 40, 48; | |
:root { | |
#{$base-unit-variable}: $base-unit; | |
@each $scale in $scaleSystem { | |
--spacing__unit--#{replaceString(#{$scale}, '.')}: calc(var(#{$base-unit-variable}) * #{$scale}) | |
} | |
} | |
$black: #000; | |
.root { | |
--color: #{color.scale($black, $lightness: 20%)}; | |
@include color-modifiers; | |
} |
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
:root { | |
--spacing__base_unit: 16px; | |
--spacing__unit--0_25: calc(var(--spacing__base_unit) * 0.25) ; | |
--spacing__unit--0_5: calc(var(--spacing__base_unit) * 0.5) ; | |
--spacing__unit--0_75: calc(var(--spacing__base_unit) * 0.75) ; | |
--spacing__unit--1: calc(var(--spacing__base_unit) * 1) ; | |
--spacing__unit--1_5: calc(var(--spacing__base_unit) * 1.5) ; | |
--spacing__unit--2: calc(var(--spacing__base_unit) * 2) ; | |
--spacing__unit--3: calc(var(--spacing__base_unit) * 3) ; | |
--spacing__unit--4: calc(var(--spacing__base_unit) * 4) ; | |
--spacing__unit--6: calc(var(--spacing__base_unit) * 6) ; | |
--spacing__unit--8: calc(var(--spacing__base_unit) * 8) ; | |
--spacing__unit--12: calc(var(--spacing__base_unit) * 12) ; | |
--spacing__unit--16: calc(var(--spacing__base_unit) * 16) ; | |
--spacing__unit--24: calc(var(--spacing__base_unit) * 24) ; | |
--spacing__unit--32: calc(var(--spacing__base_unit) * 32) ; | |
--spacing__unit--40: calc(var(--spacing__base_unit) * 40) ; | |
--spacing__unit--48: calc(var(--spacing__base_unit) * 48) ; | |
} | |
.root { | |
--color: #333333; | |
--color__mako-grey: #404145; | |
--color__fuel-yellow: #ecaf2d; | |
--color__pastel-green: #5ad864; | |
} |
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