/// Media query definition for mobile devices, used in css-locks.
/// @access public
/// @author Silvestar Bistrović <me@silvestarbistrovic.from.hr>
/// @example @include css-locks(font-size, $mq--mobile, $mq--desktop, $font-size--mobile, $font-size--desktop);
/// @group 1.1 Sizes
/// @name mq--mobile
/// @since 1.0.0
$mq--mobile: 332px;

/// Media query definition for desktop devices, used in css-locks.
/// @access public
/// @author Silvestar Bistrović <me@silvestarbistrovic.from.hr>
/// @example @include css-locks(font-size, $mq--mobile, $mq--desktop, $font-size--mobile, $font-size--desktop);
/// @group 1.1 Sizes
/// @name mq--desktop
/// @since 1.0.0
$mq--desktop: 660px;

/// Default font size on mobile devices, used in css-locks.
/// @access public
/// @author Silvestar Bistrović <me@silvestarbistrovic.from.hr>
/// @example @include css-locks(font-size, $mq--mobile, $mq--desktop, $font-size--mobile, $font-size--desktop);
/// @group 1.1 Sizes
/// @name font-size--mobile
/// @since 1.0.0
$font-size--mobile: 14px;

/// Default font size on desktop devices, used in css-locks.
/// @access public
/// @author Silvestar Bistrović <me@silvestarbistrovic.from.hr>
/// @example @include css-locks(font-size, $mq--mobile, $mq--desktop, $font-size--mobile, $font-size--desktop);
/// @group 1.1 Sizes
/// @name font-size--desktop
/// @since 1.0.0
$font-size--desktop: 18px;

/// Default line height applied on every element
/// @access public
/// @author Silvestar Bistrović <me@silvestarbistrovic.from.hr>
/// @example line-height: $line-height;
/// @group 1.1 Sizes
/// @name line-height
/// @since 1.0.0
$line-height: 1.6;

/// Configuration for modular scale
/// @access public
/// @author Silvestar Bistrović <me@silvestarbistrovic.from.hr>
/// @example @include css-locks(font-size, $mq--mobile, $mq--desktop, $font-size--mobile, $font-size--desktop);
/// @group 1.1 Sizes
/// @name modularscale
/// @since 1.0.0
/// @link http://www.modularscale.com/
$modularscale: (
  base: 1rem,
  ratio: $minor-second
);

/// Configuration for media queries
/// @access public
/// @author Silvestar Bistrović <me@silvestarbistrovic.from.hr>
/// @example
///   @include mq($from: mobile, $until: desktop) {
///     color: $color-alpha;
///   }
/// @group 1.1 Sizes
/// @name mq-breakpoints
/// @since 1.0.0
/// @link https://www.npmjs.com/package/sass-mq
$mq-breakpoints: (
  mobile:  $mq--mobile,
  desktop: $mq--desktop
);

/// Configuration for wrapper width
/// @access public
/// @author Silvestar Bistrović <me@silvestarbistrovic.from.hr>
/// @example max-width: $wrapper;
/// @group 1.1 Sizes
/// @name wrapper
/// @since 1.0.0
$wrapper: 640px;

/// Color from SB palette
/// @access public
/// @author Silvestar Bistrović <me@silvestarbistrovic.from.hr>
/// @example color: $color-alpha;
/// @group 1.2 Colors
/// @name color1
/// @since 1.0.0
$color-alpha: #e01258;

/// Color from SB palette
/// @access public
/// @author Silvestar Bistrović <me@silvestarbistrovic.from.hr>
/// @example color: $color-beta;
/// @group 1.2 Colors
/// @name white
/// @since 1.0.0
$color-beta: #fff;

/// Color from SB palette
/// @access public
/// @author Silvestar Bistrović <me@silvestarbistrovic.from.hr>
/// @example color: $color-gamma;
/// @group 1.2 Colors
/// @name black
/// @since 1.0.0
$color-gamma: #232323;

/// Color from SB palette
/// @access public
/// @author Silvestar Bistrović <me@silvestarbistrovic.from.hr>
/// @example color: $mail;
/// @group 1.2 Colors
/// @name mail
/// @since 1.0.0
$mail: $color-alpha;

/// Color from Social palette
/// @access public
/// @author Silvestar Bistrović <me@silvestarbistrovic.from.hr>
/// @example color: $twitter;
/// @group 1.2 Colors
/// @name twitter
/// @since 1.0.0
$twitter: #55acee;

/// Color from Social palette
/// @access public
/// @author Silvestar Bistrović <me@silvestarbistrovic.from.hr>
/// @example color: $linkedin;
/// @group 1.2 Colors
/// @name linkedin
/// @since 1.0.0
$linkedin: #0077b5;

/// Color from Social palette
/// @access public
/// @author Silvestar Bistrović <me@silvestarbistrovic.from.hr>
/// @example color: $facebook;
/// @group 1.2 Colors
/// @name facebook
/// @since 1.0.0
$facebook: #3b5998;

/// Color from Social palette
/// @access public
/// @author Silvestar Bistrović <me@silvestarbistrovic.from.hr>
/// @example color: $medium;
/// @group 1.2 Colors
/// @name medium
/// @since 1.0.0
$medium: #00ab6b;

/// Color from Social palette
/// @access public
/// @author Silvestar Bistrović <me@silvestarbistrovic.from.hr>
/// @example color: $github;
/// @group 1.2 Colors
/// @name github
/// @since 1.0.0
$github: #2f2f2f;

/// Color from Social palette
/// @access public
/// @author Silvestar Bistrović <me@silvestarbistrovic.from.hr>
/// @example color: $codepen;
/// @group 1.2 Colors
/// @name codepen
/// @since 1.0.0
$codepen: #212121;

/// Color from Social palette
/// @access public
/// @author Silvestar Bistrović <me@silvestarbistrovic.from.hr>
/// @example color: $lastfm;
/// @group 1.2 Colors
/// @name lastfm
/// @since 1.0.0
$lastfm: #c3000d;

/// Color from Social palette
/// @access public
/// @author Silvestar Bistrović <me@silvestarbistrovic.from.hr>
/// @example color: $google-plus;
/// @group 1.2 Colors
/// @name google-plus
/// @since 1.0.0
$google-plus: #dc4e41;

$social-icons: (
  mail: $mail,
  twitter: $twitter,
  linkedin: $linkedin,
  facebook: $facebook,
  medium: $medium,
  github: $github,
  codepen: $codepen,
  last: $lastfm,
  google-plus: $google-plus
);

/// Transition duration
/// @access public
/// @author Silvestar Bistrović <me@silvestarbistrovic.from.hr>
/// @example transition-duration: $tra;
/// @group 1.3 Transitions
/// @name trd
/// @since 1.0.0
$trd: 0.225s;

/// Transition animation default
/// @access public
/// @author Silvestar Bistrović <me@silvestarbistrovic.from.hr>
/// @example transition-duration: $tra;
/// @group 1.3 Transitions
/// @name tra
/// @since 1.0.0
$tra: cubic-bezier(0.3, 0.6, 0.5, 0.81);

/// Vollkorn Subset
/// @access public
/// @author Silvestar Bistrović <me@silvestarbistrovic.from.hr>
/// @example font-family: $font-alpha-subset;
/// @group 1.3 Transitions
/// @name font-alpha-subset
/// @since 1.0.0
$font-alpha-subset: 'Vollkorn Subset';

/// Vollkorn
/// @access public
/// @author Silvestar Bistrović <me@silvestarbistrovic.from.hr>
/// @example font-family: $font-alpha;
/// @group 1.3 Transitions
/// @name font-alpha
/// @since 1.0.0
$font-alpha: 'Vollkorn';

/// Playfair Display Bold Subset
/// @access public
/// @author Silvestar Bistrović <me@silvestarbistrovic.from.hr>
/// @example font-family: $font-beta-subset;
/// @group 1.3 Transitions
/// @name font-beta-subset
/// @since 1.0.0
$font-beta-subset: 'Playfair Display Bold Subset';

/// Playfair Display Bold
/// @access public
/// @author Silvestar Bistrović <me@silvestarbistrovic.from.hr>
/// @example font-family: $font-beta;
/// @group 1.3 Transitions
/// @name font-beta
/// @since 1.0.0
$font-beta: 'Playfair Display Bold';

/// Courier New', Courier, monospac
/// @access public
/// @author Silvestar Bistrović <me@silvestarbistrovic.from.hr>
/// @example font-family: $font-gamma;
/// @group 1.3 Transitions
/// @name font-gamma
/// @since 1.0.0
$font-gamma: 'Courier New', Courier, monospace;
