////
/// @group o-loading
/// @link http://registry.origami.ft.com/components/o-loading
////

/// Silent mode: on (true) or off (false)
/// Set to false to output default button classes
///
/// @type Boolean
$o-loading-is-silent: true !default;

/// Keyframe animation output once flag
/// @access private
/// @type Boolean
$_o-loading-animation-keyframes: false !default;

/// Predefined themes
/// @access private
/// @type Map
$_o-loading-themes: (
	'light': _oLoadingGet('default-color', $from: 'light'),
	'dark': _oLoadingGet('default-color', $from: 'dark')
);

/// Predefined sizes
/// @access private
/// @type Map
$_o-loading-sizes: (
	'mini': ('size': 12px, 'border': 2px),
	'small': ('size': 20px, 'border': 3px),
	'medium': ('size': 28px, 'border': 4px),
	'large': ('size': 36px, 'border': 5px)
);
