/*! Themestr.app `Greyson` Bootstrap 4.3.1 theme */ /* https://github.com/ThemesGuide/bootstrap-themes/blob/master/greyson/ */ @use 'sass:map'; ///========================================== /// Theme variable overrides ///========================================== @import "./abstract"; // Fonts @import url(https://fonts.googleapis.com/css?family=Muli:200,300,400,700); $font-family-base: "Muli"; @import url(https://fonts.googleapis.com/css?family=Oswald:200,300,400,700); $headings-font-family: "Oswald"; // Colors $primary :#2f3c48; $secondary :#6f7f8c; $success :#3e4d59; $danger :#cc330d; $info :#5c8f94; $warning :#6e9fa5; $light :#eceeec; $dark :#1e2b37; // Palettes $theme-colors: map.merge( $theme-colors, ( 'primary': $primary, 'secondary': $secondary, 'success': $success, 'danger': $danger, 'info': $info, 'warning': $warning, 'light': $light, 'dark': $dark, ) ); $palette-semantic: $theme-colors; $palette-gray: ( '0': $white, '50': $gray-50, '100': $gray-100, '150': $gray-150, '175': $gray-175, '200': $gray-200, '300': $gray-300, '400': $gray-400, '500': $gray-500, '600': $gray-600, '700': $gray-700, '800': $gray-800, '900': $gray-900, '1000': $black ); $palette-pastel: ( 'green': $pastel-green, 'blue': $pastel-blue, 'yellow': $pastel-yellow, 'red': $pastel-red, 'orange': $pastel-orange, 'purple': $pastel-purple ); // Misc $enable-rounded: false; ///========================================== /// Custom styles specific to the theme ///========================================== @import './_base';