mirror of
https://github.com/checktheroads/hyperglass
synced 2024-05-11 05:55:08 +00:00
15 lines
232 B
SCSS
15 lines
232 B
SCSS
// Functions
|
|
|
|
@function findTextColor($color) {
|
|
@if (lightness($color) > 55%) {
|
|
@return $dark;
|
|
}
|
|
|
|
@else {
|
|
@return $light;
|
|
}
|
|
}
|
|
|
|
// Imports
|
|
@import "./node_modules/bootstrap/scss/bootstrap";
|
|
@import "./overrides.sass"; |