// <table> element

$c-table-base: () !default;
$c-table-base: map-merge(
	(
		border-collapse: collapse,
	),
	$c-table-base
);

// <th> element

$c-th-base: () !default;
$c-th-base: map-merge(
	(
		height: 20px,
		text-align: left,
	),
	$c-th-base
);

// Table Responsive

$table-responsive-margin-bottom: 1.5rem !default;

// Table

$table-bg: null !default;
$table-border-color: $border-color !default;
$table-border-width: $border-width !default;
$table-color: $body-color !default;
$table-font-size: null !default;
$table-margin-bottom: 0 !default;

// .table-hover

$table-hover-bg: #ececec !default;
$table-hover-color: $table-color !default;

$table-active-bg: $table-hover-bg !default;

$table-disabled-bg: $white !default;
$table-disabled-color: #acacac !default;
$table-disabled-cursor: $disabled-cursor !default;
$table-disabled-pointer-events: none !default;

// Table Striped

$table-accent-bg: #f2f2f2 !default;

$table-striped-order: odd !default;

// Table Cell applies to `th` and `td`

$table-cell-gutters: 1.25rem !default;
$table-cell-padding: 0.5rem 1rem !default;
$table-cell-padding-sm: 0.25rem 1rem !default;
$table-cell-padding-lg: 1.0625rem !default;

$table-cell-expand-min-width: 12.5rem !default; // 200px

$table-cell-expand-small-max-width: 12.5rem !default; // 200px
$table-cell-expand-small-width: 25% !default;

$table-cell-expand-smaller-max-width: 12.5rem !default; // 200px
$table-cell-expand-smaller-width: 15% !default;

$table-cell-expand-smallest-max-width: 12.5rem !default; // 200px
$table-cell-expand-smallest-width: 10% !default;

// TH

$table-head-bg: $white !default;
$table-head-border-bottom-width: calc(2 * #{$table-border-width}) !default;
$table-head-border-top-width: 0px !default;
$table-head-color: $gray-700 !default;
$table-head-font-size: null !default;
$table-head-font-weight: null !default;
$table-head-height: 56px !default;

$c-table-thead: () !default;

$table-head-link: () !default;

$table-head-title-inline-item-spacer-x: 0.25rem !default; // 4px
$table-head-title-text-truncate-max-width: calc(
	100% - 1em - #{$table-head-title-inline-item-spacer-x}
) !default;

// Table Body

$c-table-tbody: () !default;

// TD

$table-data-border-bottom-width: $table-border-width !default;
$table-data-border-left-width: 0px !default;
$table-data-border-right-width: 0px !default;
$table-data-border-top-width: $table-border-width !default;

$table-data-border-color: $table-border-color !default;
$table-data-border-style: solid !default;
$table-data-vertical-align: middle !default;

// Table Divider

$table-divider-bg: $white !default;
$table-divider-color: null !default;
$table-divider-font-weight: null !default;
$table-divider-font-size: null !default;
$table-divider-padding: 0.5rem 1rem 0.5rem 1.25rem !default;
$table-divider-text-transform: null !default;

$table-quick-action-menu-align-items: flex-start !default;
$table-quick-action-menu-bg: if(
	$table-bg == transparent,
	$body-bg,
	$table-bg
) !default;
$table-quick-action-menu-accent-bg: $table-accent-bg !default;
$table-quick-action-menu-accent-active-bg: $table-accent-bg !default;
$table-quick-action-menu-active-bg: $table-active-bg !default;
$table-quick-action-menu-hover-bg: $table-hover-bg !default;

$table-cell-expand-smaller-max-width: 12.5rem !default; // 200px
$table-cell-expand-smaller-width: 15% !default;

$table-cell-expand-smallest-max-width: 12.5rem !default; // 200px
$table-cell-expand-smallest-width: 10% !default;

// Table Footer

$c-table-tfoot: () !default;

// Table Caption

$table-caption-color: $text-muted !default;

$c-table-caption: () !default;
$c-table-caption: map-merge(
	(
		caption-side: top,
		padding-left: nth($table-cell-padding, 2),
		padding-right: nth($table-cell-padding, 2),
	),
	$c-table-caption
);

// Table Img

$table-img-max-height: 100px !default;

// Table Title

$table-title: () !default;
$table-title: map-deep-merge(
	(
		font-size: $font-size-base,
		font-weight: $font-weight-semi-bold,
		line-height: $line-height-base,
		margin-bottom: 0,
	),
	$table-title
);

$table-title-link: () !default;
$table-title-link: map-deep-merge(
	(
		color: $gray-900,
		hover: (
			color: $gray-900,
		),
	),
	$table-title-link
);

$table-title: map-deep-merge(
	$table-title,
	(
		href: $table-title-link,
	)
);

// Table Link

$table-link: () !default;
$table-link: map-deep-merge(
	(
		color: $gray-700,
		hover: (
			color: clay-darken($gray-700, 15%),
		),
	),
	$table-link
);

// Table Action Link

$table-action-link: () !default;
$table-action-link: map-deep-merge(
	(
		align-items: center,
		border-radius:
			if(
				variable-exists(btn-border-radius),
				$btn-border-radius,
				$border-radius
			),
		display: inline-flex,
		height: 2rem,
		justify-content: center,
		vertical-align: middle,
		width: 2rem,
		hover: (
			text-decoration: none,
		),
		lexicon-icon: (
			margin-top: 0,
		),
	),
	$table-action-link
);

// .table

$c-table: () !default;
$c-table: map-deep-merge(
	(
		background-color: $table-bg,
		border-spacing: 0,
		color: $table-color,
		font-size: $table-font-size,
		margin-bottom: $table-margin-bottom,
		width: 100%,
		thead:
			map-deep-merge(
				$c-table-thead,
				(
					background-color: $table-head-bg,
					table-cell: (
						border-bottom: $table-head-border-bottom-width solid
							$table-border-color,
						border-top-width: $table-head-border-top-width,
						vertical-align: middle,
					),
					th: (
						href: $table-head-link,
					),
					autofit-col: (
						padding-left: 0.125rem,
						padding-right: 0.125rem,
						first-child: (
							padding-left: 0,
						),
						last-child: (
							padding-right: 0,
						),
					),
				)
			),
		table-column-start: (
			padding-left: $table-cell-gutters,
		),
		th: (
			background-clip: padding-box,
			border-top: $table-border-width solid $table-border-color,
			color: $table-head-color,
			font-size: $table-head-font-size,
			font-weight: $table-head-font-weight,
			height: $table-head-height,
			padding: $table-cell-padding,
			position: relative,
			vertical-align: top,
		),
		td: (
			background-clip: padding-box,
			border-bottom-width: $table-data-border-bottom-width,
			border-color: $table-data-border-color,
			border-left-width: $table-data-border-left-width,
			border-right-width: $table-data-border-right-width,
			border-style: $table-data-border-style,
			border-top-width: $table-data-border-top-width,
			height: 56px,
			padding: $table-cell-padding,
			position: relative,
			vertical-align: $table-data-vertical-align,
		),
		tbody:
			map-deep-merge(
				$c-table-tbody,
				(
					tbody: (
						border-top: calc(2 * #{$table-border-width}) solid
							$table-border-color,
					),
				)
			),
		tfoot: $c-table-tfoot,
		caption: $c-table-caption,
		table-divider: (
			table-cell: (
				background-color: $table-divider-bg,
				color: $table-divider-color,
				font-size: $table-divider-font-size,
				font-weight: $table-divider-font-weight,
				height: 34px,
				line-height: 17px,
				padding: $table-divider-padding,
				text-transform: $table-divider-text-transform,
			),
		),
		table-active: (
			background-color: $table-active-bg,
			quick-action-menu: (
				background-color: $table-quick-action-menu-active-bg,
			),
		),
		table-disabled: (
			background-color: $table-disabled-bg,
			color: $table-disabled-color,
			table-cell: (
				cursor: $table-disabled-cursor,
				href: (
					color: $table-disabled-color,
					pointer-events: $table-disabled-pointer-events,
				),
			),
			table-title: (
				color: $table-disabled-color,
			),
			table-list-title: (
				color: $table-disabled-color,
			),
		),
		autofit-col: (
			justify-content: center,
			padding-left: nth($table-cell-padding, 2),
			padding-right: nth($table-cell-padding, 2),
			first-child: (
				padding-left: 0,
			),
			last-child: (
				padding-right: 0,
			),
		),
		component-drag: (
			font-size: 0.875rem,
			height: 1rem,
			width: 1rem,
			focus: (
				box-shadow: $component-focus-inset-box-shadow,
			),
		),
		custom-control: (
			margin-bottom: 0,
		),
		quick-action-menu: (
			align-items: $table-quick-action-menu-align-items,
			background-color: $table-quick-action-menu-bg,
			padding-bottom: nth($table-cell-padding, 1),
			padding-top: nth($table-cell-padding, 1),
		),
	),
	$c-table
);

// .table-hover

$c-table-hover: () !default;
$c-table-hover: map-deep-merge(
	(
		tbody: (
			tr: (
				hover: (
					background-color: $table-hover-bg,
					color: $table-hover-color,
					quick-action-menu: (
						background-color: $table-quick-action-menu-hover-bg,
					),
				),
			),
		),
		table-active: (
			hover: (
				quick-action-menu: (
					background-color: $table-quick-action-menu-active-bg,
				),
			),
		),
		table-disabled: (
			hover: (
				background-color: $table-disabled-bg,
			),
		),
	),
	$c-table-hover
);

// .table-focus

$c-tr-table-focus: () !default;
$c-tr-table-focus: map-deep-merge(
	(
		outline: 0,
		td: (
			outline: 0,
			before: (
				box-shadow: (
					inset 0 0.2rem 0 0 rgba($primary, 0.25),
					inset 0 -0.2rem 0 0 rgba($primary, 0.25),
				),
				content: '',
				display: block,
				position: absolute,
				left: math-sign($table-border-width),
				right: math-sign($table-border-width),
				top: math-sign($table-border-width),
				bottom: math-sign($table-border-width),
				pointer-events: none,
				z-index: 1,
			),
			first-child: (
				after: (
					box-shadow: inset 0.2rem 0 0 0 rgba($primary, 0.25),
					content: '',
					display: block,
					position: absolute,
					pointer-events: none,
					top: $table-border-width,
					bottom: $table-border-width,
					left: math-sign($table-border-width),
					z-index: 1,
					width: 0.25rem,
				),
			),
			last-child: (
				after: (
					box-shadow: inset -0.2rem 0 0 0 rgba($primary, 0.25),
					content: '',
					display: block,
					position: absolute,
					pointer-events: none,
					top: $table-border-width,
					bottom: $table-border-width,
					right: math-sign($table-border-width),
					z-index: 1,
					width: 0.25rem,
				),
			),
		),
	),
	$c-tr-table-focus
);

$c-td-table-focus: () !default;
$c-td-table-focus: map-deep-merge(
	(
		outline: 'none',
		box-shadow: clay-enable-shadows($component-focus-inset-box-shadow),
	),
	$c-td-table-focus
);

// .table-head-bordered

$c-table-head-bordered: () !default;
$c-table-head-bordered: map-deep-merge(
	(
		thead: (
			table-cell: (
				border-left: $table-border-width solid $table-border-color,
				table-column-start: (
					border-left-width: 0,
				),
			),
		),
	),
	$c-table-head-bordered
);

// .table-bordered

$table-bordered-border-width: $table-border-width !default;

$c-table-bordered: () !default;
$c-table-bordered: map-deep-merge(
	(
		border: $table-border-width solid $table-border-color,
		thead: (
			table-cell: (
				border-bottom-width: calc(2 * #{$table-border-width}),
			),
		),
		table-cell: (
			border: $table-border-width solid $table-border-color,
		),
	),
	$c-table-bordered
);

// .table-sm

$c-table-sm: () !default;
$c-table-sm: map-deep-merge(
	(
		table-cell: (
			height: 32px,
			padding: $table-cell-padding-sm,
		),
	),
	$c-table-sm
);

// .table-md

$c-table-md: () !default;
$c-table-md: map-deep-merge(
	(
		table-cell: (
			height: 48px,
			padding: 0.375rem 1rem,
		),
	),
	$c-table-md
);

// .table-lg

$c-table-lg: () !default;
$c-table-lg: map-deep-merge(
	(
		table-cell: (
			padding: $table-cell-padding-lg,
		),
	),
	$c-table-lg
);

// .table-nested-rows

$c-table-nested-rows: () !default;
$c-table-nested-rows: map-deep-merge(
	(
		autofit-col: (
			padding-left: 0.125rem,
			padding-right: 0.125rem,
			min-width: 1.75rem,
		),
		autofit-col-checkbox: (
			padding-right: 0.625rem,
		),
		autofit-col-icon: (
			padding-right: 0.625rem,
		),
		component-drag: (
			left: 2px,
			position: absolute,
			top: 50%,
			transform: translateY(-50%),
		),
		component-toggle: (
			font-size: 0.875rem,
			height: 1.5rem,
			width: 1.5rem,
		),
	),
	$c-table-nested-rows
);

// .table-sort

$c-table-sort: () !default;
$c-table-sort: map-deep-merge(
	(
		thead: (
			table-cell: (
				cursor: pointer,
				transition: clay-enable-transitions($component-transition),
				hover: (
					background-color: $primary-l3,
					color: $gray-900,
				),
				component-action: (
					font-size: 0.75rem,
					height: 1.5rem,
					width: 1.5rem,
				),
			),
		),
	),
	$c-table-sort
);

// Table Dark Variant

$table-dark-bg: $gray-800 !default;
$table-dark-border-color: clay-lighten($table-dark-bg, 7.5%) !default;
$table-dark-color: $white !default;

$table-dark-hover-bg: rgba($white, 0.075) !default;
$table-dark-hover-color: $table-dark-color !default;

$table-dark-accent-bg: rgba($white, 0.05) !default;

/// @deprecated as of v3.x with no replacement, this color modifier is too specific to support a variety of colors

$table-bg-level: -9 !default;

/// @deprecated as of v3.x with no replacement, this color modifier is too specific to support a variety of colors

$table-border-level: -6 !default;

// Table List

$table-list-bg: $white !default;
$table-list-border-color: $table-border-color !default;
$table-list-border-radius: $border-radius !default;

$table-list-border-x-width: 0.0625rem !default;
$table-list-border-y-width: 0.0625rem !default;

$table-list-border-width: $table-list-border-y-width $table-list-border-x-width !default;
$table-list-color: null !default;
$table-list-font-size: null !default;
$table-list-margin-bottom: $table-list-border-y-width !default;
$table-list-margin-top: null !default;

// .table-list.table-striped

$table-list-accent-bg: #f2f2f2 !default;

// .table-list.table-hover tbody tr:hover

$table-list-hover-bg: #ececec !default;

// .table-list.table-active

$table-list-active-bg: #dadada !default;

// .table-list .table-disabled

$table-list-disabled-bg: $white !default;
$table-list-disabled-color: #acacac !default;
$table-list-disabled-cursor: $disabled-cursor !default;
$table-list-disabled-pointer-events: none !default;

// .table-list {thead,tbody,tfoot} {th,td}

$c-table-list-cell: () !default;
$c-table-list-cell: map-merge(
	(
		border-color: $table-list-border-color,
		border-style: solid,
		border-width: $table-list-border-y-width 0 0 0,
	),
	$c-table-list-cell
);

// .table-list thead {th,td}

$table-list-head-bg: $white !default;
$table-list-head-font-size: null !default;
$table-list-head-font-weight: null !default;
$table-list-head-height: null !default;
$table-list-head-vertical-alignment: null !default;

// .table-list thead th a

$table-list-head-link: () !default;

// Table List Thead

$c-table-list-thead: () !default;
$c-table-list-thead: map-merge(
	(
		border-top-left-radius:
			clay-border-radius-inner(
				$table-list-border-radius,
				$table-list-border-y-width
			),
		border-top-right-radius:
			clay-border-radius-inner(
				$table-list-border-radius,
				$table-list-border-y-width
			),
	),
	$c-table-list-thead
);

// Table List Tbody

$c-table-list-tbody: () !default;
$c-table-list-tbody: map-merge(
	(
		border-bottom-left-radius:
			clay-border-radius-inner(
				$table-list-border-radius,
				$table-list-border-y-width
			),
		border-bottom-right-radius:
			clay-border-radius-inner(
				$table-list-border-radius,
				$table-list-border-y-width
			),
	),
	$c-table-list-tbody
);

// Table List Tfoot

$c-table-list-tfoot: () !default;

// .table.table-list.table-bordered th, .table.table-list.table-bordered td

$c-table-list-bordered-cell: () !default;
$c-table-list-bordered-cell: map-merge(
	(
		border-left-width: $table-list-border-x-width,
	),
	$c-table-list-bordered-cell
);

// .table-list caption

$c-table-list-caption: () !default;

// .table-list .table-divider

$table-list-divider-padding-x: 1rem !default;
$table-list-divider-padding-y: 0.5rem !default;

// .table-list .quick-action-menu

$table-list-quick-action-menu-align-items: center !default;
$table-list-quick-action-menu-bg: $table-list-bg !default;
$table-list-quick-action-menu-accent-bg: $table-list-accent-bg !default;
$table-list-quick-action-menu-accent-active-bg: $table-list-active-bg !default;
$table-list-quick-action-menu-active-bg: $table-list-active-bg !default;
$table-list-quick-action-menu-hover-bg: $table-list-hover-bg !default;

// Table List Title

$table-list-title: () !default;
$table-list-title: map-deep-merge(
	(
		font-size: $font-size-base,
		font-weight: $font-weight-semi-bold,
		line-height: $headings-line-height,
		margin-bottom: 0,
	),
	$table-list-title
);

$table-list-title-link: () !default;
$table-list-title-link: map-deep-merge(
	(
		color: $gray-900,
		hover: (
			color: $gray-900,
		),
	),
	$table-list-title-link
);

$table-list-title: map-deep-merge(
	$table-list-title,
	(
		href: $table-list-title-link,
	)
);

// Table List Link

$table-list-link: () !default;
$table-list-link: map-deep-merge(
	(
		color: $gray-700,
		hover: (
			color: clay-darken($gray-700, 15%),
		),
	),
	$table-list-link
);

// Table List Action Link

$table-list-action-link: () !default;
$table-list-action-link: map-deep-merge(
	(
		align-items: center,
		display: inline-flex,
		height: 2rem,
		justify-content: center,
		vertical-align: middle,
		width: 2rem,
		hover: (
			text-decoration: none,
		),
		lexicon-icon: (
			margin-top: 0,
		),
	),
	$table-list-action-link
);

// .table-list

$c-table-list: () !default;
$c-table-list: map-merge(
	(
		border-collapse: separate,
		border-color: $table-list-border-color,
		border-radius: clay-enable-rounded($table-list-border-radius),
		border-style: solid,
		border-width: $table-list-border-y-width $table-list-border-x-width,
		color: $table-list-color,
		font-size: $table-list-font-size,
		margin-bottom: $table-list-margin-bottom,
		margin-top: $table-list-margin-top,
		thead:
			map-deep-merge(
				$c-table-list-thead,
				(
					table-cell: (
						border-bottom-width: 0,
						font-size: $table-list-head-font-size,
						font-weight: $table-list-head-font-weight,
						height: $table-list-head-height,
						vertical-align: $table-list-head-vertical-alignment,
						href: $table-list-head-link,
					),
				)
			),
		table-cell: $c-table-list-cell,
		tbody:
			map-deep-merge(
				$c-table-list-tbody,
				(
					table-cell: (
						vertical-align: middle,
					),
				)
			),
		tfoot:
			map-deep-merge(
				$c-table-list-tfoot,
				(
					table-cell: (
						vertical-align: middle,
					),
				)
			),
		caption: $c-table-list-caption,
		table-divider: (
			table-cell: (
				padding-bottom: $table-list-divider-padding-y,
				padding-left: 1.25rem,
				padding-right: $table-list-divider-padding-x,
				padding-top: $table-list-divider-padding-y,
			),
		),
		table-active: (
			background-color: $table-list-active-bg,
			quick-action-menu: (
				background-color: $table-list-quick-action-menu-active-bg,
			),
		),
		table-disabled: (
			background-color: $table-list-disabled-bg,
			color: $table-list-disabled-color,
			table-cell: (
				href: (
					color: $table-list-disabled-color,
					pointer-events: $table-list-disabled-pointer-events,
				),
			),
			table-title: (
				color: $table-list-disabled-color,
			),
			table-list-title: (
				color: $table-list-disabled-color,
			),
		),
		table-row-start: (
			table-cell: (
				border-top-width: 0,
			),
			table-cell-start: (
				border-top-left-radius:
					clay-enable-rounded(
						clay-border-radius-inner(
							$table-list-border-radius,
							$table-list-border-y-width
						)
					),
			),
			table-cell-end: (
				border-top-right-radius:
					clay-enable-rounded(
						clay-border-radius-inner(
							$table-list-border-radius,
							$table-list-border-y-width
						)
					),
			),
		),
		table-row-end: (
			table-cell-start: (
				border-bottom-left-radius:
					clay-enable-rounded(
						clay-border-radius-inner(
							$table-list-border-radius,
							$table-list-border-y-width
						)
					),
			),
			table-cell-end: (
				border-bottom-right-radius:
					clay-enable-rounded(
						clay-border-radius-inner(
							$table-list-border-radius,
							$table-list-border-y-width
						)
					),
			),
		),
		quick-action-menu: (
			align-items: $table-list-quick-action-menu-align-items,
			background-color: $table-list-quick-action-menu-bg,
			bottom: 0,
			top: 0,
		),
	),
	$c-table-list
);

// .table-list.table-hover

$c-table-list-table-hover: () !default;
$c-table-list-table-hover: map-deep-merge(
	(
		tbody: (
			tr: (
				hover: (
					background-color: $table-list-hover-bg,
					quick-action-menu: (
						background-color: $table-list-quick-action-menu-hover-bg,
					),
				),
			),
		),
		table-active: (
			hover: (
				background-color: $table-list-active-bg,
				quick-action-menu: (
					background-color: $table-list-quick-action-menu-hover-bg,
				),
			),
		),
		table-disabled: (
			background-color: $table-list-disabled-bg,
			hover: (
				background-color: $table-list-disabled-bg,
			),
		),
	),
	$c-table-list-table-hover
);

// .table.table-list.table-bordered

$c-table-list-table-bordered: () !default;
$c-table-list-table-bordered: map-deep-merge(
	(
		thead: (
			table-cell: (
				border-bottom-width: 0,
			),
		),
		table-cell: $c-table-list-bordered-cell,
		table-column-start: (
			border-left-width: 0,
		),
	),
	$c-table-list-table-bordered
);

// Table Valign

$table-valign-top-body-cell-padding-top: 1rem !default;

$table-valign-bottom-body-cell-padding-bottom: 1rem !default;

// Table Row Backgrounds

$table-row-theme-colors: () !default;
$table-row-theme-colors: map-deep-merge(
	(
		'primary': (
			background-color: theme-color-level(primary, $table-bg-level),
			border-color: theme-color-level(primary, $table-border-level),
			hover: (
				background-color:
					clay-darken(theme-color-level(primary, $table-bg-level), 5%),
			),
		),
		'secondary': (
			background-color: theme-color-level(secondary, $table-bg-level),
			border-color: theme-color-level(secondary, $table-border-level),
			hover: (
				background-color:
					clay-darken(
						theme-color-level(secondary, $table-bg-level),
						5%
					),
			),
		),
		'success': (
			background-color: theme-color-level(success, $table-bg-level),
			border-color: theme-color-level(success, $table-border-level),
			hover: (
				background-color:
					clay-darken(theme-color-level(success, $table-bg-level), 5%),
			),
		),
		'info': (
			background-color: theme-color-level(info, $table-bg-level),
			border-color: theme-color-level(info, $table-border-level),
			hover: (
				background-color:
					clay-darken(theme-color-level(info, $table-bg-level), 5%),
			),
		),
		'warning': (
			background-color: theme-color-level(warning, $table-bg-level),
			border-color: theme-color-level(warning, $table-border-level),
			hover: (
				background-color:
					clay-darken(theme-color-level(warning, $table-bg-level), 5%),
			),
		),
		'danger': (
			background-color: theme-color-level(danger, $table-bg-level),
			border-color: theme-color-level(danger, $table-border-level),
			hover: (
				background-color:
					clay-darken(theme-color-level(danger, $table-bg-level), 5%),
			),
		),
		'light': (
			background-color: theme-color-level(light, $table-bg-level),
			border-color: theme-color-level(light, $table-border-level),
			hover: (
				background-color:
					clay-darken(theme-color-level(light, $table-bg-level), 5%),
			),
		),
		'dark': (
			background-color: theme-color-level(dark, $table-bg-level),
			border-color: theme-color-level(dark, $table-border-level),
			hover: (
				background-color:
					clay-darken(theme-color-level(dark, $table-bg-level), 5%),
			),
			table-title: (
				color: $table-dark-color,
				href: (
					color: inherit,
				),
			),
		),
	),
	$table-row-theme-colors
);
