// Paths
$assets-path: 'assets';

// Colours
$grey: #2a2d34;
$dark-grey: #22242a;
$light-grey: #e6e6e6;
$lighter-grey: #f7f7f7;
$blue: #3a99d9;
$green: #2abb9c;
$purple: #7d4e92;
$red: #d93d3a;
$yellow: #f1ba22;

$default-primary-colour: #32a6ba;

$primary-colour: $default-primary-colour !default;

// Font
$font-family: 'Hind', sans-serif;

// Spacing
$base-spacing: 1.5em;

// Lists - to apply common styling
$text-inputs-list: 'input[type="color"]',
  'input[type="date"]',
  'input[type="datetime"]',
  'input[type="datetime-local"]',
  'input[type="email"]',
  'input[type="month"]',
  'input[type="number"]',
  'input[type="password"]',
  'input[type="search"]',
  'input[type="tel"]',
  'input[type="text"]',
  'input[type="time"]',
  'input[type="url"]',
  'input[type="week"]',
  'input:not([type])',
  'textarea',
  '.select',
  '.upload-input';
