diff --git a/packages/orbit-components/src/Tag/Tag.ct-story.tsx b/packages/orbit-components/src/Tag/Tag.ct-story.tsx new file mode 100644 index 0000000000..2f4198102d --- /dev/null +++ b/packages/orbit-components/src/Tag/Tag.ct-story.tsx @@ -0,0 +1,82 @@ +import * as React from "react"; + +import type { Props } from "./types"; +import * as Icons from "../icons"; + +import Tag from "."; + +export function TestTag(props: Props) { + return ( +
+ +
+ ); +} + +export function DefaultTestStory() { + return ( +
+

Neutral

+
+ Non actionable + }>With icon + {}}>Default + {}}> + Selected + + {}}>Removable + {}} onClick={() => {}}> + Selected Removable + +
+

Colored

+
+ Non actionable + }> + With icon + + {}}> + Default + + {}}> + Selected + + {}}> + Removable + + {}} onClick={() => {}}> + Selected Removable + +
+

dateTag

+
+ Neutral dateTag + {}}> + Clickable dateTag + + {}}> + Selected dateTag + + + Colored dateTag + + {}}> + Clickable colored dateTag + + {}}> + Selected colored dateTag + +
+

Size small

+
+ Neutral small + }> + Small w/ icon + + {}}> + Small removable + +
+
+ ); +} diff --git a/packages/orbit-components/src/Tag/Tag.ct.tsx b/packages/orbit-components/src/Tag/Tag.ct.tsx new file mode 100644 index 0000000000..6e52bbfa90 --- /dev/null +++ b/packages/orbit-components/src/Tag/Tag.ct.tsx @@ -0,0 +1,90 @@ +import * as React from "react"; +import { test, expect } from "@playwright/experimental-ct-react"; + +import { TestTag, DefaultTestStory } from "./Tag.ct-story"; + +const NON_INTERACTABLE_TAGS = [ + { + testTitle: "Non-interactable Neutral", + type: "neutral", + onClick: undefined, + onRemove: undefined, + }, + { + testTitle: "Non-interactable Colored", + type: "colored", + onClick: undefined, + onRemove: undefined, + }, +] as const; + +const INTERECTABLE_TAGS = [ + { testTitle: "Neutral", type: "neutral" }, + { testTitle: "Neutral Selected", type: "neutral", selected: true }, + { testTitle: "Neutral DateTag", type: "neutral", dateTag: true, selected: false }, + { testTitle: "Neutral DateTag Selected", type: "neutral", dateTag: true, selected: true }, + { testTitle: "Colored", type: "colored" }, + { testTitle: "Colored Selected", type: "colored", selected: true }, + { testTitle: "Colored DateTag", type: "colored", dateTag: true, selected: false }, + { testTitle: "Colored DateTag Selected", type: "colored", dateTag: true, selected: true }, +] as const; + +test.describe("visual Tag", () => { + test("screenshot general", async ({ mount }) => { + const component = await mount(); + + await expect(component).toHaveScreenshot(); + }); + + [...NON_INTERACTABLE_TAGS, ...INTERECTABLE_TAGS].forEach(({ testTitle, ...props }) => { + test(`screenshot ${testTitle} hover`, async ({ mount }) => { + const component = await mount( + {}} onRemove={() => {}} {...props}> + {testTitle} + , + ); + + await component.getByTestId("tag").hover(); + await expect(component).toHaveScreenshot(); + }); + }); + + [...NON_INTERACTABLE_TAGS, ...INTERECTABLE_TAGS].forEach(({ testTitle, ...props }) => { + test(`screenshot ${testTitle} focus`, async ({ mount }) => { + const component = await mount( + {}} onRemove={() => {}} {...props}> + {testTitle} + , + ); + + await component.getByTestId("tag").focus(); + await expect(component).toHaveScreenshot(); + }); + }); + + [...NON_INTERACTABLE_TAGS, ...INTERECTABLE_TAGS].forEach(({ testTitle, ...props }) => { + test(`screenshot ${testTitle} active`, async ({ mount }) => { + const component = await mount( + {}} onRemove={() => {}} {...props}> + {testTitle} + , + ); + + await component.getByTestId("tag").click(); + await expect(component).toHaveScreenshot(); + }); + }); + + INTERECTABLE_TAGS.forEach(({ testTitle, ...props }) => { + test(`screenshot ${testTitle} focus remove button`, async ({ mount }) => { + const component = await mount( + {}} onRemove={() => {}} {...props}> + {testTitle} + , + ); + + await component.getByRole("button", { name: "close", exact: true }).focus(); + await expect(component).toHaveScreenshot(); + }); + }); +}); diff --git a/packages/orbit-components/src/Tag/Tag.ct.tsx-snapshots/visual-Tag-screenshot-Colored-DateTag-Selected-active-1-Desktop-linux.png b/packages/orbit-components/src/Tag/Tag.ct.tsx-snapshots/visual-Tag-screenshot-Colored-DateTag-Selected-active-1-Desktop-linux.png new file mode 100644 index 0000000000..a7caf1e9a0 Binary files /dev/null and b/packages/orbit-components/src/Tag/Tag.ct.tsx-snapshots/visual-Tag-screenshot-Colored-DateTag-Selected-active-1-Desktop-linux.png differ diff --git a/packages/orbit-components/src/Tag/Tag.ct.tsx-snapshots/visual-Tag-screenshot-Colored-DateTag-Selected-active-1-Large-Desktop-linux.png b/packages/orbit-components/src/Tag/Tag.ct.tsx-snapshots/visual-Tag-screenshot-Colored-DateTag-Selected-active-1-Large-Desktop-linux.png new file mode 100644 index 0000000000..a7caf1e9a0 Binary files /dev/null and b/packages/orbit-components/src/Tag/Tag.ct.tsx-snapshots/visual-Tag-screenshot-Colored-DateTag-Selected-active-1-Large-Desktop-linux.png differ diff --git a/packages/orbit-components/src/Tag/Tag.ct.tsx-snapshots/visual-Tag-screenshot-Colored-DateTag-Selected-active-1-Large-Mobile-linux.png b/packages/orbit-components/src/Tag/Tag.ct.tsx-snapshots/visual-Tag-screenshot-Colored-DateTag-Selected-active-1-Large-Mobile-linux.png new file mode 100644 index 0000000000..00689986eb Binary files /dev/null and b/packages/orbit-components/src/Tag/Tag.ct.tsx-snapshots/visual-Tag-screenshot-Colored-DateTag-Selected-active-1-Large-Mobile-linux.png differ diff --git a/packages/orbit-components/src/Tag/Tag.ct.tsx-snapshots/visual-Tag-screenshot-Colored-DateTag-Selected-active-1-Medium-Mobile-linux.png b/packages/orbit-components/src/Tag/Tag.ct.tsx-snapshots/visual-Tag-screenshot-Colored-DateTag-Selected-active-1-Medium-Mobile-linux.png new file mode 100644 index 0000000000..00689986eb Binary files /dev/null and b/packages/orbit-components/src/Tag/Tag.ct.tsx-snapshots/visual-Tag-screenshot-Colored-DateTag-Selected-active-1-Medium-Mobile-linux.png differ diff --git a/packages/orbit-components/src/Tag/Tag.ct.tsx-snapshots/visual-Tag-screenshot-Colored-DateTag-Selected-active-1-Small-Mobile-linux.png b/packages/orbit-components/src/Tag/Tag.ct.tsx-snapshots/visual-Tag-screenshot-Colored-DateTag-Selected-active-1-Small-Mobile-linux.png new file mode 100644 index 0000000000..00689986eb Binary files /dev/null and b/packages/orbit-components/src/Tag/Tag.ct.tsx-snapshots/visual-Tag-screenshot-Colored-DateTag-Selected-active-1-Small-Mobile-linux.png differ diff --git a/packages/orbit-components/src/Tag/Tag.ct.tsx-snapshots/visual-Tag-screenshot-Colored-DateTag-Selected-active-1-Tablet-linux.png b/packages/orbit-components/src/Tag/Tag.ct.tsx-snapshots/visual-Tag-screenshot-Colored-DateTag-Selected-active-1-Tablet-linux.png new file mode 100644 index 0000000000..b54175bd13 Binary files /dev/null and b/packages/orbit-components/src/Tag/Tag.ct.tsx-snapshots/visual-Tag-screenshot-Colored-DateTag-Selected-active-1-Tablet-linux.png differ diff --git a/packages/orbit-components/src/Tag/Tag.ct.tsx-snapshots/visual-Tag-screenshot-Colored-DateTag-Selected-focus-1-Desktop-linux.png b/packages/orbit-components/src/Tag/Tag.ct.tsx-snapshots/visual-Tag-screenshot-Colored-DateTag-Selected-focus-1-Desktop-linux.png new file mode 100644 index 0000000000..0ff32f2749 Binary files /dev/null and b/packages/orbit-components/src/Tag/Tag.ct.tsx-snapshots/visual-Tag-screenshot-Colored-DateTag-Selected-focus-1-Desktop-linux.png differ diff --git a/packages/orbit-components/src/Tag/Tag.ct.tsx-snapshots/visual-Tag-screenshot-Colored-DateTag-Selected-focus-1-Large-Desktop-linux.png b/packages/orbit-components/src/Tag/Tag.ct.tsx-snapshots/visual-Tag-screenshot-Colored-DateTag-Selected-focus-1-Large-Desktop-linux.png new file mode 100644 index 0000000000..0ff32f2749 Binary files /dev/null and b/packages/orbit-components/src/Tag/Tag.ct.tsx-snapshots/visual-Tag-screenshot-Colored-DateTag-Selected-focus-1-Large-Desktop-linux.png differ diff --git a/packages/orbit-components/src/Tag/Tag.ct.tsx-snapshots/visual-Tag-screenshot-Colored-DateTag-Selected-focus-1-Large-Mobile-linux.png b/packages/orbit-components/src/Tag/Tag.ct.tsx-snapshots/visual-Tag-screenshot-Colored-DateTag-Selected-focus-1-Large-Mobile-linux.png new file mode 100644 index 0000000000..2da90a91a0 Binary files /dev/null and b/packages/orbit-components/src/Tag/Tag.ct.tsx-snapshots/visual-Tag-screenshot-Colored-DateTag-Selected-focus-1-Large-Mobile-linux.png differ diff --git a/packages/orbit-components/src/Tag/Tag.ct.tsx-snapshots/visual-Tag-screenshot-Colored-DateTag-Selected-focus-1-Medium-Mobile-linux.png b/packages/orbit-components/src/Tag/Tag.ct.tsx-snapshots/visual-Tag-screenshot-Colored-DateTag-Selected-focus-1-Medium-Mobile-linux.png new file mode 100644 index 0000000000..2da90a91a0 Binary files /dev/null and b/packages/orbit-components/src/Tag/Tag.ct.tsx-snapshots/visual-Tag-screenshot-Colored-DateTag-Selected-focus-1-Medium-Mobile-linux.png differ diff --git a/packages/orbit-components/src/Tag/Tag.ct.tsx-snapshots/visual-Tag-screenshot-Colored-DateTag-Selected-focus-1-Small-Mobile-linux.png b/packages/orbit-components/src/Tag/Tag.ct.tsx-snapshots/visual-Tag-screenshot-Colored-DateTag-Selected-focus-1-Small-Mobile-linux.png new file mode 100644 index 0000000000..2da90a91a0 Binary files /dev/null and b/packages/orbit-components/src/Tag/Tag.ct.tsx-snapshots/visual-Tag-screenshot-Colored-DateTag-Selected-focus-1-Small-Mobile-linux.png differ diff --git a/packages/orbit-components/src/Tag/Tag.ct.tsx-snapshots/visual-Tag-screenshot-Colored-DateTag-Selected-focus-1-Tablet-linux.png b/packages/orbit-components/src/Tag/Tag.ct.tsx-snapshots/visual-Tag-screenshot-Colored-DateTag-Selected-focus-1-Tablet-linux.png new file mode 100644 index 0000000000..48630eab6e Binary files /dev/null and b/packages/orbit-components/src/Tag/Tag.ct.tsx-snapshots/visual-Tag-screenshot-Colored-DateTag-Selected-focus-1-Tablet-linux.png differ diff --git a/packages/orbit-components/src/Tag/Tag.ct.tsx-snapshots/visual-Tag-screenshot-Colored-DateTag-Selected-focus-remove-button-1-Desktop-linux.png b/packages/orbit-components/src/Tag/Tag.ct.tsx-snapshots/visual-Tag-screenshot-Colored-DateTag-Selected-focus-remove-button-1-Desktop-linux.png new file mode 100644 index 0000000000..c3f878e4ba Binary files /dev/null and b/packages/orbit-components/src/Tag/Tag.ct.tsx-snapshots/visual-Tag-screenshot-Colored-DateTag-Selected-focus-remove-button-1-Desktop-linux.png differ diff --git a/packages/orbit-components/src/Tag/Tag.ct.tsx-snapshots/visual-Tag-screenshot-Colored-DateTag-Selected-focus-remove-button-1-Large-Desktop-linux.png b/packages/orbit-components/src/Tag/Tag.ct.tsx-snapshots/visual-Tag-screenshot-Colored-DateTag-Selected-focus-remove-button-1-Large-Desktop-linux.png new file mode 100644 index 0000000000..c3f878e4ba Binary files /dev/null and b/packages/orbit-components/src/Tag/Tag.ct.tsx-snapshots/visual-Tag-screenshot-Colored-DateTag-Selected-focus-remove-button-1-Large-Desktop-linux.png differ diff --git a/packages/orbit-components/src/Tag/Tag.ct.tsx-snapshots/visual-Tag-screenshot-Colored-DateTag-Selected-focus-remove-button-1-Large-Mobile-linux.png b/packages/orbit-components/src/Tag/Tag.ct.tsx-snapshots/visual-Tag-screenshot-Colored-DateTag-Selected-focus-remove-button-1-Large-Mobile-linux.png new file mode 100644 index 0000000000..72ea912257 Binary files /dev/null and b/packages/orbit-components/src/Tag/Tag.ct.tsx-snapshots/visual-Tag-screenshot-Colored-DateTag-Selected-focus-remove-button-1-Large-Mobile-linux.png differ diff --git a/packages/orbit-components/src/Tag/Tag.ct.tsx-snapshots/visual-Tag-screenshot-Colored-DateTag-Selected-focus-remove-button-1-Medium-Mobile-linux.png b/packages/orbit-components/src/Tag/Tag.ct.tsx-snapshots/visual-Tag-screenshot-Colored-DateTag-Selected-focus-remove-button-1-Medium-Mobile-linux.png new file mode 100644 index 0000000000..72ea912257 Binary files /dev/null and b/packages/orbit-components/src/Tag/Tag.ct.tsx-snapshots/visual-Tag-screenshot-Colored-DateTag-Selected-focus-remove-button-1-Medium-Mobile-linux.png differ diff --git a/packages/orbit-components/src/Tag/Tag.ct.tsx-snapshots/visual-Tag-screenshot-Colored-DateTag-Selected-focus-remove-button-1-Small-Mobile-linux.png b/packages/orbit-components/src/Tag/Tag.ct.tsx-snapshots/visual-Tag-screenshot-Colored-DateTag-Selected-focus-remove-button-1-Small-Mobile-linux.png new file mode 100644 index 0000000000..72ea912257 Binary files /dev/null and b/packages/orbit-components/src/Tag/Tag.ct.tsx-snapshots/visual-Tag-screenshot-Colored-DateTag-Selected-focus-remove-button-1-Small-Mobile-linux.png differ diff --git a/packages/orbit-components/src/Tag/Tag.ct.tsx-snapshots/visual-Tag-screenshot-Colored-DateTag-Selected-focus-remove-button-1-Tablet-linux.png b/packages/orbit-components/src/Tag/Tag.ct.tsx-snapshots/visual-Tag-screenshot-Colored-DateTag-Selected-focus-remove-button-1-Tablet-linux.png new file mode 100644 index 0000000000..16a93d4c93 Binary files /dev/null and b/packages/orbit-components/src/Tag/Tag.ct.tsx-snapshots/visual-Tag-screenshot-Colored-DateTag-Selected-focus-remove-button-1-Tablet-linux.png differ diff --git a/packages/orbit-components/src/Tag/Tag.ct.tsx-snapshots/visual-Tag-screenshot-Colored-DateTag-Selected-hover-1-Desktop-linux.png b/packages/orbit-components/src/Tag/Tag.ct.tsx-snapshots/visual-Tag-screenshot-Colored-DateTag-Selected-hover-1-Desktop-linux.png new file mode 100644 index 0000000000..a7caf1e9a0 Binary files /dev/null and b/packages/orbit-components/src/Tag/Tag.ct.tsx-snapshots/visual-Tag-screenshot-Colored-DateTag-Selected-hover-1-Desktop-linux.png differ diff --git a/packages/orbit-components/src/Tag/Tag.ct.tsx-snapshots/visual-Tag-screenshot-Colored-DateTag-Selected-hover-1-Large-Desktop-linux.png b/packages/orbit-components/src/Tag/Tag.ct.tsx-snapshots/visual-Tag-screenshot-Colored-DateTag-Selected-hover-1-Large-Desktop-linux.png new file mode 100644 index 0000000000..a7caf1e9a0 Binary files /dev/null and b/packages/orbit-components/src/Tag/Tag.ct.tsx-snapshots/visual-Tag-screenshot-Colored-DateTag-Selected-hover-1-Large-Desktop-linux.png differ diff --git a/packages/orbit-components/src/Tag/Tag.ct.tsx-snapshots/visual-Tag-screenshot-Colored-DateTag-Selected-hover-1-Large-Mobile-linux.png b/packages/orbit-components/src/Tag/Tag.ct.tsx-snapshots/visual-Tag-screenshot-Colored-DateTag-Selected-hover-1-Large-Mobile-linux.png new file mode 100644 index 0000000000..00689986eb Binary files /dev/null and b/packages/orbit-components/src/Tag/Tag.ct.tsx-snapshots/visual-Tag-screenshot-Colored-DateTag-Selected-hover-1-Large-Mobile-linux.png differ diff --git a/packages/orbit-components/src/Tag/Tag.ct.tsx-snapshots/visual-Tag-screenshot-Colored-DateTag-Selected-hover-1-Medium-Mobile-linux.png b/packages/orbit-components/src/Tag/Tag.ct.tsx-snapshots/visual-Tag-screenshot-Colored-DateTag-Selected-hover-1-Medium-Mobile-linux.png new file mode 100644 index 0000000000..00689986eb Binary files /dev/null and b/packages/orbit-components/src/Tag/Tag.ct.tsx-snapshots/visual-Tag-screenshot-Colored-DateTag-Selected-hover-1-Medium-Mobile-linux.png differ diff --git a/packages/orbit-components/src/Tag/Tag.ct.tsx-snapshots/visual-Tag-screenshot-Colored-DateTag-Selected-hover-1-Small-Mobile-linux.png b/packages/orbit-components/src/Tag/Tag.ct.tsx-snapshots/visual-Tag-screenshot-Colored-DateTag-Selected-hover-1-Small-Mobile-linux.png new file mode 100644 index 0000000000..00689986eb Binary files /dev/null and b/packages/orbit-components/src/Tag/Tag.ct.tsx-snapshots/visual-Tag-screenshot-Colored-DateTag-Selected-hover-1-Small-Mobile-linux.png differ diff --git a/packages/orbit-components/src/Tag/Tag.ct.tsx-snapshots/visual-Tag-screenshot-Colored-DateTag-Selected-hover-1-Tablet-linux.png b/packages/orbit-components/src/Tag/Tag.ct.tsx-snapshots/visual-Tag-screenshot-Colored-DateTag-Selected-hover-1-Tablet-linux.png new file mode 100644 index 0000000000..b54175bd13 Binary files /dev/null and b/packages/orbit-components/src/Tag/Tag.ct.tsx-snapshots/visual-Tag-screenshot-Colored-DateTag-Selected-hover-1-Tablet-linux.png differ diff --git a/packages/orbit-components/src/Tag/Tag.ct.tsx-snapshots/visual-Tag-screenshot-Colored-DateTag-active-1-Desktop-linux.png b/packages/orbit-components/src/Tag/Tag.ct.tsx-snapshots/visual-Tag-screenshot-Colored-DateTag-active-1-Desktop-linux.png new file mode 100644 index 0000000000..15441026ce Binary files /dev/null and b/packages/orbit-components/src/Tag/Tag.ct.tsx-snapshots/visual-Tag-screenshot-Colored-DateTag-active-1-Desktop-linux.png differ diff --git a/packages/orbit-components/src/Tag/Tag.ct.tsx-snapshots/visual-Tag-screenshot-Colored-DateTag-active-1-Large-Desktop-linux.png b/packages/orbit-components/src/Tag/Tag.ct.tsx-snapshots/visual-Tag-screenshot-Colored-DateTag-active-1-Large-Desktop-linux.png new file mode 100644 index 0000000000..15441026ce Binary files /dev/null and b/packages/orbit-components/src/Tag/Tag.ct.tsx-snapshots/visual-Tag-screenshot-Colored-DateTag-active-1-Large-Desktop-linux.png differ diff --git a/packages/orbit-components/src/Tag/Tag.ct.tsx-snapshots/visual-Tag-screenshot-Colored-DateTag-active-1-Large-Mobile-linux.png b/packages/orbit-components/src/Tag/Tag.ct.tsx-snapshots/visual-Tag-screenshot-Colored-DateTag-active-1-Large-Mobile-linux.png new file mode 100644 index 0000000000..3c6b409e55 Binary files /dev/null and b/packages/orbit-components/src/Tag/Tag.ct.tsx-snapshots/visual-Tag-screenshot-Colored-DateTag-active-1-Large-Mobile-linux.png differ diff --git a/packages/orbit-components/src/Tag/Tag.ct.tsx-snapshots/visual-Tag-screenshot-Colored-DateTag-active-1-Medium-Mobile-linux.png b/packages/orbit-components/src/Tag/Tag.ct.tsx-snapshots/visual-Tag-screenshot-Colored-DateTag-active-1-Medium-Mobile-linux.png new file mode 100644 index 0000000000..3c6b409e55 Binary files /dev/null and b/packages/orbit-components/src/Tag/Tag.ct.tsx-snapshots/visual-Tag-screenshot-Colored-DateTag-active-1-Medium-Mobile-linux.png differ diff --git a/packages/orbit-components/src/Tag/Tag.ct.tsx-snapshots/visual-Tag-screenshot-Colored-DateTag-active-1-Small-Mobile-linux.png b/packages/orbit-components/src/Tag/Tag.ct.tsx-snapshots/visual-Tag-screenshot-Colored-DateTag-active-1-Small-Mobile-linux.png new file mode 100644 index 0000000000..3c6b409e55 Binary files /dev/null and b/packages/orbit-components/src/Tag/Tag.ct.tsx-snapshots/visual-Tag-screenshot-Colored-DateTag-active-1-Small-Mobile-linux.png differ diff --git a/packages/orbit-components/src/Tag/Tag.ct.tsx-snapshots/visual-Tag-screenshot-Colored-DateTag-active-1-Tablet-linux.png b/packages/orbit-components/src/Tag/Tag.ct.tsx-snapshots/visual-Tag-screenshot-Colored-DateTag-active-1-Tablet-linux.png new file mode 100644 index 0000000000..4cd1e5d97b Binary files /dev/null and b/packages/orbit-components/src/Tag/Tag.ct.tsx-snapshots/visual-Tag-screenshot-Colored-DateTag-active-1-Tablet-linux.png differ diff --git a/packages/orbit-components/src/Tag/Tag.ct.tsx-snapshots/visual-Tag-screenshot-Colored-DateTag-focus-1-Desktop-linux.png b/packages/orbit-components/src/Tag/Tag.ct.tsx-snapshots/visual-Tag-screenshot-Colored-DateTag-focus-1-Desktop-linux.png new file mode 100644 index 0000000000..c87fd817cc Binary files /dev/null and b/packages/orbit-components/src/Tag/Tag.ct.tsx-snapshots/visual-Tag-screenshot-Colored-DateTag-focus-1-Desktop-linux.png differ diff --git a/packages/orbit-components/src/Tag/Tag.ct.tsx-snapshots/visual-Tag-screenshot-Colored-DateTag-focus-1-Large-Desktop-linux.png b/packages/orbit-components/src/Tag/Tag.ct.tsx-snapshots/visual-Tag-screenshot-Colored-DateTag-focus-1-Large-Desktop-linux.png new file mode 100644 index 0000000000..c87fd817cc Binary files /dev/null and b/packages/orbit-components/src/Tag/Tag.ct.tsx-snapshots/visual-Tag-screenshot-Colored-DateTag-focus-1-Large-Desktop-linux.png differ diff --git a/packages/orbit-components/src/Tag/Tag.ct.tsx-snapshots/visual-Tag-screenshot-Colored-DateTag-focus-1-Large-Mobile-linux.png b/packages/orbit-components/src/Tag/Tag.ct.tsx-snapshots/visual-Tag-screenshot-Colored-DateTag-focus-1-Large-Mobile-linux.png new file mode 100644 index 0000000000..3fe8fb5df1 Binary files /dev/null and b/packages/orbit-components/src/Tag/Tag.ct.tsx-snapshots/visual-Tag-screenshot-Colored-DateTag-focus-1-Large-Mobile-linux.png differ diff --git a/packages/orbit-components/src/Tag/Tag.ct.tsx-snapshots/visual-Tag-screenshot-Colored-DateTag-focus-1-Medium-Mobile-linux.png b/packages/orbit-components/src/Tag/Tag.ct.tsx-snapshots/visual-Tag-screenshot-Colored-DateTag-focus-1-Medium-Mobile-linux.png new file mode 100644 index 0000000000..3fe8fb5df1 Binary files /dev/null and b/packages/orbit-components/src/Tag/Tag.ct.tsx-snapshots/visual-Tag-screenshot-Colored-DateTag-focus-1-Medium-Mobile-linux.png differ diff --git a/packages/orbit-components/src/Tag/Tag.ct.tsx-snapshots/visual-Tag-screenshot-Colored-DateTag-focus-1-Small-Mobile-linux.png b/packages/orbit-components/src/Tag/Tag.ct.tsx-snapshots/visual-Tag-screenshot-Colored-DateTag-focus-1-Small-Mobile-linux.png new file mode 100644 index 0000000000..3fe8fb5df1 Binary files /dev/null and b/packages/orbit-components/src/Tag/Tag.ct.tsx-snapshots/visual-Tag-screenshot-Colored-DateTag-focus-1-Small-Mobile-linux.png differ diff --git a/packages/orbit-components/src/Tag/Tag.ct.tsx-snapshots/visual-Tag-screenshot-Colored-DateTag-focus-1-Tablet-linux.png b/packages/orbit-components/src/Tag/Tag.ct.tsx-snapshots/visual-Tag-screenshot-Colored-DateTag-focus-1-Tablet-linux.png new file mode 100644 index 0000000000..7909e1395d Binary files /dev/null and b/packages/orbit-components/src/Tag/Tag.ct.tsx-snapshots/visual-Tag-screenshot-Colored-DateTag-focus-1-Tablet-linux.png differ diff --git a/packages/orbit-components/src/Tag/Tag.ct.tsx-snapshots/visual-Tag-screenshot-Colored-DateTag-focus-remove-button-1-Desktop-linux.png b/packages/orbit-components/src/Tag/Tag.ct.tsx-snapshots/visual-Tag-screenshot-Colored-DateTag-focus-remove-button-1-Desktop-linux.png new file mode 100644 index 0000000000..d9261b2ded Binary files /dev/null and b/packages/orbit-components/src/Tag/Tag.ct.tsx-snapshots/visual-Tag-screenshot-Colored-DateTag-focus-remove-button-1-Desktop-linux.png differ diff --git a/packages/orbit-components/src/Tag/Tag.ct.tsx-snapshots/visual-Tag-screenshot-Colored-DateTag-focus-remove-button-1-Large-Desktop-linux.png b/packages/orbit-components/src/Tag/Tag.ct.tsx-snapshots/visual-Tag-screenshot-Colored-DateTag-focus-remove-button-1-Large-Desktop-linux.png new file mode 100644 index 0000000000..d9261b2ded Binary files /dev/null and b/packages/orbit-components/src/Tag/Tag.ct.tsx-snapshots/visual-Tag-screenshot-Colored-DateTag-focus-remove-button-1-Large-Desktop-linux.png differ diff --git a/packages/orbit-components/src/Tag/Tag.ct.tsx-snapshots/visual-Tag-screenshot-Colored-DateTag-focus-remove-button-1-Large-Mobile-linux.png b/packages/orbit-components/src/Tag/Tag.ct.tsx-snapshots/visual-Tag-screenshot-Colored-DateTag-focus-remove-button-1-Large-Mobile-linux.png new file mode 100644 index 0000000000..d5dd390ffc Binary files /dev/null and b/packages/orbit-components/src/Tag/Tag.ct.tsx-snapshots/visual-Tag-screenshot-Colored-DateTag-focus-remove-button-1-Large-Mobile-linux.png differ diff --git a/packages/orbit-components/src/Tag/Tag.ct.tsx-snapshots/visual-Tag-screenshot-Colored-DateTag-focus-remove-button-1-Medium-Mobile-linux.png b/packages/orbit-components/src/Tag/Tag.ct.tsx-snapshots/visual-Tag-screenshot-Colored-DateTag-focus-remove-button-1-Medium-Mobile-linux.png new file mode 100644 index 0000000000..d5dd390ffc Binary files /dev/null and b/packages/orbit-components/src/Tag/Tag.ct.tsx-snapshots/visual-Tag-screenshot-Colored-DateTag-focus-remove-button-1-Medium-Mobile-linux.png differ diff --git a/packages/orbit-components/src/Tag/Tag.ct.tsx-snapshots/visual-Tag-screenshot-Colored-DateTag-focus-remove-button-1-Small-Mobile-linux.png b/packages/orbit-components/src/Tag/Tag.ct.tsx-snapshots/visual-Tag-screenshot-Colored-DateTag-focus-remove-button-1-Small-Mobile-linux.png new file mode 100644 index 0000000000..d5dd390ffc Binary files /dev/null and b/packages/orbit-components/src/Tag/Tag.ct.tsx-snapshots/visual-Tag-screenshot-Colored-DateTag-focus-remove-button-1-Small-Mobile-linux.png differ diff --git a/packages/orbit-components/src/Tag/Tag.ct.tsx-snapshots/visual-Tag-screenshot-Colored-DateTag-focus-remove-button-1-Tablet-linux.png b/packages/orbit-components/src/Tag/Tag.ct.tsx-snapshots/visual-Tag-screenshot-Colored-DateTag-focus-remove-button-1-Tablet-linux.png new file mode 100644 index 0000000000..2eaecb3f8c Binary files /dev/null and b/packages/orbit-components/src/Tag/Tag.ct.tsx-snapshots/visual-Tag-screenshot-Colored-DateTag-focus-remove-button-1-Tablet-linux.png differ diff --git a/packages/orbit-components/src/Tag/Tag.ct.tsx-snapshots/visual-Tag-screenshot-Colored-DateTag-hover-1-Desktop-linux.png b/packages/orbit-components/src/Tag/Tag.ct.tsx-snapshots/visual-Tag-screenshot-Colored-DateTag-hover-1-Desktop-linux.png new file mode 100644 index 0000000000..15441026ce Binary files /dev/null and b/packages/orbit-components/src/Tag/Tag.ct.tsx-snapshots/visual-Tag-screenshot-Colored-DateTag-hover-1-Desktop-linux.png differ diff --git a/packages/orbit-components/src/Tag/Tag.ct.tsx-snapshots/visual-Tag-screenshot-Colored-DateTag-hover-1-Large-Desktop-linux.png b/packages/orbit-components/src/Tag/Tag.ct.tsx-snapshots/visual-Tag-screenshot-Colored-DateTag-hover-1-Large-Desktop-linux.png new file mode 100644 index 0000000000..15441026ce Binary files /dev/null and b/packages/orbit-components/src/Tag/Tag.ct.tsx-snapshots/visual-Tag-screenshot-Colored-DateTag-hover-1-Large-Desktop-linux.png differ diff --git a/packages/orbit-components/src/Tag/Tag.ct.tsx-snapshots/visual-Tag-screenshot-Colored-DateTag-hover-1-Large-Mobile-linux.png b/packages/orbit-components/src/Tag/Tag.ct.tsx-snapshots/visual-Tag-screenshot-Colored-DateTag-hover-1-Large-Mobile-linux.png new file mode 100644 index 0000000000..3c6b409e55 Binary files /dev/null and b/packages/orbit-components/src/Tag/Tag.ct.tsx-snapshots/visual-Tag-screenshot-Colored-DateTag-hover-1-Large-Mobile-linux.png differ diff --git a/packages/orbit-components/src/Tag/Tag.ct.tsx-snapshots/visual-Tag-screenshot-Colored-DateTag-hover-1-Medium-Mobile-linux.png b/packages/orbit-components/src/Tag/Tag.ct.tsx-snapshots/visual-Tag-screenshot-Colored-DateTag-hover-1-Medium-Mobile-linux.png new file mode 100644 index 0000000000..3c6b409e55 Binary files /dev/null and b/packages/orbit-components/src/Tag/Tag.ct.tsx-snapshots/visual-Tag-screenshot-Colored-DateTag-hover-1-Medium-Mobile-linux.png differ diff --git a/packages/orbit-components/src/Tag/Tag.ct.tsx-snapshots/visual-Tag-screenshot-Colored-DateTag-hover-1-Small-Mobile-linux.png b/packages/orbit-components/src/Tag/Tag.ct.tsx-snapshots/visual-Tag-screenshot-Colored-DateTag-hover-1-Small-Mobile-linux.png new file mode 100644 index 0000000000..3c6b409e55 Binary files /dev/null and b/packages/orbit-components/src/Tag/Tag.ct.tsx-snapshots/visual-Tag-screenshot-Colored-DateTag-hover-1-Small-Mobile-linux.png differ diff --git a/packages/orbit-components/src/Tag/Tag.ct.tsx-snapshots/visual-Tag-screenshot-Colored-DateTag-hover-1-Tablet-linux.png b/packages/orbit-components/src/Tag/Tag.ct.tsx-snapshots/visual-Tag-screenshot-Colored-DateTag-hover-1-Tablet-linux.png new file mode 100644 index 0000000000..4cd1e5d97b Binary files /dev/null and b/packages/orbit-components/src/Tag/Tag.ct.tsx-snapshots/visual-Tag-screenshot-Colored-DateTag-hover-1-Tablet-linux.png differ diff --git a/packages/orbit-components/src/Tag/Tag.ct.tsx-snapshots/visual-Tag-screenshot-Colored-Selected-active-1-Desktop-linux.png b/packages/orbit-components/src/Tag/Tag.ct.tsx-snapshots/visual-Tag-screenshot-Colored-Selected-active-1-Desktop-linux.png new file mode 100644 index 0000000000..098ec77ab2 Binary files /dev/null and b/packages/orbit-components/src/Tag/Tag.ct.tsx-snapshots/visual-Tag-screenshot-Colored-Selected-active-1-Desktop-linux.png differ diff --git a/packages/orbit-components/src/Tag/Tag.ct.tsx-snapshots/visual-Tag-screenshot-Colored-Selected-active-1-Large-Desktop-linux.png b/packages/orbit-components/src/Tag/Tag.ct.tsx-snapshots/visual-Tag-screenshot-Colored-Selected-active-1-Large-Desktop-linux.png new file mode 100644 index 0000000000..098ec77ab2 Binary files /dev/null and b/packages/orbit-components/src/Tag/Tag.ct.tsx-snapshots/visual-Tag-screenshot-Colored-Selected-active-1-Large-Desktop-linux.png differ diff --git a/packages/orbit-components/src/Tag/Tag.ct.tsx-snapshots/visual-Tag-screenshot-Colored-Selected-active-1-Large-Mobile-linux.png b/packages/orbit-components/src/Tag/Tag.ct.tsx-snapshots/visual-Tag-screenshot-Colored-Selected-active-1-Large-Mobile-linux.png new file mode 100644 index 0000000000..c5e04e5cd0 Binary files /dev/null and b/packages/orbit-components/src/Tag/Tag.ct.tsx-snapshots/visual-Tag-screenshot-Colored-Selected-active-1-Large-Mobile-linux.png differ diff --git a/packages/orbit-components/src/Tag/Tag.ct.tsx-snapshots/visual-Tag-screenshot-Colored-Selected-active-1-Medium-Mobile-linux.png b/packages/orbit-components/src/Tag/Tag.ct.tsx-snapshots/visual-Tag-screenshot-Colored-Selected-active-1-Medium-Mobile-linux.png new file mode 100644 index 0000000000..c5e04e5cd0 Binary files /dev/null and b/packages/orbit-components/src/Tag/Tag.ct.tsx-snapshots/visual-Tag-screenshot-Colored-Selected-active-1-Medium-Mobile-linux.png differ diff --git a/packages/orbit-components/src/Tag/Tag.ct.tsx-snapshots/visual-Tag-screenshot-Colored-Selected-active-1-Small-Mobile-linux.png b/packages/orbit-components/src/Tag/Tag.ct.tsx-snapshots/visual-Tag-screenshot-Colored-Selected-active-1-Small-Mobile-linux.png new file mode 100644 index 0000000000..c5e04e5cd0 Binary files /dev/null and b/packages/orbit-components/src/Tag/Tag.ct.tsx-snapshots/visual-Tag-screenshot-Colored-Selected-active-1-Small-Mobile-linux.png differ diff --git a/packages/orbit-components/src/Tag/Tag.ct.tsx-snapshots/visual-Tag-screenshot-Colored-Selected-active-1-Tablet-linux.png b/packages/orbit-components/src/Tag/Tag.ct.tsx-snapshots/visual-Tag-screenshot-Colored-Selected-active-1-Tablet-linux.png new file mode 100644 index 0000000000..49c719d470 Binary files /dev/null and b/packages/orbit-components/src/Tag/Tag.ct.tsx-snapshots/visual-Tag-screenshot-Colored-Selected-active-1-Tablet-linux.png differ diff --git a/packages/orbit-components/src/Tag/Tag.ct.tsx-snapshots/visual-Tag-screenshot-Colored-Selected-focus-1-Desktop-linux.png b/packages/orbit-components/src/Tag/Tag.ct.tsx-snapshots/visual-Tag-screenshot-Colored-Selected-focus-1-Desktop-linux.png new file mode 100644 index 0000000000..b89531b77a Binary files /dev/null and b/packages/orbit-components/src/Tag/Tag.ct.tsx-snapshots/visual-Tag-screenshot-Colored-Selected-focus-1-Desktop-linux.png differ diff --git a/packages/orbit-components/src/Tag/Tag.ct.tsx-snapshots/visual-Tag-screenshot-Colored-Selected-focus-1-Large-Desktop-linux.png b/packages/orbit-components/src/Tag/Tag.ct.tsx-snapshots/visual-Tag-screenshot-Colored-Selected-focus-1-Large-Desktop-linux.png new file mode 100644 index 0000000000..b89531b77a Binary files /dev/null and b/packages/orbit-components/src/Tag/Tag.ct.tsx-snapshots/visual-Tag-screenshot-Colored-Selected-focus-1-Large-Desktop-linux.png differ diff --git a/packages/orbit-components/src/Tag/Tag.ct.tsx-snapshots/visual-Tag-screenshot-Colored-Selected-focus-1-Large-Mobile-linux.png b/packages/orbit-components/src/Tag/Tag.ct.tsx-snapshots/visual-Tag-screenshot-Colored-Selected-focus-1-Large-Mobile-linux.png new file mode 100644 index 0000000000..ecd13b0848 Binary files /dev/null and b/packages/orbit-components/src/Tag/Tag.ct.tsx-snapshots/visual-Tag-screenshot-Colored-Selected-focus-1-Large-Mobile-linux.png differ diff --git a/packages/orbit-components/src/Tag/Tag.ct.tsx-snapshots/visual-Tag-screenshot-Colored-Selected-focus-1-Medium-Mobile-linux.png b/packages/orbit-components/src/Tag/Tag.ct.tsx-snapshots/visual-Tag-screenshot-Colored-Selected-focus-1-Medium-Mobile-linux.png new file mode 100644 index 0000000000..ecd13b0848 Binary files /dev/null and b/packages/orbit-components/src/Tag/Tag.ct.tsx-snapshots/visual-Tag-screenshot-Colored-Selected-focus-1-Medium-Mobile-linux.png differ diff --git a/packages/orbit-components/src/Tag/Tag.ct.tsx-snapshots/visual-Tag-screenshot-Colored-Selected-focus-1-Small-Mobile-linux.png b/packages/orbit-components/src/Tag/Tag.ct.tsx-snapshots/visual-Tag-screenshot-Colored-Selected-focus-1-Small-Mobile-linux.png new file mode 100644 index 0000000000..ecd13b0848 Binary files /dev/null and b/packages/orbit-components/src/Tag/Tag.ct.tsx-snapshots/visual-Tag-screenshot-Colored-Selected-focus-1-Small-Mobile-linux.png differ diff --git a/packages/orbit-components/src/Tag/Tag.ct.tsx-snapshots/visual-Tag-screenshot-Colored-Selected-focus-1-Tablet-linux.png b/packages/orbit-components/src/Tag/Tag.ct.tsx-snapshots/visual-Tag-screenshot-Colored-Selected-focus-1-Tablet-linux.png new file mode 100644 index 0000000000..e2e509221f Binary files /dev/null and b/packages/orbit-components/src/Tag/Tag.ct.tsx-snapshots/visual-Tag-screenshot-Colored-Selected-focus-1-Tablet-linux.png differ diff --git a/packages/orbit-components/src/Tag/Tag.ct.tsx-snapshots/visual-Tag-screenshot-Colored-Selected-focus-remove-button-1-Desktop-linux.png b/packages/orbit-components/src/Tag/Tag.ct.tsx-snapshots/visual-Tag-screenshot-Colored-Selected-focus-remove-button-1-Desktop-linux.png new file mode 100644 index 0000000000..dcfe956170 Binary files /dev/null and b/packages/orbit-components/src/Tag/Tag.ct.tsx-snapshots/visual-Tag-screenshot-Colored-Selected-focus-remove-button-1-Desktop-linux.png differ diff --git a/packages/orbit-components/src/Tag/Tag.ct.tsx-snapshots/visual-Tag-screenshot-Colored-Selected-focus-remove-button-1-Large-Desktop-linux.png b/packages/orbit-components/src/Tag/Tag.ct.tsx-snapshots/visual-Tag-screenshot-Colored-Selected-focus-remove-button-1-Large-Desktop-linux.png new file mode 100644 index 0000000000..dcfe956170 Binary files /dev/null and b/packages/orbit-components/src/Tag/Tag.ct.tsx-snapshots/visual-Tag-screenshot-Colored-Selected-focus-remove-button-1-Large-Desktop-linux.png differ diff --git a/packages/orbit-components/src/Tag/Tag.ct.tsx-snapshots/visual-Tag-screenshot-Colored-Selected-focus-remove-button-1-Large-Mobile-linux.png b/packages/orbit-components/src/Tag/Tag.ct.tsx-snapshots/visual-Tag-screenshot-Colored-Selected-focus-remove-button-1-Large-Mobile-linux.png new file mode 100644 index 0000000000..7e74682920 Binary files /dev/null and b/packages/orbit-components/src/Tag/Tag.ct.tsx-snapshots/visual-Tag-screenshot-Colored-Selected-focus-remove-button-1-Large-Mobile-linux.png differ diff --git a/packages/orbit-components/src/Tag/Tag.ct.tsx-snapshots/visual-Tag-screenshot-Colored-Selected-focus-remove-button-1-Medium-Mobile-linux.png b/packages/orbit-components/src/Tag/Tag.ct.tsx-snapshots/visual-Tag-screenshot-Colored-Selected-focus-remove-button-1-Medium-Mobile-linux.png new file mode 100644 index 0000000000..7e74682920 Binary files /dev/null and b/packages/orbit-components/src/Tag/Tag.ct.tsx-snapshots/visual-Tag-screenshot-Colored-Selected-focus-remove-button-1-Medium-Mobile-linux.png differ diff --git a/packages/orbit-components/src/Tag/Tag.ct.tsx-snapshots/visual-Tag-screenshot-Colored-Selected-focus-remove-button-1-Small-Mobile-linux.png b/packages/orbit-components/src/Tag/Tag.ct.tsx-snapshots/visual-Tag-screenshot-Colored-Selected-focus-remove-button-1-Small-Mobile-linux.png new file mode 100644 index 0000000000..7e74682920 Binary files /dev/null and b/packages/orbit-components/src/Tag/Tag.ct.tsx-snapshots/visual-Tag-screenshot-Colored-Selected-focus-remove-button-1-Small-Mobile-linux.png differ diff --git a/packages/orbit-components/src/Tag/Tag.ct.tsx-snapshots/visual-Tag-screenshot-Colored-Selected-focus-remove-button-1-Tablet-linux.png b/packages/orbit-components/src/Tag/Tag.ct.tsx-snapshots/visual-Tag-screenshot-Colored-Selected-focus-remove-button-1-Tablet-linux.png new file mode 100644 index 0000000000..57777acc0b Binary files /dev/null and b/packages/orbit-components/src/Tag/Tag.ct.tsx-snapshots/visual-Tag-screenshot-Colored-Selected-focus-remove-button-1-Tablet-linux.png differ diff --git a/packages/orbit-components/src/Tag/Tag.ct.tsx-snapshots/visual-Tag-screenshot-Colored-Selected-hover-1-Desktop-linux.png b/packages/orbit-components/src/Tag/Tag.ct.tsx-snapshots/visual-Tag-screenshot-Colored-Selected-hover-1-Desktop-linux.png new file mode 100644 index 0000000000..098ec77ab2 Binary files /dev/null and b/packages/orbit-components/src/Tag/Tag.ct.tsx-snapshots/visual-Tag-screenshot-Colored-Selected-hover-1-Desktop-linux.png differ diff --git a/packages/orbit-components/src/Tag/Tag.ct.tsx-snapshots/visual-Tag-screenshot-Colored-Selected-hover-1-Large-Desktop-linux.png b/packages/orbit-components/src/Tag/Tag.ct.tsx-snapshots/visual-Tag-screenshot-Colored-Selected-hover-1-Large-Desktop-linux.png new file mode 100644 index 0000000000..098ec77ab2 Binary files /dev/null and b/packages/orbit-components/src/Tag/Tag.ct.tsx-snapshots/visual-Tag-screenshot-Colored-Selected-hover-1-Large-Desktop-linux.png differ diff --git a/packages/orbit-components/src/Tag/Tag.ct.tsx-snapshots/visual-Tag-screenshot-Colored-Selected-hover-1-Large-Mobile-linux.png b/packages/orbit-components/src/Tag/Tag.ct.tsx-snapshots/visual-Tag-screenshot-Colored-Selected-hover-1-Large-Mobile-linux.png new file mode 100644 index 0000000000..c5e04e5cd0 Binary files /dev/null and b/packages/orbit-components/src/Tag/Tag.ct.tsx-snapshots/visual-Tag-screenshot-Colored-Selected-hover-1-Large-Mobile-linux.png differ diff --git a/packages/orbit-components/src/Tag/Tag.ct.tsx-snapshots/visual-Tag-screenshot-Colored-Selected-hover-1-Medium-Mobile-linux.png b/packages/orbit-components/src/Tag/Tag.ct.tsx-snapshots/visual-Tag-screenshot-Colored-Selected-hover-1-Medium-Mobile-linux.png new file mode 100644 index 0000000000..c5e04e5cd0 Binary files /dev/null and b/packages/orbit-components/src/Tag/Tag.ct.tsx-snapshots/visual-Tag-screenshot-Colored-Selected-hover-1-Medium-Mobile-linux.png differ diff --git a/packages/orbit-components/src/Tag/Tag.ct.tsx-snapshots/visual-Tag-screenshot-Colored-Selected-hover-1-Small-Mobile-linux.png b/packages/orbit-components/src/Tag/Tag.ct.tsx-snapshots/visual-Tag-screenshot-Colored-Selected-hover-1-Small-Mobile-linux.png new file mode 100644 index 0000000000..c5e04e5cd0 Binary files /dev/null and b/packages/orbit-components/src/Tag/Tag.ct.tsx-snapshots/visual-Tag-screenshot-Colored-Selected-hover-1-Small-Mobile-linux.png differ diff --git a/packages/orbit-components/src/Tag/Tag.ct.tsx-snapshots/visual-Tag-screenshot-Colored-Selected-hover-1-Tablet-linux.png b/packages/orbit-components/src/Tag/Tag.ct.tsx-snapshots/visual-Tag-screenshot-Colored-Selected-hover-1-Tablet-linux.png new file mode 100644 index 0000000000..49c719d470 Binary files /dev/null and b/packages/orbit-components/src/Tag/Tag.ct.tsx-snapshots/visual-Tag-screenshot-Colored-Selected-hover-1-Tablet-linux.png differ diff --git a/packages/orbit-components/src/Tag/Tag.ct.tsx-snapshots/visual-Tag-screenshot-Colored-active-1-Desktop-linux.png b/packages/orbit-components/src/Tag/Tag.ct.tsx-snapshots/visual-Tag-screenshot-Colored-active-1-Desktop-linux.png new file mode 100644 index 0000000000..9d384bc7e3 Binary files /dev/null and b/packages/orbit-components/src/Tag/Tag.ct.tsx-snapshots/visual-Tag-screenshot-Colored-active-1-Desktop-linux.png differ diff --git a/packages/orbit-components/src/Tag/Tag.ct.tsx-snapshots/visual-Tag-screenshot-Colored-active-1-Large-Desktop-linux.png b/packages/orbit-components/src/Tag/Tag.ct.tsx-snapshots/visual-Tag-screenshot-Colored-active-1-Large-Desktop-linux.png new file mode 100644 index 0000000000..9d384bc7e3 Binary files /dev/null and b/packages/orbit-components/src/Tag/Tag.ct.tsx-snapshots/visual-Tag-screenshot-Colored-active-1-Large-Desktop-linux.png differ diff --git a/packages/orbit-components/src/Tag/Tag.ct.tsx-snapshots/visual-Tag-screenshot-Colored-active-1-Large-Mobile-linux.png b/packages/orbit-components/src/Tag/Tag.ct.tsx-snapshots/visual-Tag-screenshot-Colored-active-1-Large-Mobile-linux.png new file mode 100644 index 0000000000..4cce5628ab Binary files /dev/null and b/packages/orbit-components/src/Tag/Tag.ct.tsx-snapshots/visual-Tag-screenshot-Colored-active-1-Large-Mobile-linux.png differ diff --git a/packages/orbit-components/src/Tag/Tag.ct.tsx-snapshots/visual-Tag-screenshot-Colored-active-1-Medium-Mobile-linux.png b/packages/orbit-components/src/Tag/Tag.ct.tsx-snapshots/visual-Tag-screenshot-Colored-active-1-Medium-Mobile-linux.png new file mode 100644 index 0000000000..4cce5628ab Binary files /dev/null and b/packages/orbit-components/src/Tag/Tag.ct.tsx-snapshots/visual-Tag-screenshot-Colored-active-1-Medium-Mobile-linux.png differ diff --git a/packages/orbit-components/src/Tag/Tag.ct.tsx-snapshots/visual-Tag-screenshot-Colored-active-1-Small-Mobile-linux.png b/packages/orbit-components/src/Tag/Tag.ct.tsx-snapshots/visual-Tag-screenshot-Colored-active-1-Small-Mobile-linux.png new file mode 100644 index 0000000000..4cce5628ab Binary files /dev/null and b/packages/orbit-components/src/Tag/Tag.ct.tsx-snapshots/visual-Tag-screenshot-Colored-active-1-Small-Mobile-linux.png differ diff --git a/packages/orbit-components/src/Tag/Tag.ct.tsx-snapshots/visual-Tag-screenshot-Colored-active-1-Tablet-linux.png b/packages/orbit-components/src/Tag/Tag.ct.tsx-snapshots/visual-Tag-screenshot-Colored-active-1-Tablet-linux.png new file mode 100644 index 0000000000..7f3f0a35af Binary files /dev/null and b/packages/orbit-components/src/Tag/Tag.ct.tsx-snapshots/visual-Tag-screenshot-Colored-active-1-Tablet-linux.png differ diff --git a/packages/orbit-components/src/Tag/Tag.ct.tsx-snapshots/visual-Tag-screenshot-Colored-focus-1-Desktop-linux.png b/packages/orbit-components/src/Tag/Tag.ct.tsx-snapshots/visual-Tag-screenshot-Colored-focus-1-Desktop-linux.png new file mode 100644 index 0000000000..1a3ea145ae Binary files /dev/null and b/packages/orbit-components/src/Tag/Tag.ct.tsx-snapshots/visual-Tag-screenshot-Colored-focus-1-Desktop-linux.png differ diff --git a/packages/orbit-components/src/Tag/Tag.ct.tsx-snapshots/visual-Tag-screenshot-Colored-focus-1-Large-Desktop-linux.png b/packages/orbit-components/src/Tag/Tag.ct.tsx-snapshots/visual-Tag-screenshot-Colored-focus-1-Large-Desktop-linux.png new file mode 100644 index 0000000000..1a3ea145ae Binary files /dev/null and b/packages/orbit-components/src/Tag/Tag.ct.tsx-snapshots/visual-Tag-screenshot-Colored-focus-1-Large-Desktop-linux.png differ diff --git a/packages/orbit-components/src/Tag/Tag.ct.tsx-snapshots/visual-Tag-screenshot-Colored-focus-1-Large-Mobile-linux.png b/packages/orbit-components/src/Tag/Tag.ct.tsx-snapshots/visual-Tag-screenshot-Colored-focus-1-Large-Mobile-linux.png new file mode 100644 index 0000000000..9b11c0f32a Binary files /dev/null and b/packages/orbit-components/src/Tag/Tag.ct.tsx-snapshots/visual-Tag-screenshot-Colored-focus-1-Large-Mobile-linux.png differ diff --git a/packages/orbit-components/src/Tag/Tag.ct.tsx-snapshots/visual-Tag-screenshot-Colored-focus-1-Medium-Mobile-linux.png b/packages/orbit-components/src/Tag/Tag.ct.tsx-snapshots/visual-Tag-screenshot-Colored-focus-1-Medium-Mobile-linux.png new file mode 100644 index 0000000000..9b11c0f32a Binary files /dev/null and b/packages/orbit-components/src/Tag/Tag.ct.tsx-snapshots/visual-Tag-screenshot-Colored-focus-1-Medium-Mobile-linux.png differ diff --git a/packages/orbit-components/src/Tag/Tag.ct.tsx-snapshots/visual-Tag-screenshot-Colored-focus-1-Small-Mobile-linux.png b/packages/orbit-components/src/Tag/Tag.ct.tsx-snapshots/visual-Tag-screenshot-Colored-focus-1-Small-Mobile-linux.png new file mode 100644 index 0000000000..9b11c0f32a Binary files /dev/null and b/packages/orbit-components/src/Tag/Tag.ct.tsx-snapshots/visual-Tag-screenshot-Colored-focus-1-Small-Mobile-linux.png differ diff --git a/packages/orbit-components/src/Tag/Tag.ct.tsx-snapshots/visual-Tag-screenshot-Colored-focus-1-Tablet-linux.png b/packages/orbit-components/src/Tag/Tag.ct.tsx-snapshots/visual-Tag-screenshot-Colored-focus-1-Tablet-linux.png new file mode 100644 index 0000000000..d875497d24 Binary files /dev/null and b/packages/orbit-components/src/Tag/Tag.ct.tsx-snapshots/visual-Tag-screenshot-Colored-focus-1-Tablet-linux.png differ diff --git a/packages/orbit-components/src/Tag/Tag.ct.tsx-snapshots/visual-Tag-screenshot-Colored-focus-remove-button-1-Desktop-linux.png b/packages/orbit-components/src/Tag/Tag.ct.tsx-snapshots/visual-Tag-screenshot-Colored-focus-remove-button-1-Desktop-linux.png new file mode 100644 index 0000000000..3807b70f2d Binary files /dev/null and b/packages/orbit-components/src/Tag/Tag.ct.tsx-snapshots/visual-Tag-screenshot-Colored-focus-remove-button-1-Desktop-linux.png differ diff --git a/packages/orbit-components/src/Tag/Tag.ct.tsx-snapshots/visual-Tag-screenshot-Colored-focus-remove-button-1-Large-Desktop-linux.png b/packages/orbit-components/src/Tag/Tag.ct.tsx-snapshots/visual-Tag-screenshot-Colored-focus-remove-button-1-Large-Desktop-linux.png new file mode 100644 index 0000000000..3807b70f2d Binary files /dev/null and b/packages/orbit-components/src/Tag/Tag.ct.tsx-snapshots/visual-Tag-screenshot-Colored-focus-remove-button-1-Large-Desktop-linux.png differ diff --git a/packages/orbit-components/src/Tag/Tag.ct.tsx-snapshots/visual-Tag-screenshot-Colored-focus-remove-button-1-Large-Mobile-linux.png b/packages/orbit-components/src/Tag/Tag.ct.tsx-snapshots/visual-Tag-screenshot-Colored-focus-remove-button-1-Large-Mobile-linux.png new file mode 100644 index 0000000000..b6e9d38dc1 Binary files /dev/null and b/packages/orbit-components/src/Tag/Tag.ct.tsx-snapshots/visual-Tag-screenshot-Colored-focus-remove-button-1-Large-Mobile-linux.png differ diff --git a/packages/orbit-components/src/Tag/Tag.ct.tsx-snapshots/visual-Tag-screenshot-Colored-focus-remove-button-1-Medium-Mobile-linux.png b/packages/orbit-components/src/Tag/Tag.ct.tsx-snapshots/visual-Tag-screenshot-Colored-focus-remove-button-1-Medium-Mobile-linux.png new file mode 100644 index 0000000000..b6e9d38dc1 Binary files /dev/null and b/packages/orbit-components/src/Tag/Tag.ct.tsx-snapshots/visual-Tag-screenshot-Colored-focus-remove-button-1-Medium-Mobile-linux.png differ diff --git a/packages/orbit-components/src/Tag/Tag.ct.tsx-snapshots/visual-Tag-screenshot-Colored-focus-remove-button-1-Small-Mobile-linux.png b/packages/orbit-components/src/Tag/Tag.ct.tsx-snapshots/visual-Tag-screenshot-Colored-focus-remove-button-1-Small-Mobile-linux.png new file mode 100644 index 0000000000..b6e9d38dc1 Binary files /dev/null and b/packages/orbit-components/src/Tag/Tag.ct.tsx-snapshots/visual-Tag-screenshot-Colored-focus-remove-button-1-Small-Mobile-linux.png differ diff --git a/packages/orbit-components/src/Tag/Tag.ct.tsx-snapshots/visual-Tag-screenshot-Colored-focus-remove-button-1-Tablet-linux.png b/packages/orbit-components/src/Tag/Tag.ct.tsx-snapshots/visual-Tag-screenshot-Colored-focus-remove-button-1-Tablet-linux.png new file mode 100644 index 0000000000..f748db9275 Binary files /dev/null and b/packages/orbit-components/src/Tag/Tag.ct.tsx-snapshots/visual-Tag-screenshot-Colored-focus-remove-button-1-Tablet-linux.png differ diff --git a/packages/orbit-components/src/Tag/Tag.ct.tsx-snapshots/visual-Tag-screenshot-Colored-hover-1-Desktop-linux.png b/packages/orbit-components/src/Tag/Tag.ct.tsx-snapshots/visual-Tag-screenshot-Colored-hover-1-Desktop-linux.png new file mode 100644 index 0000000000..9d384bc7e3 Binary files /dev/null and b/packages/orbit-components/src/Tag/Tag.ct.tsx-snapshots/visual-Tag-screenshot-Colored-hover-1-Desktop-linux.png differ diff --git a/packages/orbit-components/src/Tag/Tag.ct.tsx-snapshots/visual-Tag-screenshot-Colored-hover-1-Large-Desktop-linux.png b/packages/orbit-components/src/Tag/Tag.ct.tsx-snapshots/visual-Tag-screenshot-Colored-hover-1-Large-Desktop-linux.png new file mode 100644 index 0000000000..9d384bc7e3 Binary files /dev/null and b/packages/orbit-components/src/Tag/Tag.ct.tsx-snapshots/visual-Tag-screenshot-Colored-hover-1-Large-Desktop-linux.png differ diff --git a/packages/orbit-components/src/Tag/Tag.ct.tsx-snapshots/visual-Tag-screenshot-Colored-hover-1-Large-Mobile-linux.png b/packages/orbit-components/src/Tag/Tag.ct.tsx-snapshots/visual-Tag-screenshot-Colored-hover-1-Large-Mobile-linux.png new file mode 100644 index 0000000000..4cce5628ab Binary files /dev/null and b/packages/orbit-components/src/Tag/Tag.ct.tsx-snapshots/visual-Tag-screenshot-Colored-hover-1-Large-Mobile-linux.png differ diff --git a/packages/orbit-components/src/Tag/Tag.ct.tsx-snapshots/visual-Tag-screenshot-Colored-hover-1-Medium-Mobile-linux.png b/packages/orbit-components/src/Tag/Tag.ct.tsx-snapshots/visual-Tag-screenshot-Colored-hover-1-Medium-Mobile-linux.png new file mode 100644 index 0000000000..4cce5628ab Binary files /dev/null and b/packages/orbit-components/src/Tag/Tag.ct.tsx-snapshots/visual-Tag-screenshot-Colored-hover-1-Medium-Mobile-linux.png differ diff --git a/packages/orbit-components/src/Tag/Tag.ct.tsx-snapshots/visual-Tag-screenshot-Colored-hover-1-Small-Mobile-linux.png b/packages/orbit-components/src/Tag/Tag.ct.tsx-snapshots/visual-Tag-screenshot-Colored-hover-1-Small-Mobile-linux.png new file mode 100644 index 0000000000..4cce5628ab Binary files /dev/null and b/packages/orbit-components/src/Tag/Tag.ct.tsx-snapshots/visual-Tag-screenshot-Colored-hover-1-Small-Mobile-linux.png differ diff --git a/packages/orbit-components/src/Tag/Tag.ct.tsx-snapshots/visual-Tag-screenshot-Colored-hover-1-Tablet-linux.png b/packages/orbit-components/src/Tag/Tag.ct.tsx-snapshots/visual-Tag-screenshot-Colored-hover-1-Tablet-linux.png new file mode 100644 index 0000000000..7f3f0a35af Binary files /dev/null and b/packages/orbit-components/src/Tag/Tag.ct.tsx-snapshots/visual-Tag-screenshot-Colored-hover-1-Tablet-linux.png differ diff --git a/packages/orbit-components/src/Tag/Tag.ct.tsx-snapshots/visual-Tag-screenshot-Neutral-DateTag-Selected-active-1-Desktop-linux.png b/packages/orbit-components/src/Tag/Tag.ct.tsx-snapshots/visual-Tag-screenshot-Neutral-DateTag-Selected-active-1-Desktop-linux.png new file mode 100644 index 0000000000..a1e5d7626b Binary files /dev/null and b/packages/orbit-components/src/Tag/Tag.ct.tsx-snapshots/visual-Tag-screenshot-Neutral-DateTag-Selected-active-1-Desktop-linux.png differ diff --git a/packages/orbit-components/src/Tag/Tag.ct.tsx-snapshots/visual-Tag-screenshot-Neutral-DateTag-Selected-active-1-Large-Desktop-linux.png b/packages/orbit-components/src/Tag/Tag.ct.tsx-snapshots/visual-Tag-screenshot-Neutral-DateTag-Selected-active-1-Large-Desktop-linux.png new file mode 100644 index 0000000000..a1e5d7626b Binary files /dev/null and b/packages/orbit-components/src/Tag/Tag.ct.tsx-snapshots/visual-Tag-screenshot-Neutral-DateTag-Selected-active-1-Large-Desktop-linux.png differ diff --git a/packages/orbit-components/src/Tag/Tag.ct.tsx-snapshots/visual-Tag-screenshot-Neutral-DateTag-Selected-active-1-Large-Mobile-linux.png b/packages/orbit-components/src/Tag/Tag.ct.tsx-snapshots/visual-Tag-screenshot-Neutral-DateTag-Selected-active-1-Large-Mobile-linux.png new file mode 100644 index 0000000000..9a04aec043 Binary files /dev/null and b/packages/orbit-components/src/Tag/Tag.ct.tsx-snapshots/visual-Tag-screenshot-Neutral-DateTag-Selected-active-1-Large-Mobile-linux.png differ diff --git a/packages/orbit-components/src/Tag/Tag.ct.tsx-snapshots/visual-Tag-screenshot-Neutral-DateTag-Selected-active-1-Medium-Mobile-linux.png b/packages/orbit-components/src/Tag/Tag.ct.tsx-snapshots/visual-Tag-screenshot-Neutral-DateTag-Selected-active-1-Medium-Mobile-linux.png new file mode 100644 index 0000000000..9a04aec043 Binary files /dev/null and b/packages/orbit-components/src/Tag/Tag.ct.tsx-snapshots/visual-Tag-screenshot-Neutral-DateTag-Selected-active-1-Medium-Mobile-linux.png differ diff --git a/packages/orbit-components/src/Tag/Tag.ct.tsx-snapshots/visual-Tag-screenshot-Neutral-DateTag-Selected-active-1-Small-Mobile-linux.png b/packages/orbit-components/src/Tag/Tag.ct.tsx-snapshots/visual-Tag-screenshot-Neutral-DateTag-Selected-active-1-Small-Mobile-linux.png new file mode 100644 index 0000000000..9a04aec043 Binary files /dev/null and b/packages/orbit-components/src/Tag/Tag.ct.tsx-snapshots/visual-Tag-screenshot-Neutral-DateTag-Selected-active-1-Small-Mobile-linux.png differ diff --git a/packages/orbit-components/src/Tag/Tag.ct.tsx-snapshots/visual-Tag-screenshot-Neutral-DateTag-Selected-active-1-Tablet-linux.png b/packages/orbit-components/src/Tag/Tag.ct.tsx-snapshots/visual-Tag-screenshot-Neutral-DateTag-Selected-active-1-Tablet-linux.png new file mode 100644 index 0000000000..5444907df8 Binary files /dev/null and b/packages/orbit-components/src/Tag/Tag.ct.tsx-snapshots/visual-Tag-screenshot-Neutral-DateTag-Selected-active-1-Tablet-linux.png differ diff --git a/packages/orbit-components/src/Tag/Tag.ct.tsx-snapshots/visual-Tag-screenshot-Neutral-DateTag-Selected-focus-1-Desktop-linux.png b/packages/orbit-components/src/Tag/Tag.ct.tsx-snapshots/visual-Tag-screenshot-Neutral-DateTag-Selected-focus-1-Desktop-linux.png new file mode 100644 index 0000000000..ec2cccf945 Binary files /dev/null and b/packages/orbit-components/src/Tag/Tag.ct.tsx-snapshots/visual-Tag-screenshot-Neutral-DateTag-Selected-focus-1-Desktop-linux.png differ diff --git a/packages/orbit-components/src/Tag/Tag.ct.tsx-snapshots/visual-Tag-screenshot-Neutral-DateTag-Selected-focus-1-Large-Desktop-linux.png b/packages/orbit-components/src/Tag/Tag.ct.tsx-snapshots/visual-Tag-screenshot-Neutral-DateTag-Selected-focus-1-Large-Desktop-linux.png new file mode 100644 index 0000000000..ec2cccf945 Binary files /dev/null and b/packages/orbit-components/src/Tag/Tag.ct.tsx-snapshots/visual-Tag-screenshot-Neutral-DateTag-Selected-focus-1-Large-Desktop-linux.png differ diff --git a/packages/orbit-components/src/Tag/Tag.ct.tsx-snapshots/visual-Tag-screenshot-Neutral-DateTag-Selected-focus-1-Large-Mobile-linux.png b/packages/orbit-components/src/Tag/Tag.ct.tsx-snapshots/visual-Tag-screenshot-Neutral-DateTag-Selected-focus-1-Large-Mobile-linux.png new file mode 100644 index 0000000000..35df850d5b Binary files /dev/null and b/packages/orbit-components/src/Tag/Tag.ct.tsx-snapshots/visual-Tag-screenshot-Neutral-DateTag-Selected-focus-1-Large-Mobile-linux.png differ diff --git a/packages/orbit-components/src/Tag/Tag.ct.tsx-snapshots/visual-Tag-screenshot-Neutral-DateTag-Selected-focus-1-Medium-Mobile-linux.png b/packages/orbit-components/src/Tag/Tag.ct.tsx-snapshots/visual-Tag-screenshot-Neutral-DateTag-Selected-focus-1-Medium-Mobile-linux.png new file mode 100644 index 0000000000..35df850d5b Binary files /dev/null and b/packages/orbit-components/src/Tag/Tag.ct.tsx-snapshots/visual-Tag-screenshot-Neutral-DateTag-Selected-focus-1-Medium-Mobile-linux.png differ diff --git a/packages/orbit-components/src/Tag/Tag.ct.tsx-snapshots/visual-Tag-screenshot-Neutral-DateTag-Selected-focus-1-Small-Mobile-linux.png b/packages/orbit-components/src/Tag/Tag.ct.tsx-snapshots/visual-Tag-screenshot-Neutral-DateTag-Selected-focus-1-Small-Mobile-linux.png new file mode 100644 index 0000000000..35df850d5b Binary files /dev/null and b/packages/orbit-components/src/Tag/Tag.ct.tsx-snapshots/visual-Tag-screenshot-Neutral-DateTag-Selected-focus-1-Small-Mobile-linux.png differ diff --git a/packages/orbit-components/src/Tag/Tag.ct.tsx-snapshots/visual-Tag-screenshot-Neutral-DateTag-Selected-focus-1-Tablet-linux.png b/packages/orbit-components/src/Tag/Tag.ct.tsx-snapshots/visual-Tag-screenshot-Neutral-DateTag-Selected-focus-1-Tablet-linux.png new file mode 100644 index 0000000000..9586e0f64b Binary files /dev/null and b/packages/orbit-components/src/Tag/Tag.ct.tsx-snapshots/visual-Tag-screenshot-Neutral-DateTag-Selected-focus-1-Tablet-linux.png differ diff --git a/packages/orbit-components/src/Tag/Tag.ct.tsx-snapshots/visual-Tag-screenshot-Neutral-DateTag-Selected-focus-remove-button-1-Desktop-linux.png b/packages/orbit-components/src/Tag/Tag.ct.tsx-snapshots/visual-Tag-screenshot-Neutral-DateTag-Selected-focus-remove-button-1-Desktop-linux.png new file mode 100644 index 0000000000..55faed438b Binary files /dev/null and b/packages/orbit-components/src/Tag/Tag.ct.tsx-snapshots/visual-Tag-screenshot-Neutral-DateTag-Selected-focus-remove-button-1-Desktop-linux.png differ diff --git a/packages/orbit-components/src/Tag/Tag.ct.tsx-snapshots/visual-Tag-screenshot-Neutral-DateTag-Selected-focus-remove-button-1-Large-Desktop-linux.png b/packages/orbit-components/src/Tag/Tag.ct.tsx-snapshots/visual-Tag-screenshot-Neutral-DateTag-Selected-focus-remove-button-1-Large-Desktop-linux.png new file mode 100644 index 0000000000..55faed438b Binary files /dev/null and b/packages/orbit-components/src/Tag/Tag.ct.tsx-snapshots/visual-Tag-screenshot-Neutral-DateTag-Selected-focus-remove-button-1-Large-Desktop-linux.png differ diff --git a/packages/orbit-components/src/Tag/Tag.ct.tsx-snapshots/visual-Tag-screenshot-Neutral-DateTag-Selected-focus-remove-button-1-Large-Mobile-linux.png b/packages/orbit-components/src/Tag/Tag.ct.tsx-snapshots/visual-Tag-screenshot-Neutral-DateTag-Selected-focus-remove-button-1-Large-Mobile-linux.png new file mode 100644 index 0000000000..6cebd19430 Binary files /dev/null and b/packages/orbit-components/src/Tag/Tag.ct.tsx-snapshots/visual-Tag-screenshot-Neutral-DateTag-Selected-focus-remove-button-1-Large-Mobile-linux.png differ diff --git a/packages/orbit-components/src/Tag/Tag.ct.tsx-snapshots/visual-Tag-screenshot-Neutral-DateTag-Selected-focus-remove-button-1-Medium-Mobile-linux.png b/packages/orbit-components/src/Tag/Tag.ct.tsx-snapshots/visual-Tag-screenshot-Neutral-DateTag-Selected-focus-remove-button-1-Medium-Mobile-linux.png new file mode 100644 index 0000000000..6cebd19430 Binary files /dev/null and b/packages/orbit-components/src/Tag/Tag.ct.tsx-snapshots/visual-Tag-screenshot-Neutral-DateTag-Selected-focus-remove-button-1-Medium-Mobile-linux.png differ diff --git a/packages/orbit-components/src/Tag/Tag.ct.tsx-snapshots/visual-Tag-screenshot-Neutral-DateTag-Selected-focus-remove-button-1-Small-Mobile-linux.png b/packages/orbit-components/src/Tag/Tag.ct.tsx-snapshots/visual-Tag-screenshot-Neutral-DateTag-Selected-focus-remove-button-1-Small-Mobile-linux.png new file mode 100644 index 0000000000..6cebd19430 Binary files /dev/null and b/packages/orbit-components/src/Tag/Tag.ct.tsx-snapshots/visual-Tag-screenshot-Neutral-DateTag-Selected-focus-remove-button-1-Small-Mobile-linux.png differ diff --git a/packages/orbit-components/src/Tag/Tag.ct.tsx-snapshots/visual-Tag-screenshot-Neutral-DateTag-Selected-focus-remove-button-1-Tablet-linux.png b/packages/orbit-components/src/Tag/Tag.ct.tsx-snapshots/visual-Tag-screenshot-Neutral-DateTag-Selected-focus-remove-button-1-Tablet-linux.png new file mode 100644 index 0000000000..7997ea6d3d Binary files /dev/null and b/packages/orbit-components/src/Tag/Tag.ct.tsx-snapshots/visual-Tag-screenshot-Neutral-DateTag-Selected-focus-remove-button-1-Tablet-linux.png differ diff --git a/packages/orbit-components/src/Tag/Tag.ct.tsx-snapshots/visual-Tag-screenshot-Neutral-DateTag-Selected-hover-1-Desktop-linux.png b/packages/orbit-components/src/Tag/Tag.ct.tsx-snapshots/visual-Tag-screenshot-Neutral-DateTag-Selected-hover-1-Desktop-linux.png new file mode 100644 index 0000000000..a1e5d7626b Binary files /dev/null and b/packages/orbit-components/src/Tag/Tag.ct.tsx-snapshots/visual-Tag-screenshot-Neutral-DateTag-Selected-hover-1-Desktop-linux.png differ diff --git a/packages/orbit-components/src/Tag/Tag.ct.tsx-snapshots/visual-Tag-screenshot-Neutral-DateTag-Selected-hover-1-Large-Desktop-linux.png b/packages/orbit-components/src/Tag/Tag.ct.tsx-snapshots/visual-Tag-screenshot-Neutral-DateTag-Selected-hover-1-Large-Desktop-linux.png new file mode 100644 index 0000000000..a1e5d7626b Binary files /dev/null and b/packages/orbit-components/src/Tag/Tag.ct.tsx-snapshots/visual-Tag-screenshot-Neutral-DateTag-Selected-hover-1-Large-Desktop-linux.png differ diff --git a/packages/orbit-components/src/Tag/Tag.ct.tsx-snapshots/visual-Tag-screenshot-Neutral-DateTag-Selected-hover-1-Large-Mobile-linux.png b/packages/orbit-components/src/Tag/Tag.ct.tsx-snapshots/visual-Tag-screenshot-Neutral-DateTag-Selected-hover-1-Large-Mobile-linux.png new file mode 100644 index 0000000000..9a04aec043 Binary files /dev/null and b/packages/orbit-components/src/Tag/Tag.ct.tsx-snapshots/visual-Tag-screenshot-Neutral-DateTag-Selected-hover-1-Large-Mobile-linux.png differ diff --git a/packages/orbit-components/src/Tag/Tag.ct.tsx-snapshots/visual-Tag-screenshot-Neutral-DateTag-Selected-hover-1-Medium-Mobile-linux.png b/packages/orbit-components/src/Tag/Tag.ct.tsx-snapshots/visual-Tag-screenshot-Neutral-DateTag-Selected-hover-1-Medium-Mobile-linux.png new file mode 100644 index 0000000000..9a04aec043 Binary files /dev/null and b/packages/orbit-components/src/Tag/Tag.ct.tsx-snapshots/visual-Tag-screenshot-Neutral-DateTag-Selected-hover-1-Medium-Mobile-linux.png differ diff --git a/packages/orbit-components/src/Tag/Tag.ct.tsx-snapshots/visual-Tag-screenshot-Neutral-DateTag-Selected-hover-1-Small-Mobile-linux.png b/packages/orbit-components/src/Tag/Tag.ct.tsx-snapshots/visual-Tag-screenshot-Neutral-DateTag-Selected-hover-1-Small-Mobile-linux.png new file mode 100644 index 0000000000..9a04aec043 Binary files /dev/null and b/packages/orbit-components/src/Tag/Tag.ct.tsx-snapshots/visual-Tag-screenshot-Neutral-DateTag-Selected-hover-1-Small-Mobile-linux.png differ diff --git a/packages/orbit-components/src/Tag/Tag.ct.tsx-snapshots/visual-Tag-screenshot-Neutral-DateTag-Selected-hover-1-Tablet-linux.png b/packages/orbit-components/src/Tag/Tag.ct.tsx-snapshots/visual-Tag-screenshot-Neutral-DateTag-Selected-hover-1-Tablet-linux.png new file mode 100644 index 0000000000..5444907df8 Binary files /dev/null and b/packages/orbit-components/src/Tag/Tag.ct.tsx-snapshots/visual-Tag-screenshot-Neutral-DateTag-Selected-hover-1-Tablet-linux.png differ diff --git a/packages/orbit-components/src/Tag/Tag.ct.tsx-snapshots/visual-Tag-screenshot-Neutral-DateTag-active-1-Desktop-linux.png b/packages/orbit-components/src/Tag/Tag.ct.tsx-snapshots/visual-Tag-screenshot-Neutral-DateTag-active-1-Desktop-linux.png new file mode 100644 index 0000000000..0ca4372f47 Binary files /dev/null and b/packages/orbit-components/src/Tag/Tag.ct.tsx-snapshots/visual-Tag-screenshot-Neutral-DateTag-active-1-Desktop-linux.png differ diff --git a/packages/orbit-components/src/Tag/Tag.ct.tsx-snapshots/visual-Tag-screenshot-Neutral-DateTag-active-1-Large-Desktop-linux.png b/packages/orbit-components/src/Tag/Tag.ct.tsx-snapshots/visual-Tag-screenshot-Neutral-DateTag-active-1-Large-Desktop-linux.png new file mode 100644 index 0000000000..0ca4372f47 Binary files /dev/null and b/packages/orbit-components/src/Tag/Tag.ct.tsx-snapshots/visual-Tag-screenshot-Neutral-DateTag-active-1-Large-Desktop-linux.png differ diff --git a/packages/orbit-components/src/Tag/Tag.ct.tsx-snapshots/visual-Tag-screenshot-Neutral-DateTag-active-1-Large-Mobile-linux.png b/packages/orbit-components/src/Tag/Tag.ct.tsx-snapshots/visual-Tag-screenshot-Neutral-DateTag-active-1-Large-Mobile-linux.png new file mode 100644 index 0000000000..d2763021bf Binary files /dev/null and b/packages/orbit-components/src/Tag/Tag.ct.tsx-snapshots/visual-Tag-screenshot-Neutral-DateTag-active-1-Large-Mobile-linux.png differ diff --git a/packages/orbit-components/src/Tag/Tag.ct.tsx-snapshots/visual-Tag-screenshot-Neutral-DateTag-active-1-Medium-Mobile-linux.png b/packages/orbit-components/src/Tag/Tag.ct.tsx-snapshots/visual-Tag-screenshot-Neutral-DateTag-active-1-Medium-Mobile-linux.png new file mode 100644 index 0000000000..d2763021bf Binary files /dev/null and b/packages/orbit-components/src/Tag/Tag.ct.tsx-snapshots/visual-Tag-screenshot-Neutral-DateTag-active-1-Medium-Mobile-linux.png differ diff --git a/packages/orbit-components/src/Tag/Tag.ct.tsx-snapshots/visual-Tag-screenshot-Neutral-DateTag-active-1-Small-Mobile-linux.png b/packages/orbit-components/src/Tag/Tag.ct.tsx-snapshots/visual-Tag-screenshot-Neutral-DateTag-active-1-Small-Mobile-linux.png new file mode 100644 index 0000000000..d2763021bf Binary files /dev/null and b/packages/orbit-components/src/Tag/Tag.ct.tsx-snapshots/visual-Tag-screenshot-Neutral-DateTag-active-1-Small-Mobile-linux.png differ diff --git a/packages/orbit-components/src/Tag/Tag.ct.tsx-snapshots/visual-Tag-screenshot-Neutral-DateTag-active-1-Tablet-linux.png b/packages/orbit-components/src/Tag/Tag.ct.tsx-snapshots/visual-Tag-screenshot-Neutral-DateTag-active-1-Tablet-linux.png new file mode 100644 index 0000000000..ee65f61a93 Binary files /dev/null and b/packages/orbit-components/src/Tag/Tag.ct.tsx-snapshots/visual-Tag-screenshot-Neutral-DateTag-active-1-Tablet-linux.png differ diff --git a/packages/orbit-components/src/Tag/Tag.ct.tsx-snapshots/visual-Tag-screenshot-Neutral-DateTag-focus-1-Desktop-linux.png b/packages/orbit-components/src/Tag/Tag.ct.tsx-snapshots/visual-Tag-screenshot-Neutral-DateTag-focus-1-Desktop-linux.png new file mode 100644 index 0000000000..8450902fc3 Binary files /dev/null and b/packages/orbit-components/src/Tag/Tag.ct.tsx-snapshots/visual-Tag-screenshot-Neutral-DateTag-focus-1-Desktop-linux.png differ diff --git a/packages/orbit-components/src/Tag/Tag.ct.tsx-snapshots/visual-Tag-screenshot-Neutral-DateTag-focus-1-Large-Desktop-linux.png b/packages/orbit-components/src/Tag/Tag.ct.tsx-snapshots/visual-Tag-screenshot-Neutral-DateTag-focus-1-Large-Desktop-linux.png new file mode 100644 index 0000000000..8450902fc3 Binary files /dev/null and b/packages/orbit-components/src/Tag/Tag.ct.tsx-snapshots/visual-Tag-screenshot-Neutral-DateTag-focus-1-Large-Desktop-linux.png differ diff --git a/packages/orbit-components/src/Tag/Tag.ct.tsx-snapshots/visual-Tag-screenshot-Neutral-DateTag-focus-1-Large-Mobile-linux.png b/packages/orbit-components/src/Tag/Tag.ct.tsx-snapshots/visual-Tag-screenshot-Neutral-DateTag-focus-1-Large-Mobile-linux.png new file mode 100644 index 0000000000..de2b9f24ca Binary files /dev/null and b/packages/orbit-components/src/Tag/Tag.ct.tsx-snapshots/visual-Tag-screenshot-Neutral-DateTag-focus-1-Large-Mobile-linux.png differ diff --git a/packages/orbit-components/src/Tag/Tag.ct.tsx-snapshots/visual-Tag-screenshot-Neutral-DateTag-focus-1-Medium-Mobile-linux.png b/packages/orbit-components/src/Tag/Tag.ct.tsx-snapshots/visual-Tag-screenshot-Neutral-DateTag-focus-1-Medium-Mobile-linux.png new file mode 100644 index 0000000000..de2b9f24ca Binary files /dev/null and b/packages/orbit-components/src/Tag/Tag.ct.tsx-snapshots/visual-Tag-screenshot-Neutral-DateTag-focus-1-Medium-Mobile-linux.png differ diff --git a/packages/orbit-components/src/Tag/Tag.ct.tsx-snapshots/visual-Tag-screenshot-Neutral-DateTag-focus-1-Small-Mobile-linux.png b/packages/orbit-components/src/Tag/Tag.ct.tsx-snapshots/visual-Tag-screenshot-Neutral-DateTag-focus-1-Small-Mobile-linux.png new file mode 100644 index 0000000000..de2b9f24ca Binary files /dev/null and b/packages/orbit-components/src/Tag/Tag.ct.tsx-snapshots/visual-Tag-screenshot-Neutral-DateTag-focus-1-Small-Mobile-linux.png differ diff --git a/packages/orbit-components/src/Tag/Tag.ct.tsx-snapshots/visual-Tag-screenshot-Neutral-DateTag-focus-1-Tablet-linux.png b/packages/orbit-components/src/Tag/Tag.ct.tsx-snapshots/visual-Tag-screenshot-Neutral-DateTag-focus-1-Tablet-linux.png new file mode 100644 index 0000000000..bfd25eb354 Binary files /dev/null and b/packages/orbit-components/src/Tag/Tag.ct.tsx-snapshots/visual-Tag-screenshot-Neutral-DateTag-focus-1-Tablet-linux.png differ diff --git a/packages/orbit-components/src/Tag/Tag.ct.tsx-snapshots/visual-Tag-screenshot-Neutral-DateTag-focus-remove-button-1-Desktop-linux.png b/packages/orbit-components/src/Tag/Tag.ct.tsx-snapshots/visual-Tag-screenshot-Neutral-DateTag-focus-remove-button-1-Desktop-linux.png new file mode 100644 index 0000000000..5e1bb4a2b1 Binary files /dev/null and b/packages/orbit-components/src/Tag/Tag.ct.tsx-snapshots/visual-Tag-screenshot-Neutral-DateTag-focus-remove-button-1-Desktop-linux.png differ diff --git a/packages/orbit-components/src/Tag/Tag.ct.tsx-snapshots/visual-Tag-screenshot-Neutral-DateTag-focus-remove-button-1-Large-Desktop-linux.png b/packages/orbit-components/src/Tag/Tag.ct.tsx-snapshots/visual-Tag-screenshot-Neutral-DateTag-focus-remove-button-1-Large-Desktop-linux.png new file mode 100644 index 0000000000..5e1bb4a2b1 Binary files /dev/null and b/packages/orbit-components/src/Tag/Tag.ct.tsx-snapshots/visual-Tag-screenshot-Neutral-DateTag-focus-remove-button-1-Large-Desktop-linux.png differ diff --git a/packages/orbit-components/src/Tag/Tag.ct.tsx-snapshots/visual-Tag-screenshot-Neutral-DateTag-focus-remove-button-1-Large-Mobile-linux.png b/packages/orbit-components/src/Tag/Tag.ct.tsx-snapshots/visual-Tag-screenshot-Neutral-DateTag-focus-remove-button-1-Large-Mobile-linux.png new file mode 100644 index 0000000000..9db2c9d7a9 Binary files /dev/null and b/packages/orbit-components/src/Tag/Tag.ct.tsx-snapshots/visual-Tag-screenshot-Neutral-DateTag-focus-remove-button-1-Large-Mobile-linux.png differ diff --git a/packages/orbit-components/src/Tag/Tag.ct.tsx-snapshots/visual-Tag-screenshot-Neutral-DateTag-focus-remove-button-1-Medium-Mobile-linux.png b/packages/orbit-components/src/Tag/Tag.ct.tsx-snapshots/visual-Tag-screenshot-Neutral-DateTag-focus-remove-button-1-Medium-Mobile-linux.png new file mode 100644 index 0000000000..9db2c9d7a9 Binary files /dev/null and b/packages/orbit-components/src/Tag/Tag.ct.tsx-snapshots/visual-Tag-screenshot-Neutral-DateTag-focus-remove-button-1-Medium-Mobile-linux.png differ diff --git a/packages/orbit-components/src/Tag/Tag.ct.tsx-snapshots/visual-Tag-screenshot-Neutral-DateTag-focus-remove-button-1-Small-Mobile-linux.png b/packages/orbit-components/src/Tag/Tag.ct.tsx-snapshots/visual-Tag-screenshot-Neutral-DateTag-focus-remove-button-1-Small-Mobile-linux.png new file mode 100644 index 0000000000..9db2c9d7a9 Binary files /dev/null and b/packages/orbit-components/src/Tag/Tag.ct.tsx-snapshots/visual-Tag-screenshot-Neutral-DateTag-focus-remove-button-1-Small-Mobile-linux.png differ diff --git a/packages/orbit-components/src/Tag/Tag.ct.tsx-snapshots/visual-Tag-screenshot-Neutral-DateTag-focus-remove-button-1-Tablet-linux.png b/packages/orbit-components/src/Tag/Tag.ct.tsx-snapshots/visual-Tag-screenshot-Neutral-DateTag-focus-remove-button-1-Tablet-linux.png new file mode 100644 index 0000000000..e54bf31341 Binary files /dev/null and b/packages/orbit-components/src/Tag/Tag.ct.tsx-snapshots/visual-Tag-screenshot-Neutral-DateTag-focus-remove-button-1-Tablet-linux.png differ diff --git a/packages/orbit-components/src/Tag/Tag.ct.tsx-snapshots/visual-Tag-screenshot-Neutral-DateTag-hover-1-Desktop-linux.png b/packages/orbit-components/src/Tag/Tag.ct.tsx-snapshots/visual-Tag-screenshot-Neutral-DateTag-hover-1-Desktop-linux.png new file mode 100644 index 0000000000..0ca4372f47 Binary files /dev/null and b/packages/orbit-components/src/Tag/Tag.ct.tsx-snapshots/visual-Tag-screenshot-Neutral-DateTag-hover-1-Desktop-linux.png differ diff --git a/packages/orbit-components/src/Tag/Tag.ct.tsx-snapshots/visual-Tag-screenshot-Neutral-DateTag-hover-1-Large-Desktop-linux.png b/packages/orbit-components/src/Tag/Tag.ct.tsx-snapshots/visual-Tag-screenshot-Neutral-DateTag-hover-1-Large-Desktop-linux.png new file mode 100644 index 0000000000..0ca4372f47 Binary files /dev/null and b/packages/orbit-components/src/Tag/Tag.ct.tsx-snapshots/visual-Tag-screenshot-Neutral-DateTag-hover-1-Large-Desktop-linux.png differ diff --git a/packages/orbit-components/src/Tag/Tag.ct.tsx-snapshots/visual-Tag-screenshot-Neutral-DateTag-hover-1-Large-Mobile-linux.png b/packages/orbit-components/src/Tag/Tag.ct.tsx-snapshots/visual-Tag-screenshot-Neutral-DateTag-hover-1-Large-Mobile-linux.png new file mode 100644 index 0000000000..d2763021bf Binary files /dev/null and b/packages/orbit-components/src/Tag/Tag.ct.tsx-snapshots/visual-Tag-screenshot-Neutral-DateTag-hover-1-Large-Mobile-linux.png differ diff --git a/packages/orbit-components/src/Tag/Tag.ct.tsx-snapshots/visual-Tag-screenshot-Neutral-DateTag-hover-1-Medium-Mobile-linux.png b/packages/orbit-components/src/Tag/Tag.ct.tsx-snapshots/visual-Tag-screenshot-Neutral-DateTag-hover-1-Medium-Mobile-linux.png new file mode 100644 index 0000000000..d2763021bf Binary files /dev/null and b/packages/orbit-components/src/Tag/Tag.ct.tsx-snapshots/visual-Tag-screenshot-Neutral-DateTag-hover-1-Medium-Mobile-linux.png differ diff --git a/packages/orbit-components/src/Tag/Tag.ct.tsx-snapshots/visual-Tag-screenshot-Neutral-DateTag-hover-1-Small-Mobile-linux.png b/packages/orbit-components/src/Tag/Tag.ct.tsx-snapshots/visual-Tag-screenshot-Neutral-DateTag-hover-1-Small-Mobile-linux.png new file mode 100644 index 0000000000..d2763021bf Binary files /dev/null and b/packages/orbit-components/src/Tag/Tag.ct.tsx-snapshots/visual-Tag-screenshot-Neutral-DateTag-hover-1-Small-Mobile-linux.png differ diff --git a/packages/orbit-components/src/Tag/Tag.ct.tsx-snapshots/visual-Tag-screenshot-Neutral-DateTag-hover-1-Tablet-linux.png b/packages/orbit-components/src/Tag/Tag.ct.tsx-snapshots/visual-Tag-screenshot-Neutral-DateTag-hover-1-Tablet-linux.png new file mode 100644 index 0000000000..ee65f61a93 Binary files /dev/null and b/packages/orbit-components/src/Tag/Tag.ct.tsx-snapshots/visual-Tag-screenshot-Neutral-DateTag-hover-1-Tablet-linux.png differ diff --git a/packages/orbit-components/src/Tag/Tag.ct.tsx-snapshots/visual-Tag-screenshot-Neutral-Selected-active-1-Desktop-linux.png b/packages/orbit-components/src/Tag/Tag.ct.tsx-snapshots/visual-Tag-screenshot-Neutral-Selected-active-1-Desktop-linux.png new file mode 100644 index 0000000000..9cdd458c9c Binary files /dev/null and b/packages/orbit-components/src/Tag/Tag.ct.tsx-snapshots/visual-Tag-screenshot-Neutral-Selected-active-1-Desktop-linux.png differ diff --git a/packages/orbit-components/src/Tag/Tag.ct.tsx-snapshots/visual-Tag-screenshot-Neutral-Selected-active-1-Large-Desktop-linux.png b/packages/orbit-components/src/Tag/Tag.ct.tsx-snapshots/visual-Tag-screenshot-Neutral-Selected-active-1-Large-Desktop-linux.png new file mode 100644 index 0000000000..9cdd458c9c Binary files /dev/null and b/packages/orbit-components/src/Tag/Tag.ct.tsx-snapshots/visual-Tag-screenshot-Neutral-Selected-active-1-Large-Desktop-linux.png differ diff --git a/packages/orbit-components/src/Tag/Tag.ct.tsx-snapshots/visual-Tag-screenshot-Neutral-Selected-active-1-Large-Mobile-linux.png b/packages/orbit-components/src/Tag/Tag.ct.tsx-snapshots/visual-Tag-screenshot-Neutral-Selected-active-1-Large-Mobile-linux.png new file mode 100644 index 0000000000..9782cfc71f Binary files /dev/null and b/packages/orbit-components/src/Tag/Tag.ct.tsx-snapshots/visual-Tag-screenshot-Neutral-Selected-active-1-Large-Mobile-linux.png differ diff --git a/packages/orbit-components/src/Tag/Tag.ct.tsx-snapshots/visual-Tag-screenshot-Neutral-Selected-active-1-Medium-Mobile-linux.png b/packages/orbit-components/src/Tag/Tag.ct.tsx-snapshots/visual-Tag-screenshot-Neutral-Selected-active-1-Medium-Mobile-linux.png new file mode 100644 index 0000000000..9782cfc71f Binary files /dev/null and b/packages/orbit-components/src/Tag/Tag.ct.tsx-snapshots/visual-Tag-screenshot-Neutral-Selected-active-1-Medium-Mobile-linux.png differ diff --git a/packages/orbit-components/src/Tag/Tag.ct.tsx-snapshots/visual-Tag-screenshot-Neutral-Selected-active-1-Small-Mobile-linux.png b/packages/orbit-components/src/Tag/Tag.ct.tsx-snapshots/visual-Tag-screenshot-Neutral-Selected-active-1-Small-Mobile-linux.png new file mode 100644 index 0000000000..9782cfc71f Binary files /dev/null and b/packages/orbit-components/src/Tag/Tag.ct.tsx-snapshots/visual-Tag-screenshot-Neutral-Selected-active-1-Small-Mobile-linux.png differ diff --git a/packages/orbit-components/src/Tag/Tag.ct.tsx-snapshots/visual-Tag-screenshot-Neutral-Selected-active-1-Tablet-linux.png b/packages/orbit-components/src/Tag/Tag.ct.tsx-snapshots/visual-Tag-screenshot-Neutral-Selected-active-1-Tablet-linux.png new file mode 100644 index 0000000000..5c87e584d4 Binary files /dev/null and b/packages/orbit-components/src/Tag/Tag.ct.tsx-snapshots/visual-Tag-screenshot-Neutral-Selected-active-1-Tablet-linux.png differ diff --git a/packages/orbit-components/src/Tag/Tag.ct.tsx-snapshots/visual-Tag-screenshot-Neutral-Selected-focus-1-Desktop-linux.png b/packages/orbit-components/src/Tag/Tag.ct.tsx-snapshots/visual-Tag-screenshot-Neutral-Selected-focus-1-Desktop-linux.png new file mode 100644 index 0000000000..67b2d5c120 Binary files /dev/null and b/packages/orbit-components/src/Tag/Tag.ct.tsx-snapshots/visual-Tag-screenshot-Neutral-Selected-focus-1-Desktop-linux.png differ diff --git a/packages/orbit-components/src/Tag/Tag.ct.tsx-snapshots/visual-Tag-screenshot-Neutral-Selected-focus-1-Large-Desktop-linux.png b/packages/orbit-components/src/Tag/Tag.ct.tsx-snapshots/visual-Tag-screenshot-Neutral-Selected-focus-1-Large-Desktop-linux.png new file mode 100644 index 0000000000..67b2d5c120 Binary files /dev/null and b/packages/orbit-components/src/Tag/Tag.ct.tsx-snapshots/visual-Tag-screenshot-Neutral-Selected-focus-1-Large-Desktop-linux.png differ diff --git a/packages/orbit-components/src/Tag/Tag.ct.tsx-snapshots/visual-Tag-screenshot-Neutral-Selected-focus-1-Large-Mobile-linux.png b/packages/orbit-components/src/Tag/Tag.ct.tsx-snapshots/visual-Tag-screenshot-Neutral-Selected-focus-1-Large-Mobile-linux.png new file mode 100644 index 0000000000..75d5168b13 Binary files /dev/null and b/packages/orbit-components/src/Tag/Tag.ct.tsx-snapshots/visual-Tag-screenshot-Neutral-Selected-focus-1-Large-Mobile-linux.png differ diff --git a/packages/orbit-components/src/Tag/Tag.ct.tsx-snapshots/visual-Tag-screenshot-Neutral-Selected-focus-1-Medium-Mobile-linux.png b/packages/orbit-components/src/Tag/Tag.ct.tsx-snapshots/visual-Tag-screenshot-Neutral-Selected-focus-1-Medium-Mobile-linux.png new file mode 100644 index 0000000000..75d5168b13 Binary files /dev/null and b/packages/orbit-components/src/Tag/Tag.ct.tsx-snapshots/visual-Tag-screenshot-Neutral-Selected-focus-1-Medium-Mobile-linux.png differ diff --git a/packages/orbit-components/src/Tag/Tag.ct.tsx-snapshots/visual-Tag-screenshot-Neutral-Selected-focus-1-Small-Mobile-linux.png b/packages/orbit-components/src/Tag/Tag.ct.tsx-snapshots/visual-Tag-screenshot-Neutral-Selected-focus-1-Small-Mobile-linux.png new file mode 100644 index 0000000000..75d5168b13 Binary files /dev/null and b/packages/orbit-components/src/Tag/Tag.ct.tsx-snapshots/visual-Tag-screenshot-Neutral-Selected-focus-1-Small-Mobile-linux.png differ diff --git a/packages/orbit-components/src/Tag/Tag.ct.tsx-snapshots/visual-Tag-screenshot-Neutral-Selected-focus-1-Tablet-linux.png b/packages/orbit-components/src/Tag/Tag.ct.tsx-snapshots/visual-Tag-screenshot-Neutral-Selected-focus-1-Tablet-linux.png new file mode 100644 index 0000000000..608db4e237 Binary files /dev/null and b/packages/orbit-components/src/Tag/Tag.ct.tsx-snapshots/visual-Tag-screenshot-Neutral-Selected-focus-1-Tablet-linux.png differ diff --git a/packages/orbit-components/src/Tag/Tag.ct.tsx-snapshots/visual-Tag-screenshot-Neutral-Selected-focus-remove-button-1-Desktop-linux.png b/packages/orbit-components/src/Tag/Tag.ct.tsx-snapshots/visual-Tag-screenshot-Neutral-Selected-focus-remove-button-1-Desktop-linux.png new file mode 100644 index 0000000000..819d6df035 Binary files /dev/null and b/packages/orbit-components/src/Tag/Tag.ct.tsx-snapshots/visual-Tag-screenshot-Neutral-Selected-focus-remove-button-1-Desktop-linux.png differ diff --git a/packages/orbit-components/src/Tag/Tag.ct.tsx-snapshots/visual-Tag-screenshot-Neutral-Selected-focus-remove-button-1-Large-Desktop-linux.png b/packages/orbit-components/src/Tag/Tag.ct.tsx-snapshots/visual-Tag-screenshot-Neutral-Selected-focus-remove-button-1-Large-Desktop-linux.png new file mode 100644 index 0000000000..819d6df035 Binary files /dev/null and b/packages/orbit-components/src/Tag/Tag.ct.tsx-snapshots/visual-Tag-screenshot-Neutral-Selected-focus-remove-button-1-Large-Desktop-linux.png differ diff --git a/packages/orbit-components/src/Tag/Tag.ct.tsx-snapshots/visual-Tag-screenshot-Neutral-Selected-focus-remove-button-1-Large-Mobile-linux.png b/packages/orbit-components/src/Tag/Tag.ct.tsx-snapshots/visual-Tag-screenshot-Neutral-Selected-focus-remove-button-1-Large-Mobile-linux.png new file mode 100644 index 0000000000..fe0af41ae3 Binary files /dev/null and b/packages/orbit-components/src/Tag/Tag.ct.tsx-snapshots/visual-Tag-screenshot-Neutral-Selected-focus-remove-button-1-Large-Mobile-linux.png differ diff --git a/packages/orbit-components/src/Tag/Tag.ct.tsx-snapshots/visual-Tag-screenshot-Neutral-Selected-focus-remove-button-1-Medium-Mobile-linux.png b/packages/orbit-components/src/Tag/Tag.ct.tsx-snapshots/visual-Tag-screenshot-Neutral-Selected-focus-remove-button-1-Medium-Mobile-linux.png new file mode 100644 index 0000000000..fe0af41ae3 Binary files /dev/null and b/packages/orbit-components/src/Tag/Tag.ct.tsx-snapshots/visual-Tag-screenshot-Neutral-Selected-focus-remove-button-1-Medium-Mobile-linux.png differ diff --git a/packages/orbit-components/src/Tag/Tag.ct.tsx-snapshots/visual-Tag-screenshot-Neutral-Selected-focus-remove-button-1-Small-Mobile-linux.png b/packages/orbit-components/src/Tag/Tag.ct.tsx-snapshots/visual-Tag-screenshot-Neutral-Selected-focus-remove-button-1-Small-Mobile-linux.png new file mode 100644 index 0000000000..fe0af41ae3 Binary files /dev/null and b/packages/orbit-components/src/Tag/Tag.ct.tsx-snapshots/visual-Tag-screenshot-Neutral-Selected-focus-remove-button-1-Small-Mobile-linux.png differ diff --git a/packages/orbit-components/src/Tag/Tag.ct.tsx-snapshots/visual-Tag-screenshot-Neutral-Selected-focus-remove-button-1-Tablet-linux.png b/packages/orbit-components/src/Tag/Tag.ct.tsx-snapshots/visual-Tag-screenshot-Neutral-Selected-focus-remove-button-1-Tablet-linux.png new file mode 100644 index 0000000000..456f797bf6 Binary files /dev/null and b/packages/orbit-components/src/Tag/Tag.ct.tsx-snapshots/visual-Tag-screenshot-Neutral-Selected-focus-remove-button-1-Tablet-linux.png differ diff --git a/packages/orbit-components/src/Tag/Tag.ct.tsx-snapshots/visual-Tag-screenshot-Neutral-Selected-hover-1-Desktop-linux.png b/packages/orbit-components/src/Tag/Tag.ct.tsx-snapshots/visual-Tag-screenshot-Neutral-Selected-hover-1-Desktop-linux.png new file mode 100644 index 0000000000..9cdd458c9c Binary files /dev/null and b/packages/orbit-components/src/Tag/Tag.ct.tsx-snapshots/visual-Tag-screenshot-Neutral-Selected-hover-1-Desktop-linux.png differ diff --git a/packages/orbit-components/src/Tag/Tag.ct.tsx-snapshots/visual-Tag-screenshot-Neutral-Selected-hover-1-Large-Desktop-linux.png b/packages/orbit-components/src/Tag/Tag.ct.tsx-snapshots/visual-Tag-screenshot-Neutral-Selected-hover-1-Large-Desktop-linux.png new file mode 100644 index 0000000000..9cdd458c9c Binary files /dev/null and b/packages/orbit-components/src/Tag/Tag.ct.tsx-snapshots/visual-Tag-screenshot-Neutral-Selected-hover-1-Large-Desktop-linux.png differ diff --git a/packages/orbit-components/src/Tag/Tag.ct.tsx-snapshots/visual-Tag-screenshot-Neutral-Selected-hover-1-Large-Mobile-linux.png b/packages/orbit-components/src/Tag/Tag.ct.tsx-snapshots/visual-Tag-screenshot-Neutral-Selected-hover-1-Large-Mobile-linux.png new file mode 100644 index 0000000000..9782cfc71f Binary files /dev/null and b/packages/orbit-components/src/Tag/Tag.ct.tsx-snapshots/visual-Tag-screenshot-Neutral-Selected-hover-1-Large-Mobile-linux.png differ diff --git a/packages/orbit-components/src/Tag/Tag.ct.tsx-snapshots/visual-Tag-screenshot-Neutral-Selected-hover-1-Medium-Mobile-linux.png b/packages/orbit-components/src/Tag/Tag.ct.tsx-snapshots/visual-Tag-screenshot-Neutral-Selected-hover-1-Medium-Mobile-linux.png new file mode 100644 index 0000000000..9782cfc71f Binary files /dev/null and b/packages/orbit-components/src/Tag/Tag.ct.tsx-snapshots/visual-Tag-screenshot-Neutral-Selected-hover-1-Medium-Mobile-linux.png differ diff --git a/packages/orbit-components/src/Tag/Tag.ct.tsx-snapshots/visual-Tag-screenshot-Neutral-Selected-hover-1-Small-Mobile-linux.png b/packages/orbit-components/src/Tag/Tag.ct.tsx-snapshots/visual-Tag-screenshot-Neutral-Selected-hover-1-Small-Mobile-linux.png new file mode 100644 index 0000000000..9782cfc71f Binary files /dev/null and b/packages/orbit-components/src/Tag/Tag.ct.tsx-snapshots/visual-Tag-screenshot-Neutral-Selected-hover-1-Small-Mobile-linux.png differ diff --git a/packages/orbit-components/src/Tag/Tag.ct.tsx-snapshots/visual-Tag-screenshot-Neutral-Selected-hover-1-Tablet-linux.png b/packages/orbit-components/src/Tag/Tag.ct.tsx-snapshots/visual-Tag-screenshot-Neutral-Selected-hover-1-Tablet-linux.png new file mode 100644 index 0000000000..5c87e584d4 Binary files /dev/null and b/packages/orbit-components/src/Tag/Tag.ct.tsx-snapshots/visual-Tag-screenshot-Neutral-Selected-hover-1-Tablet-linux.png differ diff --git a/packages/orbit-components/src/Tag/Tag.ct.tsx-snapshots/visual-Tag-screenshot-Neutral-active-1-Desktop-linux.png b/packages/orbit-components/src/Tag/Tag.ct.tsx-snapshots/visual-Tag-screenshot-Neutral-active-1-Desktop-linux.png new file mode 100644 index 0000000000..2397031b28 Binary files /dev/null and b/packages/orbit-components/src/Tag/Tag.ct.tsx-snapshots/visual-Tag-screenshot-Neutral-active-1-Desktop-linux.png differ diff --git a/packages/orbit-components/src/Tag/Tag.ct.tsx-snapshots/visual-Tag-screenshot-Neutral-active-1-Large-Desktop-linux.png b/packages/orbit-components/src/Tag/Tag.ct.tsx-snapshots/visual-Tag-screenshot-Neutral-active-1-Large-Desktop-linux.png new file mode 100644 index 0000000000..2397031b28 Binary files /dev/null and b/packages/orbit-components/src/Tag/Tag.ct.tsx-snapshots/visual-Tag-screenshot-Neutral-active-1-Large-Desktop-linux.png differ diff --git a/packages/orbit-components/src/Tag/Tag.ct.tsx-snapshots/visual-Tag-screenshot-Neutral-active-1-Large-Mobile-linux.png b/packages/orbit-components/src/Tag/Tag.ct.tsx-snapshots/visual-Tag-screenshot-Neutral-active-1-Large-Mobile-linux.png new file mode 100644 index 0000000000..22fa52f2b7 Binary files /dev/null and b/packages/orbit-components/src/Tag/Tag.ct.tsx-snapshots/visual-Tag-screenshot-Neutral-active-1-Large-Mobile-linux.png differ diff --git a/packages/orbit-components/src/Tag/Tag.ct.tsx-snapshots/visual-Tag-screenshot-Neutral-active-1-Medium-Mobile-linux.png b/packages/orbit-components/src/Tag/Tag.ct.tsx-snapshots/visual-Tag-screenshot-Neutral-active-1-Medium-Mobile-linux.png new file mode 100644 index 0000000000..22fa52f2b7 Binary files /dev/null and b/packages/orbit-components/src/Tag/Tag.ct.tsx-snapshots/visual-Tag-screenshot-Neutral-active-1-Medium-Mobile-linux.png differ diff --git a/packages/orbit-components/src/Tag/Tag.ct.tsx-snapshots/visual-Tag-screenshot-Neutral-active-1-Small-Mobile-linux.png b/packages/orbit-components/src/Tag/Tag.ct.tsx-snapshots/visual-Tag-screenshot-Neutral-active-1-Small-Mobile-linux.png new file mode 100644 index 0000000000..22fa52f2b7 Binary files /dev/null and b/packages/orbit-components/src/Tag/Tag.ct.tsx-snapshots/visual-Tag-screenshot-Neutral-active-1-Small-Mobile-linux.png differ diff --git a/packages/orbit-components/src/Tag/Tag.ct.tsx-snapshots/visual-Tag-screenshot-Neutral-active-1-Tablet-linux.png b/packages/orbit-components/src/Tag/Tag.ct.tsx-snapshots/visual-Tag-screenshot-Neutral-active-1-Tablet-linux.png new file mode 100644 index 0000000000..0ebab5ab2d Binary files /dev/null and b/packages/orbit-components/src/Tag/Tag.ct.tsx-snapshots/visual-Tag-screenshot-Neutral-active-1-Tablet-linux.png differ diff --git a/packages/orbit-components/src/Tag/Tag.ct.tsx-snapshots/visual-Tag-screenshot-Neutral-focus-1-Desktop-linux.png b/packages/orbit-components/src/Tag/Tag.ct.tsx-snapshots/visual-Tag-screenshot-Neutral-focus-1-Desktop-linux.png new file mode 100644 index 0000000000..49560687a2 Binary files /dev/null and b/packages/orbit-components/src/Tag/Tag.ct.tsx-snapshots/visual-Tag-screenshot-Neutral-focus-1-Desktop-linux.png differ diff --git a/packages/orbit-components/src/Tag/Tag.ct.tsx-snapshots/visual-Tag-screenshot-Neutral-focus-1-Large-Desktop-linux.png b/packages/orbit-components/src/Tag/Tag.ct.tsx-snapshots/visual-Tag-screenshot-Neutral-focus-1-Large-Desktop-linux.png new file mode 100644 index 0000000000..49560687a2 Binary files /dev/null and b/packages/orbit-components/src/Tag/Tag.ct.tsx-snapshots/visual-Tag-screenshot-Neutral-focus-1-Large-Desktop-linux.png differ diff --git a/packages/orbit-components/src/Tag/Tag.ct.tsx-snapshots/visual-Tag-screenshot-Neutral-focus-1-Large-Mobile-linux.png b/packages/orbit-components/src/Tag/Tag.ct.tsx-snapshots/visual-Tag-screenshot-Neutral-focus-1-Large-Mobile-linux.png new file mode 100644 index 0000000000..1f8e810226 Binary files /dev/null and b/packages/orbit-components/src/Tag/Tag.ct.tsx-snapshots/visual-Tag-screenshot-Neutral-focus-1-Large-Mobile-linux.png differ diff --git a/packages/orbit-components/src/Tag/Tag.ct.tsx-snapshots/visual-Tag-screenshot-Neutral-focus-1-Medium-Mobile-linux.png b/packages/orbit-components/src/Tag/Tag.ct.tsx-snapshots/visual-Tag-screenshot-Neutral-focus-1-Medium-Mobile-linux.png new file mode 100644 index 0000000000..1f8e810226 Binary files /dev/null and b/packages/orbit-components/src/Tag/Tag.ct.tsx-snapshots/visual-Tag-screenshot-Neutral-focus-1-Medium-Mobile-linux.png differ diff --git a/packages/orbit-components/src/Tag/Tag.ct.tsx-snapshots/visual-Tag-screenshot-Neutral-focus-1-Small-Mobile-linux.png b/packages/orbit-components/src/Tag/Tag.ct.tsx-snapshots/visual-Tag-screenshot-Neutral-focus-1-Small-Mobile-linux.png new file mode 100644 index 0000000000..1f8e810226 Binary files /dev/null and b/packages/orbit-components/src/Tag/Tag.ct.tsx-snapshots/visual-Tag-screenshot-Neutral-focus-1-Small-Mobile-linux.png differ diff --git a/packages/orbit-components/src/Tag/Tag.ct.tsx-snapshots/visual-Tag-screenshot-Neutral-focus-1-Tablet-linux.png b/packages/orbit-components/src/Tag/Tag.ct.tsx-snapshots/visual-Tag-screenshot-Neutral-focus-1-Tablet-linux.png new file mode 100644 index 0000000000..2f10e69d0f Binary files /dev/null and b/packages/orbit-components/src/Tag/Tag.ct.tsx-snapshots/visual-Tag-screenshot-Neutral-focus-1-Tablet-linux.png differ diff --git a/packages/orbit-components/src/Tag/Tag.ct.tsx-snapshots/visual-Tag-screenshot-Neutral-focus-remove-button-1-Desktop-linux.png b/packages/orbit-components/src/Tag/Tag.ct.tsx-snapshots/visual-Tag-screenshot-Neutral-focus-remove-button-1-Desktop-linux.png new file mode 100644 index 0000000000..9789c09f64 Binary files /dev/null and b/packages/orbit-components/src/Tag/Tag.ct.tsx-snapshots/visual-Tag-screenshot-Neutral-focus-remove-button-1-Desktop-linux.png differ diff --git a/packages/orbit-components/src/Tag/Tag.ct.tsx-snapshots/visual-Tag-screenshot-Neutral-focus-remove-button-1-Large-Desktop-linux.png b/packages/orbit-components/src/Tag/Tag.ct.tsx-snapshots/visual-Tag-screenshot-Neutral-focus-remove-button-1-Large-Desktop-linux.png new file mode 100644 index 0000000000..9789c09f64 Binary files /dev/null and b/packages/orbit-components/src/Tag/Tag.ct.tsx-snapshots/visual-Tag-screenshot-Neutral-focus-remove-button-1-Large-Desktop-linux.png differ diff --git a/packages/orbit-components/src/Tag/Tag.ct.tsx-snapshots/visual-Tag-screenshot-Neutral-focus-remove-button-1-Large-Mobile-linux.png b/packages/orbit-components/src/Tag/Tag.ct.tsx-snapshots/visual-Tag-screenshot-Neutral-focus-remove-button-1-Large-Mobile-linux.png new file mode 100644 index 0000000000..cf7d9d4e0a Binary files /dev/null and b/packages/orbit-components/src/Tag/Tag.ct.tsx-snapshots/visual-Tag-screenshot-Neutral-focus-remove-button-1-Large-Mobile-linux.png differ diff --git a/packages/orbit-components/src/Tag/Tag.ct.tsx-snapshots/visual-Tag-screenshot-Neutral-focus-remove-button-1-Medium-Mobile-linux.png b/packages/orbit-components/src/Tag/Tag.ct.tsx-snapshots/visual-Tag-screenshot-Neutral-focus-remove-button-1-Medium-Mobile-linux.png new file mode 100644 index 0000000000..cf7d9d4e0a Binary files /dev/null and b/packages/orbit-components/src/Tag/Tag.ct.tsx-snapshots/visual-Tag-screenshot-Neutral-focus-remove-button-1-Medium-Mobile-linux.png differ diff --git a/packages/orbit-components/src/Tag/Tag.ct.tsx-snapshots/visual-Tag-screenshot-Neutral-focus-remove-button-1-Small-Mobile-linux.png b/packages/orbit-components/src/Tag/Tag.ct.tsx-snapshots/visual-Tag-screenshot-Neutral-focus-remove-button-1-Small-Mobile-linux.png new file mode 100644 index 0000000000..cf7d9d4e0a Binary files /dev/null and b/packages/orbit-components/src/Tag/Tag.ct.tsx-snapshots/visual-Tag-screenshot-Neutral-focus-remove-button-1-Small-Mobile-linux.png differ diff --git a/packages/orbit-components/src/Tag/Tag.ct.tsx-snapshots/visual-Tag-screenshot-Neutral-focus-remove-button-1-Tablet-linux.png b/packages/orbit-components/src/Tag/Tag.ct.tsx-snapshots/visual-Tag-screenshot-Neutral-focus-remove-button-1-Tablet-linux.png new file mode 100644 index 0000000000..a2a18273ef Binary files /dev/null and b/packages/orbit-components/src/Tag/Tag.ct.tsx-snapshots/visual-Tag-screenshot-Neutral-focus-remove-button-1-Tablet-linux.png differ diff --git a/packages/orbit-components/src/Tag/Tag.ct.tsx-snapshots/visual-Tag-screenshot-Neutral-hover-1-Desktop-linux.png b/packages/orbit-components/src/Tag/Tag.ct.tsx-snapshots/visual-Tag-screenshot-Neutral-hover-1-Desktop-linux.png new file mode 100644 index 0000000000..2397031b28 Binary files /dev/null and b/packages/orbit-components/src/Tag/Tag.ct.tsx-snapshots/visual-Tag-screenshot-Neutral-hover-1-Desktop-linux.png differ diff --git a/packages/orbit-components/src/Tag/Tag.ct.tsx-snapshots/visual-Tag-screenshot-Neutral-hover-1-Large-Desktop-linux.png b/packages/orbit-components/src/Tag/Tag.ct.tsx-snapshots/visual-Tag-screenshot-Neutral-hover-1-Large-Desktop-linux.png new file mode 100644 index 0000000000..2397031b28 Binary files /dev/null and b/packages/orbit-components/src/Tag/Tag.ct.tsx-snapshots/visual-Tag-screenshot-Neutral-hover-1-Large-Desktop-linux.png differ diff --git a/packages/orbit-components/src/Tag/Tag.ct.tsx-snapshots/visual-Tag-screenshot-Neutral-hover-1-Large-Mobile-linux.png b/packages/orbit-components/src/Tag/Tag.ct.tsx-snapshots/visual-Tag-screenshot-Neutral-hover-1-Large-Mobile-linux.png new file mode 100644 index 0000000000..22fa52f2b7 Binary files /dev/null and b/packages/orbit-components/src/Tag/Tag.ct.tsx-snapshots/visual-Tag-screenshot-Neutral-hover-1-Large-Mobile-linux.png differ diff --git a/packages/orbit-components/src/Tag/Tag.ct.tsx-snapshots/visual-Tag-screenshot-Neutral-hover-1-Medium-Mobile-linux.png b/packages/orbit-components/src/Tag/Tag.ct.tsx-snapshots/visual-Tag-screenshot-Neutral-hover-1-Medium-Mobile-linux.png new file mode 100644 index 0000000000..22fa52f2b7 Binary files /dev/null and b/packages/orbit-components/src/Tag/Tag.ct.tsx-snapshots/visual-Tag-screenshot-Neutral-hover-1-Medium-Mobile-linux.png differ diff --git a/packages/orbit-components/src/Tag/Tag.ct.tsx-snapshots/visual-Tag-screenshot-Neutral-hover-1-Small-Mobile-linux.png b/packages/orbit-components/src/Tag/Tag.ct.tsx-snapshots/visual-Tag-screenshot-Neutral-hover-1-Small-Mobile-linux.png new file mode 100644 index 0000000000..22fa52f2b7 Binary files /dev/null and b/packages/orbit-components/src/Tag/Tag.ct.tsx-snapshots/visual-Tag-screenshot-Neutral-hover-1-Small-Mobile-linux.png differ diff --git a/packages/orbit-components/src/Tag/Tag.ct.tsx-snapshots/visual-Tag-screenshot-Neutral-hover-1-Tablet-linux.png b/packages/orbit-components/src/Tag/Tag.ct.tsx-snapshots/visual-Tag-screenshot-Neutral-hover-1-Tablet-linux.png new file mode 100644 index 0000000000..0ebab5ab2d Binary files /dev/null and b/packages/orbit-components/src/Tag/Tag.ct.tsx-snapshots/visual-Tag-screenshot-Neutral-hover-1-Tablet-linux.png differ diff --git a/packages/orbit-components/src/Tag/Tag.ct.tsx-snapshots/visual-Tag-screenshot-Non-interactable-Colored-active-1-Desktop-linux.png b/packages/orbit-components/src/Tag/Tag.ct.tsx-snapshots/visual-Tag-screenshot-Non-interactable-Colored-active-1-Desktop-linux.png new file mode 100644 index 0000000000..1278526113 Binary files /dev/null and b/packages/orbit-components/src/Tag/Tag.ct.tsx-snapshots/visual-Tag-screenshot-Non-interactable-Colored-active-1-Desktop-linux.png differ diff --git a/packages/orbit-components/src/Tag/Tag.ct.tsx-snapshots/visual-Tag-screenshot-Non-interactable-Colored-active-1-Large-Desktop-linux.png b/packages/orbit-components/src/Tag/Tag.ct.tsx-snapshots/visual-Tag-screenshot-Non-interactable-Colored-active-1-Large-Desktop-linux.png new file mode 100644 index 0000000000..1278526113 Binary files /dev/null and b/packages/orbit-components/src/Tag/Tag.ct.tsx-snapshots/visual-Tag-screenshot-Non-interactable-Colored-active-1-Large-Desktop-linux.png differ diff --git a/packages/orbit-components/src/Tag/Tag.ct.tsx-snapshots/visual-Tag-screenshot-Non-interactable-Colored-active-1-Large-Mobile-linux.png b/packages/orbit-components/src/Tag/Tag.ct.tsx-snapshots/visual-Tag-screenshot-Non-interactable-Colored-active-1-Large-Mobile-linux.png new file mode 100644 index 0000000000..105384bd7f Binary files /dev/null and b/packages/orbit-components/src/Tag/Tag.ct.tsx-snapshots/visual-Tag-screenshot-Non-interactable-Colored-active-1-Large-Mobile-linux.png differ diff --git a/packages/orbit-components/src/Tag/Tag.ct.tsx-snapshots/visual-Tag-screenshot-Non-interactable-Colored-active-1-Medium-Mobile-linux.png b/packages/orbit-components/src/Tag/Tag.ct.tsx-snapshots/visual-Tag-screenshot-Non-interactable-Colored-active-1-Medium-Mobile-linux.png new file mode 100644 index 0000000000..105384bd7f Binary files /dev/null and b/packages/orbit-components/src/Tag/Tag.ct.tsx-snapshots/visual-Tag-screenshot-Non-interactable-Colored-active-1-Medium-Mobile-linux.png differ diff --git a/packages/orbit-components/src/Tag/Tag.ct.tsx-snapshots/visual-Tag-screenshot-Non-interactable-Colored-active-1-Small-Mobile-linux.png b/packages/orbit-components/src/Tag/Tag.ct.tsx-snapshots/visual-Tag-screenshot-Non-interactable-Colored-active-1-Small-Mobile-linux.png new file mode 100644 index 0000000000..105384bd7f Binary files /dev/null and b/packages/orbit-components/src/Tag/Tag.ct.tsx-snapshots/visual-Tag-screenshot-Non-interactable-Colored-active-1-Small-Mobile-linux.png differ diff --git a/packages/orbit-components/src/Tag/Tag.ct.tsx-snapshots/visual-Tag-screenshot-Non-interactable-Colored-active-1-Tablet-linux.png b/packages/orbit-components/src/Tag/Tag.ct.tsx-snapshots/visual-Tag-screenshot-Non-interactable-Colored-active-1-Tablet-linux.png new file mode 100644 index 0000000000..93676a5f6f Binary files /dev/null and b/packages/orbit-components/src/Tag/Tag.ct.tsx-snapshots/visual-Tag-screenshot-Non-interactable-Colored-active-1-Tablet-linux.png differ diff --git a/packages/orbit-components/src/Tag/Tag.ct.tsx-snapshots/visual-Tag-screenshot-Non-interactable-Colored-focus-1-Desktop-linux.png b/packages/orbit-components/src/Tag/Tag.ct.tsx-snapshots/visual-Tag-screenshot-Non-interactable-Colored-focus-1-Desktop-linux.png new file mode 100644 index 0000000000..1278526113 Binary files /dev/null and b/packages/orbit-components/src/Tag/Tag.ct.tsx-snapshots/visual-Tag-screenshot-Non-interactable-Colored-focus-1-Desktop-linux.png differ diff --git a/packages/orbit-components/src/Tag/Tag.ct.tsx-snapshots/visual-Tag-screenshot-Non-interactable-Colored-focus-1-Large-Desktop-linux.png b/packages/orbit-components/src/Tag/Tag.ct.tsx-snapshots/visual-Tag-screenshot-Non-interactable-Colored-focus-1-Large-Desktop-linux.png new file mode 100644 index 0000000000..1278526113 Binary files /dev/null and b/packages/orbit-components/src/Tag/Tag.ct.tsx-snapshots/visual-Tag-screenshot-Non-interactable-Colored-focus-1-Large-Desktop-linux.png differ diff --git a/packages/orbit-components/src/Tag/Tag.ct.tsx-snapshots/visual-Tag-screenshot-Non-interactable-Colored-focus-1-Large-Mobile-linux.png b/packages/orbit-components/src/Tag/Tag.ct.tsx-snapshots/visual-Tag-screenshot-Non-interactable-Colored-focus-1-Large-Mobile-linux.png new file mode 100644 index 0000000000..105384bd7f Binary files /dev/null and b/packages/orbit-components/src/Tag/Tag.ct.tsx-snapshots/visual-Tag-screenshot-Non-interactable-Colored-focus-1-Large-Mobile-linux.png differ diff --git a/packages/orbit-components/src/Tag/Tag.ct.tsx-snapshots/visual-Tag-screenshot-Non-interactable-Colored-focus-1-Medium-Mobile-linux.png b/packages/orbit-components/src/Tag/Tag.ct.tsx-snapshots/visual-Tag-screenshot-Non-interactable-Colored-focus-1-Medium-Mobile-linux.png new file mode 100644 index 0000000000..105384bd7f Binary files /dev/null and b/packages/orbit-components/src/Tag/Tag.ct.tsx-snapshots/visual-Tag-screenshot-Non-interactable-Colored-focus-1-Medium-Mobile-linux.png differ diff --git a/packages/orbit-components/src/Tag/Tag.ct.tsx-snapshots/visual-Tag-screenshot-Non-interactable-Colored-focus-1-Small-Mobile-linux.png b/packages/orbit-components/src/Tag/Tag.ct.tsx-snapshots/visual-Tag-screenshot-Non-interactable-Colored-focus-1-Small-Mobile-linux.png new file mode 100644 index 0000000000..105384bd7f Binary files /dev/null and b/packages/orbit-components/src/Tag/Tag.ct.tsx-snapshots/visual-Tag-screenshot-Non-interactable-Colored-focus-1-Small-Mobile-linux.png differ diff --git a/packages/orbit-components/src/Tag/Tag.ct.tsx-snapshots/visual-Tag-screenshot-Non-interactable-Colored-focus-1-Tablet-linux.png b/packages/orbit-components/src/Tag/Tag.ct.tsx-snapshots/visual-Tag-screenshot-Non-interactable-Colored-focus-1-Tablet-linux.png new file mode 100644 index 0000000000..93676a5f6f Binary files /dev/null and b/packages/orbit-components/src/Tag/Tag.ct.tsx-snapshots/visual-Tag-screenshot-Non-interactable-Colored-focus-1-Tablet-linux.png differ diff --git a/packages/orbit-components/src/Tag/Tag.ct.tsx-snapshots/visual-Tag-screenshot-Non-interactable-Colored-hover-1-Desktop-linux.png b/packages/orbit-components/src/Tag/Tag.ct.tsx-snapshots/visual-Tag-screenshot-Non-interactable-Colored-hover-1-Desktop-linux.png new file mode 100644 index 0000000000..1278526113 Binary files /dev/null and b/packages/orbit-components/src/Tag/Tag.ct.tsx-snapshots/visual-Tag-screenshot-Non-interactable-Colored-hover-1-Desktop-linux.png differ diff --git a/packages/orbit-components/src/Tag/Tag.ct.tsx-snapshots/visual-Tag-screenshot-Non-interactable-Colored-hover-1-Large-Desktop-linux.png b/packages/orbit-components/src/Tag/Tag.ct.tsx-snapshots/visual-Tag-screenshot-Non-interactable-Colored-hover-1-Large-Desktop-linux.png new file mode 100644 index 0000000000..1278526113 Binary files /dev/null and b/packages/orbit-components/src/Tag/Tag.ct.tsx-snapshots/visual-Tag-screenshot-Non-interactable-Colored-hover-1-Large-Desktop-linux.png differ diff --git a/packages/orbit-components/src/Tag/Tag.ct.tsx-snapshots/visual-Tag-screenshot-Non-interactable-Colored-hover-1-Large-Mobile-linux.png b/packages/orbit-components/src/Tag/Tag.ct.tsx-snapshots/visual-Tag-screenshot-Non-interactable-Colored-hover-1-Large-Mobile-linux.png new file mode 100644 index 0000000000..105384bd7f Binary files /dev/null and b/packages/orbit-components/src/Tag/Tag.ct.tsx-snapshots/visual-Tag-screenshot-Non-interactable-Colored-hover-1-Large-Mobile-linux.png differ diff --git a/packages/orbit-components/src/Tag/Tag.ct.tsx-snapshots/visual-Tag-screenshot-Non-interactable-Colored-hover-1-Medium-Mobile-linux.png b/packages/orbit-components/src/Tag/Tag.ct.tsx-snapshots/visual-Tag-screenshot-Non-interactable-Colored-hover-1-Medium-Mobile-linux.png new file mode 100644 index 0000000000..105384bd7f Binary files /dev/null and b/packages/orbit-components/src/Tag/Tag.ct.tsx-snapshots/visual-Tag-screenshot-Non-interactable-Colored-hover-1-Medium-Mobile-linux.png differ diff --git a/packages/orbit-components/src/Tag/Tag.ct.tsx-snapshots/visual-Tag-screenshot-Non-interactable-Colored-hover-1-Small-Mobile-linux.png b/packages/orbit-components/src/Tag/Tag.ct.tsx-snapshots/visual-Tag-screenshot-Non-interactable-Colored-hover-1-Small-Mobile-linux.png new file mode 100644 index 0000000000..105384bd7f Binary files /dev/null and b/packages/orbit-components/src/Tag/Tag.ct.tsx-snapshots/visual-Tag-screenshot-Non-interactable-Colored-hover-1-Small-Mobile-linux.png differ diff --git a/packages/orbit-components/src/Tag/Tag.ct.tsx-snapshots/visual-Tag-screenshot-Non-interactable-Colored-hover-1-Tablet-linux.png b/packages/orbit-components/src/Tag/Tag.ct.tsx-snapshots/visual-Tag-screenshot-Non-interactable-Colored-hover-1-Tablet-linux.png new file mode 100644 index 0000000000..93676a5f6f Binary files /dev/null and b/packages/orbit-components/src/Tag/Tag.ct.tsx-snapshots/visual-Tag-screenshot-Non-interactable-Colored-hover-1-Tablet-linux.png differ diff --git a/packages/orbit-components/src/Tag/Tag.ct.tsx-snapshots/visual-Tag-screenshot-Non-interactable-Neutral-active-1-Desktop-linux.png b/packages/orbit-components/src/Tag/Tag.ct.tsx-snapshots/visual-Tag-screenshot-Non-interactable-Neutral-active-1-Desktop-linux.png new file mode 100644 index 0000000000..f21cc60cde Binary files /dev/null and b/packages/orbit-components/src/Tag/Tag.ct.tsx-snapshots/visual-Tag-screenshot-Non-interactable-Neutral-active-1-Desktop-linux.png differ diff --git a/packages/orbit-components/src/Tag/Tag.ct.tsx-snapshots/visual-Tag-screenshot-Non-interactable-Neutral-active-1-Large-Desktop-linux.png b/packages/orbit-components/src/Tag/Tag.ct.tsx-snapshots/visual-Tag-screenshot-Non-interactable-Neutral-active-1-Large-Desktop-linux.png new file mode 100644 index 0000000000..f21cc60cde Binary files /dev/null and b/packages/orbit-components/src/Tag/Tag.ct.tsx-snapshots/visual-Tag-screenshot-Non-interactable-Neutral-active-1-Large-Desktop-linux.png differ diff --git a/packages/orbit-components/src/Tag/Tag.ct.tsx-snapshots/visual-Tag-screenshot-Non-interactable-Neutral-active-1-Large-Mobile-linux.png b/packages/orbit-components/src/Tag/Tag.ct.tsx-snapshots/visual-Tag-screenshot-Non-interactable-Neutral-active-1-Large-Mobile-linux.png new file mode 100644 index 0000000000..f04373977f Binary files /dev/null and b/packages/orbit-components/src/Tag/Tag.ct.tsx-snapshots/visual-Tag-screenshot-Non-interactable-Neutral-active-1-Large-Mobile-linux.png differ diff --git a/packages/orbit-components/src/Tag/Tag.ct.tsx-snapshots/visual-Tag-screenshot-Non-interactable-Neutral-active-1-Medium-Mobile-linux.png b/packages/orbit-components/src/Tag/Tag.ct.tsx-snapshots/visual-Tag-screenshot-Non-interactable-Neutral-active-1-Medium-Mobile-linux.png new file mode 100644 index 0000000000..f04373977f Binary files /dev/null and b/packages/orbit-components/src/Tag/Tag.ct.tsx-snapshots/visual-Tag-screenshot-Non-interactable-Neutral-active-1-Medium-Mobile-linux.png differ diff --git a/packages/orbit-components/src/Tag/Tag.ct.tsx-snapshots/visual-Tag-screenshot-Non-interactable-Neutral-active-1-Small-Mobile-linux.png b/packages/orbit-components/src/Tag/Tag.ct.tsx-snapshots/visual-Tag-screenshot-Non-interactable-Neutral-active-1-Small-Mobile-linux.png new file mode 100644 index 0000000000..f04373977f Binary files /dev/null and b/packages/orbit-components/src/Tag/Tag.ct.tsx-snapshots/visual-Tag-screenshot-Non-interactable-Neutral-active-1-Small-Mobile-linux.png differ diff --git a/packages/orbit-components/src/Tag/Tag.ct.tsx-snapshots/visual-Tag-screenshot-Non-interactable-Neutral-active-1-Tablet-linux.png b/packages/orbit-components/src/Tag/Tag.ct.tsx-snapshots/visual-Tag-screenshot-Non-interactable-Neutral-active-1-Tablet-linux.png new file mode 100644 index 0000000000..aabbaa79ab Binary files /dev/null and b/packages/orbit-components/src/Tag/Tag.ct.tsx-snapshots/visual-Tag-screenshot-Non-interactable-Neutral-active-1-Tablet-linux.png differ diff --git a/packages/orbit-components/src/Tag/Tag.ct.tsx-snapshots/visual-Tag-screenshot-Non-interactable-Neutral-focus-1-Desktop-linux.png b/packages/orbit-components/src/Tag/Tag.ct.tsx-snapshots/visual-Tag-screenshot-Non-interactable-Neutral-focus-1-Desktop-linux.png new file mode 100644 index 0000000000..f21cc60cde Binary files /dev/null and b/packages/orbit-components/src/Tag/Tag.ct.tsx-snapshots/visual-Tag-screenshot-Non-interactable-Neutral-focus-1-Desktop-linux.png differ diff --git a/packages/orbit-components/src/Tag/Tag.ct.tsx-snapshots/visual-Tag-screenshot-Non-interactable-Neutral-focus-1-Large-Desktop-linux.png b/packages/orbit-components/src/Tag/Tag.ct.tsx-snapshots/visual-Tag-screenshot-Non-interactable-Neutral-focus-1-Large-Desktop-linux.png new file mode 100644 index 0000000000..f21cc60cde Binary files /dev/null and b/packages/orbit-components/src/Tag/Tag.ct.tsx-snapshots/visual-Tag-screenshot-Non-interactable-Neutral-focus-1-Large-Desktop-linux.png differ diff --git a/packages/orbit-components/src/Tag/Tag.ct.tsx-snapshots/visual-Tag-screenshot-Non-interactable-Neutral-focus-1-Large-Mobile-linux.png b/packages/orbit-components/src/Tag/Tag.ct.tsx-snapshots/visual-Tag-screenshot-Non-interactable-Neutral-focus-1-Large-Mobile-linux.png new file mode 100644 index 0000000000..f04373977f Binary files /dev/null and b/packages/orbit-components/src/Tag/Tag.ct.tsx-snapshots/visual-Tag-screenshot-Non-interactable-Neutral-focus-1-Large-Mobile-linux.png differ diff --git a/packages/orbit-components/src/Tag/Tag.ct.tsx-snapshots/visual-Tag-screenshot-Non-interactable-Neutral-focus-1-Medium-Mobile-linux.png b/packages/orbit-components/src/Tag/Tag.ct.tsx-snapshots/visual-Tag-screenshot-Non-interactable-Neutral-focus-1-Medium-Mobile-linux.png new file mode 100644 index 0000000000..f04373977f Binary files /dev/null and b/packages/orbit-components/src/Tag/Tag.ct.tsx-snapshots/visual-Tag-screenshot-Non-interactable-Neutral-focus-1-Medium-Mobile-linux.png differ diff --git a/packages/orbit-components/src/Tag/Tag.ct.tsx-snapshots/visual-Tag-screenshot-Non-interactable-Neutral-focus-1-Small-Mobile-linux.png b/packages/orbit-components/src/Tag/Tag.ct.tsx-snapshots/visual-Tag-screenshot-Non-interactable-Neutral-focus-1-Small-Mobile-linux.png new file mode 100644 index 0000000000..f04373977f Binary files /dev/null and b/packages/orbit-components/src/Tag/Tag.ct.tsx-snapshots/visual-Tag-screenshot-Non-interactable-Neutral-focus-1-Small-Mobile-linux.png differ diff --git a/packages/orbit-components/src/Tag/Tag.ct.tsx-snapshots/visual-Tag-screenshot-Non-interactable-Neutral-focus-1-Tablet-linux.png b/packages/orbit-components/src/Tag/Tag.ct.tsx-snapshots/visual-Tag-screenshot-Non-interactable-Neutral-focus-1-Tablet-linux.png new file mode 100644 index 0000000000..aabbaa79ab Binary files /dev/null and b/packages/orbit-components/src/Tag/Tag.ct.tsx-snapshots/visual-Tag-screenshot-Non-interactable-Neutral-focus-1-Tablet-linux.png differ diff --git a/packages/orbit-components/src/Tag/Tag.ct.tsx-snapshots/visual-Tag-screenshot-Non-interactable-Neutral-hover-1-Desktop-linux.png b/packages/orbit-components/src/Tag/Tag.ct.tsx-snapshots/visual-Tag-screenshot-Non-interactable-Neutral-hover-1-Desktop-linux.png new file mode 100644 index 0000000000..f21cc60cde Binary files /dev/null and b/packages/orbit-components/src/Tag/Tag.ct.tsx-snapshots/visual-Tag-screenshot-Non-interactable-Neutral-hover-1-Desktop-linux.png differ diff --git a/packages/orbit-components/src/Tag/Tag.ct.tsx-snapshots/visual-Tag-screenshot-Non-interactable-Neutral-hover-1-Large-Desktop-linux.png b/packages/orbit-components/src/Tag/Tag.ct.tsx-snapshots/visual-Tag-screenshot-Non-interactable-Neutral-hover-1-Large-Desktop-linux.png new file mode 100644 index 0000000000..f21cc60cde Binary files /dev/null and b/packages/orbit-components/src/Tag/Tag.ct.tsx-snapshots/visual-Tag-screenshot-Non-interactable-Neutral-hover-1-Large-Desktop-linux.png differ diff --git a/packages/orbit-components/src/Tag/Tag.ct.tsx-snapshots/visual-Tag-screenshot-Non-interactable-Neutral-hover-1-Large-Mobile-linux.png b/packages/orbit-components/src/Tag/Tag.ct.tsx-snapshots/visual-Tag-screenshot-Non-interactable-Neutral-hover-1-Large-Mobile-linux.png new file mode 100644 index 0000000000..f04373977f Binary files /dev/null and b/packages/orbit-components/src/Tag/Tag.ct.tsx-snapshots/visual-Tag-screenshot-Non-interactable-Neutral-hover-1-Large-Mobile-linux.png differ diff --git a/packages/orbit-components/src/Tag/Tag.ct.tsx-snapshots/visual-Tag-screenshot-Non-interactable-Neutral-hover-1-Medium-Mobile-linux.png b/packages/orbit-components/src/Tag/Tag.ct.tsx-snapshots/visual-Tag-screenshot-Non-interactable-Neutral-hover-1-Medium-Mobile-linux.png new file mode 100644 index 0000000000..f04373977f Binary files /dev/null and b/packages/orbit-components/src/Tag/Tag.ct.tsx-snapshots/visual-Tag-screenshot-Non-interactable-Neutral-hover-1-Medium-Mobile-linux.png differ diff --git a/packages/orbit-components/src/Tag/Tag.ct.tsx-snapshots/visual-Tag-screenshot-Non-interactable-Neutral-hover-1-Small-Mobile-linux.png b/packages/orbit-components/src/Tag/Tag.ct.tsx-snapshots/visual-Tag-screenshot-Non-interactable-Neutral-hover-1-Small-Mobile-linux.png new file mode 100644 index 0000000000..f04373977f Binary files /dev/null and b/packages/orbit-components/src/Tag/Tag.ct.tsx-snapshots/visual-Tag-screenshot-Non-interactable-Neutral-hover-1-Small-Mobile-linux.png differ diff --git a/packages/orbit-components/src/Tag/Tag.ct.tsx-snapshots/visual-Tag-screenshot-Non-interactable-Neutral-hover-1-Tablet-linux.png b/packages/orbit-components/src/Tag/Tag.ct.tsx-snapshots/visual-Tag-screenshot-Non-interactable-Neutral-hover-1-Tablet-linux.png new file mode 100644 index 0000000000..aabbaa79ab Binary files /dev/null and b/packages/orbit-components/src/Tag/Tag.ct.tsx-snapshots/visual-Tag-screenshot-Non-interactable-Neutral-hover-1-Tablet-linux.png differ diff --git a/packages/orbit-components/src/Tag/Tag.ct.tsx-snapshots/visual-Tag-screenshot-general-1-Desktop-linux.png b/packages/orbit-components/src/Tag/Tag.ct.tsx-snapshots/visual-Tag-screenshot-general-1-Desktop-linux.png new file mode 100644 index 0000000000..38cc6cce6b Binary files /dev/null and b/packages/orbit-components/src/Tag/Tag.ct.tsx-snapshots/visual-Tag-screenshot-general-1-Desktop-linux.png differ diff --git a/packages/orbit-components/src/Tag/Tag.ct.tsx-snapshots/visual-Tag-screenshot-general-1-Large-Desktop-linux.png b/packages/orbit-components/src/Tag/Tag.ct.tsx-snapshots/visual-Tag-screenshot-general-1-Large-Desktop-linux.png new file mode 100644 index 0000000000..8d41554d5f Binary files /dev/null and b/packages/orbit-components/src/Tag/Tag.ct.tsx-snapshots/visual-Tag-screenshot-general-1-Large-Desktop-linux.png differ diff --git a/packages/orbit-components/src/Tag/Tag.ct.tsx-snapshots/visual-Tag-screenshot-general-1-Large-Mobile-linux.png b/packages/orbit-components/src/Tag/Tag.ct.tsx-snapshots/visual-Tag-screenshot-general-1-Large-Mobile-linux.png new file mode 100644 index 0000000000..9704d05fdd Binary files /dev/null and b/packages/orbit-components/src/Tag/Tag.ct.tsx-snapshots/visual-Tag-screenshot-general-1-Large-Mobile-linux.png differ diff --git a/packages/orbit-components/src/Tag/Tag.ct.tsx-snapshots/visual-Tag-screenshot-general-1-Medium-Mobile-linux.png b/packages/orbit-components/src/Tag/Tag.ct.tsx-snapshots/visual-Tag-screenshot-general-1-Medium-Mobile-linux.png new file mode 100644 index 0000000000..4d204b5a7d Binary files /dev/null and b/packages/orbit-components/src/Tag/Tag.ct.tsx-snapshots/visual-Tag-screenshot-general-1-Medium-Mobile-linux.png differ diff --git a/packages/orbit-components/src/Tag/Tag.ct.tsx-snapshots/visual-Tag-screenshot-general-1-Small-Mobile-linux.png b/packages/orbit-components/src/Tag/Tag.ct.tsx-snapshots/visual-Tag-screenshot-general-1-Small-Mobile-linux.png new file mode 100644 index 0000000000..77170e7098 Binary files /dev/null and b/packages/orbit-components/src/Tag/Tag.ct.tsx-snapshots/visual-Tag-screenshot-general-1-Small-Mobile-linux.png differ diff --git a/packages/orbit-components/src/Tag/Tag.ct.tsx-snapshots/visual-Tag-screenshot-general-1-Tablet-linux.png b/packages/orbit-components/src/Tag/Tag.ct.tsx-snapshots/visual-Tag-screenshot-general-1-Tablet-linux.png new file mode 100644 index 0000000000..4fe93dfe00 Binary files /dev/null and b/packages/orbit-components/src/Tag/Tag.ct.tsx-snapshots/visual-Tag-screenshot-general-1-Tablet-linux.png differ