/////////////////////////////////////////////////////////
/// PUNICA CSS > THEMES > DEFAULT : Theme map
/////////////////////////////////////////////////////////
///
/// Read more about customization;
/// @link http://www.punicacss.com/themes/light
///
$punica-themes: (
	default: (
		'name' : 'Default Theme',
		'type' : 'light', // 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'       : #202123,
			'background' : white,
			'primary'    : #314a93,
			'success'    : #297d51,
			'warning'    : #956d28,
			'error'      : #972727,
			'active'     : #dcdcdc,
			'negative'   : white,
			'grey'       : #979797,
			'secondary'  : #e6e6e6,
			'dark'       : #252831,
		),
		'border': (
			'color'  : #c6c6c6,
			'width'  : 1px,
			'style'  : solid,
			'radius' : 4px,
		),
		'shadow': (
			'horizontal' : 0,
			'vertical'   : 2px,
			'blur'       : 4px,
			'spread'     : 0,
			'color'      : rgba(0, 0, 0, 0.20),
		),
		'input': (
			'color'         : null, // (null = color > text)
			'background'    : white,
			'border-color'  : null, // (null = border > color)
			'outline-color' : #252831,
			'outline-width' : 2px,
			'label-weight'  : 600,
			'transition'    : .35s
		),
		'components': (
			'navbar': (
				'font-weight': 700
			),
			'tabnav': (
				'font-weight': 600
			),
			'card': (
				'background' : null, // (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, #e6e6e6 0%,#ffffff 100%),
					'hover-color'  : null,
					'hover-bg'     : linear-gradient(to bottom, #e6e6e6 0%,#ffffff 100%),
					'border-color' : null
				)
			),
		)
	)
)