/*
# Contextual Edger */
/*
	Notes: Maybe edgers need a non-contextual style implementation that is NOT contextual.

		Probably makes sense to have both, a contextual edger and non-contextual utility that never changes.
		Sometimes dark should be dark on both light mode and on dark mode.

*/
	/*
	## Default mode */
		.crm-edger, .crm-light-mode.crm-edger, .crm-light-mode .crm-edger {
			border-style: solid;
			border-width: 1px;
			border-color: hsla(0, 0%, 0%, 0.1);
		}

	/*
	## Dark mode */
	.crm-dark-mode.crm-edger, .crm-dark-mode .crm-edger {
		border-style: solid;
		border-width: 1px;
		border-color: hsla(0, 0%, 100%, 0.1);
	}


/*
# Non-contextual Edger */
	/*
	## Dark edger */
	.crm-dark-edger {
		border-style: solid;
		border-width: 1px;
		border-color: hsla(0, 0%, 0%, 0.1);
	}

	/*
	## Light edger */
	.crm-light-edger {
		border-style: solid;
		border-width: 1px;
		border-color: hsla(0, 0%, 100%, 0.1);
	}