/////////////////////////////////////////////////////////
/// PUNICA CSS > THEMES > DUSTY : Theme map
/////////////////////////////////////////////////////////
///
/// Read more about customization;
/// @link http://www.punicacss.com/themes/dusty
///
$punica-themes: (
	dusty: (
		'name' : 'Dusty Theme',
		'type' : 'light', // light or dark (required*),
		'google-font': (
			'name'    : 'Source+Sans+Pro', // or Source+Sans+Pro etc
			'weights' : '300;400;600;700',
		),
		'typography': (
			'font-family'   : 'Source Sans Pro',
			'font-size'     : .8538em,
			'font-weight'   : 400,
			'line-height'   : 1.9,
			'header-weight' : 700,
		),
		'color': (
			'text'       : #525252,
			'background' : #f5f5f5,
			'primary'    : #7486a0,
			'success'    : #91976a,
			'warning'    : #ac8870,
			'error'      : #8d5157,
			'active'     : #e2dede,
			'negative'   : #f5f5f5,
			'grey'       : #a8a8a8,
			'secondary'  : #ebebeb,
			'dark'       : #656565,
		),
		'border': (
			'color'  : #d3d3d3,
			'width'  : 1px,
			'style'  : solid,
			'radius' : 2px,
		),
		'shadow': (
			'horizontal' : 0,
			'vertical'   : 0,
			'blur'       : 8px,
			'spread'     : 0,
			'color'      : rgba(0, 0, 0, 0.1),
		),
		'input': (
			'color'         : null, // (null = color > text)
			'background'    : white,
			'border-color'  : null, // (null = border > color)
			'outline-color' : #8396b1,
			'outline-width' : 2px,
			'label-weight'  : 700,
			'transition'    : .35s
		),
		'components': (
			'navbar': (
				'font-weight': 600
			),
			'tabnav': (
				'font-weight': 600
			),
			'card': (
				'background' : white, // (null = color > background)
				'radius'     : 0 // (null = border > radius)
			),
			'panel': (
				'background' : null, // (null = color > background)
				'radius'     : null // (null = border > radius)
			),
			'menu': (
				'background': null, // (null = color > background)
			)
		),
		'elements': (
			'button': (
				'font-weight' : 700,
				'radius'      : null, // (null = border > radius)
				'secondary': (
					'color'        : null,
					'background'   : linear-gradient(to top, #D8D9DB 0%, #fff 80%, #FDFDFD 100%),
					'hover-color'  : null,
					'hover-bg'     : linear-gradient(to bottom, #D8D9DB 0%, #fff 80%, #FDFDFD 100%),
					'border-color' : null
				)
			),
		)
	)
)