/////////////////////////////////////////////////////////
/// PUNICA CSS > THEMES > DARK : Theme map
/////////////////////////////////////////////////////////
///
/// Read more about customization;
/// @link http://www.punicacss.com/themes/dark
///
$punica-themes: (
	dark: (
		'name' : 'Dark Theme',
		'type' : 'dark', // light or dark (required*),
		'google-font': (
			'name'    : 'IBM+Plex+Sans+Hebrew', // or Source+Sans+Pro etc
			'weights' : '400;600;700',
		),
		'typography': (
			'font-family'   : 'IBM Plex Sans Hebrew',
			'font-size'     : 13px,
			'font-weight'   : 400,
			'line-height'   : 1.7,
			'header-weight' : 700,
		),
		'color': (
			'text'       : white,
			'background' : #252831,
			'primary'    : #3e5bb2,
			'success'    : #2f8f5d,
			'warning'    : #ab7d2d,
			'error'      : #ba3d3d,
			'active'     : lighten(#252831, 3.7%),
			'negative'   : white,
			'grey'       : #6d758c,
			'secondary'  : lighten(#252831, 5%),
			'dark'       : lighten(#252831, 4.5%),
		),
		'border': (
			'color'  : lighten(#252831, 17%),
			'width'  : 1px,
			'style'  : solid,
			'radius' : 4px,
		),
		'shadow': (
			'horizontal' : 0,
			'vertical'   : 1px,
			'blur'       : 4px,
			'spread'     : 0,
			'color'      : rgba(0, 0, 0, 0.20),
		),
		'input': (
			'color'         : null, // (null = color > text)
			'background'    : lighten(#252831, 4.5%),
			'border-color'  : null, // (null = border > color)
			'outline-color' : white,
			'outline-width' : 2px,
			'label-weight'  : 600,
			'transition'    : .35s
		),
		'components': (
			'navbar': (
				'font-weight': 700
			),
			'tabnav': (
				'font-weight': 600
			),
			'card': (
				'background' : lighten(#252831, 1.75%), // (null = color > background)
				'radius'     : null // (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, #1e2027 0%,#252831 100%),
					'hover-color'  : null,
					'hover-bg'     : linear-gradient(to bottom, #1e2027 0%,#252831 100%),
					'border-color' : null
				)
			),
		)
	)
)