{# ========================================================================== #}
{# :: Config #}
{# ========================================================================== #}
{#
	This file contains the colors. You have 2 ways to define a color:
	- hexadecimal, prefixed with #
	- object with 2 keys: style for the styling applied on the visual and the
	value containing the color

	IMPORTANT!!!
	It is of uttermost importance that this file contains the same data as
	defined in _colors.scss of its corresponding styleguide.
#}

{# ========================================================================== #}
{# :: Settings & variables #}
{# ========================================================================== #}
{% set config = {
	primary: [
		"#0365F4"
	],
	secondary: [
		"#5887C4"
	],
	text: [
		"#000000",
		{
			style: "background-color: #FFFFFF; border: 1px solid #E9EAEB;",
			value: "#FFFFFF"
		},
		"#767676",
		"#CACCCE"
	],
	border: [
		"#E9EAEB"
	],
	background: [
		{
			style: "background-color: #FFFFFF; border: 1px solid #E9EAEB;",
			value: "#FFFFFF"
		},
		"#000000",
		"#F8F8F8",
		"#E9EAEB"
	],
	shadow: [
		{
			style: "box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);",
			value: "#000000"
		}
	]
} %}
