mirror of
https://github.com/thatmattlove/hyperglass.git
synced 2026-04-20 14:58:29 +00:00
15 lines
No EOL
232 B
SCSS
15 lines
No EOL
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"; |