/*! Themestr.app `Monotony` Bootstrap 4.3.1 theme */
/* https://github.com/ThemesGuide/bootstrap-themes/blob/master/monotony/ */

@use 'sass:map';


///==========================================
///   Theme variable overrides
///==========================================

@import "./abstract";


// Fonts
@import url(https://fonts.googleapis.com/css?family=Montserrat:200,300,400,700);
$font-family-base: "Montserrat";

@import url(https://fonts.googleapis.com/css?family=Open+Sans:200,300,400,700);
$headings-font-family: "Open Sans";

// Colors
$primary    :#222222;
$secondary  :#666666;
$success    :#333333;
$danger     :#434343;
$info       :#515151;
$warning    :#5f5f5f;
$light      :#eceeec;
$dark       :#111111;

$theme-colors: map.merge(
  $theme-colors,
  (
    'primary': $primary,
    'secondary': $secondary,
    'success': $success,
    'danger': $danger,
    'info': $info,
    'warning': $warning,
    'light': $light,
    'dark': $dark,
  )
);


///==========================================
///   Custom styles specific to the theme
///==========================================

@import './_base';