forked from mirrors/thatmattlove-hyperglass
13 lines
No EOL
228 B
SCSS
13 lines
No EOL
228 B
SCSS
// Functions
|
|
|
|
@function findTextColor($color) {
|
|
@if (lightness($color) > 50) {
|
|
@return $dark;
|
|
} @else {
|
|
@return $white;
|
|
}
|
|
}
|
|
|
|
// Imports
|
|
@import "./node_modules/bootstrap/scss/bootstrap";
|
|
@import "./overrides.sass"; |