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
// Maps | |
// - Color Map | |
// - Major Breakpoints | |
// - Spacing | |
// - Font Sizes | |
// - Font Family | |
// - Font Weight | |
// - Display | |
// - Text Align | |
// - Flexbox Properties |
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
// default -> inside /node_modules/sparkle | |
$settings: ( | |
'utilPrefix': 'sbx', | |
'colorUtil': true | |
) !default; | |
$colors: ( | |
'red': #900, | |
'green': #090, |
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 (vundefined) | |
// Compass (vundefined) | |
// dart-sass (v1.18.0) | |
// ---- | |
@function min-width($val) { | |
@return '(min-width: #{$val})'; | |
} |
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 (vundefined) | |
// Compass (vundefined) | |
// dart-sass (v1.18.0) | |
// ---- | |
@mixin angled-mask($distance:9.5rem, $angle:110deg) { | |
mask-image: linear-gradient(#{$angle}, transparent #{$distance}, color('black') #{$distance}, color('black') #{$distance + 0.0625}, transparent 51%); | |
} |
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 (vundefined) | |
// Compass (vundefined) | |
// dart-sass (v1.18.0) | |
// ---- | |
@mixin angled-mask($distance:9.5rem, $angle:110deg) { | |
mask-image: linear-gradient(#{$angle}, transparent #{$distance}, color('black') #{$distance}, color('black') #{$distance + 0.0625}, transparent 51%); | |
} |
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 (vundefined) | |
// Compass (vundefined) | |
// dart-sass (v1.18.0) | |
// ---- | |
$color1: deeppink; | |
$color2: dodgerblue; | |
$color3: lime; |
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 (vundefined) | |
// Compass (vundefined) | |
// dart-sass (v1.18.0) | |
// ---- | |
$color1: deeppink; | |
$color2: dodgerblue; | |
$color3: lime; |
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 (vundefined) | |
// Compass (vundefined) | |
// dart-sass (v1.18.0) | |
// ---- | |
$grid-breakpoints: ( | |
sm: 30rem, | |
md: 40rem, | |
lg: 60rem, |
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 (vundefined) | |
// Compass (vundefined) | |
// dart-sass (v1.18.0) | |
// ---- | |
$grid-breakpoints: ( | |
sm: 30rem, | |
md: 40rem, | |
lg: 60rem, |
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
//Breakpoints | |
$bp-sm: 30rem; | |
$bp-md: 50rem; | |
$bp-lg: 60rem; | |
$bp-xl: 80rem; | |
$grid-breakpoints: ( | |
sm: $bp-sm, | |
md: $bp-md, | |
lg: $bp-lg, |