// scale
$scale: (
	0: 0,
	50: 0.5,
	75: 0.75,
	90: 0.9,
	95: 0.95,
	100: 1,
	105: 1.05,
	110: 1.1,
	125: 1.25,
	150: 1.5,
) !default;

// rotate
$rotate: (
	0: rotate(0deg),
	1: rotate(1deg),
	2: rotate(2deg),
	3: rotate(3deg),
	6: rotate(6deg),
	12: rotate(12deg),
	45: rotate(45deg),
	90: rotate(90deg),
	180: rotate(180deg),
) !default;

// translate
$translate: (
	1\/2: 50%,
	1\/3: 33.3333%,
	2\/3: 66.6667%,
	1\/4: 25%,
	2\/4: 50%,
	3\/4: 75%,
	full: 100%
) !default;

// transform-origin
$transform-origin: (
	center: center,
	top: top,
	top-right: top right,
	top-left: top left,
	bottom: bottom,
	bottom-right: bottom right,
	bottom-left: bottom left,
	right: right,
	left: left,
) !default;
