herbie.scss 1.54 KB
Newer Older
1 2
/*! Themestr.app `Herbie` Bootstrap 4.3.1 theme */

arturo's avatar
arturo committed
3
@use 'sass:map';
arturo's avatar
arturo committed
4 5


arturo's avatar
arturo committed
6 7 8
///==========================================
///   Theme variable overrides
///==========================================
9

arturo's avatar
arturo committed
10
@import "./abstract";
11 12 13 14


// Fonts
@import url(https://fonts.googleapis.com/css?family=Nunito:200,300,400,700);
arturo's avatar
arturo committed
15 16
$font-family-base: "Nunito";

17
@import url(https://fonts.googleapis.com/css?family=Crete+Round:200,300,400,700);
arturo's avatar
arturo committed
18
$headings-font-family: "Crete Round";
19 20

// Colors
arturo's avatar
arturo committed
21 22 23 24 25 26 27 28 29
$primary    :#083358;
$secondary  :#F67280;
$success    :#0074E4;
$danger     :#FF4057;
$info       :#74DBEF;
$warning    :#FC3C3C;
$light      :#F2F2F0;
$dark       :#072247;

arturo's avatar
arturo committed
30
// Palettes
arturo's avatar
arturo committed
31 32 33 34 35 36 37 38 39 40 41 42
$theme-colors: map.merge(
  $theme-colors,
  (
    'primary': $primary,
    'secondary': $secondary,
    'success': $success,
    'danger': $danger,
    'info': $info,
    'warning': $warning,
    'light': $light,
    'dark': $dark,
  )
43
);
arturo's avatar
arturo committed
44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70
$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
);
71 72


arturo's avatar
arturo committed
73 74 75
///==========================================
///   Custom styles specific to the theme
///==========================================
76

arturo's avatar
arturo committed
77
@import './_base';