diff --git a/.github/CODEOWNERS b/.github/CODEOWNERS
index e01f888748..9b5f0107db 100644
--- a/.github/CODEOWNERS
+++ b/.github/CODEOWNERS
@@ -19,7 +19,7 @@
/.github/ @pylapp
/OUDS/ @pylapp @ludovic35
-/Showcase/ @pylapp @ludovic35
+/DesignToolbox/ @pylapp @ludovic35
/docs_release/ @pylapp @ludovic35
diff --git a/.github/DEVELOP.md b/.github/DEVELOP.md
index 2897abc755..e157c2fa46 100644
--- a/.github/DEVELOP.md
+++ b/.github/DEVELOP.md
@@ -1,7 +1,7 @@
# Developer guide
- [Technical preconditions](#technical-preconditions)
-- [Build showcase demo app](#build-showcase-demo-app)
+- [Build Design System Toolbox](#build-design-system-toolbox)
- [Documentation](#documentation)
- [Run tests](#run-tests)
* [Unit tests for OUDS Swift package](#unit-tests-for-ouds-swift-package)
@@ -21,7 +21,7 @@
## Technical preconditions
You should check wether or not you have the tools in use in the project like _Fastlane_, _SwiftLint_, _SwiftFormat_, etc.
-You can have a look for example in the **THIRD\_PARTY.md** file which lists any dependencies and tools we use at different levels (SDK, showcase app, projects).
+You can have a look for example in the **THIRD\_PARTY.md** file which lists any dependencies and tools we use at different levels (SDK, design system toolbox app, projects).
Have a look on the locks file to know which versions we are using (*Podfile*, *Podfile.lock*, *Packages.swift*, *Package.resolved*, *Gemfile*, *Gemfile.lock*).
If some tools are missing, pick the suitable command line below and check versions:
@@ -80,14 +80,14 @@ We use also for our GitLab CI runners **Xcode 16**, we suggest you use this vers
**Xcode 16** and **Swift 6** are used for this project. You must use this configuration.
-## Build showcase demo app
+## Build Design System Toolbox
To build the demo application follow those steps:
-1. `cd Showcase`
+1. `cd DesignToolbox`
2. `bundle exec pod install`
-3. Open *Showcase.xcworkspace*
-4. Select *Showcase* scheme
+3. Open *DesignToolbox.xcworkspace*
+4. Select *DesignToolbox* scheme
5. Build and run the Application on your device ou simulator
## Documentation
@@ -106,10 +106,10 @@ the online version based on [_GitHub Pages_](https://pages.github.com/), this ve
To run these unit tests follow some steps:
-1. `cd Showcase`
+1. `cd DesignToolbox`
2. `bundle exec pod install`
-3. Open *Showcase.xcworkspace*
-4. Select *Showcase* scheme
+3. Open *DesignToolbox.xcworkspace*
+4. Select *DesignToolbox* scheme
5. Run tests (Product -> Test)
Unit tests care have been implemented for several reasons.
@@ -127,10 +127,10 @@ Finally, we ensure our themes can override any semantic tokens. Themes are in fa
To run these UI tests follow some steps:
-1. `cd Showcase`
+1. `cd DesignToolbox`
2. `bundle exec pod install`
-3. Open *Showcase.xcworkspace*
-4. Select *ShowcaseTests* scheme
+3. Open *DesignToolbox.xcworkspace*
+4. Select *DesignToolboxSnapshotsTests* scheme
5. Select *iPhone 16 Pro* simulator (the device used to tests and views rendering)
6. Run tests (Product -> Test)
@@ -141,7 +141,7 @@ Such tests here are used to as to be sure the look and feel of any components an
Any interface modifications require regenerating the illustrations using the tool, i.e. run the tests twice. The reference illustrations have already been saved within the project.
-**Note today because the showcase app is hosted in the repository, the tests assets are versioned too, thus the _Swift Package_ will be heavy when being downloaded because Xcode downloads the entire repository. When the showcase app will be extracted to an internal repository, the _Swift Package_ will be lighter**.
+**Note today because the demo app (Design System Toolbox) is hosted in the repository, the tests assets are versioned too, thus the _Swift Package_ will be heavy when being downloaded because Xcode downloads the entire repository. When the demo app app will be extracted to an internal repository, the _Swift Package_ will be lighter**.
The device under tests is a **simulator of iPhone 16 Pro, in portrait mode, with no a11y feature enabled, and a text size of 100% in english mode**.
@@ -150,12 +150,12 @@ The device under tests is a **simulator of iPhone 16 Pro, in portrait mode, with
1. Locate where are the reference images:
- In the Package directory, you will find the reference screenshots for the Orange and Inverse themes (Light/Dark), which will serve as comparison baselines.
```text
- OUDS -> Showcase -> ShowcaseTests -> __Snapshots__
+ OUDS -> DesignToolbox -> DesignToolboxSnapshotsTests -> __Snapshots__
```
2. Navigate to the project :
- Open your project in Xcode and go to a directory containing tests (e.g. here *OUDSTokensOpacityUITests*):
```shell
- Showcase -> ShowcaseTests -> OUDSTokensOpacityUITests -> OUDSTokensOpacityUITests.swift
+ DesignToolbox -> DesignToolboxSnapshotsTests -> OUDSTokensOpacityUITests -> OUDSTokensOpacityUITests.swift
```
3. Open a test file (e.g. here *OUDSTokensOpacityUITests*):
- Open the file `OUDSTokensOpacityUITests.swift`.
@@ -183,8 +183,8 @@ The snapshot tool fetched the reference image to compare it against the current
- In Xcode go to :
- ```shell
- ShowcaseTests -> ShowcaseTests/ShowcaseTests
+ ```text
+ DesignToolboxSnapshotsTests -> DesignToolboxSnapshotsTests/DesignToolboxSnapshotsTests
```
@@ -207,15 +207,15 @@ The project contains several custom build phases so as to automatize several ste
1. _SwiftLint_ will run the linter on the sources
-Note that sources headers are defined in *IDETemplateMacros.plist* inside *Showcase/Showcase.xcworkspace/xcshareddata*
+Note that sources headers are defined in *IDETemplateMacros.plist* inside *DesignToolbox/DesignToolbox.xcworkspace/xcshareddata*
## Targets
The Xcode project contains two targets:
-1. _Showcase_ for the demo application
+1. _DesignToolbox_ for the demo application
2. _Periphery_ to look for dead code in the source code
-3. _ShowcaseTests_ for UI tests in demo app
+3. _DesignToolboxSnapshotsTests_ for UI tests in demo app
## Certificates, profiles and identifiers
diff --git a/.github/workflows/build-and-test.yml b/.github/workflows/build-and-test.yml
index 3dae1d9081..956fbc85d2 100644
--- a/.github/workflows/build-and-test.yml
+++ b/.github/workflows/build-and-test.yml
@@ -55,7 +55,7 @@ jobs:
- name: Build demo app
run: |
- cd Showcase
+ cd DesignToolbox
bundle exec fastlane buildDebugApp
# Test the library with unit tests
@@ -80,7 +80,7 @@ jobs:
- name: Run unit tests on demo app
run: |
- cd Showcase
+ cd DesignToolbox
bundle exec pod install
bundle exec fastlane ios test
@@ -106,7 +106,7 @@ jobs:
- name: Run UI-based unit tests on demo app
run: |
- cd Showcase
+ cd DesignToolbox
bundle exec pod install
bundle exec fastlane test_ui
continue-on-error: true # See https://github.com/Orange-OpenSource/ouds-ios/issues/305
diff --git a/.gitignore b/.gitignore
index 39a2eced5a..bf47501370 100644
--- a/.gitignore
+++ b/.gitignore
@@ -20,15 +20,15 @@
/Brewfile.lock.json
# Produced by CocoaPods
-/Showcase/Pods/
+/DesignToolbox/Pods/
# Produced by Xcode
-/Showcase/Showcase.xcodeproj/xcuserdata/
-/Showcase/Showcase.xcworkspace/xcuserdata/
+/DesignToolbox/DesignToolbox.xcodeproj/xcuserdata/
+/DesignToolbox/DesignToolbox.xcworkspace/xcuserdata/
/DerivedData/
# Produced by Fastlane
-/Showcase/build/
+/DesignToolbox/build/
# Produced by Swift Package Manager
/.swiftpm/xcode/xcshareddata/
diff --git a/.swiftlint.yml b/.swiftlint.yml
index ea7d6b2448..dce9e64fcc 100644
--- a/.swiftlint.yml
+++ b/.swiftlint.yml
@@ -22,17 +22,17 @@ strict: true
included:
- OUDS
-- Showcase
+- DesignToolbox
# ========
# Excluded
# ========
excluded:
-- Showcase/Showcase/Info.plist
-- Showcase/Showcase/Resources
-- Showcase/Pods
-- Showcase/DerivedData
+- DesignToolbox/DesignToolbox/Info.plist
+- DesignToolbox/DesignToolbox/Resources
+- DesignToolbox/Pods
+- DesignToolbox/DerivedData
# ==============
# Disabled rules
diff --git a/CHANGELOG.md b/CHANGELOG.md
index bbbd7ba029..337f464a39 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -18,9 +18,10 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
### Changed
-- [DemoApp] Update size screen ([#284](https://github.com/Orange-OpenSource/ouds-ios/issues/284))
+- [DesignToolbox] Rename demo app "Showcase" to "DesignToolbox" ([#85](https://github.com/Orange-OpenSource/ouds-ios/issues/85))
+- [DesignToolbox] Update size screen ([#284](https://github.com/Orange-OpenSource/ouds-ios/issues/284))
- [Library] Change stroke style for `BorderModifier`
-- [DemoApp] Update colors and some refactoring ([#354](https://github.com/Orange-OpenSource/ouds-ios/issues/354))
+- [DesignToolbox] Update colors and some refactoring ([#354](https://github.com/Orange-OpenSource/ouds-ios/issues/354))
- [Library] Theme initialization flow ([#393](https://github.com/Orange-OpenSource/ouds-ios/issues/393))
## [0.9.0](https://github.com/Orange-OpenSource/ouds-ios/compare/0.8.0...0.9.0) - 2025-01-09
@@ -37,7 +38,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
- [Library] Rename color semantic tokens `colorOpacityInvisibleBlack*` to `colorOpacityTransparent*`
- [Library] Update color tokens and size tokens (tokenator *20250108083200*, tokens *v24.12.17*, tokens *v24.12.18*)
- [Library] Add details about API versions in documentation ([#374](https://github.com/Orange-OpenSource/ouds-ios/issues/374))
-- [DemoApp] Update show code text ([#361](https://github.com/Orange-OpenSource/ouds-ios/issues/361))
+- [DesignToolbox] Update show code text ([#361](https://github.com/Orange-OpenSource/ouds-ios/issues/361))
### Removed
@@ -48,7 +49,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
### Added
- [Library] New architecture with tokens provider ([#79](https://github.com/Orange-OpenSource/ouds-ios/issues/79))
-- [DemoApp] Prepare new architecture to add components illustration ([#328](https://github.com/Orange-OpenSource/ouds-ios/issues/328))
+- [DesignToolbox] Prepare new architecture to add components illustration ([#328](https://github.com/Orange-OpenSource/ouds-ios/issues/328))
### Changed
@@ -70,7 +71,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
- [Library] Rename any `sizeIcon**` size semantic tokens applying "T-shirt sizes" template
- [Library] Update `ElevationSemanticTokens` and `ColorRawTokens` tokens (tokenator *20241204111249*)
- [Library] Rename any `colorTransparent*` color semantic tokens to `colorOpacity*`
-- [DemoApp] Reactor UI test to use theme in environment ([#299](https://github.com/Orange-OpenSource/ouds-ios/issues/299))
+- [DesignToolbox] Reactor UI test to use theme in environment ([#299](https://github.com/Orange-OpenSource/ouds-ios/issues/299))
### Removed
@@ -82,19 +83,19 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
### Added
-- [DemoApp] Add code sample for tokens usages in token pages ([#283](https://github.com/Orange-OpenSource/ouds-ios/issues/283))
+- [DesignToolbox] Add code sample for tokens usages in token pages ([#283](https://github.com/Orange-OpenSource/ouds-ios/issues/283))
- [Library] Color some new semantic tokens `colorContentStatus*`, `colorContentOnBrand*`, `colorContentOnStatus*`, `colorGradient*`, `colorBorder*`, `colorContentOnAction*`
- [Tool] Add UI tests in CI/CD pipelines ([#298](https://github.com/Orange-OpenSource/ouds-ios/issues/298))
-- [DemoApp] Add more UI tests on demo app ([#154](https://github.com/Orange-OpenSource/ouds-ios/issues/154))
+- [DesignToolbox] Add more UI tests on demo app ([#154](https://github.com/Orange-OpenSource/ouds-ios/issues/154))
### Changed
-- [DemoApp] Update space tokens screen ([#275](https://github.com/Orange-OpenSource/ouds-ios/issues/275))
+- [DesignToolbox] Update space tokens screen ([#275](https://github.com/Orange-OpenSource/ouds-ios/issues/275))
- [Library] Update `BorderRawTokens` and `BorderSemanticTokens` tokens (tokenator *20241204110708*)
- [Library] Update `GridSemanticTokens` tokens (tokenator *20241129080807*)
- [Library] Types `GridExtraCompactSemanticToken`, `GridCompactSemanticToken` and `GridRegularSemanticToken` replaced by `GridSemanticToken` to make tokenator updates integration easier
- [Library] Update `GridRawTokens` tokens (tokenator *20241128161629*)
-- [DemoApp] Update color tokens screen
+- [DesignToolbox] Update color tokens screen
- [Library] Update `ColorSemanticTokens` tokens (tokenator *20241127112301*)
- [Library] Update `SpaceSemanticTokens` tokens (tokenator *20241127074206*)
- [Library] Update `SizeSemanticTokens` with rename of tokens (tokenator *20241126134156*)
@@ -112,15 +113,15 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
### Fixed
-- [DemoApp] Fix VoiceOver issue with element grouping in presentation tokens and update accessibility statement ([#212](https://github.com/Orange-OpenSource/ouds-ios/issues/285))
+- [DesignToolbox] Fix VoiceOver issue with element grouping in presentation tokens and update accessibility statement ([#212](https://github.com/Orange-OpenSource/ouds-ios/issues/285))
- [Library] Warning issues for DocC catalogs ([#293](https://github.com/Orange-OpenSource/ouds-ios/issues/293))
## [0.6.0](https://github.com/Orange-OpenSource/ouds-ios/compare/0.5.0...0.6.0) - 2024-11-15
### Added
-- [DemoApp] Update color screen to add a border on color illustration square ([#280](https://github.com/Orange-OpenSource/ouds-ios/issues/280))
-- [DemoApp] Add grid tokens screen in demo app ([#151](https://github.com/Orange-OpenSource/ouds-ios/issues/151))
+- [DesignToolbox] Update color screen to add a border on color illustration square ([#280](https://github.com/Orange-OpenSource/ouds-ios/issues/280))
+- [DesignToolbox] Add grid tokens screen in demo app ([#151](https://github.com/Orange-OpenSource/ouds-ios/issues/151))
- [Tool] GitHub Action to run SwiftLint for *main* and *develop* branches
### Changed
@@ -130,23 +131,23 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
- [Tool] Update `json` gem from 2.7.2 to 2.8.2 ([#286](https://github.com/Orange-OpenSource/ouds-ios/issues/286))
- [Tool] Update `swiftformat/cli` from 0.54.3 to 0.54.6 ([#286](https://github.com/Orange-OpenSource/ouds-ios/issues/286))
- [Tool] Update `Fastlane` from 2.223.1 to 2.225.0 ([#286](https://github.com/Orange-OpenSource/ouds-ios/issues/286))
-- [DemoApp] Update accessibility statement usage and instructions ([#278](https://github.com/Orange-OpenSource/ouds-ios/issues/278))
+- [DesignToolbox] Update accessibility statement usage and instructions ([#278](https://github.com/Orange-OpenSource/ouds-ios/issues/278))
### Fixed
-- [DemoApp] Add missing accessibility label for images ([#212](https://github.com/Orange-OpenSource/ouds-ios/issues/212))
-- [DemoApp] Fix text sizes when dynamic type is used (a11y) ([#247](https://github.com/Orange-OpenSource/ouds-ios/issues/247))
+- [DesignToolbox] Add missing accessibility label for images ([#212](https://github.com/Orange-OpenSource/ouds-ios/issues/212))
+- [DesignToolbox] Fix text sizes when dynamic type is used (a11y) ([#247](https://github.com/Orange-OpenSource/ouds-ios/issues/247))
## [0.5.0](https://github.com/Orange-OpenSource/ouds-ios/compare/0.4.1...0.5.0) - 2024-10-31
### Added
-- [DemoApp] App icons for debug, alpha, beta and production releases ([#140](https://github.com/Orange-OpenSource/ouds-ios/issues/140))
+- [DesignToolbox] App icons for debug, alpha, beta and production releases ([#140](https://github.com/Orange-OpenSource/ouds-ios/issues/140))
- [Tool] GitHub Actions workflow for CI/CD ([#256](https://github.com/Orange-OpenSource/ouds-ios/issues/256))
-- [DemoApp] Add new tokens in size tokens page ([#245](https://github.com/Orange-OpenSource/ouds-ios/issues/245))
+- [DesignToolbox] Add new tokens in size tokens page ([#245](https://github.com/Orange-OpenSource/ouds-ios/issues/245))
- [Library] Semantic token `borderWidthFocusInset` (value of `borderWidth100`) ([#207](https://github.com/Orange-OpenSource/ouds-ios/issues/207), [#241](https://github.com/Orange-OpenSource/ouds-ios/issues/241))
- [Library] Semantic token `fontWeightCode` ([#242](https://github.com/Orange-OpenSource/ouds-ios/issues/242))
-- [DemoApp] Update space tokens screen with all categories ([#178](https://github.com/Orange-OpenSource/ouds-ios/issues/178))
+- [DesignToolbox] Update space tokens screen with all categories ([#178](https://github.com/Orange-OpenSource/ouds-ios/issues/178))
### Changed
@@ -184,9 +185,9 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
### Fixed
-- [DemoApp] Update typography screen to use right color on token name ([#213](https://github.com/Orange-OpenSource/ouds-ios/issues/213))
-- [DemoApp] Remove duplicated section in color page for content on background values ([#236](https://github.com/Orange-OpenSource/ouds-ios/issues/236))
-- [DemoApp] Hide from Voice Over decorative image in theme selector (a11y)
+- [DesignToolbox] Update typography screen to use right color on token name ([#213](https://github.com/Orange-OpenSource/ouds-ios/issues/213))
+- [DesignToolbox] Remove duplicated section in color page for content on background values ([#236](https://github.com/Orange-OpenSource/ouds-ios/issues/236))
+- [DesignToolbox] Hide from Voice Over decorative image in theme selector (a11y)
### Security
@@ -196,21 +197,21 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
### Fixed
-- [DemoApp] App crash on color token page opening ([#215](https://github.com/Orange-OpenSource/ouds-ios/issues/215))
+- [DesignToolbox] App crash on color token page opening ([#215](https://github.com/Orange-OpenSource/ouds-ios/issues/215))
## [0.4.0](https://github.com/Orange-OpenSource/ouds-ios/compare/0.3.0...0.4.0) - 2024-10-18
### Added
-- [DemoApp] Update opacity screen with new design ([#200](https://github.com/Orange-OpenSource/ouds-ios/issues/200))
-- [DemoApp] Add color tokens screen in demo app ([#152](https://github.com/Orange-OpenSource/ouds-ios/issues/152))
+- [DesignToolbox] Update opacity screen with new design ([#200](https://github.com/Orange-OpenSource/ouds-ios/issues/200))
+- [DesignToolbox] Add color tokens screen in demo app ([#152](https://github.com/Orange-OpenSource/ouds-ios/issues/152))
- [Library] Add semantic tokens `spacePaddingInlineTallest`, `spacePaddingBlockTallest`, `spaceColumnGapTaller`, `spaceColumnGapWithArrowShortest`, `spaceRowGapShortest` (Figjam final synchronization of October 16th)
- [Library] Add semantic color tokens ([#124](https://github.com/Orange-OpenSource/ouds-ios/issues/124))
-- [DemoApp] Fix some design issues and mutualize some UI elements ([#189](https://github.com/Orange-OpenSource/ouds-ios/issues/189))
-- [DemoApp] Add sizing tokens screen in demo app ([#150](https://github.com/Orange-OpenSource/ouds-ios/issues/150))
-- [DemoApp] Add spacing tokens screen in demo app ([#149](https://github.com/Orange-OpenSource/ouds-ios/issues/149))
+- [DesignToolbox] Fix some design issues and mutualize some UI elements ([#189](https://github.com/Orange-OpenSource/ouds-ios/issues/189))
+- [DesignToolbox] Add sizing tokens screen in demo app ([#150](https://github.com/Orange-OpenSource/ouds-ios/issues/150))
+- [DesignToolbox] Add spacing tokens screen in demo app ([#149](https://github.com/Orange-OpenSource/ouds-ios/issues/149))
- [Library] Add color semantic tokens `colorContentTransparentDefault`, `colorBorderTransparentDefault` and `colorBackgroundTransparentDefault` (October 8th) ([#177](https://github.com/Orange-OpenSource/ouds-ios/issues/177))
-- [DemoApp] On opacity screen, add a border around the view showing the opacity ([#157](https://github.com/Orange-OpenSource/ouds-ios/issues/157))
+- [DesignToolbox] On opacity screen, add a border around the view showing the opacity ([#157](https://github.com/Orange-OpenSource/ouds-ios/issues/157))
### Changed
@@ -218,7 +219,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
- [Library] Update of semantic grid tokens `gridExtraCompactColumnCount`, `gridCompactColumnGap`, `gridRegularColumnGap` (Figjam final synchronization of October 16th)
- [Library] Update of semantic elevation token `elevationStickyNavigationScrolled` (Figjam final synchronization of October 16th)
- [Library] Update of semantic color tokens, semantic sizing tokens (Figjam final synchronization of October 16th)
-- [Library/DemoApp] Updates SwiftLint rules, fix linter warnings ([#143](https://github.com/Orange-OpenSource/ouds-ios/issues/143))
+- [Library/DesignToolbox] Updates SwiftLint rules, fix linter warnings ([#143](https://github.com/Orange-OpenSource/ouds-ios/issues/143))
- [Tool] Update the templates for GitHub issues
- [Tool] Improve script for documentation generation ([#168](https://github.com/Orange-OpenSource/ouds-ios/issues/168))
- [Library] Rename raw brand-specific color tokens in Orange theme (no use of "brand" word) ([#179](https://github.com/Orange-OpenSource/ouds-ios/issues/179))
@@ -255,7 +256,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
- [Library] Add color semantic tokens `colorBackgroundStatusNeutral`, some `OnBackgroundEmphasized`, `colorBackgroundAction`, `colorBackgroundAlways`, `colorContent` variants
- [Library] Add typography semantic tokens for font letter spacing
-- [DemoApp] Create token section (Border, Typography, Elevation, Opacity) ([#120](https://github.com/Orange-OpenSource/ouds-ios/issues/120))
+- [DesignToolbox] Create token section (Border, Typography, Elevation, Opacity) ([#120](https://github.com/Orange-OpenSource/ouds-ios/issues/120))
- [Library] Unit tests for multiple tokens
- [Library] Add color semantic composite tokens embeding light and dark modes values
- [Library] Add spacing semantic tokens "huge" and "jumbo"
@@ -307,7 +308,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
### Added
- [Tests] Add UI regression tests using snapshot comparisons with *swift-snapshot-testing* tool ([#78](https://github.com/Orange-OpenSource/ouds-ios/issues/78))
-- [DemoApp] Display fake components for elevation rendering tests
+- [DesignToolbox] Display fake components for elevation rendering tests
- [Library] A theme can now override the custom font family
- [Tests] Add more unit tests for theme overriding and raw tokens controls
- [Library] Add and update raw and semantic grid tokens ([#40](https://github.com/Orange-OpenSource/ouds-ios/issues/40))
@@ -322,11 +323,11 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
### Changed
- [Library] Split raws, semantics and components tokens definitions and also values, composites and type aliases
-- [Showcase] Improve Fastlane alpha build notifications
+- [DesignToolbox] Improve Fastlane alpha build notifications
- [Library] Do not store blur value in elevation semantic tokens
- [Library] Change type aliases for X and Y offsets of elevations tokens
- [Library] Update border semantic tokens values ([#106](https://github.com/Orange-OpenSource/ouds-ios/issues/106))
-- [Showcase] Add fake components for demo and tokens tests
+- [DesignToolbox] Add fake components for demo and tokens tests
- [Library] Remove spread value for elevation tokens
- [Library] Remove paragraph spacing tokens for typography
- [Library] Term "fluid" has been replaced by "adaptable" in spacing semantic tokens
@@ -387,10 +388,10 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
- [Library] Add raw tokens and semantic tokens for border ([#30](https://github.com/Orange-OpenSource/ouds-ios/issues/30))
- [Library] Define Swift Package architecture of library and tokens (raw and semantic) ([#33](https://github.com/Orange-OpenSource/ouds-ios/issues/33))
- [Library] Define Swift Package library for OUDS ([#46](https://github.com/Orange-OpenSource/ouds-ios/issues/46))
-- [Showcase] Publication of comment on issues about new alpha build upload on TestFlight ([#56](https://github.com/Orange-OpenSource/ouds-ios/issues/56))
-- [Showcase] Distribute demo app development version ([#12](https://github.com/Orange-OpenSource/ouds-ios/issues/12))
-- [Showcase] Distribute demo app for feature validation ([#13](https://github.com/Orange-OpenSource/ouds-ios/issues/13))
-- [Showcase] Create the basic architecture of the demo application ([#6](https://github.com/Orange-OpenSource/ouds-ios/issues/6))
+- [DesignToolbox] Publication of comment on issues about new alpha build upload on TestFlight ([#56](https://github.com/Orange-OpenSource/ouds-ios/issues/56))
+- [DesignToolbox] Distribute demo app development version ([#12](https://github.com/Orange-OpenSource/ouds-ios/issues/12))
+- [DesignToolbox] Distribute demo app for feature validation ([#13](https://github.com/Orange-OpenSource/ouds-ios/issues/13))
+- [DesignToolbox] Create the basic architecture of the demo application ([#6](https://github.com/Orange-OpenSource/ouds-ios/issues/6))
### Changed
diff --git a/Showcase/Showcase.xcodeproj/project.pbxproj b/DesignToolbox/DesignToolbox.xcodeproj/project.pbxproj
similarity index 80%
rename from Showcase/Showcase.xcodeproj/project.pbxproj
rename to DesignToolbox/DesignToolbox.xcodeproj/project.pbxproj
index 1dba351887..846b54b8dc 100644
--- a/Showcase/Showcase.xcodeproj/project.pbxproj
+++ b/DesignToolbox/DesignToolbox.xcodeproj/project.pbxproj
@@ -26,18 +26,6 @@
070C35662C7762B90029C6A8 /* OUDSModules in Frameworks */ = {isa = PBXBuildFile; productRef = 070C35652C7762B90029C6A8 /* OUDSModules */; };
070DF8B12CDD07F20043D558 /* GrisTokenPage.swift in Sources */ = {isa = PBXBuildFile; fileRef = 070DF8AF2CDD07F20043D558 /* GrisTokenPage.swift */; };
070DF8B22CDD07F20043D558 /* GridTokenElement.swift in Sources */ = {isa = PBXBuildFile; fileRef = 070DF8AE2CDD07F20043D558 /* GridTokenElement.swift */; };
- 072141042D02F33300B7B9C6 /* ShowcaseTokenIllustration.swift in Sources */ = {isa = PBXBuildFile; fileRef = 072141012D02F33300B7B9C6 /* ShowcaseTokenIllustration.swift */; };
- 072141052D02F33300B7B9C6 /* ShowcaseTokkenIllustrationBackground.swift in Sources */ = {isa = PBXBuildFile; fileRef = 072141022D02F33300B7B9C6 /* ShowcaseTokkenIllustrationBackground.swift */; };
- 072141062D02F33300B7B9C6 /* ShowcaseTokenIllustration.swift in Sources */ = {isa = PBXBuildFile; fileRef = 072141012D02F33300B7B9C6 /* ShowcaseTokenIllustration.swift */; };
- 072141072D02F33300B7B9C6 /* ShowcaseTokkenIllustrationBackground.swift in Sources */ = {isa = PBXBuildFile; fileRef = 072141022D02F33300B7B9C6 /* ShowcaseTokkenIllustrationBackground.swift */; };
- 0721410D2D02F3F200B7B9C6 /* ShowcaseElement.swift in Sources */ = {isa = PBXBuildFile; fileRef = 072141082D02F3F200B7B9C6 /* ShowcaseElement.swift */; };
- 0721410E2D02F3F200B7B9C6 /* ShowcaseElementsPage.swift in Sources */ = {isa = PBXBuildFile; fileRef = 0721410A2D02F3F200B7B9C6 /* ShowcaseElementsPage.swift */; };
- 0721410F2D02F3F200B7B9C6 /* ShowcaseElementPage.swift in Sources */ = {isa = PBXBuildFile; fileRef = 072141092D02F3F200B7B9C6 /* ShowcaseElementPage.swift */; };
- 072141102D02F3F200B7B9C6 /* ShowcaseVariantElement.swift in Sources */ = {isa = PBXBuildFile; fileRef = 0721410B2D02F3F200B7B9C6 /* ShowcaseVariantElement.swift */; };
- 072141112D02F3F200B7B9C6 /* ShowcaseElement.swift in Sources */ = {isa = PBXBuildFile; fileRef = 072141082D02F3F200B7B9C6 /* ShowcaseElement.swift */; };
- 072141122D02F3F200B7B9C6 /* ShowcaseElementsPage.swift in Sources */ = {isa = PBXBuildFile; fileRef = 0721410A2D02F3F200B7B9C6 /* ShowcaseElementsPage.swift */; };
- 072141132D02F3F200B7B9C6 /* ShowcaseElementPage.swift in Sources */ = {isa = PBXBuildFile; fileRef = 072141092D02F3F200B7B9C6 /* ShowcaseElementPage.swift */; };
- 072141142D02F3F200B7B9C6 /* ShowcaseVariantElement.swift in Sources */ = {isa = PBXBuildFile; fileRef = 0721410B2D02F3F200B7B9C6 /* ShowcaseVariantElement.swift */; };
072141192D02F52A00B7B9C6 /* ButtonPage.swift in Sources */ = {isa = PBXBuildFile; fileRef = 072141172D02F52A00B7B9C6 /* ButtonPage.swift */; };
0721411B2D02F52A00B7B9C6 /* ButtonElement.swift in Sources */ = {isa = PBXBuildFile; fileRef = 072141162D02F52A00B7B9C6 /* ButtonElement.swift */; };
0721411C2D02F52A00B7B9C6 /* ButtonPage.swift in Sources */ = {isa = PBXBuildFile; fileRef = 072141172D02F52A00B7B9C6 /* ButtonPage.swift */; };
@@ -55,22 +43,10 @@
075C71372CECC3D800B93FC3 /* SpacePaddingTokenIllustrations.swift in Sources */ = {isa = PBXBuildFile; fileRef = 075C71362CECC3D800B93FC3 /* SpacePaddingTokenIllustrations.swift */; };
075C71392CECC50F00B93FC3 /* SpaceBasicTokenIllustrations.swift in Sources */ = {isa = PBXBuildFile; fileRef = 075C71382CECC50F00B93FC3 /* SpaceBasicTokenIllustrations.swift */; };
075C713B2CECC7DA00B93FC3 /* SpaceGapTokenIllustrations.swift in Sources */ = {isa = PBXBuildFile; fileRef = 075C713A2CECC7DA00B93FC3 /* SpaceGapTokenIllustrations.swift */; };
- 0765A6D22D09C5E2005DAB51 /* FontTokenElement.swift in Sources */ = {isa = PBXBuildFile; fileRef = 0765A6CF2D09C5E2005DAB51 /* FontTokenElement.swift */; };
- 0765A6D32D09C5E2005DAB51 /* NamedFont.swift in Sources */ = {isa = PBXBuildFile; fileRef = 0765A6CC2D09C5E2005DAB51 /* NamedFont.swift */; };
- 0765A6D42D09C5E2005DAB51 /* FontTokenPage.swift in Sources */ = {isa = PBXBuildFile; fileRef = 0765A6D02D09C5E2005DAB51 /* FontTokenPage.swift */; };
- 0765A6D52D09C5E2005DAB51 /* View+Illustration.swift in Sources */ = {isa = PBXBuildFile; fileRef = 0765A6CD2D09C5E2005DAB51 /* View+Illustration.swift */; };
0765A6D62D09C5E2005DAB51 /* FontTokenElement.swift in Sources */ = {isa = PBXBuildFile; fileRef = 0765A6CF2D09C5E2005DAB51 /* FontTokenElement.swift */; };
0765A6D72D09C5E2005DAB51 /* NamedFont.swift in Sources */ = {isa = PBXBuildFile; fileRef = 0765A6CC2D09C5E2005DAB51 /* NamedFont.swift */; };
0765A6D82D09C5E2005DAB51 /* FontTokenPage.swift in Sources */ = {isa = PBXBuildFile; fileRef = 0765A6D02D09C5E2005DAB51 /* FontTokenPage.swift */; };
0765A6D92D09C5E2005DAB51 /* View+Illustration.swift in Sources */ = {isa = PBXBuildFile; fileRef = 0765A6CD2D09C5E2005DAB51 /* View+Illustration.swift */; };
- 0765A6DE2D09C680005DAB51 /* NamedColor+Overlay.swift in Sources */ = {isa = PBXBuildFile; fileRef = 0765A6DB2D09C680005DAB51 /* NamedColor+Overlay.swift */; };
- 0765A6DF2D09C680005DAB51 /* NamedColor+Repository.swift in Sources */ = {isa = PBXBuildFile; fileRef = 0765A6DC2D09C680005DAB51 /* NamedColor+Repository.swift */; };
- 0765A6E02D09C680005DAB51 /* NamedColor+Surface.swift in Sources */ = {isa = PBXBuildFile; fileRef = 0765A6DD2D09C680005DAB51 /* NamedColor+Surface.swift */; };
- 0765A6E12D09C680005DAB51 /* NamedColor+Opacity.swift in Sources */ = {isa = PBXBuildFile; fileRef = 0765A6DA2D09C680005DAB51 /* NamedColor+Opacity.swift */; };
- 0765A6E22D09C680005DAB51 /* NamedColor+Overlay.swift in Sources */ = {isa = PBXBuildFile; fileRef = 0765A6DB2D09C680005DAB51 /* NamedColor+Overlay.swift */; };
- 0765A6E32D09C680005DAB51 /* NamedColor+Repository.swift in Sources */ = {isa = PBXBuildFile; fileRef = 0765A6DC2D09C680005DAB51 /* NamedColor+Repository.swift */; };
- 0765A6E42D09C680005DAB51 /* NamedColor+Surface.swift in Sources */ = {isa = PBXBuildFile; fileRef = 0765A6DD2D09C680005DAB51 /* NamedColor+Surface.swift */; };
- 0765A6E52D09C680005DAB51 /* NamedColor+Opacity.swift in Sources */ = {isa = PBXBuildFile; fileRef = 0765A6DA2D09C680005DAB51 /* NamedColor+Opacity.swift */; };
0765B4942CC1597C00E69359 /* NamedColor+Background.swift in Sources */ = {isa = PBXBuildFile; fileRef = 0765B4932CC1597C00E69359 /* NamedColor+Background.swift */; };
0765B4962CC159F600E69359 /* NamedColor+Action.swift in Sources */ = {isa = PBXBuildFile; fileRef = 0765B4952CC159F600E69359 /* NamedColor+Action.swift */; };
0765B4982CC15A4000E69359 /* NamedColor+Always.swift in Sources */ = {isa = PBXBuildFile; fileRef = 0765B4972CC15A4000E69359 /* NamedColor+Always.swift */; };
@@ -84,7 +60,6 @@
077CCE592CB426090059CC28 /* DimensionTokenElement.swift in Sources */ = {isa = PBXBuildFile; fileRef = 077CCE542CB426090059CC28 /* DimensionTokenElement.swift */; };
0784B2712CCB86C500299C10 /* NamedSize+IconWithTypography.swift in Sources */ = {isa = PBXBuildFile; fileRef = 0784B26F2CCB86C500299C10 /* NamedSize+IconWithTypography.swift */; };
0784B2732CCB8CC800299C10 /* NamedSize+IconDecorative.swift in Sources */ = {isa = PBXBuildFile; fileRef = 0784B2722CCB8CC800299C10 /* NamedSize+IconDecorative.swift */; };
- 07C7F4AD2D391B440037E211 /* OUDSComponentButtonUITests.swift in Sources */ = {isa = PBXBuildFile; fileRef = 07C7F4AC2D391B440037E211 /* OUDSComponentButtonUITests.swift */; };
07CAE7682CEE20A600D6C5D1 /* SpaceTokenCommonIllustration.swift in Sources */ = {isa = PBXBuildFile; fileRef = 075C71322CEB743300B93FC3 /* SpaceTokenCommonIllustration.swift */; };
07CAE7692CEE20B200D6C5D1 /* SpaceGapTokenIllustrations.swift in Sources */ = {isa = PBXBuildFile; fileRef = 075C713A2CECC7DA00B93FC3 /* SpaceGapTokenIllustrations.swift */; };
07CAE76A2CEE20B200D6C5D1 /* SpacePaddingTokenIllustrations.swift in Sources */ = {isa = PBXBuildFile; fileRef = 075C71362CECC3D800B93FC3 /* SpacePaddingTokenIllustrations.swift */; };
@@ -105,9 +80,8 @@
07F0AFD82CFDB3CC00D334DD /* ComponentPage.swift in Sources */ = {isa = PBXBuildFile; fileRef = 07F0AFD62CFDB3C300D334DD /* ComponentPage.swift */; };
07F0AFDE2CFDD1FD00D334DD /* ComponentsPage.swift in Sources */ = {isa = PBXBuildFile; fileRef = 07F0AFDD2CFDD1FD00D334DD /* ComponentsPage.swift */; };
07F0AFDF2CFDD1FD00D334DD /* ComponentsPage.swift in Sources */ = {isa = PBXBuildFile; fileRef = 07F0AFDD2CFDD1FD00D334DD /* ComponentsPage.swift */; };
- 07F0AFE82CFE0FBD00D334DD /* ShowcaseConfiguration.swift in Sources */ = {isa = PBXBuildFile; fileRef = 07F0AFE72CFE0FBD00D334DD /* ShowcaseConfiguration.swift */; };
- 07F0AFE92CFE0FBD00D334DD /* ShowcaseConfiguration.swift in Sources */ = {isa = PBXBuildFile; fileRef = 07F0AFE72CFE0FBD00D334DD /* ShowcaseConfiguration.swift */; };
- 07F7533B2CC785620007450D /* ShowcaseSectionHeaderStyle.swift in Sources */ = {isa = PBXBuildFile; fileRef = 07F7533A2CC785620007450D /* ShowcaseSectionHeaderStyle.swift */; };
+ 07F0AFE82CFE0FBD00D334DD /* DesignToolboxConfiguration.swift in Sources */ = {isa = PBXBuildFile; fileRef = 07F0AFE72CFE0FBD00D334DD /* DesignToolboxConfiguration.swift */; };
+ 07F7533B2CC785620007450D /* DesignToolboxSectionHeaderStyle.swift in Sources */ = {isa = PBXBuildFile; fileRef = 07F7533A2CC785620007450D /* DesignToolboxSectionHeaderStyle.swift */; };
07F75A372CC644C80004F1AD /* NamedSpace+Scaled.swift in Sources */ = {isa = PBXBuildFile; fileRef = 07F75A362CC644C80004F1AD /* NamedSpace+Scaled.swift */; };
07F75A392CC6462D0004F1AD /* NamedSpace+Fixed.swift in Sources */ = {isa = PBXBuildFile; fileRef = 07F75A382CC6462D0004F1AD /* NamedSpace+Fixed.swift */; };
07F75A3B2CC651EB0004F1AD /* NameSpace+PaddingInline.swift in Sources */ = {isa = PBXBuildFile; fileRef = 07F75A3A2CC651EB0004F1AD /* NameSpace+PaddingInline.swift */; };
@@ -117,12 +91,51 @@
07F75A432CC654050004F1AD /* NameSpace+PaddingStack.swift in Sources */ = {isa = PBXBuildFile; fileRef = 07F75A422CC654050004F1AD /* NameSpace+PaddingStack.swift */; };
51087A7B2C46DF9F00160CCF /* Bundle+extension.swift in Sources */ = {isa = PBXBuildFile; fileRef = 51087A7A2C46DF9F00160CCF /* Bundle+extension.swift */; };
510A9CD02C5679A300430620 /* OUDSComponents in Frameworks */ = {isa = PBXBuildFile; productRef = 510A9CCF2C5679A300430620 /* OUDSComponents */; };
- 511926252D2F3B0B003ADC3E /* Card.swift in Sources */ = {isa = PBXBuildFile; fileRef = 073543102CA154DE001187EA /* Card.swift */; };
511926262D2F3B4A003ADC3E /* Colors.xcassets in Resources */ = {isa = PBXBuildFile; fileRef = 073543122CA1676C001187EA /* Colors.xcassets */; };
512364792C3D7B2D00572FD5 /* Podfile.lock in Resources */ = {isa = PBXBuildFile; fileRef = 512364782C3D7B2D00572FD5 /* Podfile.lock */; };
5123647B2C3D7B3500572FD5 /* Gemfile.lock in Resources */ = {isa = PBXBuildFile; fileRef = 5123647A2C3D7B3500572FD5 /* Gemfile.lock */; };
513AD9402C5AAADE0003253B /* OUDSTokensComponent in Frameworks */ = {isa = PBXBuildFile; productRef = 513AD93F2C5AAADE0003253B /* OUDSTokensComponent */; };
5149BADB2C3D6F4F000FA4BF /* Podfile in Resources */ = {isa = PBXBuildFile; fileRef = 5149BADA2C3D6F4F000FA4BF /* Podfile */; };
+ 519251EE2D020B8A003FD1F6 /* DesignToolboxElement.swift in Sources */ = {isa = PBXBuildFile; fileRef = 073543152CA17275001187EA /* DesignToolboxElement.swift */; };
+ 519251EF2D020B8A003FD1F6 /* DesignToolboxElementPage.swift in Sources */ = {isa = PBXBuildFile; fileRef = 51E3FF0A2CAFD9AE00F1BC59 /* DesignToolboxElementPage.swift */; };
+ 519251F02D020BA6003FD1F6 /* DesignToolboxElementsPage.swift in Sources */ = {isa = PBXBuildFile; fileRef = 51BD760F2C466FCF0033365D /* DesignToolboxElementsPage.swift */; };
+ 519251F32D020BD0003FD1F6 /* DesignToolboxVariantElement.swift in Sources */ = {isa = PBXBuildFile; fileRef = 077CCE5B2CB431C50059CC28 /* DesignToolboxVariantElement.swift */; };
+ 51952A672D3F9B9E0068B807 /* DesignToolboxConfiguration.swift in Sources */ = {isa = PBXBuildFile; fileRef = 07F0AFE72CFE0FBD00D334DD /* DesignToolboxConfiguration.swift */; };
+ 51952A682D3F9B9E0068B807 /* NamedColor+Opacity.swift in Sources */ = {isa = PBXBuildFile; fileRef = 0765A6DA2D09C680005DAB51 /* NamedColor+Opacity.swift */; };
+ 51952A692D3F9B9E0068B807 /* NamedColor+Overlay.swift in Sources */ = {isa = PBXBuildFile; fileRef = 0765A6DB2D09C680005DAB51 /* NamedColor+Overlay.swift */; };
+ 51952A6A2D3F9B9E0068B807 /* NamedColor+Repository.swift in Sources */ = {isa = PBXBuildFile; fileRef = 0765A6DC2D09C680005DAB51 /* NamedColor+Repository.swift */; };
+ 51952A6B2D3F9B9E0068B807 /* NamedColor+Surface.swift in Sources */ = {isa = PBXBuildFile; fileRef = 0765A6DD2D09C680005DAB51 /* NamedColor+Surface.swift */; };
+ 51952A712D3F9D720068B807 /* DesignToolboxTokenIllustration.swift in Sources */ = {isa = PBXBuildFile; fileRef = 51952A702D3F9D710068B807 /* DesignToolboxTokenIllustration.swift */; };
+ 51952A722D3F9D720068B807 /* DesignToolboxTokenIllustration.swift in Sources */ = {isa = PBXBuildFile; fileRef = 51952A702D3F9D710068B807 /* DesignToolboxTokenIllustration.swift */; };
+ 51952A742D3F9D850068B807 /* DesignToolboxTokenIllustrationBackground.swift in Sources */ = {isa = PBXBuildFile; fileRef = 51952A732D3F9D840068B807 /* DesignToolboxTokenIllustrationBackground.swift */; };
+ 51952A752D3F9D850068B807 /* DesignToolboxTokenIllustrationBackground.swift in Sources */ = {isa = PBXBuildFile; fileRef = 51952A732D3F9D840068B807 /* DesignToolboxTokenIllustrationBackground.swift */; };
+ 51952A7C2D3FA1510068B807 /* OUDSTokensBorderUITests.swift in Sources */ = {isa = PBXBuildFile; fileRef = 51952A7B2D3FA1490068B807 /* OUDSTokensBorderUITests.swift */; };
+ 51952A7F2D3FA17E0068B807 /* OUDSTokensColorUITests.swift in Sources */ = {isa = PBXBuildFile; fileRef = 51952A7E2D3FA1770068B807 /* OUDSTokensColorUITests.swift */; };
+ 51952A832D3FA1AC0068B807 /* OUDSTokensSizeUITests.swift in Sources */ = {isa = PBXBuildFile; fileRef = 51952A822D3FA1A70068B807 /* OUDSTokensSizeUITests.swift */; };
+ 51952A862D3FA1DB0068B807 /* OUDSTokensSpaceUITests.swift in Sources */ = {isa = PBXBuildFile; fileRef = 51952A852D3FA1D60068B807 /* OUDSTokensSpaceUITests.swift */; };
+ 51952A892D3FA20D0068B807 /* OUDSTokensElevationUITests.swift in Sources */ = {isa = PBXBuildFile; fileRef = 51952A882D3FA2060068B807 /* OUDSTokensElevationUITests.swift */; };
+ 51952A8C2D3FA22A0068B807 /* OUDSTokensFontUITests.swift in Sources */ = {isa = PBXBuildFile; fileRef = 51952A8B2D3FA2280068B807 /* OUDSTokensFontUITests.swift */; };
+ 51952A8F2D3FA24C0068B807 /* OUDSTokensOpacityUITests.swift in Sources */ = {isa = PBXBuildFile; fileRef = 51952A8E2D3FA2490068B807 /* OUDSTokensOpacityUITests.swift */; };
+ 51952A922D3FA2720068B807 /* OUDSComponentButtonUITests.swift in Sources */ = {isa = PBXBuildFile; fileRef = 51952A912D3FA26B0068B807 /* OUDSComponentButtonUITests.swift */; };
+ 51952A932D3FA2E30068B807 /* NamedFont.swift in Sources */ = {isa = PBXBuildFile; fileRef = 0765A6CC2D09C5E2005DAB51 /* NamedFont.swift */; };
+ 51952A942D3FA32E0068B807 /* DesignToolboxElementsPage.swift in Sources */ = {isa = PBXBuildFile; fileRef = 51BD760F2C466FCF0033365D /* DesignToolboxElementsPage.swift */; };
+ 51952A952D3FA32E0068B807 /* DesignToolboxVariantElement.swift in Sources */ = {isa = PBXBuildFile; fileRef = 077CCE5B2CB431C50059CC28 /* DesignToolboxVariantElement.swift */; };
+ 51952A962D3FA32E0068B807 /* View+Illustration.swift in Sources */ = {isa = PBXBuildFile; fileRef = 0765A6CD2D09C5E2005DAB51 /* View+Illustration.swift */; };
+ 51952A972D3FA32E0068B807 /* FontTokenElement.swift in Sources */ = {isa = PBXBuildFile; fileRef = 0765A6CF2D09C5E2005DAB51 /* FontTokenElement.swift */; };
+ 51952A982D3FA32E0068B807 /* FontTokenPage.swift in Sources */ = {isa = PBXBuildFile; fileRef = 0765A6D02D09C5E2005DAB51 /* FontTokenPage.swift */; };
+ 51952A992D3FA32E0068B807 /* BorderTokenElement.swift in Sources */ = {isa = PBXBuildFile; fileRef = 07CF42812CA45DA9000BD03E /* BorderTokenElement.swift */; };
+ 51952A9A2D3FA32E0068B807 /* NamedColor+Opacity.swift in Sources */ = {isa = PBXBuildFile; fileRef = 0765A6DA2D09C680005DAB51 /* NamedColor+Opacity.swift */; };
+ 51952A9B2D3FA32E0068B807 /* NamedColor+Overlay.swift in Sources */ = {isa = PBXBuildFile; fileRef = 0765A6DB2D09C680005DAB51 /* NamedColor+Overlay.swift */; };
+ 51952A9C2D3FA32E0068B807 /* NamedColor+Repository.swift in Sources */ = {isa = PBXBuildFile; fileRef = 0765A6DC2D09C680005DAB51 /* NamedColor+Repository.swift */; };
+ 51952A9D2D3FA32E0068B807 /* NamedColor+Surface.swift in Sources */ = {isa = PBXBuildFile; fileRef = 0765A6DD2D09C680005DAB51 /* NamedColor+Surface.swift */; };
+ 51952A9E2D3FA32E0068B807 /* ColorTokenElement.swift in Sources */ = {isa = PBXBuildFile; fileRef = 075114DE2CB7FDC200B8B759 /* ColorTokenElement.swift */; };
+ 51952A9F2D3FA32E0068B807 /* SpaceTokenElement.swift in Sources */ = {isa = PBXBuildFile; fileRef = 077CCE512CB426090059CC28 /* SpaceTokenElement.swift */; };
+ 51952AA02D3FA32E0068B807 /* DimensionTokenElement.swift in Sources */ = {isa = PBXBuildFile; fileRef = 077CCE542CB426090059CC28 /* DimensionTokenElement.swift */; };
+ 51952AA12D3FA32E0068B807 /* ElevationTokenElement.swift in Sources */ = {isa = PBXBuildFile; fileRef = 07CF42762CA3F4BE000BD03E /* ElevationTokenElement.swift */; };
+ 51952AA22D3FA32E0068B807 /* GridTokenElement.swift in Sources */ = {isa = PBXBuildFile; fileRef = 070DF8AE2CDD07F20043D558 /* GridTokenElement.swift */; };
+ 51952AA32D3FA32E0068B807 /* GrisTokenPage.swift in Sources */ = {isa = PBXBuildFile; fileRef = 070DF8AF2CDD07F20043D558 /* GrisTokenPage.swift */; };
+ 51952AA42D3FA32E0068B807 /* TokensPage.swift in Sources */ = {isa = PBXBuildFile; fileRef = 07CF426A2CA30728000BD03E /* TokensPage.swift */; };
+ 51952AA52D3FA3440068B807 /* Card.swift in Sources */ = {isa = PBXBuildFile; fileRef = 073543102CA154DE001187EA /* Card.swift */; };
51BC9DE72C6513F200EB2A11 /* OUDSFoundations in Frameworks */ = {isa = PBXBuildFile; productRef = 51BC9DE62C6513F200EB2A11 /* OUDSFoundations */; };
51BD76212C466FCF0033365D /* AboutPage.swift in Sources */ = {isa = PBXBuildFile; fileRef = 51BD760B2C466FCF0033365D /* AboutPage.swift */; };
51BD76242C466FCF0033365D /* Preview Assets.xcassets in Resources */ = {isa = PBXBuildFile; fileRef = 51BD76122C466FCF0033365D /* Preview Assets.xcassets */; };
@@ -130,12 +143,9 @@
51BD76262C466FCF0033365D /* about_privacy_policy.html in Resources */ = {isa = PBXBuildFile; fileRef = 51BD76172C466FCF0033365D /* about_privacy_policy.html */; };
51BD76282C466FCF0033365D /* Localizable.strings in Resources */ = {isa = PBXBuildFile; fileRef = 51BD761A2C466FCF0033365D /* Localizable.strings */; };
51BD76292C466FCF0033365D /* WebView.swift in Sources */ = {isa = PBXBuildFile; fileRef = 51BD761C2C466FCF0033365D /* WebView.swift */; };
- 51BD762A2C466FCF0033365D /* Showcase.swift in Sources */ = {isa = PBXBuildFile; fileRef = 51BD761E2C466FCF0033365D /* Showcase.swift */; };
+ 51BD762A2C466FCF0033365D /* DesignToolbox.swift in Sources */ = {isa = PBXBuildFile; fileRef = 51BD761E2C466FCF0033365D /* DesignToolbox.swift */; };
51BD762B2C466FCF0033365D /* MainView.swift in Sources */ = {isa = PBXBuildFile; fileRef = 51BD761F2C466FCF0033365D /* MainView.swift */; };
51EE2C682C5BF5DE00F634EC /* OUDSThemesOrange in Frameworks */ = {isa = PBXBuildFile; productRef = 51EE2C672C5BF5DE00F634EC /* OUDSThemesOrange */; };
- 6D17A21A2CCBE74C00C00512 /* OUDSTokensElevationUITests.swift in Sources */ = {isa = PBXBuildFile; fileRef = 6D17A2192CCBE74C00C00512 /* OUDSTokensElevationUITests.swift */; };
- 6D17A21C2CCBE7E200C00512 /* OUDSTokensOpacityUITests.swift in Sources */ = {isa = PBXBuildFile; fileRef = 6D17A21B2CCBE7E200C00512 /* OUDSTokensOpacityUITests.swift */; };
- 6D17A22A2CCBEF6700C00512 /* OUDSTokensColorUITests.swift in Sources */ = {isa = PBXBuildFile; fileRef = 6D17A2292CCBEF6700C00512 /* OUDSTokensColorUITests.swift */; };
6D17A22B2CCBF0E200C00512 /* ColorTokenPage.swift in Sources */ = {isa = PBXBuildFile; fileRef = 075114DF2CB7FDC200B8B759 /* ColorTokenPage.swift */; };
6D17A22C2CCBF12B00C00512 /* NamedColor+Action.swift in Sources */ = {isa = PBXBuildFile; fileRef = 0765B4952CC159F600E69359 /* NamedColor+Action.swift */; };
6D17A22D2CCBF12B00C00512 /* NamedColor+Always.swift in Sources */ = {isa = PBXBuildFile; fileRef = 0765B4972CC15A4000E69359 /* NamedColor+Always.swift */; };
@@ -146,8 +156,7 @@
6D17A2332CCBF12B00C00512 /* NamedColor+Decorative.swift in Sources */ = {isa = PBXBuildFile; fileRef = 0765B49D2CC15B7E00E69359 /* NamedColor+Decorative.swift */; };
6D17A2352CCF8DC300C00512 /* NamedColor.swift in Sources */ = {isa = PBXBuildFile; fileRef = 0765B4A52CC15C9D00E69359 /* NamedColor.swift */; };
6D24658E2CBEAC750023E359 /* BorderTokenPage.swift in Sources */ = {isa = PBXBuildFile; fileRef = 07CF42822CA45DA9000BD03E /* BorderTokenPage.swift */; };
- 6D3E872C2CCBE0A300AEB105 /* OUDSTokenBorderUITests.swift in Sources */ = {isa = PBXBuildFile; fileRef = 6D3E872B2CCBE0A300AEB105 /* OUDSTokenBorderUITests.swift */; };
- 6D43136D2CEF400D004E6886 /* ShowcaseCode.swift in Sources */ = {isa = PBXBuildFile; fileRef = 6DCC57E12CEB984D000F35F8 /* ShowcaseCode.swift */; };
+ 6D43136D2CEF400D004E6886 /* DesignToolboxCode.swift in Sources */ = {isa = PBXBuildFile; fileRef = 6DCC57E12CEB984D000F35F8 /* DesignToolboxCode.swift */; };
6D8F9C4F2CBFDC8B0078A10E /* EmptyState.swift in Sources */ = {isa = PBXBuildFile; fileRef = 074794792CAE882A0033C2D8 /* EmptyState.swift */; };
6D8F9C502CC14EBF0078A10E /* OpacityTokenPage.swift in Sources */ = {isa = PBXBuildFile; fileRef = 07CF427E2CA41325000BD03E /* OpacityTokenPage.swift */; };
6D8F9C522CC15F960078A10E /* ElevationTokenPage.swift in Sources */ = {isa = PBXBuildFile; fileRef = 07CF42772CA3F4BE000BD03E /* ElevationTokenPage.swift */; };
@@ -155,7 +164,7 @@
6D8F9C542CC160660078A10E /* SpaceTokenPage.swift in Sources */ = {isa = PBXBuildFile; fileRef = 077CCE522CB426090059CC28 /* SpaceTokenPage.swift */; };
6DB260DA2CD0EF9D0091F72E /* NamedSize+IconDecorative.swift in Sources */ = {isa = PBXBuildFile; fileRef = 0784B2722CCB8CC800299C10 /* NamedSize+IconDecorative.swift */; };
6DB260DB2CD0EFD90091F72E /* NamedSize+IconWithTypography.swift in Sources */ = {isa = PBXBuildFile; fileRef = 0784B26F2CCB86C500299C10 /* NamedSize+IconWithTypography.swift */; };
- 6DB260DC2CD0F0000091F72E /* ShowcaseSectionHeaderStyle.swift in Sources */ = {isa = PBXBuildFile; fileRef = 07F7533A2CC785620007450D /* ShowcaseSectionHeaderStyle.swift */; };
+ 6DB260DC2CD0F0000091F72E /* DesignToolboxSectionHeaderStyle.swift in Sources */ = {isa = PBXBuildFile; fileRef = 07F7533A2CC785620007450D /* DesignToolboxSectionHeaderStyle.swift */; };
6DB260DD2CD0F01F0091F72E /* NamedSpace+Scaled.swift in Sources */ = {isa = PBXBuildFile; fileRef = 07F75A362CC644C80004F1AD /* NamedSpace+Scaled.swift */; };
6DB260DF2CD0F0520091F72E /* NamedSpace+Fixed.swift in Sources */ = {isa = PBXBuildFile; fileRef = 07F75A382CC6462D0004F1AD /* NamedSpace+Fixed.swift */; };
6DB260E02CD0F0520091F72E /* NameSpace+PaddingInline.swift in Sources */ = {isa = PBXBuildFile; fileRef = 07F75A3A2CC651EB0004F1AD /* NameSpace+PaddingInline.swift */; };
@@ -163,10 +172,10 @@
6DB260E22CD0F0520091F72E /* NameSpace+PaddingStack.swift in Sources */ = {isa = PBXBuildFile; fileRef = 07F75A422CC654050004F1AD /* NameSpace+PaddingStack.swift */; };
6DB260E32CD0F0520091F72E /* NameSpace+GapInline.swift in Sources */ = {isa = PBXBuildFile; fileRef = 07F75A3E2CC653CD0004F1AD /* NameSpace+GapInline.swift */; };
6DB260E42CD0F0520091F72E /* NameSpace+GapStack.swift in Sources */ = {isa = PBXBuildFile; fileRef = 07F75A402CC653EB0004F1AD /* NameSpace+GapStack.swift */; };
- 6DCC57E22CEB984D000F35F8 /* ShowcaseCode.swift in Sources */ = {isa = PBXBuildFile; fileRef = 6DCC57E12CEB984D000F35F8 /* ShowcaseCode.swift */; };
+ 6DCC57E22CEB984D000F35F8 /* DesignToolboxCode.swift in Sources */ = {isa = PBXBuildFile; fileRef = 6DCC57E12CEB984D000F35F8 /* DesignToolboxCode.swift */; };
6DE5F47D2CC696120008E774 /* ThemeSelection.swift in Sources */ = {isa = PBXBuildFile; fileRef = 07CF42882CA55BC8000BD03E /* ThemeSelection.swift */; };
- 6DED17E92CD1143500584BC9 /* OUDSTokensSizeUITests.swift in Sources */ = {isa = PBXBuildFile; fileRef = 6DED17E82CD1143500584BC9 /* OUDSTokensSizeUITests.swift */; };
- 6DED17EB2CD114AD00584BC9 /* OUDSTokensSpaceUITests.swift in Sources */ = {isa = PBXBuildFile; fileRef = 6DED17EA2CD114AD00584BC9 /* OUDSTokensSpaceUITests.swift */; };
+ 6DED17EC2CD23D3A00584BC9 /* DesignToolboxElement.swift in Sources */ = {isa = PBXBuildFile; fileRef = 073543152CA17275001187EA /* DesignToolboxElement.swift */; };
+ 6DED17ED2CD23D5200584BC9 /* DesignToolboxElementPage.swift in Sources */ = {isa = PBXBuildFile; fileRef = 51E3FF0A2CAFD9AE00F1BC59 /* DesignToolboxElementPage.swift */; };
6DED17EE2CD23E5400584BC9 /* CardIllustration.swift in Sources */ = {isa = PBXBuildFile; fileRef = 07CF42732CA3EC58000BD03E /* CardIllustration.swift */; };
6DED17EF2CD25B2200584BC9 /* SizeTokenElement.swift in Sources */ = {isa = PBXBuildFile; fileRef = 075114D82CB7D28D00B8B759 /* SizeTokenElement.swift */; };
6DED17F12CD2641800584BC9 /* OpacityTokenElement.swift in Sources */ = {isa = PBXBuildFile; fileRef = 07CF427D2CA41325000BD03E /* OpacityTokenElement.swift */; };
@@ -179,7 +188,7 @@
6DFC20C12CE3D39D00F2EC33 /* accessibility_detail.html in Resources */ = {isa = PBXBuildFile; fileRef = 6DFC20BF2CE3D39D00F2EC33 /* accessibility_detail.html */; };
6DFC20C22CE3D39D00F2EC33 /* accessibility_result.xml in Resources */ = {isa = PBXBuildFile; fileRef = 6DFC20C02CE3D39D00F2EC33 /* accessibility_result.xml */; };
6DFC20C52CE3D9AE00F2EC33 /* DeclarationAccessibility in Frameworks */ = {isa = PBXBuildFile; productRef = 6DFC20C42CE3D9AE00F2EC33 /* DeclarationAccessibility */; };
- E537B9B66A6466473179DEE8 /* Pods_Showcase.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = E0D3017314DBC1733F8D0C79 /* Pods_Showcase.framework */; };
+ A5E69629240B3A88C139F084 /* Pods_DesignToolbox.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = A8ECF213874016985FA405A3 /* Pods_DesignToolbox.framework */; };
/* End PBXBuildFile section */
/* Begin PBXContainerItemProxy section */
@@ -197,24 +206,18 @@
0707B6432C2C569500A911E7 /* Gemfile */ = {isa = PBXFileReference; lastKnownFileType = text; name = Gemfile; path = ../Gemfile; sourceTree = ""; };
070DF8AE2CDD07F20043D558 /* GridTokenElement.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = GridTokenElement.swift; sourceTree = ""; };
070DF8AF2CDD07F20043D558 /* GrisTokenPage.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = GrisTokenPage.swift; sourceTree = ""; };
- 072141012D02F33300B7B9C6 /* ShowcaseTokenIllustration.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = ShowcaseTokenIllustration.swift; sourceTree = ""; };
- 072141022D02F33300B7B9C6 /* ShowcaseTokkenIllustrationBackground.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = ShowcaseTokkenIllustrationBackground.swift; sourceTree = ""; };
- 072141082D02F3F200B7B9C6 /* ShowcaseElement.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = ShowcaseElement.swift; sourceTree = ""; };
- 072141092D02F3F200B7B9C6 /* ShowcaseElementPage.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = ShowcaseElementPage.swift; sourceTree = ""; };
- 0721410A2D02F3F200B7B9C6 /* ShowcaseElementsPage.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = ShowcaseElementsPage.swift; sourceTree = ""; };
- 0721410B2D02F3F200B7B9C6 /* ShowcaseVariantElement.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = ShowcaseVariantElement.swift; sourceTree = ""; };
072141162D02F52A00B7B9C6 /* ButtonElement.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = ButtonElement.swift; sourceTree = ""; };
072141172D02F52A00B7B9C6 /* ButtonPage.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = ButtonPage.swift; sourceTree = ""; };
073543102CA154DE001187EA /* Card.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = Card.swift; sourceTree = ""; };
073543122CA1676C001187EA /* Colors.xcassets */ = {isa = PBXFileReference; lastKnownFileType = folder.assetcatalog; path = Colors.xcassets; sourceTree = ""; };
+ 073543152CA17275001187EA /* DesignToolboxElement.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = DesignToolboxElement.swift; sourceTree = ""; };
073EC3212CB3DC9300B2ADB4 /* SpacingTokenElement.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = SpacingTokenElement.swift; sourceTree = ""; };
073EC3222CB3DC9300B2ADB4 /* SpacingTokenPage.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = SpacingTokenPage.swift; sourceTree = ""; };
074008222C942810006B8729 /* Snapshot.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = Snapshot.swift; sourceTree = ""; };
0740A9872C9833670069D24A /* Appfile */ = {isa = PBXFileReference; lastKnownFileType = text; name = Appfile; path = fastlane/Appfile; sourceTree = ""; };
0740A9882C9833670069D24A /* Fastfile */ = {isa = PBXFileReference; lastKnownFileType = text; name = Fastfile; path = fastlane/Fastfile; sourceTree = ""; };
0740A9892C9833670069D24A /* README.md */ = {isa = PBXFileReference; lastKnownFileType = net.daringfireball.markdown; name = README.md; path = fastlane/README.md; sourceTree = ""; };
- 0740A98F2C9873500069D24A /* ShowcaseTests.xctest */ = {isa = PBXFileReference; explicitFileType = wrapper.cfbundle; includeInIndex = 0; path = ShowcaseTests.xctest; sourceTree = BUILT_PRODUCTS_DIR; };
- 0740A99C2C9888CF0069D24A /* ShowcaseUITestPlan.xctestplan */ = {isa = PBXFileReference; lastKnownFileType = text; name = ShowcaseUITestPlan.xctestplan; path = ../ShowcaseUITestPlan.xctestplan; sourceTree = ""; };
+ 0740A98F2C9873500069D24A /* DesignToolboxSnapshotsTests.xctest */ = {isa = PBXFileReference; explicitFileType = wrapper.cfbundle; includeInIndex = 0; path = DesignToolboxSnapshotsTests.xctest; sourceTree = BUILT_PRODUCTS_DIR; };
074794792CAE882A0033C2D8 /* EmptyState.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = EmptyState.swift; sourceTree = ""; };
075114D82CB7D28D00B8B759 /* SizeTokenElement.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = SizeTokenElement.swift; sourceTree = ""; };
075114D92CB7D28D00B8B759 /* SizeTokenPage.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = SizeTokenPage.swift; sourceTree = ""; };
@@ -243,9 +246,9 @@
077CCE512CB426090059CC28 /* SpaceTokenElement.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = SpaceTokenElement.swift; sourceTree = ""; };
077CCE522CB426090059CC28 /* SpaceTokenPage.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = SpaceTokenPage.swift; sourceTree = ""; };
077CCE542CB426090059CC28 /* DimensionTokenElement.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = DimensionTokenElement.swift; sourceTree = ""; };
+ 077CCE5B2CB431C50059CC28 /* DesignToolboxVariantElement.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = DesignToolboxVariantElement.swift; sourceTree = ""; };
0784B26F2CCB86C500299C10 /* NamedSize+IconWithTypography.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = "NamedSize+IconWithTypography.swift"; sourceTree = ""; };
0784B2722CCB8CC800299C10 /* NamedSize+IconDecorative.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = "NamedSize+IconDecorative.swift"; sourceTree = ""; };
- 07C7F4AC2D391B440037E211 /* OUDSComponentButtonUITests.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; name = OUDSComponentButtonUITests.swift; path = OUDSComponentButtonUITests/OUDSComponentButtonUITests.swift; sourceTree = ""; };
07CEDD802C7DB921003E1885 /* generateDoc.sh */ = {isa = PBXFileReference; lastKnownFileType = text.script.sh; name = generateDoc.sh; path = ../generateDoc.sh; sourceTree = ""; };
07CF426A2CA30728000BD03E /* TokensPage.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = TokensPage.swift; sourceTree = ""; };
07CF42712CA31AC3000BD03E /* Assets.xcassets */ = {isa = PBXFileReference; lastKnownFileType = folder.assetcatalog; path = Assets.xcassets; sourceTree = ""; };
@@ -260,8 +263,8 @@
07D7E1962D035566006472EB /* ButtonConfiguration.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = ButtonConfiguration.swift; sourceTree = ""; };
07F0AFD62CFDB3C300D334DD /* ComponentPage.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = ComponentPage.swift; sourceTree = ""; };
07F0AFDD2CFDD1FD00D334DD /* ComponentsPage.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = ComponentsPage.swift; sourceTree = ""; };
- 07F0AFE72CFE0FBD00D334DD /* ShowcaseConfiguration.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = ShowcaseConfiguration.swift; sourceTree = ""; };
- 07F7533A2CC785620007450D /* ShowcaseSectionHeaderStyle.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = ShowcaseSectionHeaderStyle.swift; sourceTree = ""; };
+ 07F0AFE72CFE0FBD00D334DD /* DesignToolboxConfiguration.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = DesignToolboxConfiguration.swift; sourceTree = ""; };
+ 07F7533A2CC785620007450D /* DesignToolboxSectionHeaderStyle.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = DesignToolboxSectionHeaderStyle.swift; sourceTree = ""; };
07F75A362CC644C80004F1AD /* NamedSpace+Scaled.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = "NamedSpace+Scaled.swift"; sourceTree = ""; };
07F75A382CC6462D0004F1AD /* NamedSpace+Fixed.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = "NamedSpace+Fixed.swift"; sourceTree = ""; };
07F75A3A2CC651EB0004F1AD /* NameSpace+PaddingInline.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = "NameSpace+PaddingInline.swift"; sourceTree = ""; };
@@ -269,7 +272,7 @@
07F75A3E2CC653CD0004F1AD /* NameSpace+GapInline.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = "NameSpace+GapInline.swift"; sourceTree = ""; };
07F75A402CC653EB0004F1AD /* NameSpace+GapStack.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = "NameSpace+GapStack.swift"; sourceTree = ""; };
07F75A422CC654050004F1AD /* NameSpace+PaddingStack.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = "NameSpace+PaddingStack.swift"; sourceTree = ""; };
- 07FDCD912C296A500009AA13 /* OUDS Showcase.app */ = {isa = PBXFileReference; explicitFileType = wrapper.application; includeInIndex = 0; path = "OUDS Showcase.app"; sourceTree = BUILT_PRODUCTS_DIR; };
+ 07FDCD912C296A500009AA13 /* Design System Toolbox.app */ = {isa = PBXFileReference; explicitFileType = wrapper.application; includeInIndex = 0; path = "Design System Toolbox.app"; sourceTree = BUILT_PRODUCTS_DIR; };
07FDCDA52C296B4B0009AA13 /* .gitattributes */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; name = .gitattributes; path = ../.gitattributes; sourceTree = ""; };
07FDCDA72C296B7A0009AA13 /* README.md */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = net.daringfireball.markdown; name = README.md; path = ../README.md; sourceTree = ""; };
07FDCDA82C296B7A0009AA13 /* NOTICE.txt */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; name = NOTICE.txt; path = ../NOTICE.txt; sourceTree = ""; };
@@ -280,28 +283,32 @@
07FDCDB62C296C370009AA13 /* .gitleaks.toml */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; name = .gitleaks.toml; path = ../.gitleaks.toml; sourceTree = ""; };
07FDCDB72C296C370009AA13 /* .swiftformat */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; name = .swiftformat; path = ../.swiftformat; sourceTree = ""; };
07FDCDB82C296C370009AA13 /* .gitignore */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; name = .gitignore; path = ../.gitignore; sourceTree = ""; };
- 51040C1E2D3EA11800BE5F62 /* String+extension.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = "String+extension.swift"; sourceTree = ""; };
51087A7A2C46DF9F00160CCF /* Bundle+extension.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = "Bundle+extension.swift"; sourceTree = ""; };
512364782C3D7B2D00572FD5 /* Podfile.lock */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = Podfile.lock; sourceTree = ""; };
5123647A2C3D7B3500572FD5 /* Gemfile.lock */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; name = Gemfile.lock; path = ../Gemfile.lock; sourceTree = ""; };
5149BADA2C3D6F4F000FA4BF /* Podfile */ = {isa = PBXFileReference; lastKnownFileType = text; path = Podfile; sourceTree = ""; };
+ 51952A702D3F9D710068B807 /* DesignToolboxTokenIllustration.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = DesignToolboxTokenIllustration.swift; sourceTree = ""; };
+ 51952A732D3F9D840068B807 /* DesignToolboxTokenIllustrationBackground.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = DesignToolboxTokenIllustrationBackground.swift; sourceTree = ""; };
+ 51952A7B2D3FA1490068B807 /* OUDSTokensBorderUITests.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = OUDSTokensBorderUITests.swift; sourceTree = ""; };
+ 51952A7E2D3FA1770068B807 /* OUDSTokensColorUITests.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = OUDSTokensColorUITests.swift; sourceTree = ""; };
+ 51952A822D3FA1A70068B807 /* OUDSTokensSizeUITests.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = OUDSTokensSizeUITests.swift; sourceTree = ""; };
+ 51952A852D3FA1D60068B807 /* OUDSTokensSpaceUITests.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = OUDSTokensSpaceUITests.swift; sourceTree = ""; };
+ 51952A882D3FA2060068B807 /* OUDSTokensElevationUITests.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = OUDSTokensElevationUITests.swift; sourceTree = ""; };
+ 51952A8B2D3FA2280068B807 /* OUDSTokensFontUITests.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = OUDSTokensFontUITests.swift; sourceTree = ""; };
+ 51952A8E2D3FA2490068B807 /* OUDSTokensOpacityUITests.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = OUDSTokensOpacityUITests.swift; sourceTree = ""; };
+ 51952A912D3FA26B0068B807 /* OUDSComponentButtonUITests.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = OUDSComponentButtonUITests.swift; sourceTree = ""; };
51A7A9DA2C46E17F00EF7A77 /* Info.plist */ = {isa = PBXFileReference; lastKnownFileType = text.plist; path = Info.plist; sourceTree = ""; };
51BD760B2C466FCF0033365D /* AboutPage.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = AboutPage.swift; sourceTree = ""; };
+ 51BD760F2C466FCF0033365D /* DesignToolboxElementsPage.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = DesignToolboxElementsPage.swift; sourceTree = ""; };
51BD76122C466FCF0033365D /* Preview Assets.xcassets */ = {isa = PBXFileReference; lastKnownFileType = folder.assetcatalog; path = "Preview Assets.xcassets"; sourceTree = ""; };
51BD76142C466FCF0033365D /* en */ = {isa = PBXFileReference; lastKnownFileType = text.html; name = en; path = en.lproj/about_legal_information.html; sourceTree = ""; };
51BD76162C466FCF0033365D /* en */ = {isa = PBXFileReference; lastKnownFileType = text.html; name = en; path = en.lproj/about_privacy_policy.html; sourceTree = ""; };
51BD76192C466FCF0033365D /* en */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = en; path = en.lproj/Localizable.strings; sourceTree = ""; };
51BD761C2C466FCF0033365D /* WebView.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = WebView.swift; sourceTree = ""; };
- 51BD761E2C466FCF0033365D /* Showcase.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = Showcase.swift; sourceTree = ""; };
+ 51BD761E2C466FCF0033365D /* DesignToolbox.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = DesignToolbox.swift; sourceTree = ""; };
51BD761F2C466FCF0033365D /* MainView.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = MainView.swift; sourceTree = ""; };
- 6D17A2172CCBE50700C00512 /* OUDSTokensFontUITests.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; name = OUDSTokensFontUITests.swift; path = ShowcaseTests/__Snapshots__/Tokens/OUDSTokensFontUITests/OUDSTokensFontUITests.swift; sourceTree = SOURCE_ROOT; };
- 6D17A2192CCBE74C00C00512 /* OUDSTokensElevationUITests.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; name = OUDSTokensElevationUITests.swift; path = ShowcaseTests/__Snapshots__/Tokens/OUDSTokensElevationUITests/OUDSTokensElevationUITests.swift; sourceTree = SOURCE_ROOT; };
- 6D17A21B2CCBE7E200C00512 /* OUDSTokensOpacityUITests.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; name = OUDSTokensOpacityUITests.swift; path = ShowcaseTests/__Snapshots__/Tokens/OUDSTokensOpacityUITests/OUDSTokensOpacityUITests.swift; sourceTree = SOURCE_ROOT; };
- 6D17A2292CCBEF6700C00512 /* OUDSTokensColorUITests.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; name = OUDSTokensColorUITests.swift; path = ShowcaseTests/__Snapshots__/Tokens/OUDSTokensColorUITests/OUDSTokensColorUITests.swift; sourceTree = SOURCE_ROOT; };
- 6D3E872B2CCBE0A300AEB105 /* OUDSTokenBorderUITests.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; name = OUDSTokenBorderUITests.swift; path = ShowcaseTests/__Snapshots__/Tokens/OUDSTokensBorderUITests/OUDSTokenBorderUITests.swift; sourceTree = SOURCE_ROOT; };
- 6DCC57E12CEB984D000F35F8 /* ShowcaseCode.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = ShowcaseCode.swift; sourceTree = ""; };
- 6DED17E82CD1143500584BC9 /* OUDSTokensSizeUITests.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; name = OUDSTokensSizeUITests.swift; path = ShowcaseTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Size/OUDSTokensSizeUITests.swift; sourceTree = SOURCE_ROOT; };
- 6DED17EA2CD114AD00584BC9 /* OUDSTokensSpaceUITests.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; name = OUDSTokensSpaceUITests.swift; path = ShowcaseTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Space/OUDSTokensSpaceUITests.swift; sourceTree = SOURCE_ROOT; };
+ 51E3FF0A2CAFD9AE00F1BC59 /* DesignToolboxElementPage.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = DesignToolboxElementPage.swift; sourceTree = ""; };
+ 6DCC57E12CEB984D000F35F8 /* DesignToolboxCode.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = DesignToolboxCode.swift; sourceTree = ""; };
6DFC208A2CDE669500F2EC33 /* AccessibilityStatementPage.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = AccessibilityStatementPage.swift; sourceTree = ""; };
6DFC20B02CE3AF1500F2EC33 /* boosted-grid.min.css */ = {isa = PBXFileReference; lastKnownFileType = text.css; path = "boosted-grid.min.css"; sourceTree = ""; };
6DFC20B12CE3AF1500F2EC33 /* favicon.ico */ = {isa = PBXFileReference; lastKnownFileType = image.ico; path = favicon.ico; sourceTree = ""; };
@@ -310,9 +317,11 @@
6DFC20B42CE3AF1500F2EC33 /* style.css */ = {isa = PBXFileReference; lastKnownFileType = text.css; path = style.css; sourceTree = ""; };
6DFC20BF2CE3D39D00F2EC33 /* accessibility_detail.html */ = {isa = PBXFileReference; lastKnownFileType = text.html; path = accessibility_detail.html; sourceTree = ""; };
6DFC20C02CE3D39D00F2EC33 /* accessibility_result.xml */ = {isa = PBXFileReference; lastKnownFileType = text.xml; path = accessibility_result.xml; sourceTree = ""; };
+ 8C66FEEE1D0289EB1A4D5730 /* Pods-DesignToolbox.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-DesignToolbox.release.xcconfig"; path = "Target Support Files/Pods-DesignToolbox/Pods-DesignToolbox.release.xcconfig"; sourceTree = ""; };
+ 8EFDA228C8677427EEF029B1 /* Pods-DesignToolbox.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-DesignToolbox.debug.xcconfig"; path = "Target Support Files/Pods-DesignToolbox/Pods-DesignToolbox.debug.xcconfig"; sourceTree = ""; };
974E2EAB64D9123627CD7D29 /* Pods-DemoApp.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-DemoApp.release.xcconfig"; path = "Target Support Files/Pods-DemoApp/Pods-DemoApp.release.xcconfig"; sourceTree = ""; };
+ A8ECF213874016985FA405A3 /* Pods_DesignToolbox.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; path = Pods_DesignToolbox.framework; sourceTree = BUILT_PRODUCTS_DIR; };
BF4130905502F287757622E2 /* Pods-DemoApp.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-DemoApp.debug.xcconfig"; path = "Target Support Files/Pods-DemoApp/Pods-DemoApp.debug.xcconfig"; sourceTree = ""; };
- E0D3017314DBC1733F8D0C79 /* Pods_Showcase.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; path = Pods_Showcase.framework; sourceTree = BUILT_PRODUCTS_DIR; };
E4EBC0F46BFFE3801998F6B0 /* Pods-Showcase.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-Showcase.release.xcconfig"; path = "Target Support Files/Pods-Showcase/Pods-Showcase.release.xcconfig"; sourceTree = ""; };
F98488CF05532E8CD405A8F8 /* Pods-Showcase.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-Showcase.debug.xcconfig"; path = "Target Support Files/Pods-Showcase/Pods-Showcase.debug.xcconfig"; sourceTree = ""; };
/* End PBXFileReference section */
@@ -331,7 +340,6 @@
buildActionMask = 2147483647;
files = (
51BC9DE72C6513F200EB2A11 /* OUDSFoundations in Frameworks */,
- E537B9B66A6466473179DEE8 /* Pods_Showcase.framework in Frameworks */,
070C35642C773A0D0029C6A8 /* OUDSThemesInverse in Frameworks */,
51EE2C682C5BF5DE00F634EC /* OUDSThemesOrange in Frameworks */,
070C35622C75EB1C0029C6A8 /* OUDS in Frameworks */,
@@ -339,39 +347,31 @@
510A9CD02C5679A300430620 /* OUDSComponents in Frameworks */,
6DFC20C52CE3D9AE00F2EC33 /* DeclarationAccessibility in Frameworks */,
070C35662C7762B90029C6A8 /* OUDSModules in Frameworks */,
+ A5E69629240B3A88C139F084 /* Pods_DesignToolbox.framework in Frameworks */,
);
runOnlyForDeploymentPostprocessing = 0;
};
/* End PBXFrameworksBuildPhase section */
/* Begin PBXGroup section */
- 070DF8B02CDD07F20043D558 /* Grid */ = {
- isa = PBXGroup;
- children = (
- 070DF8AE2CDD07F20043D558 /* GridTokenElement.swift */,
- 070DF8AF2CDD07F20043D558 /* GrisTokenPage.swift */,
- );
- path = Grid;
- sourceTree = "";
- };
- 072141032D02F33300B7B9C6 /* Utils */ = {
+ 0708222D2CFF617000570EC7 /* Elements */ = {
isa = PBXGroup;
children = (
- 072141012D02F33300B7B9C6 /* ShowcaseTokenIllustration.swift */,
- 072141022D02F33300B7B9C6 /* ShowcaseTokkenIllustrationBackground.swift */,
+ 073543152CA17275001187EA /* DesignToolboxElement.swift */,
+ 51E3FF0A2CAFD9AE00F1BC59 /* DesignToolboxElementPage.swift */,
+ 51BD760F2C466FCF0033365D /* DesignToolboxElementsPage.swift */,
+ 077CCE5B2CB431C50059CC28 /* DesignToolboxVariantElement.swift */,
);
- path = Utils;
+ path = Elements;
sourceTree = "";
};
- 0721410C2D02F3F200B7B9C6 /* Elements */ = {
+ 070DF8B02CDD07F20043D558 /* Grid */ = {
isa = PBXGroup;
children = (
- 072141082D02F3F200B7B9C6 /* ShowcaseElement.swift */,
- 072141092D02F3F200B7B9C6 /* ShowcaseElementPage.swift */,
- 0721410A2D02F3F200B7B9C6 /* ShowcaseElementsPage.swift */,
- 0721410B2D02F3F200B7B9C6 /* ShowcaseVariantElement.swift */,
+ 070DF8AE2CDD07F20043D558 /* GridTokenElement.swift */,
+ 070DF8AF2CDD07F20043D558 /* GrisTokenPage.swift */,
);
- path = Elements;
+ path = Grid;
sourceTree = "";
};
072141182D02F52A00B7B9C6 /* Button */ = {
@@ -396,11 +396,11 @@
073543142CA17244001187EA /* Utils */ = {
isa = PBXGroup;
children = (
- 0721410C2D02F3F200B7B9C6 /* Elements */,
0735430F2CA15440001187EA /* Cards */,
- 07F7533A2CC785620007450D /* ShowcaseSectionHeaderStyle.swift */,
- 6DCC57E12CEB984D000F35F8 /* ShowcaseCode.swift */,
- 07F0AFE72CFE0FBD00D334DD /* ShowcaseConfiguration.swift */,
+ 0708222D2CFF617000570EC7 /* Elements */,
+ 07F7533A2CC785620007450D /* DesignToolboxSectionHeaderStyle.swift */,
+ 6DCC57E12CEB984D000F35F8 /* DesignToolboxCode.swift */,
+ 07F0AFE72CFE0FBD00D334DD /* DesignToolboxConfiguration.swift */,
);
path = Utils;
sourceTree = "";
@@ -423,15 +423,13 @@
name = fastlane;
sourceTree = "";
};
- 0740A9902C9873500069D24A /* ShowcaseTests */ = {
+ 0740A9902C9873500069D24A /* DesignToolboxSnapshotsTests */ = {
isa = PBXGroup;
children = (
- 51FD2D362D3E992B00E7703D /* Tokens */,
- 07C7F4AB2D391AE00037E211 /* Components */,
+ 51952A782D3FA0FB0068B807 /* __Snapshots__ */,
074008212C9427F8006B8729 /* Snapshots */,
- 0740A99C2C9888CF0069D24A /* ShowcaseUITestPlan.xctestplan */,
);
- path = ShowcaseTests;
+ path = DesignToolboxSnapshotsTests;
sourceTree = "";
};
075114DA2CB7D28D00B8B759 /* Size */ = {
@@ -534,15 +532,6 @@
path = NamedSize;
sourceTree = "";
};
- 07C7F4AB2D391AE00037E211 /* Components */ = {
- isa = PBXGroup;
- children = (
- 07C7F4AC2D391B440037E211 /* OUDSComponentButtonUITests.swift */,
- );
- name = Components;
- path = __Snapshots__/Components;
- sourceTree = "";
- };
07CF42752CA3F461000BD03E /* Elevation */ = {
isa = PBXGroup;
children = (
@@ -612,8 +601,8 @@
isa = PBXGroup;
children = (
07FDCDA32C296B170009AA13 /* 🛠 */,
- 51BD76202C466FCF0033365D /* Showcase */,
- 0740A9902C9873500069D24A /* ShowcaseTests */,
+ 51BD76202C466FCF0033365D /* DesignToolbox */,
+ 0740A9902C9873500069D24A /* DesignToolboxSnapshotsTests */,
07FDCD922C296A500009AA13 /* Products */,
AFD4931269C94655071502F6 /* Pods */,
6E90D400B72B50FE406E8DFC /* Frameworks */,
@@ -624,8 +613,8 @@
07FDCD922C296A500009AA13 /* Products */ = {
isa = PBXGroup;
children = (
- 07FDCD912C296A500009AA13 /* OUDS Showcase.app */,
- 0740A98F2C9873500069D24A /* ShowcaseTests.xctest */,
+ 07FDCD912C296A500009AA13 /* Design System Toolbox.app */,
+ 0740A98F2C9873500069D24A /* DesignToolboxSnapshotsTests.xctest */,
);
name = Products;
sourceTree = "";
@@ -662,6 +651,110 @@
name = Configuration;
sourceTree = "";
};
+ 51952A6F2D3F9D610068B807 /* Utils */ = {
+ isa = PBXGroup;
+ children = (
+ 51952A732D3F9D840068B807 /* DesignToolboxTokenIllustrationBackground.swift */,
+ 51952A702D3F9D710068B807 /* DesignToolboxTokenIllustration.swift */,
+ );
+ path = Utils;
+ sourceTree = "";
+ };
+ 51952A782D3FA0FB0068B807 /* __Snapshots__ */ = {
+ isa = PBXGroup;
+ children = (
+ 51952A902D3FA25F0068B807 /* Components */,
+ 51952A792D3FA1260068B807 /* Tokens */,
+ );
+ path = __Snapshots__;
+ sourceTree = "";
+ };
+ 51952A792D3FA1260068B807 /* Tokens */ = {
+ isa = PBXGroup;
+ children = (
+ 51952A8D2D3FA23F0068B807 /* OUDSTokensOpacityUITests */,
+ 51952A8A2D3FA2210068B807 /* OUDSTokensFontUITests */,
+ 51952A872D3FA1FA0068B807 /* OUDSTokensElevationUITests */,
+ 51952A802D3FA1920068B807 /* OUDSTokensDimensionUITests */,
+ 51952A7D2D3FA1680068B807 /* OUDSTokensColorUITests */,
+ 51952A7A2D3FA1370068B807 /* OUDSTokensBorderUITests */,
+ );
+ path = Tokens;
+ sourceTree = "";
+ };
+ 51952A7A2D3FA1370068B807 /* OUDSTokensBorderUITests */ = {
+ isa = PBXGroup;
+ children = (
+ 51952A7B2D3FA1490068B807 /* OUDSTokensBorderUITests.swift */,
+ );
+ path = OUDSTokensBorderUITests;
+ sourceTree = "";
+ };
+ 51952A7D2D3FA1680068B807 /* OUDSTokensColorUITests */ = {
+ isa = PBXGroup;
+ children = (
+ 51952A7E2D3FA1770068B807 /* OUDSTokensColorUITests.swift */,
+ );
+ path = OUDSTokensColorUITests;
+ sourceTree = "";
+ };
+ 51952A802D3FA1920068B807 /* OUDSTokensDimensionUITests */ = {
+ isa = PBXGroup;
+ children = (
+ 51952A842D3FA1B80068B807 /* Space */,
+ 51952A812D3FA19A0068B807 /* Size */,
+ );
+ path = OUDSTokensDimensionUITests;
+ sourceTree = "";
+ };
+ 51952A812D3FA19A0068B807 /* Size */ = {
+ isa = PBXGroup;
+ children = (
+ 51952A822D3FA1A70068B807 /* OUDSTokensSizeUITests.swift */,
+ );
+ path = Size;
+ sourceTree = "";
+ };
+ 51952A842D3FA1B80068B807 /* Space */ = {
+ isa = PBXGroup;
+ children = (
+ 51952A852D3FA1D60068B807 /* OUDSTokensSpaceUITests.swift */,
+ );
+ path = Space;
+ sourceTree = "";
+ };
+ 51952A872D3FA1FA0068B807 /* OUDSTokensElevationUITests */ = {
+ isa = PBXGroup;
+ children = (
+ 51952A882D3FA2060068B807 /* OUDSTokensElevationUITests.swift */,
+ );
+ path = OUDSTokensElevationUITests;
+ sourceTree = "";
+ };
+ 51952A8A2D3FA2210068B807 /* OUDSTokensFontUITests */ = {
+ isa = PBXGroup;
+ children = (
+ 51952A8B2D3FA2280068B807 /* OUDSTokensFontUITests.swift */,
+ );
+ path = OUDSTokensFontUITests;
+ sourceTree = "";
+ };
+ 51952A8D2D3FA23F0068B807 /* OUDSTokensOpacityUITests */ = {
+ isa = PBXGroup;
+ children = (
+ 51952A8E2D3FA2490068B807 /* OUDSTokensOpacityUITests.swift */,
+ );
+ path = OUDSTokensOpacityUITests;
+ sourceTree = "";
+ };
+ 51952A902D3FA25F0068B807 /* Components */ = {
+ isa = PBXGroup;
+ children = (
+ 51952A912D3FA26B0068B807 /* OUDSComponentButtonUITests.swift */,
+ );
+ path = Components;
+ sourceTree = "";
+ };
51BD760C2C466FCF0033365D /* About */ = {
isa = PBXGroup;
children = (
@@ -685,8 +778,8 @@
51BD76102C466FCF0033365D /* Tokens */ = {
isa = PBXGroup;
children = (
+ 51952A6F2D3F9D610068B807 /* Utils */,
0765A6D12D09C5E2005DAB51 /* Font */,
- 072141032D02F33300B7B9C6 /* Utils */,
07CF42832CA45DA9000BD03E /* Border */,
075114DD2CB7FD7E00B8B759 /* Color */,
077CCE562CB426090059CC28 /* Dimension */,
@@ -734,14 +827,13 @@
51BD761D2C466FCF0033365D /* Utils */ = {
isa = PBXGroup;
children = (
- 51040C1E2D3EA11800BE5F62 /* String+extension.swift */,
51BD761C2C466FCF0033365D /* WebView.swift */,
51087A7A2C46DF9F00160CCF /* Bundle+extension.swift */,
);
path = Utils;
sourceTree = "";
};
- 51BD76202C466FCF0033365D /* Showcase */ = {
+ 51BD76202C466FCF0033365D /* DesignToolbox */ = {
isa = PBXGroup;
children = (
51A7A9DA2C46E17F00EF7A77 /* Info.plist */,
@@ -749,74 +841,10 @@
51BD76132C466FCF0033365D /* Preview Content */,
51BD761B2C466FCF0033365D /* Resources */,
51BD761D2C466FCF0033365D /* Utils */,
- 51BD761E2C466FCF0033365D /* Showcase.swift */,
+ 51BD761E2C466FCF0033365D /* DesignToolbox.swift */,
51BD761F2C466FCF0033365D /* MainView.swift */,
);
- path = Showcase;
- sourceTree = "";
- };
- 51FD2D362D3E992B00E7703D /* Tokens */ = {
- isa = PBXGroup;
- children = (
- 6D17A2242CCBEF1100C00512 /* OUDSTokensColorUITests */,
- 6D8F9BE42CBFC2F70078A10E /* OUDSTokensTypographyUITests */,
- 6D8F9B9B2CBFB8830078A10E /* OUDSTokensDimensionUITests */,
- 6D8F9B722CBED90D0078A10E /* OUDSTokensElevationUITests */,
- 6D8F9B392CBECBB80078A10E /* OUDSTokensOpacityUITests */,
- 6D2465892CBEAB4C0023E359 /* OUDSTokensBorderUITests */,
- );
- name = Tokens;
- path = __Snapshots__/Tokens;
- sourceTree = "";
- };
- 6D17A2242CCBEF1100C00512 /* OUDSTokensColorUITests */ = {
- isa = PBXGroup;
- children = (
- 6D17A2292CCBEF6700C00512 /* OUDSTokensColorUITests.swift */,
- );
- path = OUDSTokensColorUITests;
- sourceTree = "";
- };
- 6D2465892CBEAB4C0023E359 /* OUDSTokensBorderUITests */ = {
- isa = PBXGroup;
- children = (
- 6D3E872B2CCBE0A300AEB105 /* OUDSTokenBorderUITests.swift */,
- );
- path = OUDSTokensBorderUITests;
- sourceTree = "";
- };
- 6D8F9B392CBECBB80078A10E /* OUDSTokensOpacityUITests */ = {
- isa = PBXGroup;
- children = (
- 6D17A21B2CCBE7E200C00512 /* OUDSTokensOpacityUITests.swift */,
- );
- path = OUDSTokensOpacityUITests;
- sourceTree = "";
- };
- 6D8F9B722CBED90D0078A10E /* OUDSTokensElevationUITests */ = {
- isa = PBXGroup;
- children = (
- 6D17A2192CCBE74C00C00512 /* OUDSTokensElevationUITests.swift */,
- );
- path = OUDSTokensElevationUITests;
- sourceTree = "";
- };
- 6D8F9B9B2CBFB8830078A10E /* OUDSTokensDimensionUITests */ = {
- isa = PBXGroup;
- children = (
- 6DED17E82CD1143500584BC9 /* OUDSTokensSizeUITests.swift */,
- 6DED17EA2CD114AD00584BC9 /* OUDSTokensSpaceUITests.swift */,
- );
- path = OUDSTokensDimensionUITests;
- sourceTree = "";
- };
- 6D8F9BE42CBFC2F70078A10E /* OUDSTokensTypographyUITests */ = {
- isa = PBXGroup;
- children = (
- 6D17A2172CCBE50700C00512 /* OUDSTokensFontUITests.swift */,
- );
- name = OUDSTokensTypographyUITests;
- path = OUDSTokensFontUITests;
+ path = DesignToolbox;
sourceTree = "";
};
6DFC20892CDE664400F2EC33 /* AccessibilityStatement */ = {
@@ -844,7 +872,7 @@
6E90D400B72B50FE406E8DFC /* Frameworks */ = {
isa = PBXGroup;
children = (
- E0D3017314DBC1733F8D0C79 /* Pods_Showcase.framework */,
+ A8ECF213874016985FA405A3 /* Pods_DesignToolbox.framework */,
);
name = Frameworks;
sourceTree = "";
@@ -856,6 +884,8 @@
974E2EAB64D9123627CD7D29 /* Pods-DemoApp.release.xcconfig */,
F98488CF05532E8CD405A8F8 /* Pods-Showcase.debug.xcconfig */,
E4EBC0F46BFFE3801998F6B0 /* Pods-Showcase.release.xcconfig */,
+ 8EFDA228C8677427EEF029B1 /* Pods-DesignToolbox.debug.xcconfig */,
+ 8C66FEEE1D0289EB1A4D5730 /* Pods-DesignToolbox.release.xcconfig */,
);
path = Pods;
sourceTree = "";
@@ -863,9 +893,9 @@
/* End PBXGroup section */
/* Begin PBXNativeTarget section */
- 0740A98E2C9873500069D24A /* ShowcaseTests */ = {
+ 0740A98E2C9873500069D24A /* DesignToolboxSnapshotsTests */ = {
isa = PBXNativeTarget;
- buildConfigurationList = 0740A9952C9873500069D24A /* Build configuration list for PBXNativeTarget "ShowcaseTests" */;
+ buildConfigurationList = 0740A9952C9873500069D24A /* Build configuration list for PBXNativeTarget "DesignToolboxSnapshotsTests" */;
buildPhases = (
0740A98B2C9873500069D24A /* Sources */,
0740A98C2C9873500069D24A /* Frameworks */,
@@ -876,17 +906,17 @@
dependencies = (
0740A9942C9873500069D24A /* PBXTargetDependency */,
);
- name = ShowcaseTests;
+ name = DesignToolboxSnapshotsTests;
packageProductDependencies = (
0740A9992C9874670069D24A /* SnapshotTesting */,
);
- productName = "OUDS ShowcaseTests";
- productReference = 0740A98F2C9873500069D24A /* ShowcaseTests.xctest */;
+ productName = DesignToolboxTests;
+ productReference = 0740A98F2C9873500069D24A /* DesignToolboxSnapshotsTests.xctest */;
productType = "com.apple.product-type.bundle.unit-test";
};
- 07FDCD902C296A500009AA13 /* Showcase */ = {
+ 07FDCD902C296A500009AA13 /* DesignToolbox */ = {
isa = PBXNativeTarget;
- buildConfigurationList = 07FDCD9F2C296A540009AA13 /* Build configuration list for PBXNativeTarget "Showcase" */;
+ buildConfigurationList = 07FDCD9F2C296A540009AA13 /* Build configuration list for PBXNativeTarget "DesignToolbox" */;
buildPhases = (
2A5B2E6765E57E6A6B13CBA1 /* [CP] Check Pods Manifest.lock */,
0707B6412C2C414200A911E7 /* Run Swiftlint */,
@@ -898,7 +928,7 @@
);
dependencies = (
);
- name = Showcase;
+ name = DesignToolbox;
packageProductDependencies = (
510A9CCF2C5679A300430620 /* OUDSComponents */,
513AD93F2C5AAADE0003253B /* OUDSTokensComponent */,
@@ -910,7 +940,7 @@
6DFC20C42CE3D9AE00F2EC33 /* DeclarationAccessibility */,
);
productName = DemoApp;
- productReference = 07FDCD912C296A500009AA13 /* OUDS Showcase.app */;
+ productReference = 07FDCD912C296A500009AA13 /* Design System Toolbox.app */;
productType = "com.apple.product-type.application";
};
/* End PBXNativeTarget section */
@@ -935,7 +965,7 @@
};
};
};
- buildConfigurationList = 07FDCD8C2C296A500009AA13 /* Build configuration list for PBXProject "Showcase" */;
+ buildConfigurationList = 07FDCD8C2C296A500009AA13 /* Build configuration list for PBXProject "DesignToolbox" */;
compatibilityVersion = "Xcode 14.0";
developmentRegion = en;
hasScannedForEncodings = 0;
@@ -952,9 +982,9 @@
projectDirPath = "";
projectRoot = "";
targets = (
- 07FDCD902C296A500009AA13 /* Showcase */,
+ 07FDCD902C296A500009AA13 /* DesignToolbox */,
5123647C2C3D7D6F00572FD5 /* Periphery */,
- 0740A98E2C9873500069D24A /* ShowcaseTests */,
+ 0740A98E2C9873500069D24A /* DesignToolboxSnapshotsTests */,
);
};
/* End PBXProject section */
@@ -1011,7 +1041,7 @@
);
runOnlyForDeploymentPostprocessing = 0;
shellPath = /bin/sh;
- shellScript = "if which \"swiftlint\" >/dev/null; then\n swiftlint --config ../.swiftlint.yml Showcase/*\n swiftlint --config ../.swiftlint.yml OUDS/*\nelse\n echo \"warning: SwiftLint not installed, download from CocoaPods (see https://github.com/realm/SwiftLint)\"\nfi\n";
+ shellScript = "if which \"swiftlint\" >/dev/null; then\n swiftlint --config ../.swiftlint.yml DesignToolbox/*\n swiftlint --config ../.swiftlint.yml OUDS/*\nelse\n echo \"warning: SwiftLint not installed, download from CocoaPods (see https://github.com/realm/SwiftLint)\"\nfi\n";
};
2A5B2E6765E57E6A6B13CBA1 /* [CP] Check Pods Manifest.lock */ = {
isa = PBXShellScriptBuildPhase;
@@ -1028,7 +1058,7 @@
outputFileListPaths = (
);
outputPaths = (
- "$(DERIVED_FILE_DIR)/Pods-Showcase-checkManifestLockResult.txt",
+ "$(DERIVED_FILE_DIR)/Pods-DesignToolbox-checkManifestLockResult.txt",
);
runOnlyForDeploymentPostprocessing = 0;
shellPath = /bin/sh;
@@ -1051,7 +1081,7 @@
);
runOnlyForDeploymentPostprocessing = 0;
shellPath = /bin/sh;
- shellScript = "# Periphery action to look for dead code\nperiphery scan --strict --workspace Showcase.xcworkspace --schemes Showcase --targets Showcase --format xcode\n";
+ shellScript = "# Periphery action to look for dead code\nperiphery scan --strict --workspace DesignToolbox.xcworkspace --schemes DesignToolbox --targets DesignToolbox --format xcode\n";
};
/* End PBXShellScriptBuildPhase section */
@@ -1060,68 +1090,77 @@
isa = PBXSourcesBuildPhase;
buildActionMask = 2147483647;
files = (
- 511926252D2F3B0B003ADC3E /* Card.swift in Sources */,
- 0765A6DE2D09C680005DAB51 /* NamedColor+Overlay.swift in Sources */,
- 0765A6DF2D09C680005DAB51 /* NamedColor+Repository.swift in Sources */,
- 0765A6E02D09C680005DAB51 /* NamedColor+Surface.swift in Sources */,
- 0765A6E12D09C680005DAB51 /* NamedColor+Opacity.swift in Sources */,
- 6D43136D2CEF400D004E6886 /* ShowcaseCode.swift in Sources */,
+ 51952AA52D3FA3440068B807 /* Card.swift in Sources */,
+ 51952A942D3FA32E0068B807 /* DesignToolboxElementsPage.swift in Sources */,
+ 51952A952D3FA32E0068B807 /* DesignToolboxVariantElement.swift in Sources */,
+ 51952A962D3FA32E0068B807 /* View+Illustration.swift in Sources */,
+ 51952A972D3FA32E0068B807 /* FontTokenElement.swift in Sources */,
+ 51952A982D3FA32E0068B807 /* FontTokenPage.swift in Sources */,
+ 51952A992D3FA32E0068B807 /* BorderTokenElement.swift in Sources */,
+ 51952A9A2D3FA32E0068B807 /* NamedColor+Opacity.swift in Sources */,
+ 51952A9B2D3FA32E0068B807 /* NamedColor+Overlay.swift in Sources */,
+ 51952A9C2D3FA32E0068B807 /* NamedColor+Repository.swift in Sources */,
+ 51952A9D2D3FA32E0068B807 /* NamedColor+Surface.swift in Sources */,
+ 51952A9E2D3FA32E0068B807 /* ColorTokenElement.swift in Sources */,
+ 51952A9F2D3FA32E0068B807 /* SpaceTokenElement.swift in Sources */,
+ 51952AA02D3FA32E0068B807 /* DimensionTokenElement.swift in Sources */,
+ 51952AA12D3FA32E0068B807 /* ElevationTokenElement.swift in Sources */,
+ 51952AA22D3FA32E0068B807 /* GridTokenElement.swift in Sources */,
+ 51952AA32D3FA32E0068B807 /* GrisTokenPage.swift in Sources */,
+ 51952AA42D3FA32E0068B807 /* TokensPage.swift in Sources */,
+ 51952A932D3FA2E30068B807 /* NamedFont.swift in Sources */,
+ 6D43136D2CEF400D004E6886 /* DesignToolboxCode.swift in Sources */,
6DED17F12CD2641800584BC9 /* OpacityTokenElement.swift in Sources */,
+ 51952A922D3FA2720068B807 /* OUDSComponentButtonUITests.swift in Sources */,
+ 51952A7C2D3FA1510068B807 /* OUDSTokensBorderUITests.swift in Sources */,
6DED17EF2CD25B2200584BC9 /* SizeTokenElement.swift in Sources */,
6DED17EE2CD23E5400584BC9 /* CardIllustration.swift in Sources */,
- 07F0AFE82CFE0FBD00D334DD /* ShowcaseConfiguration.swift in Sources */,
+ 6DED17ED2CD23D5200584BC9 /* DesignToolboxElementPage.swift in Sources */,
+ 6DED17EC2CD23D3A00584BC9 /* DesignToolboxElement.swift in Sources */,
+ 07F0AFE82CFE0FBD00D334DD /* DesignToolboxConfiguration.swift in Sources */,
6DB260DF2CD0F0520091F72E /* NamedSpace+Fixed.swift in Sources */,
6DB260E02CD0F0520091F72E /* NameSpace+PaddingInline.swift in Sources */,
- 072141112D02F3F200B7B9C6 /* ShowcaseElement.swift in Sources */,
- 072141122D02F3F200B7B9C6 /* ShowcaseElementsPage.swift in Sources */,
- 072141132D02F3F200B7B9C6 /* ShowcaseElementPage.swift in Sources */,
072141192D02F52A00B7B9C6 /* ButtonPage.swift in Sources */,
0721411B2D02F52A00B7B9C6 /* ButtonElement.swift in Sources */,
- 07C7F4AD2D391B440037E211 /* OUDSComponentButtonUITests.swift in Sources */,
- 072141142D02F3F200B7B9C6 /* ShowcaseVariantElement.swift in Sources */,
6DB260E12CD0F0520091F72E /* NameSpace+PaddingInset.swift in Sources */,
+ 51952A752D3F9D850068B807 /* DesignToolboxTokenIllustrationBackground.swift in Sources */,
6DB260E22CD0F0520091F72E /* NameSpace+PaddingStack.swift in Sources */,
6DB260E32CD0F0520091F72E /* NameSpace+GapInline.swift in Sources */,
- 6DED17EB2CD114AD00584BC9 /* OUDSTokensSpaceUITests.swift in Sources */,
6DB260E42CD0F0520091F72E /* NameSpace+GapStack.swift in Sources */,
6DB260DD2CD0F01F0091F72E /* NamedSpace+Scaled.swift in Sources */,
- 6DB260DC2CD0F0000091F72E /* ShowcaseSectionHeaderStyle.swift in Sources */,
- 0765A6D22D09C5E2005DAB51 /* FontTokenElement.swift in Sources */,
- 0765A6D32D09C5E2005DAB51 /* NamedFont.swift in Sources */,
- 0765A6D42D09C5E2005DAB51 /* FontTokenPage.swift in Sources */,
- 0765A6D52D09C5E2005DAB51 /* View+Illustration.swift in Sources */,
+ 6DB260DC2CD0F0000091F72E /* DesignToolboxSectionHeaderStyle.swift in Sources */,
6DB260DB2CD0EFD90091F72E /* NamedSize+IconWithTypography.swift in Sources */,
6DB260DA2CD0EF9D0091F72E /* NamedSize+IconDecorative.swift in Sources */,
+ 51952A8C2D3FA22A0068B807 /* OUDSTokensFontUITests.swift in Sources */,
6D17A2352CCF8DC300C00512 /* NamedColor.swift in Sources */,
6D17A22C2CCBF12B00C00512 /* NamedColor+Action.swift in Sources */,
6D17A22D2CCBF12B00C00512 /* NamedColor+Always.swift in Sources */,
07CAE7692CEE20B200D6C5D1 /* SpaceGapTokenIllustrations.swift in Sources */,
+ 51952A7F2D3FA17E0068B807 /* OUDSTokensColorUITests.swift in Sources */,
07CAE76A2CEE20B200D6C5D1 /* SpacePaddingTokenIllustrations.swift in Sources */,
07CAE76B2CEE20B200D6C5D1 /* SpaceBasicTokenIllustrations.swift in Sources */,
6D17A22E2CCBF12B00C00512 /* NamedColor+Background.swift in Sources */,
6D17A22F2CCBF12B00C00512 /* NamedColor+Border.swift in Sources */,
6D17A2302CCBF12B00C00512 /* NamedColor+Chart.swift in Sources */,
- 072141062D02F33300B7B9C6 /* ShowcaseTokenIllustration.swift in Sources */,
- 072141072D02F33300B7B9C6 /* ShowcaseTokkenIllustrationBackground.swift in Sources */,
6D17A2312CCBF12B00C00512 /* NamedColor+Content.swift in Sources */,
6D17A2332CCBF12B00C00512 /* NamedColor+Decorative.swift in Sources */,
+ 51952A862D3FA1DB0068B807 /* OUDSTokensSpaceUITests.swift in Sources */,
+ 51952A832D3FA1AC0068B807 /* OUDSTokensSizeUITests.swift in Sources */,
+ 51952A712D3F9D720068B807 /* DesignToolboxTokenIllustration.swift in Sources */,
+ 51952A892D3FA20D0068B807 /* OUDSTokensElevationUITests.swift in Sources */,
07F0AFD82CFDB3CC00D334DD /* ComponentPage.swift in Sources */,
6D17A22B2CCBF0E200C00512 /* ColorTokenPage.swift in Sources */,
07CAE7682CEE20A600D6C5D1 /* SpaceTokenCommonIllustration.swift in Sources */,
- 6D17A21A2CCBE74C00C00512 /* OUDSTokensElevationUITests.swift in Sources */,
- 6DED17E92CD1143500584BC9 /* OUDSTokensSizeUITests.swift in Sources */,
- 6D17A22A2CCBEF6700C00512 /* OUDSTokensColorUITests.swift in Sources */,
6DE5F47D2CC696120008E774 /* ThemeSelection.swift in Sources */,
6D8F9C542CC160660078A10E /* SpaceTokenPage.swift in Sources */,
07D7E1982D035566006472EB /* ButtonConfiguration.swift in Sources */,
6D8F9C532CC160580078A10E /* SizeTokenPage.swift in Sources */,
6D8F9C522CC15F960078A10E /* ElevationTokenPage.swift in Sources */,
6D8F9C502CC14EBF0078A10E /* OpacityTokenPage.swift in Sources */,
- 6D3E872C2CCBE0A300AEB105 /* OUDSTokenBorderUITests.swift in Sources */,
6D8F9C4F2CBFDC8B0078A10E /* EmptyState.swift in Sources */,
- 6D17A21C2CCBE7E200C00512 /* OUDSTokensOpacityUITests.swift in Sources */,
6D24658E2CBEAC750023E359 /* BorderTokenPage.swift in Sources */,
0740A99B2C9874E70069D24A /* Snapshot.swift in Sources */,
+ 51952A8F2D3FA24C0068B807 /* OUDSTokensOpacityUITests.swift in Sources */,
07F0AFDF2CFDD1FD00D334DD /* ComponentsPage.swift in Sources */,
);
runOnlyForDeploymentPostprocessing = 0;
@@ -1130,21 +1169,26 @@
isa = PBXSourcesBuildPhase;
buildActionMask = 2147483647;
files = (
+ 51952A672D3F9B9E0068B807 /* DesignToolboxConfiguration.swift in Sources */,
+ 51952A682D3F9B9E0068B807 /* NamedColor+Opacity.swift in Sources */,
+ 51952A692D3F9B9E0068B807 /* NamedColor+Overlay.swift in Sources */,
+ 51952A6A2D3F9B9E0068B807 /* NamedColor+Repository.swift in Sources */,
+ 51952A6B2D3F9B9E0068B807 /* NamedColor+Surface.swift in Sources */,
+ 519251F32D020BD0003FD1F6 /* DesignToolboxVariantElement.swift in Sources */,
+ 519251F02D020BA6003FD1F6 /* DesignToolboxElementsPage.swift in Sources */,
+ 519251EE2D020B8A003FD1F6 /* DesignToolboxElement.swift in Sources */,
+ 519251EF2D020B8A003FD1F6 /* DesignToolboxElementPage.swift in Sources */,
07F75A3D2CC653BD0004F1AD /* NameSpace+PaddingInset.swift in Sources */,
075C713B2CECC7DA00B93FC3 /* SpaceGapTokenIllustrations.swift in Sources */,
075114DC2CB7D28D00B8B759 /* SizeTokenPage.swift in Sources */,
- 0721410D2D02F3F200B7B9C6 /* ShowcaseElement.swift in Sources */,
- 0721410E2D02F3F200B7B9C6 /* ShowcaseElementsPage.swift in Sources */,
- 0721410F2D02F3F200B7B9C6 /* ShowcaseElementPage.swift in Sources */,
- 072141102D02F3F200B7B9C6 /* ShowcaseVariantElement.swift in Sources */,
07F0AFD72CFDB3CC00D334DD /* ComponentPage.swift in Sources */,
077CCE592CB426090059CC28 /* DimensionTokenElement.swift in Sources */,
07CF42852CA45DA9000BD03E /* BorderTokenPage.swift in Sources */,
+ 51952A722D3F9D720068B807 /* DesignToolboxTokenIllustration.swift in Sources */,
0765B4982CC15A4000E69359 /* NamedColor+Always.swift in Sources */,
07F75A392CC6462D0004F1AD /* NamedSpace+Fixed.swift in Sources */,
07CF42842CA45DA9000BD03E /* BorderTokenElement.swift in Sources */,
07D7E1972D035566006472EB /* ButtonConfiguration.swift in Sources */,
- 07F0AFE92CFE0FBD00D334DD /* ShowcaseConfiguration.swift in Sources */,
07CF42802CA41325000BD03E /* OpacityTokenPage.swift in Sources */,
075114E02CB7FDC200B8B759 /* ColorTokenElement.swift in Sources */,
07F75A3B2CC651EB0004F1AD /* NameSpace+PaddingInline.swift in Sources */,
@@ -1157,7 +1201,7 @@
0765B4A42CC15C3E00E69359 /* NamedColor+Chart.swift in Sources */,
07CF42792CA3F4BE000BD03E /* ElevationTokenPage.swift in Sources */,
075114E12CB7FDC200B8B759 /* ColorTokenPage.swift in Sources */,
- 07F7533B2CC785620007450D /* ShowcaseSectionHeaderStyle.swift in Sources */,
+ 07F7533B2CC785620007450D /* DesignToolboxSectionHeaderStyle.swift in Sources */,
07F0AFDE2CFDD1FD00D334DD /* ComponentsPage.swift in Sources */,
070DF8B12CDD07F20043D558 /* GrisTokenPage.swift in Sources */,
070DF8B22CDD07F20043D558 /* GridTokenElement.swift in Sources */,
@@ -1169,14 +1213,13 @@
0765A6D72D09C5E2005DAB51 /* NamedFont.swift in Sources */,
0765A6D82D09C5E2005DAB51 /* FontTokenPage.swift in Sources */,
0765A6D92D09C5E2005DAB51 /* View+Illustration.swift in Sources */,
- 072141042D02F33300B7B9C6 /* ShowcaseTokenIllustration.swift in Sources */,
- 072141052D02F33300B7B9C6 /* ShowcaseTokkenIllustrationBackground.swift in Sources */,
- 6DCC57E22CEB984D000F35F8 /* ShowcaseCode.swift in Sources */,
+ 6DCC57E22CEB984D000F35F8 /* DesignToolboxCode.swift in Sources */,
0765B4942CC1597C00E69359 /* NamedColor+Background.swift in Sources */,
075C71372CECC3D800B93FC3 /* SpacePaddingTokenIllustrations.swift in Sources */,
075114DB2CB7D28D00B8B759 /* SizeTokenElement.swift in Sources */,
0765B4A02CC15BBC00E69359 /* NamedColor+Content.swift in Sources */,
0765B49A2CC15ACE00E69359 /* NamedColor+Border.swift in Sources */,
+ 51952A742D3F9D850068B807 /* DesignToolboxTokenIllustrationBackground.swift in Sources */,
51087A7B2C46DF9F00160CCF /* Bundle+extension.swift in Sources */,
0765B4962CC159F600E69359 /* NamedColor+Action.swift in Sources */,
077CCE572CB426090059CC28 /* SpaceTokenElement.swift in Sources */,
@@ -1190,11 +1233,7 @@
51BD76212C466FCF0033365D /* AboutPage.swift in Sources */,
075C71392CECC50F00B93FC3 /* SpaceBasicTokenIllustrations.swift in Sources */,
0784B2732CCB8CC800299C10 /* NamedSize+IconDecorative.swift in Sources */,
- 51BD762A2C466FCF0033365D /* Showcase.swift in Sources */,
- 0765A6E22D09C680005DAB51 /* NamedColor+Overlay.swift in Sources */,
- 0765A6E32D09C680005DAB51 /* NamedColor+Repository.swift in Sources */,
- 0765A6E42D09C680005DAB51 /* NamedColor+Surface.swift in Sources */,
- 0765A6E52D09C680005DAB51 /* NamedColor+Opacity.swift in Sources */,
+ 51BD762A2C466FCF0033365D /* DesignToolbox.swift in Sources */,
0765B49E2CC15B7E00E69359 /* NamedColor+Decorative.swift in Sources */,
07F75A432CC654050004F1AD /* NameSpace+PaddingStack.swift in Sources */,
0784B2712CCB86C500299C10 /* NamedSize+IconWithTypography.swift in Sources */,
@@ -1207,7 +1246,7 @@
/* Begin PBXTargetDependency section */
0740A9942C9873500069D24A /* PBXTargetDependency */ = {
isa = PBXTargetDependency;
- target = 07FDCD902C296A500009AA13 /* Showcase */;
+ target = 07FDCD902C296A500009AA13 /* DesignToolbox */;
targetProxy = 0740A9932C9873500069D24A /* PBXContainerItemProxy */;
};
/* End PBXTargetDependency section */
@@ -1251,7 +1290,7 @@
GENERATE_INFOPLIST_FILE = YES;
IPHONEOS_DEPLOYMENT_TARGET = 15.0;
MARKETING_VERSION = 1.0;
- PRODUCT_BUNDLE_IDENTIFIER = "com.orange.uds.demoapp.SnapshotTests.OUDS-ShowcaseTests";
+ PRODUCT_BUNDLE_IDENTIFIER = com.orange.uds.demoapp.snapshotstests;
PRODUCT_NAME = "$(TARGET_NAME)";
SUPPORTED_PLATFORMS = "iphoneos iphonesimulator";
SUPPORTS_MACCATALYST = NO;
@@ -1260,7 +1299,7 @@
SWIFT_EMIT_LOC_STRINGS = NO;
SWIFT_VERSION = 6.0;
TARGETED_DEVICE_FAMILY = "1,2";
- TEST_HOST = "$(BUILT_PRODUCTS_DIR)/OUDS Showcase.app/$(BUNDLE_EXECUTABLE_FOLDER_PATH)/OUDS Showcase";
+ TEST_HOST = "$(BUILT_PRODUCTS_DIR)/Design System Toolbox.app/$(BUNDLE_EXECUTABLE_FOLDER_PATH)/Design System Toolbox";
};
name = Debug;
};
@@ -1275,7 +1314,7 @@
GENERATE_INFOPLIST_FILE = YES;
IPHONEOS_DEPLOYMENT_TARGET = 15.0;
MARKETING_VERSION = 1.0;
- PRODUCT_BUNDLE_IDENTIFIER = "com.orange.uds.demoapp.SnapshotTests.OUDS-ShowcaseTests";
+ PRODUCT_BUNDLE_IDENTIFIER = com.orange.uds.demoapp.snapshotstests;
PRODUCT_NAME = "$(TARGET_NAME)";
SUPPORTED_PLATFORMS = "iphoneos iphonesimulator";
SUPPORTS_MACCATALYST = NO;
@@ -1284,7 +1323,7 @@
SWIFT_EMIT_LOC_STRINGS = NO;
SWIFT_VERSION = 6.0;
TARGETED_DEVICE_FAMILY = "1,2";
- TEST_HOST = "$(BUILT_PRODUCTS_DIR)/OUDS Showcase.app/$(BUNDLE_EXECUTABLE_FOLDER_PATH)/OUDS Showcase";
+ TEST_HOST = "$(BUILT_PRODUCTS_DIR)/Design System Toolbox.app/$(BUNDLE_EXECUTABLE_FOLDER_PATH)/Design System Toolbox";
};
name = Release;
};
@@ -1409,19 +1448,19 @@
};
07FDCDA02C296A540009AA13 /* Debug */ = {
isa = XCBuildConfiguration;
- baseConfigurationReference = F98488CF05532E8CD405A8F8 /* Pods-Showcase.debug.xcconfig */;
+ baseConfigurationReference = 8EFDA228C8677427EEF029B1 /* Pods-DesignToolbox.debug.xcconfig */;
buildSettings = {
ASSETCATALOG_COMPILER_APPICON_NAME = AppIconDebug;
ASSETCATALOG_COMPILER_GLOBAL_ACCENT_COLOR_NAME = AccentColor;
ASSETCATALOG_COMPILER_INCLUDE_ALL_APPICON_ASSETS = YES;
CODE_SIGN_STYLE = Automatic;
CURRENT_PROJECT_VERSION = 21;
- DEVELOPMENT_ASSET_PATHS = "\"Showcase/Preview Content\"";
+ DEVELOPMENT_ASSET_PATHS = "\"DesignToolbox/Preview Content\"";
DEVELOPMENT_TEAM = MG2LSJNJB6;
ENABLE_PREVIEWS = YES;
GENERATE_INFOPLIST_FILE = NO;
- INFOPLIST_FILE = Showcase/Info.plist;
- INFOPLIST_KEY_CFBundleDisplayName = "OUDS Showcase (DEBUG)";
+ INFOPLIST_FILE = DesignToolbox/Info.plist;
+ INFOPLIST_KEY_CFBundleDisplayName = "Design System Toolbox (DEBUG)";
INFOPLIST_KEY_UIApplicationSceneManifest_Generation = YES;
INFOPLIST_KEY_UIApplicationSupportsIndirectInputEvents = YES;
INFOPLIST_KEY_UILaunchScreen_Generation = YES;
@@ -1433,7 +1472,7 @@
);
MARKETING_VERSION = 0.10.0;
PRODUCT_BUNDLE_IDENTIFIER = "com.orange.ouds.demoapp-debug";
- PRODUCT_NAME = "OUDS Showcase";
+ PRODUCT_NAME = "Design System Toolbox";
SUPPORTED_PLATFORMS = "iphoneos iphonesimulator";
SUPPORTS_MACCATALYST = NO;
SUPPORTS_MAC_DESIGNED_FOR_IPHONE_IPAD = NO;
@@ -1446,7 +1485,7 @@
};
07FDCDA12C296A540009AA13 /* Release */ = {
isa = XCBuildConfiguration;
- baseConfigurationReference = E4EBC0F46BFFE3801998F6B0 /* Pods-Showcase.release.xcconfig */;
+ baseConfigurationReference = 8C66FEEE1D0289EB1A4D5730 /* Pods-DesignToolbox.release.xcconfig */;
buildSettings = {
ASSETCATALOG_COMPILER_APPICON_NAME = AppIconRelease;
ASSETCATALOG_COMPILER_GLOBAL_ACCENT_COLOR_NAME = AccentColor;
@@ -1454,13 +1493,13 @@
"CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Distribution";
CODE_SIGN_STYLE = Manual;
CURRENT_PROJECT_VERSION = 21;
- DEVELOPMENT_ASSET_PATHS = "\"Showcase/Preview Content\"";
+ DEVELOPMENT_ASSET_PATHS = "\"DesignToolbox/Preview Content\"";
DEVELOPMENT_TEAM = "";
"DEVELOPMENT_TEAM[sdk=iphoneos*]" = MG2LSJNJB6;
ENABLE_PREVIEWS = YES;
GENERATE_INFOPLIST_FILE = NO;
- INFOPLIST_FILE = Showcase/Info.plist;
- INFOPLIST_KEY_CFBundleDisplayName = "OUDS Showcase (DEBUG)";
+ INFOPLIST_FILE = DesignToolbox/Info.plist;
+ INFOPLIST_KEY_CFBundleDisplayName = "Design System Toolbox (DEBUG)";
INFOPLIST_KEY_UIApplicationSceneManifest_Generation = YES;
INFOPLIST_KEY_UIApplicationSupportsIndirectInputEvents = YES;
INFOPLIST_KEY_UILaunchScreen_Generation = YES;
@@ -1472,7 +1511,7 @@
);
MARKETING_VERSION = 0.10.0;
PRODUCT_BUNDLE_IDENTIFIER = com.orange.ouds.demoapp;
- PRODUCT_NAME = "OUDS Showcase";
+ PRODUCT_NAME = "Design System Toolbox";
PROVISIONING_PROFILE_SPECIFIER = "";
"PROVISIONING_PROFILE_SPECIFIER[sdk=iphoneos*]" = "OUDS demo app (release)";
SUPPORTED_PLATFORMS = "iphoneos iphonesimulator";
@@ -1504,7 +1543,7 @@
/* End XCBuildConfiguration section */
/* Begin XCConfigurationList section */
- 0740A9952C9873500069D24A /* Build configuration list for PBXNativeTarget "ShowcaseTests" */ = {
+ 0740A9952C9873500069D24A /* Build configuration list for PBXNativeTarget "DesignToolboxSnapshotsTests" */ = {
isa = XCConfigurationList;
buildConfigurations = (
0740A9962C9873500069D24A /* Debug */,
@@ -1513,7 +1552,7 @@
defaultConfigurationIsVisible = 0;
defaultConfigurationName = Release;
};
- 07FDCD8C2C296A500009AA13 /* Build configuration list for PBXProject "Showcase" */ = {
+ 07FDCD8C2C296A500009AA13 /* Build configuration list for PBXProject "DesignToolbox" */ = {
isa = XCConfigurationList;
buildConfigurations = (
07FDCD9D2C296A540009AA13 /* Debug */,
@@ -1522,7 +1561,7 @@
defaultConfigurationIsVisible = 0;
defaultConfigurationName = Release;
};
- 07FDCD9F2C296A540009AA13 /* Build configuration list for PBXNativeTarget "Showcase" */ = {
+ 07FDCD9F2C296A540009AA13 /* Build configuration list for PBXNativeTarget "DesignToolbox" */ = {
isa = XCConfigurationList;
buildConfigurations = (
07FDCDA02C296A540009AA13 /* Debug */,
diff --git a/Showcase/Showcase.xcodeproj/project.xcworkspace/contents.xcworkspacedata b/DesignToolbox/DesignToolbox.xcodeproj/project.xcworkspace/contents.xcworkspacedata
similarity index 100%
rename from Showcase/Showcase.xcodeproj/project.xcworkspace/contents.xcworkspacedata
rename to DesignToolbox/DesignToolbox.xcodeproj/project.xcworkspace/contents.xcworkspacedata
diff --git a/Showcase/Showcase.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist b/DesignToolbox/DesignToolbox.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist
similarity index 100%
rename from Showcase/Showcase.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist
rename to DesignToolbox/DesignToolbox.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist
diff --git a/Showcase/Showcase.xcodeproj/xcshareddata/xcschemes/Showcase.xcscheme b/DesignToolbox/DesignToolbox.xcodeproj/xcshareddata/xcschemes/DesignToolbox.xcscheme
similarity index 78%
rename from Showcase/Showcase.xcodeproj/xcshareddata/xcschemes/Showcase.xcscheme
rename to DesignToolbox/DesignToolbox.xcodeproj/xcshareddata/xcschemes/DesignToolbox.xcscheme
index 2272fb7e9d..70a6f1a871 100644
--- a/Showcase/Showcase.xcodeproj/xcshareddata/xcschemes/Showcase.xcscheme
+++ b/DesignToolbox/DesignToolbox.xcodeproj/xcshareddata/xcschemes/DesignToolbox.xcscheme
@@ -1,6 +1,6 @@
+ BuildableName = "Design System Toolbox.app"
+ BlueprintName = "DesignToolbox"
+ ReferencedContainer = "container:DesignToolbox.xcodeproj">
@@ -30,12 +30,9 @@
shouldUseLaunchSchemeArgsEnv = "YES">
-
-
+ BuildableName = "Design System Toolbox.app"
+ BlueprintName = "DesignToolbox"
+ ReferencedContainer = "container:DesignToolbox.xcodeproj">
@@ -70,9 +67,9 @@
+ BuildableName = "Design System Toolbox.app"
+ BlueprintName = "DesignToolbox"
+ ReferencedContainer = "container:DesignToolbox.xcodeproj">
diff --git a/Showcase/Showcase.xcodeproj/xcshareddata/xcschemes/ShowcaseTests.xcscheme b/DesignToolbox/DesignToolbox.xcodeproj/xcshareddata/xcschemes/DesignToolboxSnapshotsTests.xcscheme
similarity index 70%
rename from Showcase/Showcase.xcodeproj/xcshareddata/xcschemes/ShowcaseTests.xcscheme
rename to DesignToolbox/DesignToolbox.xcodeproj/xcshareddata/xcschemes/DesignToolboxSnapshotsTests.xcscheme
index 7ec2064600..5a613a4105 100644
--- a/Showcase/Showcase.xcodeproj/xcshareddata/xcschemes/ShowcaseTests.xcscheme
+++ b/DesignToolbox/DesignToolbox.xcodeproj/xcshareddata/xcschemes/DesignToolboxSnapshotsTests.xcscheme
@@ -1,29 +1,23 @@
+ LastUpgradeVersion = "1600"
+ version = "1.7">
-
-
-
-
-
-
+ shouldUseLaunchSchemeArgsEnv = "YES">
+
+
+
+
+ BuildableName = "DesignToolboxSnapshotsTests.xctest"
+ BlueprintName = "DesignToolboxSnapshotsTests"
+ ReferencedContainer = "container:DesignToolbox.xcodeproj">
diff --git a/Showcase/Showcase.xcworkspace/contents.xcworkspacedata b/DesignToolbox/DesignToolbox.xcworkspace/contents.xcworkspacedata
similarity index 60%
rename from Showcase/Showcase.xcworkspace/contents.xcworkspacedata
rename to DesignToolbox/DesignToolbox.xcworkspace/contents.xcworkspacedata
index a158f5a48f..f201ca53d3 100644
--- a/Showcase/Showcase.xcworkspace/contents.xcworkspacedata
+++ b/DesignToolbox/DesignToolbox.xcworkspace/contents.xcworkspacedata
@@ -2,16 +2,16 @@
+ location = "group:DesignToolboxSnapshots.xctestplan">
+ location = "container:../OUDS/OUDS Library.xctestplan">
+ location = "group:..">
+ location = "group:DesignToolbox.xcodeproj">
diff --git a/Showcase/Showcase.xcworkspace/xcshareddata/IDETemplateMacros.plist b/DesignToolbox/DesignToolbox.xcworkspace/xcshareddata/IDETemplateMacros.plist
similarity index 100%
rename from Showcase/Showcase.xcworkspace/xcshareddata/IDETemplateMacros.plist
rename to DesignToolbox/DesignToolbox.xcworkspace/xcshareddata/IDETemplateMacros.plist
diff --git a/Showcase/Showcase.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist b/DesignToolbox/DesignToolbox.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist
similarity index 100%
rename from Showcase/Showcase.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist
rename to DesignToolbox/DesignToolbox.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist
diff --git a/DesignToolbox/DesignToolbox.xcworkspace/xcshareddata/swiftpm/Package.resolved b/DesignToolbox/DesignToolbox.xcworkspace/xcshareddata/swiftpm/Package.resolved
new file mode 100644
index 0000000000..44a2f60cc7
--- /dev/null
+++ b/DesignToolbox/DesignToolbox.xcworkspace/xcshareddata/swiftpm/Package.resolved
@@ -0,0 +1,33 @@
+{
+ "originHash" : "83401976e6d5078c716d3d81b7069a9a115aa96085292549b781eb6d5bfe69b2",
+ "pins" : [
+ {
+ "identity" : "accessibility-statement-lib-ios",
+ "kind" : "remoteSourceControl",
+ "location" : "https://github.com/Orange-OpenSource/accessibility-statement-lib-ios.git",
+ "state" : {
+ "revision" : "480bf4629b951e459308379030f1ca0ce28a0987",
+ "version" : "1.3.0"
+ }
+ },
+ {
+ "identity" : "swift-snapshot-testing",
+ "kind" : "remoteSourceControl",
+ "location" : "https://github.com/pointfreeco/swift-snapshot-testing.git",
+ "state" : {
+ "revision" : "42a086182681cf661f5c47c9b7dc3931de18c6d7",
+ "version" : "1.17.6"
+ }
+ },
+ {
+ "identity" : "swift-syntax",
+ "kind" : "remoteSourceControl",
+ "location" : "https://github.com/swiftlang/swift-syntax",
+ "state" : {
+ "revision" : "0687f71944021d616d34d922343dcef086855920",
+ "version" : "600.0.1"
+ }
+ }
+ ],
+ "version" : 3
+}
diff --git a/DesignToolbox/DesignToolbox.xcworkspace/xcuserdata/xhrs0459.xcuserdatad/xcdebugger/Breakpoints_v2.xcbkptlist b/DesignToolbox/DesignToolbox.xcworkspace/xcuserdata/xhrs0459.xcuserdatad/xcdebugger/Breakpoints_v2.xcbkptlist
new file mode 100644
index 0000000000..48d5dd34fa
--- /dev/null
+++ b/DesignToolbox/DesignToolbox.xcworkspace/xcuserdata/xhrs0459.xcuserdatad/xcdebugger/Breakpoints_v2.xcbkptlist
@@ -0,0 +1,6 @@
+
+
+
diff --git a/Showcase/Showcase/Showcase.swift b/DesignToolbox/DesignToolbox/DesignToolbox.swift
similarity index 96%
rename from Showcase/Showcase/Showcase.swift
rename to DesignToolbox/DesignToolbox/DesignToolbox.swift
index e3cd5ba8aa..ec871fb60b 100644
--- a/Showcase/Showcase/Showcase.swift
+++ b/DesignToolbox/DesignToolbox/DesignToolbox.swift
@@ -15,7 +15,7 @@ import OUDS
import SwiftUI
@main
-struct Showcase: App {
+struct DesignToolbox: App {
@StateObject var themeProvider = ThemeProvider()
var body: some Scene {
diff --git a/Showcase/Showcase/Info.plist b/DesignToolbox/DesignToolbox/Info.plist
similarity index 97%
rename from Showcase/Showcase/Info.plist
rename to DesignToolbox/DesignToolbox/Info.plist
index e9cdc41a47..be24348719 100644
--- a/Showcase/Showcase/Info.plist
+++ b/DesignToolbox/DesignToolbox/Info.plist
@@ -5,7 +5,7 @@
CFBundleDevelopmentRegion$(DEVELOPMENT_LANGUAGE)CFBundleDisplayName
- OUDS Showcase (DEBUG)
+ Design System Toolbox (DEBUG)CFBundleExecutable$(EXECUTABLE_NAME)CFBundleIdentifier
diff --git a/Showcase/Showcase/MainView.swift b/DesignToolbox/DesignToolbox/MainView.swift
similarity index 100%
rename from Showcase/Showcase/MainView.swift
rename to DesignToolbox/DesignToolbox/MainView.swift
diff --git a/Showcase/Showcase/Pages/About/AboutPage.swift b/DesignToolbox/DesignToolbox/Pages/About/AboutPage.swift
similarity index 100%
rename from Showcase/Showcase/Pages/About/AboutPage.swift
rename to DesignToolbox/DesignToolbox/Pages/About/AboutPage.swift
diff --git a/Showcase/Showcase/Pages/About/AccessibilityStatement/AccessibilityStatementPage.swift b/DesignToolbox/DesignToolbox/Pages/About/AccessibilityStatement/AccessibilityStatementPage.swift
similarity index 100%
rename from Showcase/Showcase/Pages/About/AccessibilityStatement/AccessibilityStatementPage.swift
rename to DesignToolbox/DesignToolbox/Pages/About/AccessibilityStatement/AccessibilityStatementPage.swift
diff --git a/Showcase/Showcase/Pages/Components/Button/ButtonConfiguration.swift b/DesignToolbox/DesignToolbox/Pages/Components/Button/ButtonConfiguration.swift
similarity index 100%
rename from Showcase/Showcase/Pages/Components/Button/ButtonConfiguration.swift
rename to DesignToolbox/DesignToolbox/Pages/Components/Button/ButtonConfiguration.swift
diff --git a/Showcase/Showcase/Pages/Components/Button/ButtonElement.swift b/DesignToolbox/DesignToolbox/Pages/Components/Button/ButtonElement.swift
similarity index 89%
rename from Showcase/Showcase/Pages/Components/Button/ButtonElement.swift
rename to DesignToolbox/DesignToolbox/Pages/Components/Button/ButtonElement.swift
index f7ddc0b1cb..9fcae8d98d 100644
--- a/Showcase/Showcase/Pages/Components/Button/ButtonElement.swift
+++ b/DesignToolbox/DesignToolbox/Pages/Components/Button/ButtonElement.swift
@@ -13,7 +13,7 @@
import SwiftUI
-struct ButtonElement: ShowcaseElement {
+struct ButtonElement: DesignToolboxElement {
let name: String
let image: Image
let pageDescription: AnyView
@@ -21,7 +21,7 @@ struct ButtonElement: ShowcaseElement {
init() {
name = "app_components_button_label"
image = Image(decorative: "il_component_button").renderingMode(.original)
- pageDescription = AnyView(ShowcaseElementPage(
+ pageDescription = AnyView(DesignToolboxElementPage(
name: name,
image: nil,
description: "app_components_button_description_text",
diff --git a/Showcase/Showcase/Pages/Components/Button/ButtonPage.swift b/DesignToolbox/DesignToolbox/Pages/Components/Button/ButtonPage.swift
similarity index 100%
rename from Showcase/Showcase/Pages/Components/Button/ButtonPage.swift
rename to DesignToolbox/DesignToolbox/Pages/Components/Button/ButtonPage.swift
diff --git a/Showcase/Showcase/Pages/Components/ComponentElement.swift b/DesignToolbox/DesignToolbox/Pages/Components/ComponentElement.swift
similarity index 90%
rename from Showcase/Showcase/Pages/Components/ComponentElement.swift
rename to DesignToolbox/DesignToolbox/Pages/Components/ComponentElement.swift
index 648435745a..69bc6de71e 100644
--- a/Showcase/Showcase/Pages/Components/ComponentElement.swift
+++ b/DesignToolbox/DesignToolbox/Pages/Components/ComponentElement.swift
@@ -13,4 +13,4 @@
import Foundation
-typealias ComponentElement = ShowcaseElement
+typealias ComponentElement = DesignToolboxElement
diff --git a/Showcase/Showcase/Pages/Components/ComponentsPage.swift b/DesignToolbox/DesignToolbox/Pages/Components/ComponentsPage.swift
similarity index 84%
rename from Showcase/Showcase/Pages/Components/ComponentsPage.swift
rename to DesignToolbox/DesignToolbox/Pages/Components/ComponentsPage.swift
index 3ed0f61c99..da945344f7 100644
--- a/Showcase/Showcase/Pages/Components/ComponentsPage.swift
+++ b/DesignToolbox/DesignToolbox/Pages/Components/ComponentsPage.swift
@@ -17,12 +17,12 @@ import SwiftUI
struct ComponentsPage: View {
- let componentElements: [ShowcaseElement] = [
+ let componentElements: [DesignToolboxElement] = [
ButtonElement()
]
var body: some View {
- ShowcaseElementsPage(elements: componentElements)
+ DesignToolboxElementsPage(elements: componentElements)
.oudsNavigationTitle("app_bottomBar_components_label")
}
}
diff --git a/Showcase/Showcase/Pages/Components/EmptyState/EmptyState.swift b/DesignToolbox/DesignToolbox/Pages/Components/EmptyState/EmptyState.swift
similarity index 100%
rename from Showcase/Showcase/Pages/Components/EmptyState/EmptyState.swift
rename to DesignToolbox/DesignToolbox/Pages/Components/EmptyState/EmptyState.swift
diff --git a/Showcase/Showcase/Pages/Components/Utils/ComponentPage.swift b/DesignToolbox/DesignToolbox/Pages/Components/Utils/ComponentPage.swift
similarity index 93%
rename from Showcase/Showcase/Pages/Components/Utils/ComponentPage.swift
rename to DesignToolbox/DesignToolbox/Pages/Components/Utils/ComponentPage.swift
index b919de7dd6..29304df177 100644
--- a/Showcase/Showcase/Pages/Components/Utils/ComponentPage.swift
+++ b/DesignToolbox/DesignToolbox/Pages/Components/Utils/ComponentPage.swift
@@ -56,12 +56,12 @@ struct ComponentConfigurationView: View where Componen
componentView(configuration)
// No padding here, the component erea keep all the frame horizontaly
- ShowcaseConfiguration {
+ DesignToolboxConfiguration {
configurationView(configuration)
}
.padding(.horizontal, theme.spaces.spaceFixedMedium)
- ShowcaseCode(code: configuration.code, titleText: "app_components_common_viewCodeExample_label")
+ DesignToolboxCode(code: configuration.code, titleText: "app_components_common_viewCodeExample_label")
.padding(.horizontal, theme.spaces.spaceFixedMedium)
}
.padding(.bottom, theme.spaces.spaceFixedMedium)
diff --git a/Showcase/Showcase/Pages/ThemeSelection/ThemeSelection.swift b/DesignToolbox/DesignToolbox/Pages/ThemeSelection/ThemeSelection.swift
similarity index 100%
rename from Showcase/Showcase/Pages/ThemeSelection/ThemeSelection.swift
rename to DesignToolbox/DesignToolbox/Pages/ThemeSelection/ThemeSelection.swift
diff --git a/Showcase/Showcase/Pages/Tokens/Border/BorderTokenElement.swift b/DesignToolbox/DesignToolbox/Pages/Tokens/Border/BorderTokenElement.swift
similarity index 88%
rename from Showcase/Showcase/Pages/Tokens/Border/BorderTokenElement.swift
rename to DesignToolbox/DesignToolbox/Pages/Tokens/Border/BorderTokenElement.swift
index 7b56d2e93c..da3cdbbafd 100644
--- a/Showcase/Showcase/Pages/Tokens/Border/BorderTokenElement.swift
+++ b/DesignToolbox/DesignToolbox/Pages/Tokens/Border/BorderTokenElement.swift
@@ -13,7 +13,7 @@
import SwiftUI
-struct BorderTokenElement: ShowcaseElement {
+struct BorderTokenElement: DesignToolboxElement {
let name: String
let image: Image
let pageDescription: AnyView
@@ -21,7 +21,7 @@ struct BorderTokenElement: ShowcaseElement {
init() {
name = "app_tokens_border_label"
image = Image(decorative: "ic_border").renderingMode(.template)
- pageDescription = AnyView(ShowcaseElementPage(
+ pageDescription = AnyView(DesignToolboxElementPage(
name: name,
image: Image(decorative: "ic_border").renderingMode(.template),
description: "app_tokens_border_description_text",
diff --git a/Showcase/Showcase/Pages/Tokens/Border/BorderTokenPage.swift b/DesignToolbox/DesignToolbox/Pages/Tokens/Border/BorderTokenPage.swift
similarity index 94%
rename from Showcase/Showcase/Pages/Tokens/Border/BorderTokenPage.swift
rename to DesignToolbox/DesignToolbox/Pages/Tokens/Border/BorderTokenPage.swift
index 8663894556..89f94a4215 100644
--- a/Showcase/Showcase/Pages/Tokens/Border/BorderTokenPage.swift
+++ b/DesignToolbox/DesignToolbox/Pages/Tokens/Border/BorderTokenPage.swift
@@ -24,7 +24,7 @@ struct BorderTokenPage: View {
VStack(alignment: .leading, spacing: theme.spaces.spaceFixedMedium) {
Section {
VStack(alignment: .leading, spacing: theme.spaces.spaceFixedNone) {
- ShowcaseCode(code: "theme.borders.borderWidthDefault", titleText: "app_tokens_common_viewCodeExample_label")
+ DesignToolboxCode(code: "theme.borders.borderWidthDefault", titleText: "app_tokens_common_viewCodeExample_label")
}
}
Section {
@@ -90,7 +90,7 @@ struct BorderTokenPage: View {
let name = namedWidth.rawValue
let value = String(format: "%.2f pt", token)
- ShowcaseTokenIllustration(tokenName: name, tokenValue: value) {
+ DesignToolboxTokenIllustration(tokenName: name, tokenValue: value) {
RectangleBackground()
.oudsBorder(style: theme.borders.borderStyleDefault,
width: token,
@@ -110,7 +110,7 @@ struct BorderTokenPage: View {
let name = namedRadius.rawValue
let value = String(format: "%.2f pt", token)
- ShowcaseTokenIllustration(tokenName: name, tokenValue: value) {
+ DesignToolboxTokenIllustration(tokenName: name, tokenValue: value) {
RectangleBackground()
.oudsBorder(style: theme.borders.borderStyleDefault,
width: theme.borders.borderWidthDefault,
@@ -130,7 +130,7 @@ struct BorderTokenPage: View {
let name = namedStyle.rawValue
let value = token
- ShowcaseTokenIllustration(tokenName: name, tokenValue: value) {
+ DesignToolboxTokenIllustration(tokenName: name, tokenValue: value) {
RectangleBackground()
.oudsBorder(style: token,
width: theme.borders.borderWidthDefault,
diff --git a/Showcase/Showcase/Pages/Tokens/Color/ColorTokenElement.swift b/DesignToolbox/DesignToolbox/Pages/Tokens/Color/ColorTokenElement.swift
similarity index 89%
rename from Showcase/Showcase/Pages/Tokens/Color/ColorTokenElement.swift
rename to DesignToolbox/DesignToolbox/Pages/Tokens/Color/ColorTokenElement.swift
index 06188ed0b5..e57d97b833 100644
--- a/Showcase/Showcase/Pages/Tokens/Color/ColorTokenElement.swift
+++ b/DesignToolbox/DesignToolbox/Pages/Tokens/Color/ColorTokenElement.swift
@@ -13,7 +13,7 @@
import SwiftUI
-struct ColorTokenElement: ShowcaseElement {
+struct ColorTokenElement: DesignToolboxElement {
let name: String
let image: Image
let pageDescription: AnyView
@@ -21,7 +21,7 @@ struct ColorTokenElement: ShowcaseElement {
init() {
name = "app_tokens_color_label"
image = Image(decorative: "ic_palette").renderingMode(.template)
- pageDescription = AnyView(ShowcaseElementPage(
+ pageDescription = AnyView(DesignToolboxElementPage(
name: name,
image: Image(decorative: "ic_palette").renderingMode(.template),
description: "app_tokens_color_description_text",
diff --git a/Showcase/Showcase/Pages/Tokens/Color/ColorTokenPage.swift b/DesignToolbox/DesignToolbox/Pages/Tokens/Color/ColorTokenPage.swift
similarity index 95%
rename from Showcase/Showcase/Pages/Tokens/Color/ColorTokenPage.swift
rename to DesignToolbox/DesignToolbox/Pages/Tokens/Color/ColorTokenPage.swift
index 9db6610a48..ddf0e3790c 100644
--- a/Showcase/Showcase/Pages/Tokens/Color/ColorTokenPage.swift
+++ b/DesignToolbox/DesignToolbox/Pages/Tokens/Color/ColorTokenPage.swift
@@ -25,7 +25,7 @@ struct ColorTokenPage: View {
var body: some View {
Group {
Section {
- ShowcaseCode(code: "theme.colors.colorBgPrimary.color(for: colorScheme)", titleText: "app_tokens_common_viewCodeExample_label")
+ DesignToolboxCode(code: "theme.colors.colorBgPrimary.color(for: colorScheme)", titleText: "app_tokens_common_viewCodeExample_label")
}
Section { illustrationForAction() } header: { header("Action") }
Section { illustrationForAlways() } header: { header("Always") }
@@ -45,7 +45,7 @@ struct ColorTokenPage: View {
// MARK: Private helpers
private func header(_ text: String) -> some View {
- Text(text).showcaseSectionHeaderStyle()
+ Text(text).designToolboxSectionHeaderStyle()
}
private func illustrationForBackground() -> some View {
@@ -147,7 +147,7 @@ struct ColorTokenPage: View {
var body: some View {
let colorRawToken = colorScheme == .dark ? token.dark : token.light
- ShowcaseTokenIllustration(tokenName: name, tokenValue: colorRawToken) {
+ DesignToolboxTokenIllustration(tokenName: name, tokenValue: colorRawToken) {
Rectangle()
.fill(colorRawToken.color)
.frame(width: 64, height: 64)
diff --git a/Showcase/Showcase/Pages/Tokens/Color/NamedColor/NamedColor+Action.swift b/DesignToolbox/DesignToolbox/Pages/Tokens/Color/NamedColor/NamedColor+Action.swift
similarity index 100%
rename from Showcase/Showcase/Pages/Tokens/Color/NamedColor/NamedColor+Action.swift
rename to DesignToolbox/DesignToolbox/Pages/Tokens/Color/NamedColor/NamedColor+Action.swift
diff --git a/Showcase/Showcase/Pages/Tokens/Color/NamedColor/NamedColor+Always.swift b/DesignToolbox/DesignToolbox/Pages/Tokens/Color/NamedColor/NamedColor+Always.swift
similarity index 100%
rename from Showcase/Showcase/Pages/Tokens/Color/NamedColor/NamedColor+Always.swift
rename to DesignToolbox/DesignToolbox/Pages/Tokens/Color/NamedColor/NamedColor+Always.swift
diff --git a/Showcase/Showcase/Pages/Tokens/Color/NamedColor/NamedColor+Background.swift b/DesignToolbox/DesignToolbox/Pages/Tokens/Color/NamedColor/NamedColor+Background.swift
similarity index 100%
rename from Showcase/Showcase/Pages/Tokens/Color/NamedColor/NamedColor+Background.swift
rename to DesignToolbox/DesignToolbox/Pages/Tokens/Color/NamedColor/NamedColor+Background.swift
diff --git a/Showcase/Showcase/Pages/Tokens/Color/NamedColor/NamedColor+Border.swift b/DesignToolbox/DesignToolbox/Pages/Tokens/Color/NamedColor/NamedColor+Border.swift
similarity index 100%
rename from Showcase/Showcase/Pages/Tokens/Color/NamedColor/NamedColor+Border.swift
rename to DesignToolbox/DesignToolbox/Pages/Tokens/Color/NamedColor/NamedColor+Border.swift
diff --git a/Showcase/Showcase/Pages/Tokens/Color/NamedColor/NamedColor+Chart.swift b/DesignToolbox/DesignToolbox/Pages/Tokens/Color/NamedColor/NamedColor+Chart.swift
similarity index 100%
rename from Showcase/Showcase/Pages/Tokens/Color/NamedColor/NamedColor+Chart.swift
rename to DesignToolbox/DesignToolbox/Pages/Tokens/Color/NamedColor/NamedColor+Chart.swift
diff --git a/Showcase/Showcase/Pages/Tokens/Color/NamedColor/NamedColor+Content.swift b/DesignToolbox/DesignToolbox/Pages/Tokens/Color/NamedColor/NamedColor+Content.swift
similarity index 100%
rename from Showcase/Showcase/Pages/Tokens/Color/NamedColor/NamedColor+Content.swift
rename to DesignToolbox/DesignToolbox/Pages/Tokens/Color/NamedColor/NamedColor+Content.swift
diff --git a/Showcase/Showcase/Pages/Tokens/Color/NamedColor/NamedColor+Decorative.swift b/DesignToolbox/DesignToolbox/Pages/Tokens/Color/NamedColor/NamedColor+Decorative.swift
similarity index 100%
rename from Showcase/Showcase/Pages/Tokens/Color/NamedColor/NamedColor+Decorative.swift
rename to DesignToolbox/DesignToolbox/Pages/Tokens/Color/NamedColor/NamedColor+Decorative.swift
diff --git a/Showcase/Showcase/Pages/Tokens/Color/NamedColor/NamedColor+Opacity.swift b/DesignToolbox/DesignToolbox/Pages/Tokens/Color/NamedColor/NamedColor+Opacity.swift
similarity index 100%
rename from Showcase/Showcase/Pages/Tokens/Color/NamedColor/NamedColor+Opacity.swift
rename to DesignToolbox/DesignToolbox/Pages/Tokens/Color/NamedColor/NamedColor+Opacity.swift
diff --git a/Showcase/Showcase/Pages/Tokens/Color/NamedColor/NamedColor+Overlay.swift b/DesignToolbox/DesignToolbox/Pages/Tokens/Color/NamedColor/NamedColor+Overlay.swift
similarity index 100%
rename from Showcase/Showcase/Pages/Tokens/Color/NamedColor/NamedColor+Overlay.swift
rename to DesignToolbox/DesignToolbox/Pages/Tokens/Color/NamedColor/NamedColor+Overlay.swift
diff --git a/Showcase/Showcase/Pages/Tokens/Color/NamedColor/NamedColor+Repository.swift b/DesignToolbox/DesignToolbox/Pages/Tokens/Color/NamedColor/NamedColor+Repository.swift
similarity index 100%
rename from Showcase/Showcase/Pages/Tokens/Color/NamedColor/NamedColor+Repository.swift
rename to DesignToolbox/DesignToolbox/Pages/Tokens/Color/NamedColor/NamedColor+Repository.swift
diff --git a/Showcase/Showcase/Pages/Tokens/Color/NamedColor/NamedColor+Surface.swift b/DesignToolbox/DesignToolbox/Pages/Tokens/Color/NamedColor/NamedColor+Surface.swift
similarity index 100%
rename from Showcase/Showcase/Pages/Tokens/Color/NamedColor/NamedColor+Surface.swift
rename to DesignToolbox/DesignToolbox/Pages/Tokens/Color/NamedColor/NamedColor+Surface.swift
diff --git a/Showcase/Showcase/Pages/Tokens/Color/NamedColor/NamedColor.swift b/DesignToolbox/DesignToolbox/Pages/Tokens/Color/NamedColor/NamedColor.swift
similarity index 100%
rename from Showcase/Showcase/Pages/Tokens/Color/NamedColor/NamedColor.swift
rename to DesignToolbox/DesignToolbox/Pages/Tokens/Color/NamedColor/NamedColor.swift
diff --git a/Showcase/Showcase/Pages/Tokens/Dimension/DimensionTokenElement.swift b/DesignToolbox/DesignToolbox/Pages/Tokens/Dimension/DimensionTokenElement.swift
similarity index 78%
rename from Showcase/Showcase/Pages/Tokens/Dimension/DimensionTokenElement.swift
rename to DesignToolbox/DesignToolbox/Pages/Tokens/Dimension/DimensionTokenElement.swift
index 41d34db72d..b7ea45b5e1 100644
--- a/Showcase/Showcase/Pages/Tokens/Dimension/DimensionTokenElement.swift
+++ b/DesignToolbox/DesignToolbox/Pages/Tokens/Dimension/DimensionTokenElement.swift
@@ -13,24 +13,24 @@
import SwiftUI
-struct DimensionTokenElement: ShowcaseElement {
+struct DimensionTokenElement: DesignToolboxElement {
let name: String
let image: Image
let pageDescription: AnyView
init() {
- let variants: [ShowcaseElement] = [
+ let variants: [DesignToolboxElement] = [
SizeTokenElement(),
SpaceTokenElement(),
]
name = "app_tokens_dimension_label"
image = Image(decorative: "ic_dimension").renderingMode(.template)
- pageDescription = AnyView(ShowcaseElementPage(
+ pageDescription = AnyView(DesignToolboxElementPage(
name: name,
image: Image(decorative: "ic_dimension").renderingMode(.template),
description: "app_tokens_dimension_description_text",
- illustration: AnyView(ShowcaseVariantElement(elements: variants))))
+ illustration: AnyView(DesignToolboxVariantElement(elements: variants))))
}
}
diff --git a/Showcase/Showcase/Pages/Tokens/Dimension/Size/NamedSize/NamedSize+IconDecorative.swift b/DesignToolbox/DesignToolbox/Pages/Tokens/Dimension/Size/NamedSize/NamedSize+IconDecorative.swift
similarity index 100%
rename from Showcase/Showcase/Pages/Tokens/Dimension/Size/NamedSize/NamedSize+IconDecorative.swift
rename to DesignToolbox/DesignToolbox/Pages/Tokens/Dimension/Size/NamedSize/NamedSize+IconDecorative.swift
diff --git a/Showcase/Showcase/Pages/Tokens/Dimension/Size/NamedSize/NamedSize+IconWithTypography.swift b/DesignToolbox/DesignToolbox/Pages/Tokens/Dimension/Size/NamedSize/NamedSize+IconWithTypography.swift
similarity index 100%
rename from Showcase/Showcase/Pages/Tokens/Dimension/Size/NamedSize/NamedSize+IconWithTypography.swift
rename to DesignToolbox/DesignToolbox/Pages/Tokens/Dimension/Size/NamedSize/NamedSize+IconWithTypography.swift
diff --git a/Showcase/Showcase/Pages/Tokens/Dimension/Size/SizeTokenElement.swift b/DesignToolbox/DesignToolbox/Pages/Tokens/Dimension/Size/SizeTokenElement.swift
similarity index 89%
rename from Showcase/Showcase/Pages/Tokens/Dimension/Size/SizeTokenElement.swift
rename to DesignToolbox/DesignToolbox/Pages/Tokens/Dimension/Size/SizeTokenElement.swift
index 5c24a97e9b..148c821b5f 100644
--- a/Showcase/Showcase/Pages/Tokens/Dimension/Size/SizeTokenElement.swift
+++ b/DesignToolbox/DesignToolbox/Pages/Tokens/Dimension/Size/SizeTokenElement.swift
@@ -13,7 +13,7 @@
import SwiftUI
-struct SizeTokenElement: ShowcaseElement {
+struct SizeTokenElement: DesignToolboxElement {
let name: String
let image: Image
let pageDescription: AnyView
@@ -21,7 +21,7 @@ struct SizeTokenElement: ShowcaseElement {
init() {
name = "app_tokens_dimension_size_label"
image = Image(decorative: "ic_dimension").renderingMode(.template)
- pageDescription = AnyView(ShowcaseElementPage(
+ pageDescription = AnyView(DesignToolboxElementPage(
name: name,
image: Image(decorative: "ic_dimension").renderingMode(.template),
description: "app_tokens_dimension_size_description_text",
diff --git a/Showcase/Showcase/Pages/Tokens/Dimension/Size/SizeTokenPage.swift b/DesignToolbox/DesignToolbox/Pages/Tokens/Dimension/Size/SizeTokenPage.swift
similarity index 93%
rename from Showcase/Showcase/Pages/Tokens/Dimension/Size/SizeTokenPage.swift
rename to DesignToolbox/DesignToolbox/Pages/Tokens/Dimension/Size/SizeTokenPage.swift
index b514b665f2..4ff5bd8539 100644
--- a/Showcase/Showcase/Pages/Tokens/Dimension/Size/SizeTokenPage.swift
+++ b/DesignToolbox/DesignToolbox/Pages/Tokens/Dimension/Size/SizeTokenPage.swift
@@ -24,7 +24,8 @@ struct SizeTokenPage: View {
var body: some View {
Group {
Section {
- ShowcaseCode(code: "theme.sizeIconWithHeadingXLargeShort.dimension(for: horizontalSizeClass ?? .regular)", titleText: "app_tokens_common_viewCodeExample_label")
+ DesignToolboxCode(code: "theme.sizeIconWithHeadingXLargeShort.dimension(for: horizontalSizeClass ?? .regular)",
+ titleText: "app_tokens_common_viewCodeExample_label")
}
Section {
VStack(alignment: .center, spacing: theme.spaces.spaceFixedNone) {
@@ -62,7 +63,7 @@ struct SizeTokenPage: View {
let name = namedSize.rawValue
let value = String(format: "%.2f pt", token)
- ShowcaseTokenIllustration(tokenName: name, tokenValue: value) {
+ DesignToolboxTokenIllustration(tokenName: name, tokenValue: value) {
ZStack {
Rectangle()
.fill(theme.colors.colorSurfaceStatusNeutralMuted.color(for: colorScheme))
@@ -96,7 +97,7 @@ struct SizeTokenPage: View {
let name = namedSize.sizeDescription
let value = String(format: "%.2f pt", token)
- ShowcaseTokenIllustration(tokenName: name, tokenValue: value) {
+ DesignToolboxTokenIllustration(tokenName: name, tokenValue: value) {
ZStack {
Rectangle()
.fill(theme.colors.colorSurfaceStatusNeutralMuted.color(for: colorScheme))
@@ -169,7 +170,7 @@ struct SizeTokenPage: View {
}
private func sectionHeader(_ text: LocalizedStringKey) -> some View {
- Text(text).showcaseSectionHeaderStyle()
+ Text(text).designToolboxSectionHeaderStyle()
}
}
diff --git a/Showcase/Showcase/Pages/Tokens/Dimension/Space/NamedSpace/NameSpace+GapInline.swift b/DesignToolbox/DesignToolbox/Pages/Tokens/Dimension/Space/NamedSpace/NameSpace+GapInline.swift
similarity index 100%
rename from Showcase/Showcase/Pages/Tokens/Dimension/Space/NamedSpace/NameSpace+GapInline.swift
rename to DesignToolbox/DesignToolbox/Pages/Tokens/Dimension/Space/NamedSpace/NameSpace+GapInline.swift
diff --git a/Showcase/Showcase/Pages/Tokens/Dimension/Space/NamedSpace/NameSpace+GapStack.swift b/DesignToolbox/DesignToolbox/Pages/Tokens/Dimension/Space/NamedSpace/NameSpace+GapStack.swift
similarity index 100%
rename from Showcase/Showcase/Pages/Tokens/Dimension/Space/NamedSpace/NameSpace+GapStack.swift
rename to DesignToolbox/DesignToolbox/Pages/Tokens/Dimension/Space/NamedSpace/NameSpace+GapStack.swift
diff --git a/Showcase/Showcase/Pages/Tokens/Dimension/Space/NamedSpace/NameSpace+PaddingInline.swift b/DesignToolbox/DesignToolbox/Pages/Tokens/Dimension/Space/NamedSpace/NameSpace+PaddingInline.swift
similarity index 100%
rename from Showcase/Showcase/Pages/Tokens/Dimension/Space/NamedSpace/NameSpace+PaddingInline.swift
rename to DesignToolbox/DesignToolbox/Pages/Tokens/Dimension/Space/NamedSpace/NameSpace+PaddingInline.swift
diff --git a/Showcase/Showcase/Pages/Tokens/Dimension/Space/NamedSpace/NameSpace+PaddingInset.swift b/DesignToolbox/DesignToolbox/Pages/Tokens/Dimension/Space/NamedSpace/NameSpace+PaddingInset.swift
similarity index 100%
rename from Showcase/Showcase/Pages/Tokens/Dimension/Space/NamedSpace/NameSpace+PaddingInset.swift
rename to DesignToolbox/DesignToolbox/Pages/Tokens/Dimension/Space/NamedSpace/NameSpace+PaddingInset.swift
diff --git a/Showcase/Showcase/Pages/Tokens/Dimension/Space/NamedSpace/NameSpace+PaddingStack.swift b/DesignToolbox/DesignToolbox/Pages/Tokens/Dimension/Space/NamedSpace/NameSpace+PaddingStack.swift
similarity index 100%
rename from Showcase/Showcase/Pages/Tokens/Dimension/Space/NamedSpace/NameSpace+PaddingStack.swift
rename to DesignToolbox/DesignToolbox/Pages/Tokens/Dimension/Space/NamedSpace/NameSpace+PaddingStack.swift
diff --git a/Showcase/Showcase/Pages/Tokens/Dimension/Space/NamedSpace/NamedSpace+Fixed.swift b/DesignToolbox/DesignToolbox/Pages/Tokens/Dimension/Space/NamedSpace/NamedSpace+Fixed.swift
similarity index 100%
rename from Showcase/Showcase/Pages/Tokens/Dimension/Space/NamedSpace/NamedSpace+Fixed.swift
rename to DesignToolbox/DesignToolbox/Pages/Tokens/Dimension/Space/NamedSpace/NamedSpace+Fixed.swift
diff --git a/Showcase/Showcase/Pages/Tokens/Dimension/Space/NamedSpace/NamedSpace+Scaled.swift b/DesignToolbox/DesignToolbox/Pages/Tokens/Dimension/Space/NamedSpace/NamedSpace+Scaled.swift
similarity index 100%
rename from Showcase/Showcase/Pages/Tokens/Dimension/Space/NamedSpace/NamedSpace+Scaled.swift
rename to DesignToolbox/DesignToolbox/Pages/Tokens/Dimension/Space/NamedSpace/NamedSpace+Scaled.swift
diff --git a/Showcase/Showcase/Pages/Tokens/Dimension/Space/SpaceBasicTokenIllustrations.swift b/DesignToolbox/DesignToolbox/Pages/Tokens/Dimension/Space/SpaceBasicTokenIllustrations.swift
similarity index 97%
rename from Showcase/Showcase/Pages/Tokens/Dimension/Space/SpaceBasicTokenIllustrations.swift
rename to DesignToolbox/DesignToolbox/Pages/Tokens/Dimension/Space/SpaceBasicTokenIllustrations.swift
index af4821698e..6c5598b723 100644
--- a/Showcase/Showcase/Pages/Tokens/Dimension/Space/SpaceBasicTokenIllustrations.swift
+++ b/DesignToolbox/DesignToolbox/Pages/Tokens/Dimension/Space/SpaceBasicTokenIllustrations.swift
@@ -77,7 +77,7 @@ struct ScaledSpaceProperty: View {
verticalSizeClass == .regular ? "regular" : "compact",
verticalDimensionRawToken)
- return ShowcaseTokenIllustration(tokenName: name, tokenValue: value) {
+ return DesignToolboxTokenIllustration(tokenName: name, tokenValue: value) {
SpaceScaledIllustration(horizontalDimension: horizontalDimensionRawToken, verticalDimension: verticalDimensionRawToken)
}
}
diff --git a/Showcase/Showcase/Pages/Tokens/Dimension/Space/SpaceGapTokenIllustrations.swift b/DesignToolbox/DesignToolbox/Pages/Tokens/Dimension/Space/SpaceGapTokenIllustrations.swift
similarity index 100%
rename from Showcase/Showcase/Pages/Tokens/Dimension/Space/SpaceGapTokenIllustrations.swift
rename to DesignToolbox/DesignToolbox/Pages/Tokens/Dimension/Space/SpaceGapTokenIllustrations.swift
diff --git a/Showcase/Showcase/Pages/Tokens/Dimension/Space/SpacePaddingTokenIllustrations.swift b/DesignToolbox/DesignToolbox/Pages/Tokens/Dimension/Space/SpacePaddingTokenIllustrations.swift
similarity index 100%
rename from Showcase/Showcase/Pages/Tokens/Dimension/Space/SpacePaddingTokenIllustrations.swift
rename to DesignToolbox/DesignToolbox/Pages/Tokens/Dimension/Space/SpacePaddingTokenIllustrations.swift
diff --git a/Showcase/Showcase/Pages/Tokens/Dimension/Space/SpaceTokenCommonIllustration.swift b/DesignToolbox/DesignToolbox/Pages/Tokens/Dimension/Space/SpaceTokenCommonIllustration.swift
similarity index 97%
rename from Showcase/Showcase/Pages/Tokens/Dimension/Space/SpaceTokenCommonIllustration.swift
rename to DesignToolbox/DesignToolbox/Pages/Tokens/Dimension/Space/SpaceTokenCommonIllustration.swift
index e47d9b4d19..8196ec07e1 100644
--- a/Showcase/Showcase/Pages/Tokens/Dimension/Space/SpaceTokenCommonIllustration.swift
+++ b/DesignToolbox/DesignToolbox/Pages/Tokens/Dimension/Space/SpaceTokenCommonIllustration.swift
@@ -73,7 +73,7 @@ struct SpaceTokenVariant: View where TokenIllustration: View
let name = namedSpaceToken.name
let value = String(format: "%.2f pt", token)
- return ShowcaseTokenIllustration(tokenName: name, tokenValue: value) {
+ return DesignToolboxTokenIllustration(tokenName: name, tokenValue: value) {
illustration(token)
}
}
@@ -107,11 +107,11 @@ struct SpaceCommonIllustration: View {
var body: some View {
ZStack(alignment: zStackAlignment) {
// Background color
- ShowcaseTokenIllustrationBackground()
+ DesignToolboxTokenIllustrationBackground()
switch padding {
case .topLeading: // ZStack topleading
- ShowcaseTokenIllustrationBackground()
+ DesignToolboxTokenIllustrationBackground()
.padding(.top, dimension)
.padding(.leading, dimension)
.background(theme.colors.colorContentStatusInfo.color(for: colorScheme))
@@ -171,7 +171,7 @@ struct SpaceScaledIllustration: View {
var body: some View {
ZStack(alignment: .center) {
// Background color
- ShowcaseTokenIllustrationBackground()
+ DesignToolboxTokenIllustrationBackground()
// Illustration
SpaceIllustrationRectangle(width: horizontalDimension)
diff --git a/Showcase/Showcase/Pages/Tokens/Dimension/Space/SpaceTokenElement.swift b/DesignToolbox/DesignToolbox/Pages/Tokens/Dimension/Space/SpaceTokenElement.swift
similarity index 89%
rename from Showcase/Showcase/Pages/Tokens/Dimension/Space/SpaceTokenElement.swift
rename to DesignToolbox/DesignToolbox/Pages/Tokens/Dimension/Space/SpaceTokenElement.swift
index d3795b0ac6..8bb0786759 100644
--- a/Showcase/Showcase/Pages/Tokens/Dimension/Space/SpaceTokenElement.swift
+++ b/DesignToolbox/DesignToolbox/Pages/Tokens/Dimension/Space/SpaceTokenElement.swift
@@ -13,7 +13,7 @@
import SwiftUI
-struct SpaceTokenElement: ShowcaseElement {
+struct SpaceTokenElement: DesignToolboxElement {
let name: String
let image: Image
let pageDescription: AnyView
@@ -21,7 +21,7 @@ struct SpaceTokenElement: ShowcaseElement {
init() {
name = "app_tokens_dimension_space_label"
image = Image(decorative: "ic_dimension").renderingMode(.template)
- pageDescription = AnyView(ShowcaseElementPage(
+ pageDescription = AnyView(DesignToolboxElementPage(
name: name,
image: Image(decorative: "ic_dimension").renderingMode(.template),
description: "app_tokens_dimension_space_description_text",
diff --git a/Showcase/Showcase/Pages/Tokens/Dimension/Space/SpaceTokenPage.swift b/DesignToolbox/DesignToolbox/Pages/Tokens/Dimension/Space/SpaceTokenPage.swift
similarity index 90%
rename from Showcase/Showcase/Pages/Tokens/Dimension/Space/SpaceTokenPage.swift
rename to DesignToolbox/DesignToolbox/Pages/Tokens/Dimension/Space/SpaceTokenPage.swift
index 06272295da..ca7bd4b6c6 100644
--- a/Showcase/Showcase/Pages/Tokens/Dimension/Space/SpaceTokenPage.swift
+++ b/DesignToolbox/DesignToolbox/Pages/Tokens/Dimension/Space/SpaceTokenPage.swift
@@ -25,7 +25,7 @@ struct SpaceTokenPage: View {
var body: some View {
Group {
Section {
- ShowcaseCode(code: "theme.spaceScaledMedium.dimension(for: horizontalSizeClass ?? .regular)", titleText: "app_tokens_common_viewCodeExample_label")
+ DesignToolboxCode(code: "theme.spaceScaledMedium.dimension(for: horizontalSizeClass ?? .regular)", titleText: "app_tokens_common_viewCodeExample_label")
}
// Basic Space Tokens
Section { ScaledSpaceProperty() } header: {
@@ -58,7 +58,7 @@ struct SpaceTokenPage: View {
// MARK: Common helpers
private func header(_ text: LocalizedStringKey) -> some View {
- Text(text).showcaseSectionHeaderStyle()
+ Text(text).designToolboxSectionHeaderStyle()
}
}
diff --git a/Showcase/Showcase/Pages/Tokens/Elevation/ElevationTokenElement.swift b/DesignToolbox/DesignToolbox/Pages/Tokens/Elevation/ElevationTokenElement.swift
similarity index 88%
rename from Showcase/Showcase/Pages/Tokens/Elevation/ElevationTokenElement.swift
rename to DesignToolbox/DesignToolbox/Pages/Tokens/Elevation/ElevationTokenElement.swift
index 197204845e..99b0b0ed59 100644
--- a/Showcase/Showcase/Pages/Tokens/Elevation/ElevationTokenElement.swift
+++ b/DesignToolbox/DesignToolbox/Pages/Tokens/Elevation/ElevationTokenElement.swift
@@ -13,7 +13,7 @@
import SwiftUI
-struct ElevationTokenElement: ShowcaseElement {
+struct ElevationTokenElement: DesignToolboxElement {
let name: String
let image: Image
let pageDescription: AnyView
@@ -21,7 +21,7 @@ struct ElevationTokenElement: ShowcaseElement {
init() {
name = "app_tokens_elevation_label"
image = Image(decorative: "ic_layers").renderingMode(.template)
- pageDescription = AnyView(ShowcaseElementPage(
+ pageDescription = AnyView(DesignToolboxElementPage(
name: name,
image: Image(decorative: "ic_layers").renderingMode(.template),
description: "app_tokens_elevation_description_text",
diff --git a/Showcase/Showcase/Pages/Tokens/Elevation/ElevationTokenPage.swift b/DesignToolbox/DesignToolbox/Pages/Tokens/Elevation/ElevationTokenPage.swift
similarity index 93%
rename from Showcase/Showcase/Pages/Tokens/Elevation/ElevationTokenPage.swift
rename to DesignToolbox/DesignToolbox/Pages/Tokens/Elevation/ElevationTokenPage.swift
index 095d12f8ee..50bb265f07 100644
--- a/Showcase/Showcase/Pages/Tokens/Elevation/ElevationTokenPage.swift
+++ b/DesignToolbox/DesignToolbox/Pages/Tokens/Elevation/ElevationTokenPage.swift
@@ -25,7 +25,7 @@ struct ElevationTokenPage: View {
var body: some View {
VStack(alignment: .leading, spacing: theme.spaces.spaceFixedNone) {
Section {
- ShowcaseCode(code: "theme.elevations.elevationNone.elevation(for: colorScheme)", titleText: "app_tokens_common_viewCodeExample_label")
+ DesignToolboxCode(code: "theme.elevations.elevationNone.elevation(for: colorScheme)", titleText: "app_tokens_common_viewCodeExample_label")
}
Spacer().frame(height: theme.spaces.spaceFixedMedium)
@@ -49,7 +49,7 @@ struct ElevationTokenPage: View {
let name = namedElevation.rawValue
let value = String(format: "x: %.2f, y: %.2f, radius: %.2f\nColor: %@", token.x, token.y, token.radius, token.color)
- ShowcaseTokenIllustration(tokenName: name, tokenValue: value) {
+ DesignToolboxTokenIllustration(tokenName: name, tokenValue: value) {
Rectangle()
.frame(width: theme.sizes.sizeIconDecorative2xl, height: theme.sizes.sizeIconDecorative2xl)
.foregroundColor(theme.colors.colorBgSecondary.color(for: colorScheme))
diff --git a/Showcase/Showcase/Pages/Tokens/Font/FontTokenElement.swift b/DesignToolbox/DesignToolbox/Pages/Tokens/Font/FontTokenElement.swift
similarity index 89%
rename from Showcase/Showcase/Pages/Tokens/Font/FontTokenElement.swift
rename to DesignToolbox/DesignToolbox/Pages/Tokens/Font/FontTokenElement.swift
index af5f050502..e08b0a5241 100644
--- a/Showcase/Showcase/Pages/Tokens/Font/FontTokenElement.swift
+++ b/DesignToolbox/DesignToolbox/Pages/Tokens/Font/FontTokenElement.swift
@@ -13,7 +13,7 @@
import SwiftUI
-struct FontTokenElement: ShowcaseElement {
+struct FontTokenElement: DesignToolboxElement {
let name: String
let image: Image
let pageDescription: AnyView
@@ -21,7 +21,7 @@ struct FontTokenElement: ShowcaseElement {
init() {
name = "app_tokens_typography_label"
image = Image(decorative: "ic_typography").renderingMode(.template)
- pageDescription = AnyView(ShowcaseElementPage(
+ pageDescription = AnyView(DesignToolboxElementPage(
name: name,
image: Image(decorative: "ic_typography").renderingMode(.template),
description: "app_tokens_typography_description_text",
diff --git a/Showcase/Showcase/Pages/Tokens/Font/FontTokenPage.swift b/DesignToolbox/DesignToolbox/Pages/Tokens/Font/FontTokenPage.swift
similarity index 95%
rename from Showcase/Showcase/Pages/Tokens/Font/FontTokenPage.swift
rename to DesignToolbox/DesignToolbox/Pages/Tokens/Font/FontTokenPage.swift
index 5236dc8531..b18de619f8 100644
--- a/Showcase/Showcase/Pages/Tokens/Font/FontTokenPage.swift
+++ b/DesignToolbox/DesignToolbox/Pages/Tokens/Font/FontTokenPage.swift
@@ -24,7 +24,7 @@ struct FontTokenPage: View {
var body: some View {
VStack(alignment: .leading, spacing: theme.spaces.spaceFixedNone) {
Section {
- ShowcaseCode(code: "theme.typeBodyStrongLarge(theme)", titleText: "app_tokens_common_viewCodeExample_label")
+ DesignToolboxCode(code: "theme.typeBodyStrongLarge(theme)", titleText: "app_tokens_common_viewCodeExample_label")
}
Spacer()
diff --git a/Showcase/Showcase/Pages/Tokens/Font/NamedFont/NamedFont.swift b/DesignToolbox/DesignToolbox/Pages/Tokens/Font/NamedFont/NamedFont.swift
similarity index 100%
rename from Showcase/Showcase/Pages/Tokens/Font/NamedFont/NamedFont.swift
rename to DesignToolbox/DesignToolbox/Pages/Tokens/Font/NamedFont/NamedFont.swift
diff --git a/Showcase/Showcase/Pages/Tokens/Font/NamedFont/View+Illustration.swift b/DesignToolbox/DesignToolbox/Pages/Tokens/Font/NamedFont/View+Illustration.swift
similarity index 100%
rename from Showcase/Showcase/Pages/Tokens/Font/NamedFont/View+Illustration.swift
rename to DesignToolbox/DesignToolbox/Pages/Tokens/Font/NamedFont/View+Illustration.swift
diff --git a/Showcase/Showcase/Pages/Tokens/Grid/GridTokenElement.swift b/DesignToolbox/DesignToolbox/Pages/Tokens/Grid/GridTokenElement.swift
similarity index 89%
rename from Showcase/Showcase/Pages/Tokens/Grid/GridTokenElement.swift
rename to DesignToolbox/DesignToolbox/Pages/Tokens/Grid/GridTokenElement.swift
index e86df9e5b3..277f523902 100644
--- a/Showcase/Showcase/Pages/Tokens/Grid/GridTokenElement.swift
+++ b/DesignToolbox/DesignToolbox/Pages/Tokens/Grid/GridTokenElement.swift
@@ -13,7 +13,7 @@
import SwiftUI
-struct GridTokenElement: ShowcaseElement {
+struct GridTokenElement: DesignToolboxElement {
let name: String
let image: Image
let pageDescription: AnyView
@@ -21,7 +21,7 @@ struct GridTokenElement: ShowcaseElement {
init() {
name = "app_tokens_grid_label"
image = Image(decorative: "ic_grid").renderingMode(.template)
- pageDescription = AnyView(ShowcaseElementPage(
+ pageDescription = AnyView(DesignToolboxElementPage(
name: name,
image: Image(decorative: "ic_grid").renderingMode(.template),
description: "app_tokens_grid_description_text",
diff --git a/Showcase/Showcase/Pages/Tokens/Grid/GrisTokenPage.swift b/DesignToolbox/DesignToolbox/Pages/Tokens/Grid/GrisTokenPage.swift
similarity index 91%
rename from Showcase/Showcase/Pages/Tokens/Grid/GrisTokenPage.swift
rename to DesignToolbox/DesignToolbox/Pages/Tokens/Grid/GrisTokenPage.swift
index c664090cfb..ca21071ce7 100644
--- a/Showcase/Showcase/Pages/Tokens/Grid/GrisTokenPage.swift
+++ b/DesignToolbox/DesignToolbox/Pages/Tokens/Grid/GrisTokenPage.swift
@@ -42,12 +42,12 @@ struct GridTokenPage: View {
}
Section {
- ShowcaseCode(code: "theme.gridColumnCount(for: horizontalSizeClass)", titleText: "app_tokens_common_viewCodeExample_label")
+ DesignToolboxCode(code: "theme.gridColumnCount(for: horizontalSizeClass)", titleText: "app_tokens_common_viewCodeExample_label")
}
Section { illustrationForGridTokens() } header: {
Text(horizontalSizeClass.rawValue)
- .showcaseSectionHeaderStyle()
+ .designToolboxSectionHeaderStyle()
}
}
.padding(.horizontal, theme.spaces.spaceFixedMedium)
@@ -68,7 +68,7 @@ struct GridTokenPage: View {
let name = namedGrid.rawValue
let value = String(format: "%.2f pt", token)
- return ShowcaseTokenIllustration(tokenName: name, tokenValue: value) {
+ return DesignToolboxTokenIllustration(tokenName: name, tokenValue: value) {
EmptyView()
}
}
diff --git a/Showcase/Showcase/Pages/Tokens/Opacity/OpacityTokenElement.swift b/DesignToolbox/DesignToolbox/Pages/Tokens/Opacity/OpacityTokenElement.swift
similarity index 89%
rename from Showcase/Showcase/Pages/Tokens/Opacity/OpacityTokenElement.swift
rename to DesignToolbox/DesignToolbox/Pages/Tokens/Opacity/OpacityTokenElement.swift
index 87bd88b187..6ebc94a21d 100644
--- a/Showcase/Showcase/Pages/Tokens/Opacity/OpacityTokenElement.swift
+++ b/DesignToolbox/DesignToolbox/Pages/Tokens/Opacity/OpacityTokenElement.swift
@@ -13,7 +13,7 @@
import SwiftUI
-struct OpacityTokenElement: ShowcaseElement {
+struct OpacityTokenElement: DesignToolboxElement {
let name: String
let image: Image
let pageDescription: AnyView
@@ -21,7 +21,7 @@ struct OpacityTokenElement: ShowcaseElement {
init() {
name = "app_tokens_opacity_label"
image = Image(decorative: "ic_filter_effects").renderingMode(.template)
- pageDescription = AnyView(ShowcaseElementPage(
+ pageDescription = AnyView(DesignToolboxElementPage(
name: name,
image: Image(decorative: "ic_filter_effects").renderingMode(.template),
description: "app_tokens_opacity_description_text",
diff --git a/Showcase/Showcase/Pages/Tokens/Opacity/OpacityTokenPage.swift b/DesignToolbox/DesignToolbox/Pages/Tokens/Opacity/OpacityTokenPage.swift
similarity index 94%
rename from Showcase/Showcase/Pages/Tokens/Opacity/OpacityTokenPage.swift
rename to DesignToolbox/DesignToolbox/Pages/Tokens/Opacity/OpacityTokenPage.swift
index 6245eb1031..8a31dd5f52 100644
--- a/Showcase/Showcase/Pages/Tokens/Opacity/OpacityTokenPage.swift
+++ b/DesignToolbox/DesignToolbox/Pages/Tokens/Opacity/OpacityTokenPage.swift
@@ -24,7 +24,7 @@ struct OpacityTokenPage: View {
var body: some View {
VStack(alignment: .leading, spacing: theme.spaces.spaceFixedNone) {
Section {
- ShowcaseCode(code: "theme.opacities.opacityInvisible", titleText: "app_tokens_common_viewCodeExample_label")
+ DesignToolboxCode(code: "theme.opacities.opacityInvisible", titleText: "app_tokens_common_viewCodeExample_label")
}
Spacer() .frame(height: theme.spaces.spaceFixedMedium)
@@ -48,7 +48,7 @@ struct OpacityTokenPage: View {
let name = opacityName.rawValue
let value = String(format: "%.2f", token)
- ShowcaseTokenIllustration(tokenName: name, tokenValue: value) {
+ DesignToolboxTokenIllustration(tokenName: name, tokenValue: value) {
ZStack {
Image(decorative: "ic_union")
.resizable()
diff --git a/Showcase/Showcase/Pages/Tokens/TokensPage.swift b/DesignToolbox/DesignToolbox/Pages/Tokens/TokensPage.swift
similarity index 87%
rename from Showcase/Showcase/Pages/Tokens/TokensPage.swift
rename to DesignToolbox/DesignToolbox/Pages/Tokens/TokensPage.swift
index f888317551..ab53eda366 100644
--- a/Showcase/Showcase/Pages/Tokens/TokensPage.swift
+++ b/DesignToolbox/DesignToolbox/Pages/Tokens/TokensPage.swift
@@ -15,7 +15,7 @@ import SwiftUI
struct TokensPage: View {
- let tokenElements: [ShowcaseElement] = [
+ let tokenElements: [DesignToolboxElement] = [
BorderTokenElement(),
ColorTokenElement(),
DimensionTokenElement(),
@@ -26,7 +26,7 @@ struct TokensPage: View {
]
var body: some View {
- ShowcaseElementsPage(elements: tokenElements)
+ DesignToolboxElementsPage(elements: tokenElements)
.oudsNavigationTitle("app_bottomBar_tokens_label")
}
}
diff --git a/Showcase/Showcase/Pages/Tokens/Utils/ShowcaseTokenIllustration.swift b/DesignToolbox/DesignToolbox/Pages/Tokens/Utils/DesignToolboxTokenIllustration.swift
similarity index 92%
rename from Showcase/Showcase/Pages/Tokens/Utils/ShowcaseTokenIllustration.swift
rename to DesignToolbox/DesignToolbox/Pages/Tokens/Utils/DesignToolboxTokenIllustration.swift
index 3a1e62b26d..560b847f1b 100644
--- a/Showcase/Showcase/Pages/Tokens/Utils/ShowcaseTokenIllustration.swift
+++ b/DesignToolbox/DesignToolbox/Pages/Tokens/Utils/DesignToolboxTokenIllustration.swift
@@ -2,20 +2,20 @@
// Software Name: OUDS iOS
// SPDX-FileCopyrightText: Copyright (c) Orange SA
// SPDX-License-Identifier: MIT
-//
+//
// This software is distributed under the MIT license,
// the text of which is available at https://opensource.org/license/MIT/
// or see the "LICENSE" file for more details.
-//
+//
// Authors: See CONTRIBUTORS.txt
-// Software description: A SwiftUI components library with code examples for Orange Unified Design System
+// Software description: A SwiftUI components library with code examples for Orange Unified Design System
//
import OUDS
import OUDSTokensSemantic
import SwiftUI
-struct ShowcaseTokenIllustration: View where TokenIllustration: View {
+struct DesignToolboxTokenIllustration: View where TokenIllustration: View {
@Environment(\.theme) private var theme
@Environment(\.colorScheme) private var colorScheme
diff --git a/Showcase/Showcase/Pages/Tokens/Utils/ShowcaseTokkenIllustrationBackground.swift b/DesignToolbox/DesignToolbox/Pages/Tokens/Utils/DesignToolboxTokenIllustrationBackground.swift
similarity index 87%
rename from Showcase/Showcase/Pages/Tokens/Utils/ShowcaseTokkenIllustrationBackground.swift
rename to DesignToolbox/DesignToolbox/Pages/Tokens/Utils/DesignToolboxTokenIllustrationBackground.swift
index 63470f7ed1..8f718360f1 100644
--- a/Showcase/Showcase/Pages/Tokens/Utils/ShowcaseTokkenIllustrationBackground.swift
+++ b/DesignToolbox/DesignToolbox/Pages/Tokens/Utils/DesignToolboxTokenIllustrationBackground.swift
@@ -2,20 +2,20 @@
// Software Name: OUDS iOS
// SPDX-FileCopyrightText: Copyright (c) Orange SA
// SPDX-License-Identifier: MIT
-//
+//
// This software is distributed under the MIT license,
// the text of which is available at https://opensource.org/license/MIT/
// or see the "LICENSE" file for more details.
-//
+//
// Authors: See CONTRIBUTORS.txt
-// Software description: A SwiftUI components library with code examples for Orange Unified Design System
+// Software description: A SwiftUI components library with code examples for Orange Unified Design System
//
import OUDS
import OUDSTokensSemantic
import SwiftUI
-struct ShowcaseTokenIllustrationBackground: View {
+struct DesignToolboxTokenIllustrationBackground: View {
// MARK: Environment properties
diff --git a/Showcase/Showcase/Pages/Utils/Cards/Card.swift b/DesignToolbox/DesignToolbox/Pages/Utils/Cards/Card.swift
similarity index 100%
rename from Showcase/Showcase/Pages/Utils/Cards/Card.swift
rename to DesignToolbox/DesignToolbox/Pages/Utils/Cards/Card.swift
diff --git a/Showcase/Showcase/Pages/Utils/Cards/CardIllustration.swift b/DesignToolbox/DesignToolbox/Pages/Utils/Cards/CardIllustration.swift
similarity index 100%
rename from Showcase/Showcase/Pages/Utils/Cards/CardIllustration.swift
rename to DesignToolbox/DesignToolbox/Pages/Utils/Cards/CardIllustration.swift
diff --git a/Showcase/Showcase/Pages/Utils/ShowcaseCode.swift b/DesignToolbox/DesignToolbox/Pages/Utils/DesignToolboxCode.swift
similarity index 99%
rename from Showcase/Showcase/Pages/Utils/ShowcaseCode.swift
rename to DesignToolbox/DesignToolbox/Pages/Utils/DesignToolboxCode.swift
index 192574ce97..22144022e6 100644
--- a/Showcase/Showcase/Pages/Utils/ShowcaseCode.swift
+++ b/DesignToolbox/DesignToolbox/Pages/Utils/DesignToolboxCode.swift
@@ -15,7 +15,7 @@ import OUDS
import OUDSTokensSemantic
import SwiftUI
-struct ShowcaseCode: View {
+struct DesignToolboxCode: View {
// MARK: Environment properties
diff --git a/DesignToolbox/DesignToolbox/Pages/Utils/DesignToolboxConfiguration.swift b/DesignToolbox/DesignToolbox/Pages/Utils/DesignToolboxConfiguration.swift
new file mode 100644
index 0000000000..adbd6ac608
--- /dev/null
+++ b/DesignToolbox/DesignToolbox/Pages/Utils/DesignToolboxConfiguration.swift
@@ -0,0 +1,46 @@
+//
+// Software Name: OUDS iOS
+// SPDX-FileCopyrightText: Copyright (c) Orange SA
+// SPDX-License-Identifier: MIT
+//
+// This software is distributed under the MIT license,
+// the text of which is available at https://opensource.org/license/MIT/
+// or see the "LICENSE" file for more details.
+//
+// Authors: See CONTRIBUTORS.txt
+// Software description: A SwiftUI components library with code examples for Orange Unified Design System
+//
+
+import OUDS
+import SwiftUI
+
+struct DesignToolboxConfiguration: View where Configuration: View {
+
+ // MARK: Environment properties
+
+ @Environment(\.theme) private var theme
+
+ // MARK: Stored properties
+
+ @ViewBuilder
+ let configuration: () -> Configuration
+
+ // MARK: Body
+
+ var body: some View {
+ VStack(alignment: .leading, spacing: theme.spaces.spaceFixedMedium) {
+ Text("Configuration")
+ .typeHeadingMedium(theme)
+ .frame(maxWidth: .infinity, alignment: .leading)
+
+ Divider()
+
+ configuration()
+ }
+ .padding(.all, theme.spaces.spaceFixedMedium)
+ .oudsBorder(style: theme.borders.borderStyleDefault,
+ width: theme.borders.borderWidthThin,
+ radius: theme.borders.borderRadiusMedium,
+ color: theme.colors.colorBorderDefault)
+ }
+}
diff --git a/Showcase/Showcase/Pages/Utils/ShowcaseSectionHeaderStyle.swift b/DesignToolbox/DesignToolbox/Pages/Utils/DesignToolboxSectionHeaderStyle.swift
similarity index 80%
rename from Showcase/Showcase/Pages/Utils/ShowcaseSectionHeaderStyle.swift
rename to DesignToolbox/DesignToolbox/Pages/Utils/DesignToolboxSectionHeaderStyle.swift
index dd6c066c34..31373d2d05 100644
--- a/Showcase/Showcase/Pages/Utils/ShowcaseSectionHeaderStyle.swift
+++ b/DesignToolbox/DesignToolbox/Pages/Utils/DesignToolboxSectionHeaderStyle.swift
@@ -15,7 +15,7 @@ import OUDS
import OUDSTokensSemantic
import SwiftUI
-struct ShowcaseSectionHeaderModifier: ViewModifier {
+struct DesignToolboxSectionHeaderModifier: ViewModifier {
@Environment(\.theme) private var theme
@@ -27,7 +27,7 @@ struct ShowcaseSectionHeaderModifier: ViewModifier {
}
extension Text {
- func showcaseSectionHeaderStyle() -> some View {
- self.modifier(ShowcaseSectionHeaderModifier())
+ func designToolboxSectionHeaderStyle() -> some View {
+ self.modifier(DesignToolboxSectionHeaderModifier())
}
}
diff --git a/Showcase/Showcase/Pages/Utils/Elements/ShowcaseElement.swift b/DesignToolbox/DesignToolbox/Pages/Utils/Elements/DesignToolboxElement.swift
similarity index 90%
rename from Showcase/Showcase/Pages/Utils/Elements/ShowcaseElement.swift
rename to DesignToolbox/DesignToolbox/Pages/Utils/Elements/DesignToolboxElement.swift
index f499fb970c..77ea28099b 100644
--- a/Showcase/Showcase/Pages/Utils/Elements/ShowcaseElement.swift
+++ b/DesignToolbox/DesignToolbox/Pages/Utils/Elements/DesignToolboxElement.swift
@@ -14,12 +14,12 @@
import SwiftUI
@MainActor
-protocol ShowcaseElement {
+protocol DesignToolboxElement {
var name: String { get }
var image: Image { get }
var pageDescription: AnyView { get }
}
-extension ShowcaseElement {
+extension DesignToolboxElement {
var id: String { name }
}
diff --git a/Showcase/Showcase/Pages/Utils/Elements/ShowcaseElementPage.swift b/DesignToolbox/DesignToolbox/Pages/Utils/Elements/DesignToolboxElementPage.swift
similarity index 98%
rename from Showcase/Showcase/Pages/Utils/Elements/ShowcaseElementPage.swift
rename to DesignToolbox/DesignToolbox/Pages/Utils/Elements/DesignToolboxElementPage.swift
index 446f15d2eb..6037ac4386 100644
--- a/Showcase/Showcase/Pages/Utils/Elements/ShowcaseElementPage.swift
+++ b/DesignToolbox/DesignToolbox/Pages/Utils/Elements/DesignToolboxElementPage.swift
@@ -20,7 +20,7 @@ import SwiftUI
/// - an optional image to illustrate the element
/// - a name as title of the page
/// - illustration to present all aspects of the element
-struct ShowcaseElementPage: View {
+struct DesignToolboxElementPage: View {
@AccessibilityFocusState private var requestFocus: Bool
@Environment(\.theme) private var theme
diff --git a/Showcase/Showcase/Pages/Utils/Elements/ShowcaseElementsPage.swift b/DesignToolbox/DesignToolbox/Pages/Utils/Elements/DesignToolboxElementsPage.swift
similarity index 95%
rename from Showcase/Showcase/Pages/Utils/Elements/ShowcaseElementsPage.swift
rename to DesignToolbox/DesignToolbox/Pages/Utils/Elements/DesignToolboxElementsPage.swift
index 52a4d7fba3..c1429820b6 100644
--- a/Showcase/Showcase/Pages/Utils/Elements/ShowcaseElementsPage.swift
+++ b/DesignToolbox/DesignToolbox/Pages/Utils/Elements/DesignToolboxElementsPage.swift
@@ -17,7 +17,7 @@ import SwiftUI
/// Used to list all elements in the main screen of the application
/// (enumerate tokens and components)
-struct ShowcaseElementsPage: View {
+struct DesignToolboxElementsPage: View {
@AccessibilityFocusState private var requestFocus: AccessibilityFocusable?
@Environment(\.theme) private var theme
@@ -25,7 +25,7 @@ struct ShowcaseElementsPage: View {
// MARK: Stored properties
- let elements: [ShowcaseElement]
+ let elements: [DesignToolboxElement]
// MARK: Body
diff --git a/Showcase/Showcase/Pages/Utils/Elements/ShowcaseVariantElement.swift b/DesignToolbox/DesignToolbox/Pages/Utils/Elements/DesignToolboxVariantElement.swift
similarity index 94%
rename from Showcase/Showcase/Pages/Utils/Elements/ShowcaseVariantElement.swift
rename to DesignToolbox/DesignToolbox/Pages/Utils/Elements/DesignToolboxVariantElement.swift
index 869df72c4a..e1044fd1a2 100644
--- a/Showcase/Showcase/Pages/Utils/Elements/ShowcaseVariantElement.swift
+++ b/DesignToolbox/DesignToolbox/Pages/Utils/Elements/DesignToolboxVariantElement.swift
@@ -15,14 +15,14 @@ import OUDS
import OUDSTokensSemantic
import SwiftUI
-struct ShowcaseVariantElement: View {
+struct DesignToolboxVariantElement: View {
@Environment(\.theme) private var theme
@Environment(\.colorScheme) private var colorScheme
// MARK: Stored properties
- let elements: [ShowcaseElement]
+ let elements: [DesignToolboxElement]
// MARK: Body
diff --git a/Showcase/Showcase/Pages/Utils/ShowcaseConfiguration.swift b/DesignToolbox/DesignToolbox/Pages/Utils/ShowcaseConfiguration.swift
similarity index 95%
rename from Showcase/Showcase/Pages/Utils/ShowcaseConfiguration.swift
rename to DesignToolbox/DesignToolbox/Pages/Utils/ShowcaseConfiguration.swift
index ed642004be..abda8c8125 100644
--- a/Showcase/Showcase/Pages/Utils/ShowcaseConfiguration.swift
+++ b/DesignToolbox/DesignToolbox/Pages/Utils/ShowcaseConfiguration.swift
@@ -14,7 +14,7 @@
import OUDS
import SwiftUI
-struct ShowcaseConfiguration: View where Configuration: View {
+struct DesignToolboxConfiguration: View where Configuration: View {
// MARK: Environment properties
diff --git a/Showcase/Showcase/Preview Content/Preview Assets.xcassets/Contents.json b/DesignToolbox/DesignToolbox/Preview Content/Preview Assets.xcassets/Contents.json
similarity index 100%
rename from Showcase/Showcase/Preview Content/Preview Assets.xcassets/Contents.json
rename to DesignToolbox/DesignToolbox/Preview Content/Preview Assets.xcassets/Contents.json
diff --git a/Showcase/Showcase/Resources/Assets.xcassets/AccentColor.colorset/Contents.json b/DesignToolbox/DesignToolbox/Resources/Assets.xcassets/AccentColor.colorset/Contents.json
similarity index 100%
rename from Showcase/Showcase/Resources/Assets.xcassets/AccentColor.colorset/Contents.json
rename to DesignToolbox/DesignToolbox/Resources/Assets.xcassets/AccentColor.colorset/Contents.json
diff --git a/Showcase/Showcase/Resources/Assets.xcassets/AppIconAlpha.appiconset/Contents.json b/DesignToolbox/DesignToolbox/Resources/Assets.xcassets/AppIconAlpha.appiconset/Contents.json
similarity index 100%
rename from Showcase/Showcase/Resources/Assets.xcassets/AppIconAlpha.appiconset/Contents.json
rename to DesignToolbox/DesignToolbox/Resources/Assets.xcassets/AppIconAlpha.appiconset/Contents.json
diff --git a/Showcase/Showcase/Resources/Assets.xcassets/AppIconAlpha.appiconset/UDSDemo-A_SQR.png b/DesignToolbox/DesignToolbox/Resources/Assets.xcassets/AppIconAlpha.appiconset/UDSDemo-A_SQR.png
similarity index 100%
rename from Showcase/Showcase/Resources/Assets.xcassets/AppIconAlpha.appiconset/UDSDemo-A_SQR.png
rename to DesignToolbox/DesignToolbox/Resources/Assets.xcassets/AppIconAlpha.appiconset/UDSDemo-A_SQR.png
diff --git a/Showcase/Showcase/Resources/Assets.xcassets/AppIconBeta.appiconset/Contents.json b/DesignToolbox/DesignToolbox/Resources/Assets.xcassets/AppIconBeta.appiconset/Contents.json
similarity index 100%
rename from Showcase/Showcase/Resources/Assets.xcassets/AppIconBeta.appiconset/Contents.json
rename to DesignToolbox/DesignToolbox/Resources/Assets.xcassets/AppIconBeta.appiconset/Contents.json
diff --git a/Showcase/Showcase/Resources/Assets.xcassets/AppIconBeta.appiconset/UDSDemo-B_SQR.png b/DesignToolbox/DesignToolbox/Resources/Assets.xcassets/AppIconBeta.appiconset/UDSDemo-B_SQR.png
similarity index 100%
rename from Showcase/Showcase/Resources/Assets.xcassets/AppIconBeta.appiconset/UDSDemo-B_SQR.png
rename to DesignToolbox/DesignToolbox/Resources/Assets.xcassets/AppIconBeta.appiconset/UDSDemo-B_SQR.png
diff --git a/Showcase/Showcase/Resources/Assets.xcassets/AppIconDebug.appiconset/Contents.json b/DesignToolbox/DesignToolbox/Resources/Assets.xcassets/AppIconDebug.appiconset/Contents.json
similarity index 100%
rename from Showcase/Showcase/Resources/Assets.xcassets/AppIconDebug.appiconset/Contents.json
rename to DesignToolbox/DesignToolbox/Resources/Assets.xcassets/AppIconDebug.appiconset/Contents.json
diff --git a/Showcase/Showcase/Resources/Assets.xcassets/AppIconDebug.appiconset/UDSDemo-DEBUG_SQR.png b/DesignToolbox/DesignToolbox/Resources/Assets.xcassets/AppIconDebug.appiconset/UDSDemo-DEBUG_SQR.png
similarity index 100%
rename from Showcase/Showcase/Resources/Assets.xcassets/AppIconDebug.appiconset/UDSDemo-DEBUG_SQR.png
rename to DesignToolbox/DesignToolbox/Resources/Assets.xcassets/AppIconDebug.appiconset/UDSDemo-DEBUG_SQR.png
diff --git a/Showcase/Showcase/Resources/Assets.xcassets/AppIconRelease.appiconset/Contents.json b/DesignToolbox/DesignToolbox/Resources/Assets.xcassets/AppIconRelease.appiconset/Contents.json
similarity index 100%
rename from Showcase/Showcase/Resources/Assets.xcassets/AppIconRelease.appiconset/Contents.json
rename to DesignToolbox/DesignToolbox/Resources/Assets.xcassets/AppIconRelease.appiconset/Contents.json
diff --git a/Showcase/Showcase/Resources/Assets.xcassets/AppIconRelease.appiconset/Unified_App_IOS_SQR.png b/DesignToolbox/DesignToolbox/Resources/Assets.xcassets/AppIconRelease.appiconset/Unified_App_IOS_SQR.png
similarity index 100%
rename from Showcase/Showcase/Resources/Assets.xcassets/AppIconRelease.appiconset/Unified_App_IOS_SQR.png
rename to DesignToolbox/DesignToolbox/Resources/Assets.xcassets/AppIconRelease.appiconset/Unified_App_IOS_SQR.png
diff --git a/Showcase/Showcase/Resources/Assets.xcassets/Components/Contents.json b/DesignToolbox/DesignToolbox/Resources/Assets.xcassets/Contents.json
similarity index 100%
rename from Showcase/Showcase/Resources/Assets.xcassets/Components/Contents.json
rename to DesignToolbox/DesignToolbox/Resources/Assets.xcassets/Contents.json
diff --git a/Showcase/Showcase/Resources/Assets.xcassets/Contents.json b/DesignToolbox/DesignToolbox/Resources/Assets.xcassets/Illustrations/Contents.json
similarity index 100%
rename from Showcase/Showcase/Resources/Assets.xcassets/Contents.json
rename to DesignToolbox/DesignToolbox/Resources/Assets.xcassets/Illustrations/Contents.json
diff --git a/Showcase/Showcase/Resources/Assets.xcassets/Illustrations/il_empty_screen.imageset/Contents.json b/DesignToolbox/DesignToolbox/Resources/Assets.xcassets/Illustrations/il_empty_screen.imageset/Contents.json
similarity index 100%
rename from Showcase/Showcase/Resources/Assets.xcassets/Illustrations/il_empty_screen.imageset/Contents.json
rename to DesignToolbox/DesignToolbox/Resources/Assets.xcassets/Illustrations/il_empty_screen.imageset/Contents.json
diff --git a/Showcase/Showcase/Resources/Assets.xcassets/Illustrations/il_empty_screen.imageset/il_empty_screen.svg b/DesignToolbox/DesignToolbox/Resources/Assets.xcassets/Illustrations/il_empty_screen.imageset/il_empty_screen.svg
similarity index 100%
rename from Showcase/Showcase/Resources/Assets.xcassets/Illustrations/il_empty_screen.imageset/il_empty_screen.svg
rename to DesignToolbox/DesignToolbox/Resources/Assets.xcassets/Illustrations/il_empty_screen.imageset/il_empty_screen.svg
diff --git a/Showcase/Showcase/Resources/Assets.xcassets/Illustrations/il_tokens_grid_column_margin.imageset/Contents.json b/DesignToolbox/DesignToolbox/Resources/Assets.xcassets/Illustrations/il_tokens_grid_column_margin.imageset/Contents.json
similarity index 100%
rename from Showcase/Showcase/Resources/Assets.xcassets/Illustrations/il_tokens_grid_column_margin.imageset/Contents.json
rename to DesignToolbox/DesignToolbox/Resources/Assets.xcassets/Illustrations/il_tokens_grid_column_margin.imageset/Contents.json
diff --git a/Showcase/Showcase/Resources/Assets.xcassets/Illustrations/il_tokens_grid_column_margin.imageset/il_tokens_grid_column_margin.png b/DesignToolbox/DesignToolbox/Resources/Assets.xcassets/Illustrations/il_tokens_grid_column_margin.imageset/il_tokens_grid_column_margin.png
similarity index 100%
rename from Showcase/Showcase/Resources/Assets.xcassets/Illustrations/il_tokens_grid_column_margin.imageset/il_tokens_grid_column_margin.png
rename to DesignToolbox/DesignToolbox/Resources/Assets.xcassets/Illustrations/il_tokens_grid_column_margin.imageset/il_tokens_grid_column_margin.png
diff --git a/Showcase/Showcase/Resources/Assets.xcassets/Illustrations/il_tokens_grid_column_margin.imageset/il_tokens_grid_column_margin_dark.png b/DesignToolbox/DesignToolbox/Resources/Assets.xcassets/Illustrations/il_tokens_grid_column_margin.imageset/il_tokens_grid_column_margin_dark.png
similarity index 100%
rename from Showcase/Showcase/Resources/Assets.xcassets/Illustrations/il_tokens_grid_column_margin.imageset/il_tokens_grid_column_margin_dark.png
rename to DesignToolbox/DesignToolbox/Resources/Assets.xcassets/Illustrations/il_tokens_grid_column_margin.imageset/il_tokens_grid_column_margin_dark.png
diff --git a/Showcase/Showcase/Resources/Assets.xcassets/Illustrations/il_tokens_grid_max_width.imageset/Contents.json b/DesignToolbox/DesignToolbox/Resources/Assets.xcassets/Illustrations/il_tokens_grid_max_width.imageset/Contents.json
similarity index 100%
rename from Showcase/Showcase/Resources/Assets.xcassets/Illustrations/il_tokens_grid_max_width.imageset/Contents.json
rename to DesignToolbox/DesignToolbox/Resources/Assets.xcassets/Illustrations/il_tokens_grid_max_width.imageset/Contents.json
diff --git a/Showcase/Showcase/Resources/Assets.xcassets/Illustrations/il_tokens_grid_max_width.imageset/il_tokens_grid_max_width.png b/DesignToolbox/DesignToolbox/Resources/Assets.xcassets/Illustrations/il_tokens_grid_max_width.imageset/il_tokens_grid_max_width.png
similarity index 100%
rename from Showcase/Showcase/Resources/Assets.xcassets/Illustrations/il_tokens_grid_max_width.imageset/il_tokens_grid_max_width.png
rename to DesignToolbox/DesignToolbox/Resources/Assets.xcassets/Illustrations/il_tokens_grid_max_width.imageset/il_tokens_grid_max_width.png
diff --git a/Showcase/Showcase/Resources/Assets.xcassets/Illustrations/il_tokens_grid_max_width.imageset/il_tokens_grid_max_width_dark.png b/DesignToolbox/DesignToolbox/Resources/Assets.xcassets/Illustrations/il_tokens_grid_max_width.imageset/il_tokens_grid_max_width_dark.png
similarity index 100%
rename from Showcase/Showcase/Resources/Assets.xcassets/Illustrations/il_tokens_grid_max_width.imageset/il_tokens_grid_max_width_dark.png
rename to DesignToolbox/DesignToolbox/Resources/Assets.xcassets/Illustrations/il_tokens_grid_max_width.imageset/il_tokens_grid_max_width_dark.png
diff --git a/Showcase/Showcase/Resources/Assets.xcassets/Illustrations/il_tokens_grid_min_width.imageset/Contents.json b/DesignToolbox/DesignToolbox/Resources/Assets.xcassets/Illustrations/il_tokens_grid_min_width.imageset/Contents.json
similarity index 100%
rename from Showcase/Showcase/Resources/Assets.xcassets/Illustrations/il_tokens_grid_min_width.imageset/Contents.json
rename to DesignToolbox/DesignToolbox/Resources/Assets.xcassets/Illustrations/il_tokens_grid_min_width.imageset/Contents.json
diff --git a/Showcase/Showcase/Resources/Assets.xcassets/Illustrations/il_tokens_grid_min_width.imageset/il_tokens_grid_min_width.png b/DesignToolbox/DesignToolbox/Resources/Assets.xcassets/Illustrations/il_tokens_grid_min_width.imageset/il_tokens_grid_min_width.png
similarity index 100%
rename from Showcase/Showcase/Resources/Assets.xcassets/Illustrations/il_tokens_grid_min_width.imageset/il_tokens_grid_min_width.png
rename to DesignToolbox/DesignToolbox/Resources/Assets.xcassets/Illustrations/il_tokens_grid_min_width.imageset/il_tokens_grid_min_width.png
diff --git a/Showcase/Showcase/Resources/Assets.xcassets/Illustrations/il_tokens_grid_min_width.imageset/il_tokens_grid_min_width_dark.png b/DesignToolbox/DesignToolbox/Resources/Assets.xcassets/Illustrations/il_tokens_grid_min_width.imageset/il_tokens_grid_min_width_dark.png
similarity index 100%
rename from Showcase/Showcase/Resources/Assets.xcassets/Illustrations/il_tokens_grid_min_width.imageset/il_tokens_grid_min_width_dark.png
rename to DesignToolbox/DesignToolbox/Resources/Assets.xcassets/Illustrations/il_tokens_grid_min_width.imageset/il_tokens_grid_min_width_dark.png
diff --git a/Showcase/Showcase/Resources/Assets.xcassets/Illustrations/Contents.json b/DesignToolbox/DesignToolbox/Resources/Assets.xcassets/Tokens/Contents.json
similarity index 100%
rename from Showcase/Showcase/Resources/Assets.xcassets/Illustrations/Contents.json
rename to DesignToolbox/DesignToolbox/Resources/Assets.xcassets/Tokens/Contents.json
diff --git a/Showcase/Showcase/Resources/Assets.xcassets/Tokens/ic_border.imageset/Contents.json b/DesignToolbox/DesignToolbox/Resources/Assets.xcassets/Tokens/ic_border.imageset/Contents.json
similarity index 100%
rename from Showcase/Showcase/Resources/Assets.xcassets/Tokens/ic_border.imageset/Contents.json
rename to DesignToolbox/DesignToolbox/Resources/Assets.xcassets/Tokens/ic_border.imageset/Contents.json
diff --git a/Showcase/Showcase/Resources/Assets.xcassets/Tokens/ic_border.imageset/ic_border.svg b/DesignToolbox/DesignToolbox/Resources/Assets.xcassets/Tokens/ic_border.imageset/ic_border.svg
similarity index 100%
rename from Showcase/Showcase/Resources/Assets.xcassets/Tokens/ic_border.imageset/ic_border.svg
rename to DesignToolbox/DesignToolbox/Resources/Assets.xcassets/Tokens/ic_border.imageset/ic_border.svg
diff --git a/Showcase/Showcase/Resources/Assets.xcassets/Tokens/ic_chevron-down.imageset/Contents.json b/DesignToolbox/DesignToolbox/Resources/Assets.xcassets/Tokens/ic_chevron-down.imageset/Contents.json
similarity index 100%
rename from Showcase/Showcase/Resources/Assets.xcassets/Tokens/ic_chevron-down.imageset/Contents.json
rename to DesignToolbox/DesignToolbox/Resources/Assets.xcassets/Tokens/ic_chevron-down.imageset/Contents.json
diff --git a/Showcase/Showcase/Resources/Assets.xcassets/Tokens/ic_chevron-down.imageset/ic_chevron-down.png b/DesignToolbox/DesignToolbox/Resources/Assets.xcassets/Tokens/ic_chevron-down.imageset/ic_chevron-down.png
similarity index 100%
rename from Showcase/Showcase/Resources/Assets.xcassets/Tokens/ic_chevron-down.imageset/ic_chevron-down.png
rename to DesignToolbox/DesignToolbox/Resources/Assets.xcassets/Tokens/ic_chevron-down.imageset/ic_chevron-down.png
diff --git a/Showcase/Showcase/Resources/Assets.xcassets/Tokens/ic_chevron-up.imageset/Contents.json b/DesignToolbox/DesignToolbox/Resources/Assets.xcassets/Tokens/ic_chevron-up.imageset/Contents.json
similarity index 100%
rename from Showcase/Showcase/Resources/Assets.xcassets/Tokens/ic_chevron-up.imageset/Contents.json
rename to DesignToolbox/DesignToolbox/Resources/Assets.xcassets/Tokens/ic_chevron-up.imageset/Contents.json
diff --git a/Showcase/Showcase/Resources/Assets.xcassets/Tokens/ic_chevron-up.imageset/ic_chevron-up.png b/DesignToolbox/DesignToolbox/Resources/Assets.xcassets/Tokens/ic_chevron-up.imageset/ic_chevron-up.png
similarity index 100%
rename from Showcase/Showcase/Resources/Assets.xcassets/Tokens/ic_chevron-up.imageset/ic_chevron-up.png
rename to DesignToolbox/DesignToolbox/Resources/Assets.xcassets/Tokens/ic_chevron-up.imageset/ic_chevron-up.png
diff --git a/Showcase/Showcase/Resources/Assets.xcassets/Tokens/ic_copy.imageset/Contents.json b/DesignToolbox/DesignToolbox/Resources/Assets.xcassets/Tokens/ic_copy.imageset/Contents.json
similarity index 100%
rename from Showcase/Showcase/Resources/Assets.xcassets/Tokens/ic_copy.imageset/Contents.json
rename to DesignToolbox/DesignToolbox/Resources/Assets.xcassets/Tokens/ic_copy.imageset/Contents.json
diff --git a/Showcase/Showcase/Resources/Assets.xcassets/Tokens/ic_copy.imageset/ic_copy.png b/DesignToolbox/DesignToolbox/Resources/Assets.xcassets/Tokens/ic_copy.imageset/ic_copy.png
similarity index 100%
rename from Showcase/Showcase/Resources/Assets.xcassets/Tokens/ic_copy.imageset/ic_copy.png
rename to DesignToolbox/DesignToolbox/Resources/Assets.xcassets/Tokens/ic_copy.imageset/ic_copy.png
diff --git a/Showcase/Showcase/Resources/Assets.xcassets/Tokens/ic_dimension.imageset/Contents.json b/DesignToolbox/DesignToolbox/Resources/Assets.xcassets/Tokens/ic_dimension.imageset/Contents.json
similarity index 100%
rename from Showcase/Showcase/Resources/Assets.xcassets/Tokens/ic_dimension.imageset/Contents.json
rename to DesignToolbox/DesignToolbox/Resources/Assets.xcassets/Tokens/ic_dimension.imageset/Contents.json
diff --git a/Showcase/Showcase/Resources/Assets.xcassets/Tokens/ic_dimension.imageset/ic_dimension.svg b/DesignToolbox/DesignToolbox/Resources/Assets.xcassets/Tokens/ic_dimension.imageset/ic_dimension.svg
similarity index 100%
rename from Showcase/Showcase/Resources/Assets.xcassets/Tokens/ic_dimension.imageset/ic_dimension.svg
rename to DesignToolbox/DesignToolbox/Resources/Assets.xcassets/Tokens/ic_dimension.imageset/ic_dimension.svg
diff --git a/Showcase/Showcase/Resources/Assets.xcassets/Tokens/ic_filter_effects.imageset/Contents.json b/DesignToolbox/DesignToolbox/Resources/Assets.xcassets/Tokens/ic_filter_effects.imageset/Contents.json
similarity index 100%
rename from Showcase/Showcase/Resources/Assets.xcassets/Tokens/ic_filter_effects.imageset/Contents.json
rename to DesignToolbox/DesignToolbox/Resources/Assets.xcassets/Tokens/ic_filter_effects.imageset/Contents.json
diff --git a/Showcase/Showcase/Resources/Assets.xcassets/Tokens/ic_filter_effects.imageset/ic_filter_effects.svg b/DesignToolbox/DesignToolbox/Resources/Assets.xcassets/Tokens/ic_filter_effects.imageset/ic_filter_effects.svg
similarity index 100%
rename from Showcase/Showcase/Resources/Assets.xcassets/Tokens/ic_filter_effects.imageset/ic_filter_effects.svg
rename to DesignToolbox/DesignToolbox/Resources/Assets.xcassets/Tokens/ic_filter_effects.imageset/ic_filter_effects.svg
diff --git a/Showcase/Showcase/Resources/Assets.xcassets/Tokens/ic_grid.imageset/Contents.json b/DesignToolbox/DesignToolbox/Resources/Assets.xcassets/Tokens/ic_grid.imageset/Contents.json
similarity index 100%
rename from Showcase/Showcase/Resources/Assets.xcassets/Tokens/ic_grid.imageset/Contents.json
rename to DesignToolbox/DesignToolbox/Resources/Assets.xcassets/Tokens/ic_grid.imageset/Contents.json
diff --git a/Showcase/Showcase/Resources/Assets.xcassets/Tokens/ic_grid.imageset/ic_grid.svg b/DesignToolbox/DesignToolbox/Resources/Assets.xcassets/Tokens/ic_grid.imageset/ic_grid.svg
similarity index 100%
rename from Showcase/Showcase/Resources/Assets.xcassets/Tokens/ic_grid.imageset/ic_grid.svg
rename to DesignToolbox/DesignToolbox/Resources/Assets.xcassets/Tokens/ic_grid.imageset/ic_grid.svg
diff --git a/Showcase/Showcase/Resources/Assets.xcassets/Tokens/ic_layers.imageset/Contents.json b/DesignToolbox/DesignToolbox/Resources/Assets.xcassets/Tokens/ic_layers.imageset/Contents.json
similarity index 100%
rename from Showcase/Showcase/Resources/Assets.xcassets/Tokens/ic_layers.imageset/Contents.json
rename to DesignToolbox/DesignToolbox/Resources/Assets.xcassets/Tokens/ic_layers.imageset/Contents.json
diff --git a/Showcase/Showcase/Resources/Assets.xcassets/Tokens/ic_layers.imageset/ic_layers.svg b/DesignToolbox/DesignToolbox/Resources/Assets.xcassets/Tokens/ic_layers.imageset/ic_layers.svg
similarity index 100%
rename from Showcase/Showcase/Resources/Assets.xcassets/Tokens/ic_layers.imageset/ic_layers.svg
rename to DesignToolbox/DesignToolbox/Resources/Assets.xcassets/Tokens/ic_layers.imageset/ic_layers.svg
diff --git a/Showcase/Showcase/Resources/Assets.xcassets/Tokens/ic_palette.imageset/Contents.json b/DesignToolbox/DesignToolbox/Resources/Assets.xcassets/Tokens/ic_palette.imageset/Contents.json
similarity index 100%
rename from Showcase/Showcase/Resources/Assets.xcassets/Tokens/ic_palette.imageset/Contents.json
rename to DesignToolbox/DesignToolbox/Resources/Assets.xcassets/Tokens/ic_palette.imageset/Contents.json
diff --git a/Showcase/Showcase/Resources/Assets.xcassets/Tokens/ic_palette.imageset/ic_palette.svg b/DesignToolbox/DesignToolbox/Resources/Assets.xcassets/Tokens/ic_palette.imageset/ic_palette.svg
similarity index 100%
rename from Showcase/Showcase/Resources/Assets.xcassets/Tokens/ic_palette.imageset/ic_palette.svg
rename to DesignToolbox/DesignToolbox/Resources/Assets.xcassets/Tokens/ic_palette.imageset/ic_palette.svg
diff --git a/Showcase/Showcase/Resources/Assets.xcassets/Tokens/ic_typography.imageset/Contents.json b/DesignToolbox/DesignToolbox/Resources/Assets.xcassets/Tokens/ic_typography.imageset/Contents.json
similarity index 100%
rename from Showcase/Showcase/Resources/Assets.xcassets/Tokens/ic_typography.imageset/Contents.json
rename to DesignToolbox/DesignToolbox/Resources/Assets.xcassets/Tokens/ic_typography.imageset/Contents.json
diff --git a/Showcase/Showcase/Resources/Assets.xcassets/Tokens/ic_typography.imageset/ic_typography.svg b/DesignToolbox/DesignToolbox/Resources/Assets.xcassets/Tokens/ic_typography.imageset/ic_typography.svg
similarity index 100%
rename from Showcase/Showcase/Resources/Assets.xcassets/Tokens/ic_typography.imageset/ic_typography.svg
rename to DesignToolbox/DesignToolbox/Resources/Assets.xcassets/Tokens/ic_typography.imageset/ic_typography.svg
diff --git a/Showcase/Showcase/Resources/Assets.xcassets/Tokens/ic_union.imageset/Contents.json b/DesignToolbox/DesignToolbox/Resources/Assets.xcassets/Tokens/ic_union.imageset/Contents.json
similarity index 100%
rename from Showcase/Showcase/Resources/Assets.xcassets/Tokens/ic_union.imageset/Contents.json
rename to DesignToolbox/DesignToolbox/Resources/Assets.xcassets/Tokens/ic_union.imageset/Contents.json
diff --git a/Showcase/Showcase/Resources/Assets.xcassets/Tokens/ic_union.imageset/ic_union.svg b/DesignToolbox/DesignToolbox/Resources/Assets.xcassets/Tokens/ic_union.imageset/ic_union.svg
similarity index 100%
rename from Showcase/Showcase/Resources/Assets.xcassets/Tokens/ic_union.imageset/ic_union.svg
rename to DesignToolbox/DesignToolbox/Resources/Assets.xcassets/Tokens/ic_union.imageset/ic_union.svg
diff --git a/Showcase/Showcase/Resources/Assets.xcassets/Tokens/ic_vector.imageset/Contents.json b/DesignToolbox/DesignToolbox/Resources/Assets.xcassets/Tokens/ic_vector.imageset/Contents.json
similarity index 100%
rename from Showcase/Showcase/Resources/Assets.xcassets/Tokens/ic_vector.imageset/Contents.json
rename to DesignToolbox/DesignToolbox/Resources/Assets.xcassets/Tokens/ic_vector.imageset/Contents.json
diff --git a/Showcase/Showcase/Resources/Assets.xcassets/Tokens/ic_vector.imageset/ic_vector.svg b/DesignToolbox/DesignToolbox/Resources/Assets.xcassets/Tokens/ic_vector.imageset/ic_vector.svg
similarity index 100%
rename from Showcase/Showcase/Resources/Assets.xcassets/Tokens/ic_vector.imageset/ic_vector.svg
rename to DesignToolbox/DesignToolbox/Resources/Assets.xcassets/Tokens/ic_vector.imageset/ic_vector.svg
diff --git a/Showcase/Showcase/Resources/Assets.xcassets/ic_component_atom.imageset/Contents.json b/DesignToolbox/DesignToolbox/Resources/Assets.xcassets/ic_component_atom.imageset/Contents.json
similarity index 100%
rename from Showcase/Showcase/Resources/Assets.xcassets/ic_component_atom.imageset/Contents.json
rename to DesignToolbox/DesignToolbox/Resources/Assets.xcassets/ic_component_atom.imageset/Contents.json
diff --git a/Showcase/Showcase/Resources/Assets.xcassets/ic_component_atom.imageset/ic_component_atom.svg b/DesignToolbox/DesignToolbox/Resources/Assets.xcassets/ic_component_atom.imageset/ic_component_atom.svg
similarity index 100%
rename from Showcase/Showcase/Resources/Assets.xcassets/ic_component_atom.imageset/ic_component_atom.svg
rename to DesignToolbox/DesignToolbox/Resources/Assets.xcassets/ic_component_atom.imageset/ic_component_atom.svg
diff --git a/Showcase/Showcase/Resources/Assets.xcassets/ic_info.imageset/Contents.json b/DesignToolbox/DesignToolbox/Resources/Assets.xcassets/ic_info.imageset/Contents.json
similarity index 100%
rename from Showcase/Showcase/Resources/Assets.xcassets/ic_info.imageset/Contents.json
rename to DesignToolbox/DesignToolbox/Resources/Assets.xcassets/ic_info.imageset/Contents.json
diff --git a/Showcase/Showcase/Resources/Assets.xcassets/ic_info.imageset/ic_info.svg b/DesignToolbox/DesignToolbox/Resources/Assets.xcassets/ic_info.imageset/ic_info.svg
similarity index 100%
rename from Showcase/Showcase/Resources/Assets.xcassets/ic_info.imageset/ic_info.svg
rename to DesignToolbox/DesignToolbox/Resources/Assets.xcassets/ic_info.imageset/ic_info.svg
diff --git a/Showcase/Showcase/Resources/Assets.xcassets/ic_token.imageset/Contents.json b/DesignToolbox/DesignToolbox/Resources/Assets.xcassets/ic_token.imageset/Contents.json
similarity index 100%
rename from Showcase/Showcase/Resources/Assets.xcassets/ic_token.imageset/Contents.json
rename to DesignToolbox/DesignToolbox/Resources/Assets.xcassets/ic_token.imageset/Contents.json
diff --git a/Showcase/Showcase/Resources/Assets.xcassets/ic_token.imageset/ic_token.svg b/DesignToolbox/DesignToolbox/Resources/Assets.xcassets/ic_token.imageset/ic_token.svg
similarity index 100%
rename from Showcase/Showcase/Resources/Assets.xcassets/ic_token.imageset/ic_token.svg
rename to DesignToolbox/DesignToolbox/Resources/Assets.xcassets/ic_token.imageset/ic_token.svg
diff --git a/Showcase/Showcase/Resources/Assets.xcassets/Tokens/Contents.json b/DesignToolbox/DesignToolbox/Resources/Colors.xcassets/Contents.json
similarity index 100%
rename from Showcase/Showcase/Resources/Assets.xcassets/Tokens/Contents.json
rename to DesignToolbox/DesignToolbox/Resources/Colors.xcassets/Contents.json
diff --git a/Showcase/Showcase/Resources/accessibilityStatement/accessibility_detail.html b/DesignToolbox/DesignToolbox/Resources/accessibilityStatement/accessibility_detail.html
similarity index 100%
rename from Showcase/Showcase/Resources/accessibilityStatement/accessibility_detail.html
rename to DesignToolbox/DesignToolbox/Resources/accessibilityStatement/accessibility_detail.html
diff --git a/Showcase/Showcase/Resources/accessibilityStatement/accessibility_result.xml b/DesignToolbox/DesignToolbox/Resources/accessibilityStatement/accessibility_result.xml
similarity index 100%
rename from Showcase/Showcase/Resources/accessibilityStatement/accessibility_result.xml
rename to DesignToolbox/DesignToolbox/Resources/accessibilityStatement/accessibility_result.xml
diff --git a/Showcase/Showcase/Resources/accessibilityStatement/boosted-grid.min.css b/DesignToolbox/DesignToolbox/Resources/accessibilityStatement/boosted-grid.min.css
similarity index 100%
rename from Showcase/Showcase/Resources/accessibilityStatement/boosted-grid.min.css
rename to DesignToolbox/DesignToolbox/Resources/accessibilityStatement/boosted-grid.min.css
diff --git a/Showcase/Showcase/Resources/accessibilityStatement/favicon.ico b/DesignToolbox/DesignToolbox/Resources/accessibilityStatement/favicon.ico
similarity index 100%
rename from Showcase/Showcase/Resources/accessibilityStatement/favicon.ico
rename to DesignToolbox/DesignToolbox/Resources/accessibilityStatement/favicon.ico
diff --git a/Showcase/Showcase/Resources/accessibilityStatement/orange-logo.svg b/DesignToolbox/DesignToolbox/Resources/accessibilityStatement/orange-logo.svg
similarity index 100%
rename from Showcase/Showcase/Resources/accessibilityStatement/orange-logo.svg
rename to DesignToolbox/DesignToolbox/Resources/accessibilityStatement/orange-logo.svg
diff --git a/Showcase/Showcase/Resources/accessibilityStatement/pie.css b/DesignToolbox/DesignToolbox/Resources/accessibilityStatement/pie.css
similarity index 100%
rename from Showcase/Showcase/Resources/accessibilityStatement/pie.css
rename to DesignToolbox/DesignToolbox/Resources/accessibilityStatement/pie.css
diff --git a/Showcase/Showcase/Resources/accessibilityStatement/style.css b/DesignToolbox/DesignToolbox/Resources/accessibilityStatement/style.css
similarity index 100%
rename from Showcase/Showcase/Resources/accessibilityStatement/style.css
rename to DesignToolbox/DesignToolbox/Resources/accessibilityStatement/style.css
diff --git a/Showcase/Showcase/Resources/en.lproj/Localizable.strings b/DesignToolbox/DesignToolbox/Resources/en.lproj/Localizable.strings
similarity index 100%
rename from Showcase/Showcase/Resources/en.lproj/Localizable.strings
rename to DesignToolbox/DesignToolbox/Resources/en.lproj/Localizable.strings
diff --git a/Showcase/Showcase/Resources/en.lproj/about_legal_information.html b/DesignToolbox/DesignToolbox/Resources/en.lproj/about_legal_information.html
similarity index 100%
rename from Showcase/Showcase/Resources/en.lproj/about_legal_information.html
rename to DesignToolbox/DesignToolbox/Resources/en.lproj/about_legal_information.html
diff --git a/Showcase/Showcase/Resources/en.lproj/about_privacy_policy.html b/DesignToolbox/DesignToolbox/Resources/en.lproj/about_privacy_policy.html
similarity index 100%
rename from Showcase/Showcase/Resources/en.lproj/about_privacy_policy.html
rename to DesignToolbox/DesignToolbox/Resources/en.lproj/about_privacy_policy.html
diff --git a/Showcase/Showcase/Utils/Bundle+extension.swift b/DesignToolbox/DesignToolbox/Utils/Bundle+extension.swift
similarity index 100%
rename from Showcase/Showcase/Utils/Bundle+extension.swift
rename to DesignToolbox/DesignToolbox/Utils/Bundle+extension.swift
diff --git a/Showcase/Showcase/Utils/WebView.swift b/DesignToolbox/DesignToolbox/Utils/WebView.swift
similarity index 100%
rename from Showcase/Showcase/Utils/WebView.swift
rename to DesignToolbox/DesignToolbox/Utils/WebView.swift
diff --git a/DesignToolbox/DesignToolboxSnapshots.xctestplan b/DesignToolbox/DesignToolboxSnapshots.xctestplan
new file mode 100644
index 0000000000..0c3c0dc553
--- /dev/null
+++ b/DesignToolbox/DesignToolboxSnapshots.xctestplan
@@ -0,0 +1,24 @@
+{
+ "configurations" : [
+ {
+ "id" : "E93D5EA6-C302-4BA9-84A1-5E2B72887AA1",
+ "name" : "Configuration 1",
+ "options" : {
+
+ }
+ }
+ ],
+ "defaultOptions" : {
+ "testTimeoutsEnabled" : true
+ },
+ "testTargets" : [
+ {
+ "target" : {
+ "containerPath" : "container:DesignToolbox.xcodeproj",
+ "identifier" : "0740A98E2C9873500069D24A",
+ "name" : "DesignToolboxSnapshotsTests"
+ }
+ }
+ ],
+ "version" : 1
+}
diff --git a/Showcase/ShowcaseTests/Snapshots/Snapshot.swift b/DesignToolbox/DesignToolboxSnapshotsTests/Snapshots/Snapshot.swift
similarity index 100%
rename from Showcase/ShowcaseTests/Snapshots/Snapshot.swift
rename to DesignToolbox/DesignToolboxSnapshotsTests/Snapshots/Snapshot.swift
diff --git a/Showcase/ShowcaseTests/__Snapshots__/Components/OUDSComponentButtonUITests/OUDSComponentButtonUITests.swift b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/OUDSComponentButtonUITests.swift
similarity index 100%
rename from Showcase/ShowcaseTests/__Snapshots__/Components/OUDSComponentButtonUITests/OUDSComponentButtonUITests.swift
rename to DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/OUDSComponentButtonUITests.swift
diff --git a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/__Snapshots__/OUDSComponentButtonUITests/test_InverseTheme_Dark.ColoredSurface_Icon_Default_Default.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/__Snapshots__/OUDSComponentButtonUITests/test_InverseTheme_Dark.ColoredSurface_Icon_Default_Default.png
new file mode 100644
index 0000000000..be65833ff6
Binary files /dev/null and b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/__Snapshots__/OUDSComponentButtonUITests/test_InverseTheme_Dark.ColoredSurface_Icon_Default_Default.png differ
diff --git a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/__Snapshots__/OUDSComponentButtonUITests/test_InverseTheme_Dark.ColoredSurface_Icon_Default_Default_Disabled.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/__Snapshots__/OUDSComponentButtonUITests/test_InverseTheme_Dark.ColoredSurface_Icon_Default_Default_Disabled.png
new file mode 100644
index 0000000000..e410e2b7d8
Binary files /dev/null and b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/__Snapshots__/OUDSComponentButtonUITests/test_InverseTheme_Dark.ColoredSurface_Icon_Default_Default_Disabled.png differ
diff --git a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/__Snapshots__/OUDSComponentButtonUITests/test_InverseTheme_Dark.ColoredSurface_Icon_Minimal_Default.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/__Snapshots__/OUDSComponentButtonUITests/test_InverseTheme_Dark.ColoredSurface_Icon_Minimal_Default.png
new file mode 100644
index 0000000000..10662e63a1
Binary files /dev/null and b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/__Snapshots__/OUDSComponentButtonUITests/test_InverseTheme_Dark.ColoredSurface_Icon_Minimal_Default.png differ
diff --git a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/__Snapshots__/OUDSComponentButtonUITests/test_InverseTheme_Dark.ColoredSurface_Icon_Minimal_Default_Disabled.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/__Snapshots__/OUDSComponentButtonUITests/test_InverseTheme_Dark.ColoredSurface_Icon_Minimal_Default_Disabled.png
new file mode 100644
index 0000000000..10662e63a1
Binary files /dev/null and b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/__Snapshots__/OUDSComponentButtonUITests/test_InverseTheme_Dark.ColoredSurface_Icon_Minimal_Default_Disabled.png differ
diff --git a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/__Snapshots__/OUDSComponentButtonUITests/test_InverseTheme_Dark.ColoredSurface_Icon_Strong_Default.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/__Snapshots__/OUDSComponentButtonUITests/test_InverseTheme_Dark.ColoredSurface_Icon_Strong_Default.png
new file mode 100644
index 0000000000..5834588bb3
Binary files /dev/null and b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/__Snapshots__/OUDSComponentButtonUITests/test_InverseTheme_Dark.ColoredSurface_Icon_Strong_Default.png differ
diff --git a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/__Snapshots__/OUDSComponentButtonUITests/test_InverseTheme_Dark.ColoredSurface_Icon_Strong_Default_Disabled.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/__Snapshots__/OUDSComponentButtonUITests/test_InverseTheme_Dark.ColoredSurface_Icon_Strong_Default_Disabled.png
new file mode 100644
index 0000000000..ddbebd3159
Binary files /dev/null and b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/__Snapshots__/OUDSComponentButtonUITests/test_InverseTheme_Dark.ColoredSurface_Icon_Strong_Default_Disabled.png differ
diff --git a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/__Snapshots__/OUDSComponentButtonUITests/test_InverseTheme_Dark.ColoredSurface_TextAndIcon_Default_Default.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/__Snapshots__/OUDSComponentButtonUITests/test_InverseTheme_Dark.ColoredSurface_TextAndIcon_Default_Default.png
new file mode 100644
index 0000000000..cb8d647b89
Binary files /dev/null and b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/__Snapshots__/OUDSComponentButtonUITests/test_InverseTheme_Dark.ColoredSurface_TextAndIcon_Default_Default.png differ
diff --git a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/__Snapshots__/OUDSComponentButtonUITests/test_InverseTheme_Dark.ColoredSurface_TextAndIcon_Default_Default_Disabled.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/__Snapshots__/OUDSComponentButtonUITests/test_InverseTheme_Dark.ColoredSurface_TextAndIcon_Default_Default_Disabled.png
new file mode 100644
index 0000000000..58ba1bab0e
Binary files /dev/null and b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/__Snapshots__/OUDSComponentButtonUITests/test_InverseTheme_Dark.ColoredSurface_TextAndIcon_Default_Default_Disabled.png differ
diff --git a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/__Snapshots__/OUDSComponentButtonUITests/test_InverseTheme_Dark.ColoredSurface_TextAndIcon_Minimal_Default.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/__Snapshots__/OUDSComponentButtonUITests/test_InverseTheme_Dark.ColoredSurface_TextAndIcon_Minimal_Default.png
new file mode 100644
index 0000000000..91a9455cb0
Binary files /dev/null and b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/__Snapshots__/OUDSComponentButtonUITests/test_InverseTheme_Dark.ColoredSurface_TextAndIcon_Minimal_Default.png differ
diff --git a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/__Snapshots__/OUDSComponentButtonUITests/test_InverseTheme_Dark.ColoredSurface_TextAndIcon_Minimal_Default_Disabled.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/__Snapshots__/OUDSComponentButtonUITests/test_InverseTheme_Dark.ColoredSurface_TextAndIcon_Minimal_Default_Disabled.png
new file mode 100644
index 0000000000..5a25afd400
Binary files /dev/null and b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/__Snapshots__/OUDSComponentButtonUITests/test_InverseTheme_Dark.ColoredSurface_TextAndIcon_Minimal_Default_Disabled.png differ
diff --git a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/__Snapshots__/OUDSComponentButtonUITests/test_InverseTheme_Dark.ColoredSurface_TextAndIcon_Strong_Default.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/__Snapshots__/OUDSComponentButtonUITests/test_InverseTheme_Dark.ColoredSurface_TextAndIcon_Strong_Default.png
new file mode 100644
index 0000000000..fb3abd730d
Binary files /dev/null and b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/__Snapshots__/OUDSComponentButtonUITests/test_InverseTheme_Dark.ColoredSurface_TextAndIcon_Strong_Default.png differ
diff --git a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/__Snapshots__/OUDSComponentButtonUITests/test_InverseTheme_Dark.ColoredSurface_TextAndIcon_Strong_Default_Disabled.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/__Snapshots__/OUDSComponentButtonUITests/test_InverseTheme_Dark.ColoredSurface_TextAndIcon_Strong_Default_Disabled.png
new file mode 100644
index 0000000000..9c110d9b05
Binary files /dev/null and b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/__Snapshots__/OUDSComponentButtonUITests/test_InverseTheme_Dark.ColoredSurface_TextAndIcon_Strong_Default_Disabled.png differ
diff --git a/Showcase/ShowcaseTests/__Snapshots__/Components/OUDSComponentButtonUITests/__Snapshots__/OUDSComponentButtonUITests/test_InverseTheme_Dark.ColoredSurface_Text_Default_Default.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/__Snapshots__/OUDSComponentButtonUITests/test_InverseTheme_Dark.ColoredSurface_Text_Default_Default.png
similarity index 100%
rename from Showcase/ShowcaseTests/__Snapshots__/Components/OUDSComponentButtonUITests/__Snapshots__/OUDSComponentButtonUITests/test_InverseTheme_Dark.ColoredSurface_Text_Default_Default.png
rename to DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/__Snapshots__/OUDSComponentButtonUITests/test_InverseTheme_Dark.ColoredSurface_Text_Default_Default.png
diff --git a/Showcase/ShowcaseTests/__Snapshots__/Components/OUDSComponentButtonUITests/__Snapshots__/OUDSComponentButtonUITests/test_InverseTheme_Dark.ColoredSurface_Text_Default_Default_Disabled.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/__Snapshots__/OUDSComponentButtonUITests/test_InverseTheme_Dark.ColoredSurface_Text_Default_Default_Disabled.png
similarity index 100%
rename from Showcase/ShowcaseTests/__Snapshots__/Components/OUDSComponentButtonUITests/__Snapshots__/OUDSComponentButtonUITests/test_InverseTheme_Dark.ColoredSurface_Text_Default_Default_Disabled.png
rename to DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/__Snapshots__/OUDSComponentButtonUITests/test_InverseTheme_Dark.ColoredSurface_Text_Default_Default_Disabled.png
diff --git a/Showcase/ShowcaseTests/__Snapshots__/Components/OUDSComponentButtonUITests/__Snapshots__/OUDSComponentButtonUITests/test_InverseTheme_Dark.ColoredSurface_Text_Minimal_Default.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/__Snapshots__/OUDSComponentButtonUITests/test_InverseTheme_Dark.ColoredSurface_Text_Minimal_Default.png
similarity index 100%
rename from Showcase/ShowcaseTests/__Snapshots__/Components/OUDSComponentButtonUITests/__Snapshots__/OUDSComponentButtonUITests/test_InverseTheme_Dark.ColoredSurface_Text_Minimal_Default.png
rename to DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/__Snapshots__/OUDSComponentButtonUITests/test_InverseTheme_Dark.ColoredSurface_Text_Minimal_Default.png
diff --git a/Showcase/ShowcaseTests/__Snapshots__/Components/OUDSComponentButtonUITests/__Snapshots__/OUDSComponentButtonUITests/test_InverseTheme_Dark.ColoredSurface_Text_Minimal_Default_Disabled.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/__Snapshots__/OUDSComponentButtonUITests/test_InverseTheme_Dark.ColoredSurface_Text_Minimal_Default_Disabled.png
similarity index 100%
rename from Showcase/ShowcaseTests/__Snapshots__/Components/OUDSComponentButtonUITests/__Snapshots__/OUDSComponentButtonUITests/test_InverseTheme_Dark.ColoredSurface_Text_Minimal_Default_Disabled.png
rename to DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/__Snapshots__/OUDSComponentButtonUITests/test_InverseTheme_Dark.ColoredSurface_Text_Minimal_Default_Disabled.png
diff --git a/Showcase/ShowcaseTests/__Snapshots__/Components/OUDSComponentButtonUITests/__Snapshots__/OUDSComponentButtonUITests/test_InverseTheme_Dark.ColoredSurface_Text_Strong_Default.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/__Snapshots__/OUDSComponentButtonUITests/test_InverseTheme_Dark.ColoredSurface_Text_Strong_Default.png
similarity index 100%
rename from Showcase/ShowcaseTests/__Snapshots__/Components/OUDSComponentButtonUITests/__Snapshots__/OUDSComponentButtonUITests/test_InverseTheme_Dark.ColoredSurface_Text_Strong_Default.png
rename to DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/__Snapshots__/OUDSComponentButtonUITests/test_InverseTheme_Dark.ColoredSurface_Text_Strong_Default.png
diff --git a/Showcase/ShowcaseTests/__Snapshots__/Components/OUDSComponentButtonUITests/__Snapshots__/OUDSComponentButtonUITests/test_InverseTheme_Dark.ColoredSurface_Text_Strong_Default_Disabled.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/__Snapshots__/OUDSComponentButtonUITests/test_InverseTheme_Dark.ColoredSurface_Text_Strong_Default_Disabled.png
similarity index 100%
rename from Showcase/ShowcaseTests/__Snapshots__/Components/OUDSComponentButtonUITests/__Snapshots__/OUDSComponentButtonUITests/test_InverseTheme_Dark.ColoredSurface_Text_Strong_Default_Disabled.png
rename to DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/__Snapshots__/OUDSComponentButtonUITests/test_InverseTheme_Dark.ColoredSurface_Text_Strong_Default_Disabled.png
diff --git a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/__Snapshots__/OUDSComponentButtonUITests/test_InverseTheme_Dark.Icon_Default_Default.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/__Snapshots__/OUDSComponentButtonUITests/test_InverseTheme_Dark.Icon_Default_Default.png
new file mode 100644
index 0000000000..b07300348a
Binary files /dev/null and b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/__Snapshots__/OUDSComponentButtonUITests/test_InverseTheme_Dark.Icon_Default_Default.png differ
diff --git a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/__Snapshots__/OUDSComponentButtonUITests/test_InverseTheme_Dark.Icon_Default_Default_Disabled.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/__Snapshots__/OUDSComponentButtonUITests/test_InverseTheme_Dark.Icon_Default_Default_Disabled.png
new file mode 100644
index 0000000000..8b5fec6dd6
Binary files /dev/null and b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/__Snapshots__/OUDSComponentButtonUITests/test_InverseTheme_Dark.Icon_Default_Default_Disabled.png differ
diff --git a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/__Snapshots__/OUDSComponentButtonUITests/test_InverseTheme_Dark.Icon_Minimal_Default.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/__Snapshots__/OUDSComponentButtonUITests/test_InverseTheme_Dark.Icon_Minimal_Default.png
new file mode 100644
index 0000000000..08c761237a
Binary files /dev/null and b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/__Snapshots__/OUDSComponentButtonUITests/test_InverseTheme_Dark.Icon_Minimal_Default.png differ
diff --git a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/__Snapshots__/OUDSComponentButtonUITests/test_InverseTheme_Dark.Icon_Minimal_Default_Disabled.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/__Snapshots__/OUDSComponentButtonUITests/test_InverseTheme_Dark.Icon_Minimal_Default_Disabled.png
new file mode 100644
index 0000000000..08c761237a
Binary files /dev/null and b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/__Snapshots__/OUDSComponentButtonUITests/test_InverseTheme_Dark.Icon_Minimal_Default_Disabled.png differ
diff --git a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/__Snapshots__/OUDSComponentButtonUITests/test_InverseTheme_Dark.Icon_Negative_Default.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/__Snapshots__/OUDSComponentButtonUITests/test_InverseTheme_Dark.Icon_Negative_Default.png
new file mode 100644
index 0000000000..96b810c3ba
Binary files /dev/null and b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/__Snapshots__/OUDSComponentButtonUITests/test_InverseTheme_Dark.Icon_Negative_Default.png differ
diff --git a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/__Snapshots__/OUDSComponentButtonUITests/test_InverseTheme_Dark.Icon_Negative_Default_Disabled.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/__Snapshots__/OUDSComponentButtonUITests/test_InverseTheme_Dark.Icon_Negative_Default_Disabled.png
new file mode 100644
index 0000000000..955d204916
Binary files /dev/null and b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/__Snapshots__/OUDSComponentButtonUITests/test_InverseTheme_Dark.Icon_Negative_Default_Disabled.png differ
diff --git a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/__Snapshots__/OUDSComponentButtonUITests/test_InverseTheme_Dark.Icon_Strong_Default.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/__Snapshots__/OUDSComponentButtonUITests/test_InverseTheme_Dark.Icon_Strong_Default.png
new file mode 100644
index 0000000000..8388b4f11a
Binary files /dev/null and b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/__Snapshots__/OUDSComponentButtonUITests/test_InverseTheme_Dark.Icon_Strong_Default.png differ
diff --git a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/__Snapshots__/OUDSComponentButtonUITests/test_InverseTheme_Dark.Icon_Strong_Default_Disabled.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/__Snapshots__/OUDSComponentButtonUITests/test_InverseTheme_Dark.Icon_Strong_Default_Disabled.png
new file mode 100644
index 0000000000..955d204916
Binary files /dev/null and b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/__Snapshots__/OUDSComponentButtonUITests/test_InverseTheme_Dark.Icon_Strong_Default_Disabled.png differ
diff --git a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/__Snapshots__/OUDSComponentButtonUITests/test_InverseTheme_Dark.TextAndIcon_Default_Default.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/__Snapshots__/OUDSComponentButtonUITests/test_InverseTheme_Dark.TextAndIcon_Default_Default.png
new file mode 100644
index 0000000000..f81263bdf1
Binary files /dev/null and b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/__Snapshots__/OUDSComponentButtonUITests/test_InverseTheme_Dark.TextAndIcon_Default_Default.png differ
diff --git a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/__Snapshots__/OUDSComponentButtonUITests/test_InverseTheme_Dark.TextAndIcon_Default_Default_Disabled.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/__Snapshots__/OUDSComponentButtonUITests/test_InverseTheme_Dark.TextAndIcon_Default_Default_Disabled.png
new file mode 100644
index 0000000000..6623e2967a
Binary files /dev/null and b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/__Snapshots__/OUDSComponentButtonUITests/test_InverseTheme_Dark.TextAndIcon_Default_Default_Disabled.png differ
diff --git a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/__Snapshots__/OUDSComponentButtonUITests/test_InverseTheme_Dark.TextAndIcon_Minimal_Default.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/__Snapshots__/OUDSComponentButtonUITests/test_InverseTheme_Dark.TextAndIcon_Minimal_Default.png
new file mode 100644
index 0000000000..85a4546e16
Binary files /dev/null and b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/__Snapshots__/OUDSComponentButtonUITests/test_InverseTheme_Dark.TextAndIcon_Minimal_Default.png differ
diff --git a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/__Snapshots__/OUDSComponentButtonUITests/test_InverseTheme_Dark.TextAndIcon_Minimal_Default_Disabled.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/__Snapshots__/OUDSComponentButtonUITests/test_InverseTheme_Dark.TextAndIcon_Minimal_Default_Disabled.png
new file mode 100644
index 0000000000..d47d4d799c
Binary files /dev/null and b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/__Snapshots__/OUDSComponentButtonUITests/test_InverseTheme_Dark.TextAndIcon_Minimal_Default_Disabled.png differ
diff --git a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/__Snapshots__/OUDSComponentButtonUITests/test_InverseTheme_Dark.TextAndIcon_Negative_Default.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/__Snapshots__/OUDSComponentButtonUITests/test_InverseTheme_Dark.TextAndIcon_Negative_Default.png
new file mode 100644
index 0000000000..91393bc5ea
Binary files /dev/null and b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/__Snapshots__/OUDSComponentButtonUITests/test_InverseTheme_Dark.TextAndIcon_Negative_Default.png differ
diff --git a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/__Snapshots__/OUDSComponentButtonUITests/test_InverseTheme_Dark.TextAndIcon_Negative_Default_Disabled.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/__Snapshots__/OUDSComponentButtonUITests/test_InverseTheme_Dark.TextAndIcon_Negative_Default_Disabled.png
new file mode 100644
index 0000000000..10686fd9bc
Binary files /dev/null and b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/__Snapshots__/OUDSComponentButtonUITests/test_InverseTheme_Dark.TextAndIcon_Negative_Default_Disabled.png differ
diff --git a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/__Snapshots__/OUDSComponentButtonUITests/test_InverseTheme_Dark.TextAndIcon_Strong_Default.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/__Snapshots__/OUDSComponentButtonUITests/test_InverseTheme_Dark.TextAndIcon_Strong_Default.png
new file mode 100644
index 0000000000..1098be1ab3
Binary files /dev/null and b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/__Snapshots__/OUDSComponentButtonUITests/test_InverseTheme_Dark.TextAndIcon_Strong_Default.png differ
diff --git a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/__Snapshots__/OUDSComponentButtonUITests/test_InverseTheme_Dark.TextAndIcon_Strong_Default_Disabled.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/__Snapshots__/OUDSComponentButtonUITests/test_InverseTheme_Dark.TextAndIcon_Strong_Default_Disabled.png
new file mode 100644
index 0000000000..10686fd9bc
Binary files /dev/null and b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/__Snapshots__/OUDSComponentButtonUITests/test_InverseTheme_Dark.TextAndIcon_Strong_Default_Disabled.png differ
diff --git a/Showcase/ShowcaseTests/__Snapshots__/Components/OUDSComponentButtonUITests/__Snapshots__/OUDSComponentButtonUITests/test_InverseTheme_Dark.Text_Default_Default.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/__Snapshots__/OUDSComponentButtonUITests/test_InverseTheme_Dark.Text_Default_Default.png
similarity index 100%
rename from Showcase/ShowcaseTests/__Snapshots__/Components/OUDSComponentButtonUITests/__Snapshots__/OUDSComponentButtonUITests/test_InverseTheme_Dark.Text_Default_Default.png
rename to DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/__Snapshots__/OUDSComponentButtonUITests/test_InverseTheme_Dark.Text_Default_Default.png
diff --git a/Showcase/ShowcaseTests/__Snapshots__/Components/OUDSComponentButtonUITests/__Snapshots__/OUDSComponentButtonUITests/test_InverseTheme_Dark.Text_Default_Default_Disabled.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/__Snapshots__/OUDSComponentButtonUITests/test_InverseTheme_Dark.Text_Default_Default_Disabled.png
similarity index 100%
rename from Showcase/ShowcaseTests/__Snapshots__/Components/OUDSComponentButtonUITests/__Snapshots__/OUDSComponentButtonUITests/test_InverseTheme_Dark.Text_Default_Default_Disabled.png
rename to DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/__Snapshots__/OUDSComponentButtonUITests/test_InverseTheme_Dark.Text_Default_Default_Disabled.png
diff --git a/Showcase/ShowcaseTests/__Snapshots__/Components/OUDSComponentButtonUITests/__Snapshots__/OUDSComponentButtonUITests/test_InverseTheme_Dark.Text_Minimal_Default.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/__Snapshots__/OUDSComponentButtonUITests/test_InverseTheme_Dark.Text_Minimal_Default.png
similarity index 100%
rename from Showcase/ShowcaseTests/__Snapshots__/Components/OUDSComponentButtonUITests/__Snapshots__/OUDSComponentButtonUITests/test_InverseTheme_Dark.Text_Minimal_Default.png
rename to DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/__Snapshots__/OUDSComponentButtonUITests/test_InverseTheme_Dark.Text_Minimal_Default.png
diff --git a/Showcase/ShowcaseTests/__Snapshots__/Components/OUDSComponentButtonUITests/__Snapshots__/OUDSComponentButtonUITests/test_InverseTheme_Dark.Text_Minimal_Default_Disabled.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/__Snapshots__/OUDSComponentButtonUITests/test_InverseTheme_Dark.Text_Minimal_Default_Disabled.png
similarity index 100%
rename from Showcase/ShowcaseTests/__Snapshots__/Components/OUDSComponentButtonUITests/__Snapshots__/OUDSComponentButtonUITests/test_InverseTheme_Dark.Text_Minimal_Default_Disabled.png
rename to DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/__Snapshots__/OUDSComponentButtonUITests/test_InverseTheme_Dark.Text_Minimal_Default_Disabled.png
diff --git a/Showcase/ShowcaseTests/__Snapshots__/Components/OUDSComponentButtonUITests/__Snapshots__/OUDSComponentButtonUITests/test_InverseTheme_Dark.Text_Negative_Default.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/__Snapshots__/OUDSComponentButtonUITests/test_InverseTheme_Dark.Text_Negative_Default.png
similarity index 100%
rename from Showcase/ShowcaseTests/__Snapshots__/Components/OUDSComponentButtonUITests/__Snapshots__/OUDSComponentButtonUITests/test_InverseTheme_Dark.Text_Negative_Default.png
rename to DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/__Snapshots__/OUDSComponentButtonUITests/test_InverseTheme_Dark.Text_Negative_Default.png
diff --git a/Showcase/ShowcaseTests/__Snapshots__/Components/OUDSComponentButtonUITests/__Snapshots__/OUDSComponentButtonUITests/test_InverseTheme_Dark.Text_Negative_Default_Disabled.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/__Snapshots__/OUDSComponentButtonUITests/test_InverseTheme_Dark.Text_Negative_Default_Disabled.png
similarity index 100%
rename from Showcase/ShowcaseTests/__Snapshots__/Components/OUDSComponentButtonUITests/__Snapshots__/OUDSComponentButtonUITests/test_InverseTheme_Dark.Text_Negative_Default_Disabled.png
rename to DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/__Snapshots__/OUDSComponentButtonUITests/test_InverseTheme_Dark.Text_Negative_Default_Disabled.png
diff --git a/Showcase/ShowcaseTests/__Snapshots__/Components/OUDSComponentButtonUITests/__Snapshots__/OUDSComponentButtonUITests/test_InverseTheme_Dark.Text_Strong_Default.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/__Snapshots__/OUDSComponentButtonUITests/test_InverseTheme_Dark.Text_Strong_Default.png
similarity index 100%
rename from Showcase/ShowcaseTests/__Snapshots__/Components/OUDSComponentButtonUITests/__Snapshots__/OUDSComponentButtonUITests/test_InverseTheme_Dark.Text_Strong_Default.png
rename to DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/__Snapshots__/OUDSComponentButtonUITests/test_InverseTheme_Dark.Text_Strong_Default.png
diff --git a/Showcase/ShowcaseTests/__Snapshots__/Components/OUDSComponentButtonUITests/__Snapshots__/OUDSComponentButtonUITests/test_InverseTheme_Dark.Text_Strong_Default_Disabled.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/__Snapshots__/OUDSComponentButtonUITests/test_InverseTheme_Dark.Text_Strong_Default_Disabled.png
similarity index 100%
rename from Showcase/ShowcaseTests/__Snapshots__/Components/OUDSComponentButtonUITests/__Snapshots__/OUDSComponentButtonUITests/test_InverseTheme_Dark.Text_Strong_Default_Disabled.png
rename to DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/__Snapshots__/OUDSComponentButtonUITests/test_InverseTheme_Dark.Text_Strong_Default_Disabled.png
diff --git a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/__Snapshots__/OUDSComponentButtonUITests/test_InverseTheme_Light.ColoredSurface_Icon_Default_Default.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/__Snapshots__/OUDSComponentButtonUITests/test_InverseTheme_Light.ColoredSurface_Icon_Default_Default.png
new file mode 100644
index 0000000000..21264b8371
Binary files /dev/null and b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/__Snapshots__/OUDSComponentButtonUITests/test_InverseTheme_Light.ColoredSurface_Icon_Default_Default.png differ
diff --git a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/__Snapshots__/OUDSComponentButtonUITests/test_InverseTheme_Light.ColoredSurface_Icon_Default_Default_Disabled.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/__Snapshots__/OUDSComponentButtonUITests/test_InverseTheme_Light.ColoredSurface_Icon_Default_Default_Disabled.png
new file mode 100644
index 0000000000..37295a968c
Binary files /dev/null and b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/__Snapshots__/OUDSComponentButtonUITests/test_InverseTheme_Light.ColoredSurface_Icon_Default_Default_Disabled.png differ
diff --git a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/__Snapshots__/OUDSComponentButtonUITests/test_InverseTheme_Light.ColoredSurface_Icon_Minimal_Default.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/__Snapshots__/OUDSComponentButtonUITests/test_InverseTheme_Light.ColoredSurface_Icon_Minimal_Default.png
new file mode 100644
index 0000000000..bd3d3a12b3
Binary files /dev/null and b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/__Snapshots__/OUDSComponentButtonUITests/test_InverseTheme_Light.ColoredSurface_Icon_Minimal_Default.png differ
diff --git a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/__Snapshots__/OUDSComponentButtonUITests/test_InverseTheme_Light.ColoredSurface_Icon_Minimal_Default_Disabled.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/__Snapshots__/OUDSComponentButtonUITests/test_InverseTheme_Light.ColoredSurface_Icon_Minimal_Default_Disabled.png
new file mode 100644
index 0000000000..bd3d3a12b3
Binary files /dev/null and b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/__Snapshots__/OUDSComponentButtonUITests/test_InverseTheme_Light.ColoredSurface_Icon_Minimal_Default_Disabled.png differ
diff --git a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/__Snapshots__/OUDSComponentButtonUITests/test_InverseTheme_Light.ColoredSurface_Icon_Strong_Default.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/__Snapshots__/OUDSComponentButtonUITests/test_InverseTheme_Light.ColoredSurface_Icon_Strong_Default.png
new file mode 100644
index 0000000000..a5c89277eb
Binary files /dev/null and b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/__Snapshots__/OUDSComponentButtonUITests/test_InverseTheme_Light.ColoredSurface_Icon_Strong_Default.png differ
diff --git a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/__Snapshots__/OUDSComponentButtonUITests/test_InverseTheme_Light.ColoredSurface_Icon_Strong_Default_Disabled.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/__Snapshots__/OUDSComponentButtonUITests/test_InverseTheme_Light.ColoredSurface_Icon_Strong_Default_Disabled.png
new file mode 100644
index 0000000000..3ef9d47e8b
Binary files /dev/null and b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/__Snapshots__/OUDSComponentButtonUITests/test_InverseTheme_Light.ColoredSurface_Icon_Strong_Default_Disabled.png differ
diff --git a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/__Snapshots__/OUDSComponentButtonUITests/test_InverseTheme_Light.ColoredSurface_TextAndIcon_Default_Default.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/__Snapshots__/OUDSComponentButtonUITests/test_InverseTheme_Light.ColoredSurface_TextAndIcon_Default_Default.png
new file mode 100644
index 0000000000..88db60e703
Binary files /dev/null and b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/__Snapshots__/OUDSComponentButtonUITests/test_InverseTheme_Light.ColoredSurface_TextAndIcon_Default_Default.png differ
diff --git a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/__Snapshots__/OUDSComponentButtonUITests/test_InverseTheme_Light.ColoredSurface_TextAndIcon_Default_Default_Disabled.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/__Snapshots__/OUDSComponentButtonUITests/test_InverseTheme_Light.ColoredSurface_TextAndIcon_Default_Default_Disabled.png
new file mode 100644
index 0000000000..0ce91866c0
Binary files /dev/null and b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/__Snapshots__/OUDSComponentButtonUITests/test_InverseTheme_Light.ColoredSurface_TextAndIcon_Default_Default_Disabled.png differ
diff --git a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/__Snapshots__/OUDSComponentButtonUITests/test_InverseTheme_Light.ColoredSurface_TextAndIcon_Minimal_Default.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/__Snapshots__/OUDSComponentButtonUITests/test_InverseTheme_Light.ColoredSurface_TextAndIcon_Minimal_Default.png
new file mode 100644
index 0000000000..4d0f9c34d1
Binary files /dev/null and b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/__Snapshots__/OUDSComponentButtonUITests/test_InverseTheme_Light.ColoredSurface_TextAndIcon_Minimal_Default.png differ
diff --git a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/__Snapshots__/OUDSComponentButtonUITests/test_InverseTheme_Light.ColoredSurface_TextAndIcon_Minimal_Default_Disabled.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/__Snapshots__/OUDSComponentButtonUITests/test_InverseTheme_Light.ColoredSurface_TextAndIcon_Minimal_Default_Disabled.png
new file mode 100644
index 0000000000..9ea1643d10
Binary files /dev/null and b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/__Snapshots__/OUDSComponentButtonUITests/test_InverseTheme_Light.ColoredSurface_TextAndIcon_Minimal_Default_Disabled.png differ
diff --git a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/__Snapshots__/OUDSComponentButtonUITests/test_InverseTheme_Light.ColoredSurface_TextAndIcon_Strong_Default.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/__Snapshots__/OUDSComponentButtonUITests/test_InverseTheme_Light.ColoredSurface_TextAndIcon_Strong_Default.png
new file mode 100644
index 0000000000..30ecd48043
Binary files /dev/null and b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/__Snapshots__/OUDSComponentButtonUITests/test_InverseTheme_Light.ColoredSurface_TextAndIcon_Strong_Default.png differ
diff --git a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/__Snapshots__/OUDSComponentButtonUITests/test_InverseTheme_Light.ColoredSurface_TextAndIcon_Strong_Default_Disabled.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/__Snapshots__/OUDSComponentButtonUITests/test_InverseTheme_Light.ColoredSurface_TextAndIcon_Strong_Default_Disabled.png
new file mode 100644
index 0000000000..a91f157fdb
Binary files /dev/null and b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/__Snapshots__/OUDSComponentButtonUITests/test_InverseTheme_Light.ColoredSurface_TextAndIcon_Strong_Default_Disabled.png differ
diff --git a/Showcase/ShowcaseTests/__Snapshots__/Components/OUDSComponentButtonUITests/__Snapshots__/OUDSComponentButtonUITests/test_InverseTheme_Light.ColoredSurface_Text_Default_Default.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/__Snapshots__/OUDSComponentButtonUITests/test_InverseTheme_Light.ColoredSurface_Text_Default_Default.png
similarity index 100%
rename from Showcase/ShowcaseTests/__Snapshots__/Components/OUDSComponentButtonUITests/__Snapshots__/OUDSComponentButtonUITests/test_InverseTheme_Light.ColoredSurface_Text_Default_Default.png
rename to DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/__Snapshots__/OUDSComponentButtonUITests/test_InverseTheme_Light.ColoredSurface_Text_Default_Default.png
diff --git a/Showcase/ShowcaseTests/__Snapshots__/Components/OUDSComponentButtonUITests/__Snapshots__/OUDSComponentButtonUITests/test_InverseTheme_Light.ColoredSurface_Text_Default_Default_Disabled.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/__Snapshots__/OUDSComponentButtonUITests/test_InverseTheme_Light.ColoredSurface_Text_Default_Default_Disabled.png
similarity index 100%
rename from Showcase/ShowcaseTests/__Snapshots__/Components/OUDSComponentButtonUITests/__Snapshots__/OUDSComponentButtonUITests/test_InverseTheme_Light.ColoredSurface_Text_Default_Default_Disabled.png
rename to DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/__Snapshots__/OUDSComponentButtonUITests/test_InverseTheme_Light.ColoredSurface_Text_Default_Default_Disabled.png
diff --git a/Showcase/ShowcaseTests/__Snapshots__/Components/OUDSComponentButtonUITests/__Snapshots__/OUDSComponentButtonUITests/test_InverseTheme_Light.ColoredSurface_Text_Minimal_Default.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/__Snapshots__/OUDSComponentButtonUITests/test_InverseTheme_Light.ColoredSurface_Text_Minimal_Default.png
similarity index 100%
rename from Showcase/ShowcaseTests/__Snapshots__/Components/OUDSComponentButtonUITests/__Snapshots__/OUDSComponentButtonUITests/test_InverseTheme_Light.ColoredSurface_Text_Minimal_Default.png
rename to DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/__Snapshots__/OUDSComponentButtonUITests/test_InverseTheme_Light.ColoredSurface_Text_Minimal_Default.png
diff --git a/Showcase/ShowcaseTests/__Snapshots__/Components/OUDSComponentButtonUITests/__Snapshots__/OUDSComponentButtonUITests/test_InverseTheme_Light.ColoredSurface_Text_Minimal_Default_Disabled.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/__Snapshots__/OUDSComponentButtonUITests/test_InverseTheme_Light.ColoredSurface_Text_Minimal_Default_Disabled.png
similarity index 100%
rename from Showcase/ShowcaseTests/__Snapshots__/Components/OUDSComponentButtonUITests/__Snapshots__/OUDSComponentButtonUITests/test_InverseTheme_Light.ColoredSurface_Text_Minimal_Default_Disabled.png
rename to DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/__Snapshots__/OUDSComponentButtonUITests/test_InverseTheme_Light.ColoredSurface_Text_Minimal_Default_Disabled.png
diff --git a/Showcase/ShowcaseTests/__Snapshots__/Components/OUDSComponentButtonUITests/__Snapshots__/OUDSComponentButtonUITests/test_InverseTheme_Light.ColoredSurface_Text_Strong_Default.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/__Snapshots__/OUDSComponentButtonUITests/test_InverseTheme_Light.ColoredSurface_Text_Strong_Default.png
similarity index 100%
rename from Showcase/ShowcaseTests/__Snapshots__/Components/OUDSComponentButtonUITests/__Snapshots__/OUDSComponentButtonUITests/test_InverseTheme_Light.ColoredSurface_Text_Strong_Default.png
rename to DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/__Snapshots__/OUDSComponentButtonUITests/test_InverseTheme_Light.ColoredSurface_Text_Strong_Default.png
diff --git a/Showcase/ShowcaseTests/__Snapshots__/Components/OUDSComponentButtonUITests/__Snapshots__/OUDSComponentButtonUITests/test_InverseTheme_Light.ColoredSurface_Text_Strong_Default_Disabled.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/__Snapshots__/OUDSComponentButtonUITests/test_InverseTheme_Light.ColoredSurface_Text_Strong_Default_Disabled.png
similarity index 100%
rename from Showcase/ShowcaseTests/__Snapshots__/Components/OUDSComponentButtonUITests/__Snapshots__/OUDSComponentButtonUITests/test_InverseTheme_Light.ColoredSurface_Text_Strong_Default_Disabled.png
rename to DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/__Snapshots__/OUDSComponentButtonUITests/test_InverseTheme_Light.ColoredSurface_Text_Strong_Default_Disabled.png
diff --git a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/__Snapshots__/OUDSComponentButtonUITests/test_InverseTheme_Light.Icon_Default_Default.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/__Snapshots__/OUDSComponentButtonUITests/test_InverseTheme_Light.Icon_Default_Default.png
new file mode 100644
index 0000000000..07013f1419
Binary files /dev/null and b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/__Snapshots__/OUDSComponentButtonUITests/test_InverseTheme_Light.Icon_Default_Default.png differ
diff --git a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/__Snapshots__/OUDSComponentButtonUITests/test_InverseTheme_Light.Icon_Default_Default_Disabled.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/__Snapshots__/OUDSComponentButtonUITests/test_InverseTheme_Light.Icon_Default_Default_Disabled.png
new file mode 100644
index 0000000000..66cf334c25
Binary files /dev/null and b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/__Snapshots__/OUDSComponentButtonUITests/test_InverseTheme_Light.Icon_Default_Default_Disabled.png differ
diff --git a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/__Snapshots__/OUDSComponentButtonUITests/test_InverseTheme_Light.Icon_Minimal_Default.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/__Snapshots__/OUDSComponentButtonUITests/test_InverseTheme_Light.Icon_Minimal_Default.png
new file mode 100644
index 0000000000..cf4ea3f554
Binary files /dev/null and b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/__Snapshots__/OUDSComponentButtonUITests/test_InverseTheme_Light.Icon_Minimal_Default.png differ
diff --git a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/__Snapshots__/OUDSComponentButtonUITests/test_InverseTheme_Light.Icon_Minimal_Default_Disabled.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/__Snapshots__/OUDSComponentButtonUITests/test_InverseTheme_Light.Icon_Minimal_Default_Disabled.png
new file mode 100644
index 0000000000..cf4ea3f554
Binary files /dev/null and b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/__Snapshots__/OUDSComponentButtonUITests/test_InverseTheme_Light.Icon_Minimal_Default_Disabled.png differ
diff --git a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/__Snapshots__/OUDSComponentButtonUITests/test_InverseTheme_Light.Icon_Negative_Default.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/__Snapshots__/OUDSComponentButtonUITests/test_InverseTheme_Light.Icon_Negative_Default.png
new file mode 100644
index 0000000000..1db1bad575
Binary files /dev/null and b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/__Snapshots__/OUDSComponentButtonUITests/test_InverseTheme_Light.Icon_Negative_Default.png differ
diff --git a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/__Snapshots__/OUDSComponentButtonUITests/test_InverseTheme_Light.Icon_Negative_Default_Disabled.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/__Snapshots__/OUDSComponentButtonUITests/test_InverseTheme_Light.Icon_Negative_Default_Disabled.png
new file mode 100644
index 0000000000..00e23342fc
Binary files /dev/null and b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/__Snapshots__/OUDSComponentButtonUITests/test_InverseTheme_Light.Icon_Negative_Default_Disabled.png differ
diff --git a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/__Snapshots__/OUDSComponentButtonUITests/test_InverseTheme_Light.Icon_Strong_Default.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/__Snapshots__/OUDSComponentButtonUITests/test_InverseTheme_Light.Icon_Strong_Default.png
new file mode 100644
index 0000000000..25e305a5ec
Binary files /dev/null and b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/__Snapshots__/OUDSComponentButtonUITests/test_InverseTheme_Light.Icon_Strong_Default.png differ
diff --git a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/__Snapshots__/OUDSComponentButtonUITests/test_InverseTheme_Light.Icon_Strong_Default_Disabled.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/__Snapshots__/OUDSComponentButtonUITests/test_InverseTheme_Light.Icon_Strong_Default_Disabled.png
new file mode 100644
index 0000000000..00e23342fc
Binary files /dev/null and b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/__Snapshots__/OUDSComponentButtonUITests/test_InverseTheme_Light.Icon_Strong_Default_Disabled.png differ
diff --git a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/__Snapshots__/OUDSComponentButtonUITests/test_InverseTheme_Light.TextAndIcon_Default_Default.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/__Snapshots__/OUDSComponentButtonUITests/test_InverseTheme_Light.TextAndIcon_Default_Default.png
new file mode 100644
index 0000000000..cbb5d01d08
Binary files /dev/null and b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/__Snapshots__/OUDSComponentButtonUITests/test_InverseTheme_Light.TextAndIcon_Default_Default.png differ
diff --git a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/__Snapshots__/OUDSComponentButtonUITests/test_InverseTheme_Light.TextAndIcon_Default_Default_Disabled.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/__Snapshots__/OUDSComponentButtonUITests/test_InverseTheme_Light.TextAndIcon_Default_Default_Disabled.png
new file mode 100644
index 0000000000..bab3a76675
Binary files /dev/null and b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/__Snapshots__/OUDSComponentButtonUITests/test_InverseTheme_Light.TextAndIcon_Default_Default_Disabled.png differ
diff --git a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/__Snapshots__/OUDSComponentButtonUITests/test_InverseTheme_Light.TextAndIcon_Minimal_Default.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/__Snapshots__/OUDSComponentButtonUITests/test_InverseTheme_Light.TextAndIcon_Minimal_Default.png
new file mode 100644
index 0000000000..647184a0cd
Binary files /dev/null and b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/__Snapshots__/OUDSComponentButtonUITests/test_InverseTheme_Light.TextAndIcon_Minimal_Default.png differ
diff --git a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/__Snapshots__/OUDSComponentButtonUITests/test_InverseTheme_Light.TextAndIcon_Minimal_Default_Disabled.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/__Snapshots__/OUDSComponentButtonUITests/test_InverseTheme_Light.TextAndIcon_Minimal_Default_Disabled.png
new file mode 100644
index 0000000000..fe5b55445d
Binary files /dev/null and b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/__Snapshots__/OUDSComponentButtonUITests/test_InverseTheme_Light.TextAndIcon_Minimal_Default_Disabled.png differ
diff --git a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/__Snapshots__/OUDSComponentButtonUITests/test_InverseTheme_Light.TextAndIcon_Negative_Default.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/__Snapshots__/OUDSComponentButtonUITests/test_InverseTheme_Light.TextAndIcon_Negative_Default.png
new file mode 100644
index 0000000000..82a9e5af25
Binary files /dev/null and b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/__Snapshots__/OUDSComponentButtonUITests/test_InverseTheme_Light.TextAndIcon_Negative_Default.png differ
diff --git a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/__Snapshots__/OUDSComponentButtonUITests/test_InverseTheme_Light.TextAndIcon_Negative_Default_Disabled.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/__Snapshots__/OUDSComponentButtonUITests/test_InverseTheme_Light.TextAndIcon_Negative_Default_Disabled.png
new file mode 100644
index 0000000000..83f72914ea
Binary files /dev/null and b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/__Snapshots__/OUDSComponentButtonUITests/test_InverseTheme_Light.TextAndIcon_Negative_Default_Disabled.png differ
diff --git a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/__Snapshots__/OUDSComponentButtonUITests/test_InverseTheme_Light.TextAndIcon_Strong_Default.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/__Snapshots__/OUDSComponentButtonUITests/test_InverseTheme_Light.TextAndIcon_Strong_Default.png
new file mode 100644
index 0000000000..c8df04d09a
Binary files /dev/null and b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/__Snapshots__/OUDSComponentButtonUITests/test_InverseTheme_Light.TextAndIcon_Strong_Default.png differ
diff --git a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/__Snapshots__/OUDSComponentButtonUITests/test_InverseTheme_Light.TextAndIcon_Strong_Default_Disabled.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/__Snapshots__/OUDSComponentButtonUITests/test_InverseTheme_Light.TextAndIcon_Strong_Default_Disabled.png
new file mode 100644
index 0000000000..83f72914ea
Binary files /dev/null and b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/__Snapshots__/OUDSComponentButtonUITests/test_InverseTheme_Light.TextAndIcon_Strong_Default_Disabled.png differ
diff --git a/Showcase/ShowcaseTests/__Snapshots__/Components/OUDSComponentButtonUITests/__Snapshots__/OUDSComponentButtonUITests/test_InverseTheme_Light.Text_Default_Default.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/__Snapshots__/OUDSComponentButtonUITests/test_InverseTheme_Light.Text_Default_Default.png
similarity index 100%
rename from Showcase/ShowcaseTests/__Snapshots__/Components/OUDSComponentButtonUITests/__Snapshots__/OUDSComponentButtonUITests/test_InverseTheme_Light.Text_Default_Default.png
rename to DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/__Snapshots__/OUDSComponentButtonUITests/test_InverseTheme_Light.Text_Default_Default.png
diff --git a/Showcase/ShowcaseTests/__Snapshots__/Components/OUDSComponentButtonUITests/__Snapshots__/OUDSComponentButtonUITests/test_InverseTheme_Light.Text_Default_Default_Disabled.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/__Snapshots__/OUDSComponentButtonUITests/test_InverseTheme_Light.Text_Default_Default_Disabled.png
similarity index 100%
rename from Showcase/ShowcaseTests/__Snapshots__/Components/OUDSComponentButtonUITests/__Snapshots__/OUDSComponentButtonUITests/test_InverseTheme_Light.Text_Default_Default_Disabled.png
rename to DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/__Snapshots__/OUDSComponentButtonUITests/test_InverseTheme_Light.Text_Default_Default_Disabled.png
diff --git a/Showcase/ShowcaseTests/__Snapshots__/Components/OUDSComponentButtonUITests/__Snapshots__/OUDSComponentButtonUITests/test_InverseTheme_Light.Text_Minimal_Default.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/__Snapshots__/OUDSComponentButtonUITests/test_InverseTheme_Light.Text_Minimal_Default.png
similarity index 100%
rename from Showcase/ShowcaseTests/__Snapshots__/Components/OUDSComponentButtonUITests/__Snapshots__/OUDSComponentButtonUITests/test_InverseTheme_Light.Text_Minimal_Default.png
rename to DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/__Snapshots__/OUDSComponentButtonUITests/test_InverseTheme_Light.Text_Minimal_Default.png
diff --git a/Showcase/ShowcaseTests/__Snapshots__/Components/OUDSComponentButtonUITests/__Snapshots__/OUDSComponentButtonUITests/test_InverseTheme_Light.Text_Minimal_Default_Disabled.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/__Snapshots__/OUDSComponentButtonUITests/test_InverseTheme_Light.Text_Minimal_Default_Disabled.png
similarity index 100%
rename from Showcase/ShowcaseTests/__Snapshots__/Components/OUDSComponentButtonUITests/__Snapshots__/OUDSComponentButtonUITests/test_InverseTheme_Light.Text_Minimal_Default_Disabled.png
rename to DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/__Snapshots__/OUDSComponentButtonUITests/test_InverseTheme_Light.Text_Minimal_Default_Disabled.png
diff --git a/Showcase/ShowcaseTests/__Snapshots__/Components/OUDSComponentButtonUITests/__Snapshots__/OUDSComponentButtonUITests/test_InverseTheme_Light.Text_Negative_Default.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/__Snapshots__/OUDSComponentButtonUITests/test_InverseTheme_Light.Text_Negative_Default.png
similarity index 100%
rename from Showcase/ShowcaseTests/__Snapshots__/Components/OUDSComponentButtonUITests/__Snapshots__/OUDSComponentButtonUITests/test_InverseTheme_Light.Text_Negative_Default.png
rename to DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/__Snapshots__/OUDSComponentButtonUITests/test_InverseTheme_Light.Text_Negative_Default.png
diff --git a/Showcase/ShowcaseTests/__Snapshots__/Components/OUDSComponentButtonUITests/__Snapshots__/OUDSComponentButtonUITests/test_InverseTheme_Light.Text_Negative_Default_Disabled.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/__Snapshots__/OUDSComponentButtonUITests/test_InverseTheme_Light.Text_Negative_Default_Disabled.png
similarity index 100%
rename from Showcase/ShowcaseTests/__Snapshots__/Components/OUDSComponentButtonUITests/__Snapshots__/OUDSComponentButtonUITests/test_InverseTheme_Light.Text_Negative_Default_Disabled.png
rename to DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/__Snapshots__/OUDSComponentButtonUITests/test_InverseTheme_Light.Text_Negative_Default_Disabled.png
diff --git a/Showcase/ShowcaseTests/__Snapshots__/Components/OUDSComponentButtonUITests/__Snapshots__/OUDSComponentButtonUITests/test_InverseTheme_Light.Text_Strong_Default.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/__Snapshots__/OUDSComponentButtonUITests/test_InverseTheme_Light.Text_Strong_Default.png
similarity index 100%
rename from Showcase/ShowcaseTests/__Snapshots__/Components/OUDSComponentButtonUITests/__Snapshots__/OUDSComponentButtonUITests/test_InverseTheme_Light.Text_Strong_Default.png
rename to DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/__Snapshots__/OUDSComponentButtonUITests/test_InverseTheme_Light.Text_Strong_Default.png
diff --git a/Showcase/ShowcaseTests/__Snapshots__/Components/OUDSComponentButtonUITests/__Snapshots__/OUDSComponentButtonUITests/test_InverseTheme_Light.Text_Strong_Default_Disabled.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/__Snapshots__/OUDSComponentButtonUITests/test_InverseTheme_Light.Text_Strong_Default_Disabled.png
similarity index 100%
rename from Showcase/ShowcaseTests/__Snapshots__/Components/OUDSComponentButtonUITests/__Snapshots__/OUDSComponentButtonUITests/test_InverseTheme_Light.Text_Strong_Default_Disabled.png
rename to DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/__Snapshots__/OUDSComponentButtonUITests/test_InverseTheme_Light.Text_Strong_Default_Disabled.png
diff --git a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/__Snapshots__/OUDSComponentButtonUITests/test_OrangeTheme_Dark.ColoredSurface_Icon_Default_Default.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/__Snapshots__/OUDSComponentButtonUITests/test_OrangeTheme_Dark.ColoredSurface_Icon_Default_Default.png
new file mode 100644
index 0000000000..be65833ff6
Binary files /dev/null and b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/__Snapshots__/OUDSComponentButtonUITests/test_OrangeTheme_Dark.ColoredSurface_Icon_Default_Default.png differ
diff --git a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/__Snapshots__/OUDSComponentButtonUITests/test_OrangeTheme_Dark.ColoredSurface_Icon_Default_Default_Disabled.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/__Snapshots__/OUDSComponentButtonUITests/test_OrangeTheme_Dark.ColoredSurface_Icon_Default_Default_Disabled.png
new file mode 100644
index 0000000000..e410e2b7d8
Binary files /dev/null and b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/__Snapshots__/OUDSComponentButtonUITests/test_OrangeTheme_Dark.ColoredSurface_Icon_Default_Default_Disabled.png differ
diff --git a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/__Snapshots__/OUDSComponentButtonUITests/test_OrangeTheme_Dark.ColoredSurface_Icon_Minimal_Default.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/__Snapshots__/OUDSComponentButtonUITests/test_OrangeTheme_Dark.ColoredSurface_Icon_Minimal_Default.png
new file mode 100644
index 0000000000..10662e63a1
Binary files /dev/null and b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/__Snapshots__/OUDSComponentButtonUITests/test_OrangeTheme_Dark.ColoredSurface_Icon_Minimal_Default.png differ
diff --git a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/__Snapshots__/OUDSComponentButtonUITests/test_OrangeTheme_Dark.ColoredSurface_Icon_Minimal_Default_Disabled.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/__Snapshots__/OUDSComponentButtonUITests/test_OrangeTheme_Dark.ColoredSurface_Icon_Minimal_Default_Disabled.png
new file mode 100644
index 0000000000..10662e63a1
Binary files /dev/null and b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/__Snapshots__/OUDSComponentButtonUITests/test_OrangeTheme_Dark.ColoredSurface_Icon_Minimal_Default_Disabled.png differ
diff --git a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/__Snapshots__/OUDSComponentButtonUITests/test_OrangeTheme_Dark.ColoredSurface_Icon_Strong_Default.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/__Snapshots__/OUDSComponentButtonUITests/test_OrangeTheme_Dark.ColoredSurface_Icon_Strong_Default.png
new file mode 100644
index 0000000000..5834588bb3
Binary files /dev/null and b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/__Snapshots__/OUDSComponentButtonUITests/test_OrangeTheme_Dark.ColoredSurface_Icon_Strong_Default.png differ
diff --git a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/__Snapshots__/OUDSComponentButtonUITests/test_OrangeTheme_Dark.ColoredSurface_Icon_Strong_Default_Disabled.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/__Snapshots__/OUDSComponentButtonUITests/test_OrangeTheme_Dark.ColoredSurface_Icon_Strong_Default_Disabled.png
new file mode 100644
index 0000000000..ddbebd3159
Binary files /dev/null and b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/__Snapshots__/OUDSComponentButtonUITests/test_OrangeTheme_Dark.ColoredSurface_Icon_Strong_Default_Disabled.png differ
diff --git a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/__Snapshots__/OUDSComponentButtonUITests/test_OrangeTheme_Dark.ColoredSurface_TextAndIcon_Default_Default.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/__Snapshots__/OUDSComponentButtonUITests/test_OrangeTheme_Dark.ColoredSurface_TextAndIcon_Default_Default.png
new file mode 100644
index 0000000000..cb8d647b89
Binary files /dev/null and b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/__Snapshots__/OUDSComponentButtonUITests/test_OrangeTheme_Dark.ColoredSurface_TextAndIcon_Default_Default.png differ
diff --git a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/__Snapshots__/OUDSComponentButtonUITests/test_OrangeTheme_Dark.ColoredSurface_TextAndIcon_Default_Default_Disabled.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/__Snapshots__/OUDSComponentButtonUITests/test_OrangeTheme_Dark.ColoredSurface_TextAndIcon_Default_Default_Disabled.png
new file mode 100644
index 0000000000..58ba1bab0e
Binary files /dev/null and b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/__Snapshots__/OUDSComponentButtonUITests/test_OrangeTheme_Dark.ColoredSurface_TextAndIcon_Default_Default_Disabled.png differ
diff --git a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/__Snapshots__/OUDSComponentButtonUITests/test_OrangeTheme_Dark.ColoredSurface_TextAndIcon_Minimal_Default.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/__Snapshots__/OUDSComponentButtonUITests/test_OrangeTheme_Dark.ColoredSurface_TextAndIcon_Minimal_Default.png
new file mode 100644
index 0000000000..91a9455cb0
Binary files /dev/null and b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/__Snapshots__/OUDSComponentButtonUITests/test_OrangeTheme_Dark.ColoredSurface_TextAndIcon_Minimal_Default.png differ
diff --git a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/__Snapshots__/OUDSComponentButtonUITests/test_OrangeTheme_Dark.ColoredSurface_TextAndIcon_Minimal_Default_Disabled.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/__Snapshots__/OUDSComponentButtonUITests/test_OrangeTheme_Dark.ColoredSurface_TextAndIcon_Minimal_Default_Disabled.png
new file mode 100644
index 0000000000..5a25afd400
Binary files /dev/null and b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/__Snapshots__/OUDSComponentButtonUITests/test_OrangeTheme_Dark.ColoredSurface_TextAndIcon_Minimal_Default_Disabled.png differ
diff --git a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/__Snapshots__/OUDSComponentButtonUITests/test_OrangeTheme_Dark.ColoredSurface_TextAndIcon_Strong_Default.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/__Snapshots__/OUDSComponentButtonUITests/test_OrangeTheme_Dark.ColoredSurface_TextAndIcon_Strong_Default.png
new file mode 100644
index 0000000000..fb3abd730d
Binary files /dev/null and b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/__Snapshots__/OUDSComponentButtonUITests/test_OrangeTheme_Dark.ColoredSurface_TextAndIcon_Strong_Default.png differ
diff --git a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/__Snapshots__/OUDSComponentButtonUITests/test_OrangeTheme_Dark.ColoredSurface_TextAndIcon_Strong_Default_Disabled.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/__Snapshots__/OUDSComponentButtonUITests/test_OrangeTheme_Dark.ColoredSurface_TextAndIcon_Strong_Default_Disabled.png
new file mode 100644
index 0000000000..9c110d9b05
Binary files /dev/null and b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/__Snapshots__/OUDSComponentButtonUITests/test_OrangeTheme_Dark.ColoredSurface_TextAndIcon_Strong_Default_Disabled.png differ
diff --git a/Showcase/ShowcaseTests/__Snapshots__/Components/OUDSComponentButtonUITests/__Snapshots__/OUDSComponentButtonUITests/test_OrangeTheme_Dark.ColoredSurface_Text_Default_Default.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/__Snapshots__/OUDSComponentButtonUITests/test_OrangeTheme_Dark.ColoredSurface_Text_Default_Default.png
similarity index 100%
rename from Showcase/ShowcaseTests/__Snapshots__/Components/OUDSComponentButtonUITests/__Snapshots__/OUDSComponentButtonUITests/test_OrangeTheme_Dark.ColoredSurface_Text_Default_Default.png
rename to DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/__Snapshots__/OUDSComponentButtonUITests/test_OrangeTheme_Dark.ColoredSurface_Text_Default_Default.png
diff --git a/Showcase/ShowcaseTests/__Snapshots__/Components/OUDSComponentButtonUITests/__Snapshots__/OUDSComponentButtonUITests/test_OrangeTheme_Dark.ColoredSurface_Text_Default_Default_Disabled.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/__Snapshots__/OUDSComponentButtonUITests/test_OrangeTheme_Dark.ColoredSurface_Text_Default_Default_Disabled.png
similarity index 100%
rename from Showcase/ShowcaseTests/__Snapshots__/Components/OUDSComponentButtonUITests/__Snapshots__/OUDSComponentButtonUITests/test_OrangeTheme_Dark.ColoredSurface_Text_Default_Default_Disabled.png
rename to DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/__Snapshots__/OUDSComponentButtonUITests/test_OrangeTheme_Dark.ColoredSurface_Text_Default_Default_Disabled.png
diff --git a/Showcase/ShowcaseTests/__Snapshots__/Components/OUDSComponentButtonUITests/__Snapshots__/OUDSComponentButtonUITests/test_OrangeTheme_Dark.ColoredSurface_Text_Minimal_Default.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/__Snapshots__/OUDSComponentButtonUITests/test_OrangeTheme_Dark.ColoredSurface_Text_Minimal_Default.png
similarity index 100%
rename from Showcase/ShowcaseTests/__Snapshots__/Components/OUDSComponentButtonUITests/__Snapshots__/OUDSComponentButtonUITests/test_OrangeTheme_Dark.ColoredSurface_Text_Minimal_Default.png
rename to DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/__Snapshots__/OUDSComponentButtonUITests/test_OrangeTheme_Dark.ColoredSurface_Text_Minimal_Default.png
diff --git a/Showcase/ShowcaseTests/__Snapshots__/Components/OUDSComponentButtonUITests/__Snapshots__/OUDSComponentButtonUITests/test_OrangeTheme_Dark.ColoredSurface_Text_Minimal_Default_Disabled.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/__Snapshots__/OUDSComponentButtonUITests/test_OrangeTheme_Dark.ColoredSurface_Text_Minimal_Default_Disabled.png
similarity index 100%
rename from Showcase/ShowcaseTests/__Snapshots__/Components/OUDSComponentButtonUITests/__Snapshots__/OUDSComponentButtonUITests/test_OrangeTheme_Dark.ColoredSurface_Text_Minimal_Default_Disabled.png
rename to DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/__Snapshots__/OUDSComponentButtonUITests/test_OrangeTheme_Dark.ColoredSurface_Text_Minimal_Default_Disabled.png
diff --git a/Showcase/ShowcaseTests/__Snapshots__/Components/OUDSComponentButtonUITests/__Snapshots__/OUDSComponentButtonUITests/test_OrangeTheme_Dark.ColoredSurface_Text_Strong_Default.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/__Snapshots__/OUDSComponentButtonUITests/test_OrangeTheme_Dark.ColoredSurface_Text_Strong_Default.png
similarity index 100%
rename from Showcase/ShowcaseTests/__Snapshots__/Components/OUDSComponentButtonUITests/__Snapshots__/OUDSComponentButtonUITests/test_OrangeTheme_Dark.ColoredSurface_Text_Strong_Default.png
rename to DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/__Snapshots__/OUDSComponentButtonUITests/test_OrangeTheme_Dark.ColoredSurface_Text_Strong_Default.png
diff --git a/Showcase/ShowcaseTests/__Snapshots__/Components/OUDSComponentButtonUITests/__Snapshots__/OUDSComponentButtonUITests/test_OrangeTheme_Dark.ColoredSurface_Text_Strong_Default_Disabled.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/__Snapshots__/OUDSComponentButtonUITests/test_OrangeTheme_Dark.ColoredSurface_Text_Strong_Default_Disabled.png
similarity index 100%
rename from Showcase/ShowcaseTests/__Snapshots__/Components/OUDSComponentButtonUITests/__Snapshots__/OUDSComponentButtonUITests/test_OrangeTheme_Dark.ColoredSurface_Text_Strong_Default_Disabled.png
rename to DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/__Snapshots__/OUDSComponentButtonUITests/test_OrangeTheme_Dark.ColoredSurface_Text_Strong_Default_Disabled.png
diff --git a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/__Snapshots__/OUDSComponentButtonUITests/test_OrangeTheme_Dark.Icon_Default_Default.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/__Snapshots__/OUDSComponentButtonUITests/test_OrangeTheme_Dark.Icon_Default_Default.png
new file mode 100644
index 0000000000..b07300348a
Binary files /dev/null and b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/__Snapshots__/OUDSComponentButtonUITests/test_OrangeTheme_Dark.Icon_Default_Default.png differ
diff --git a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/__Snapshots__/OUDSComponentButtonUITests/test_OrangeTheme_Dark.Icon_Default_Default_Disabled.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/__Snapshots__/OUDSComponentButtonUITests/test_OrangeTheme_Dark.Icon_Default_Default_Disabled.png
new file mode 100644
index 0000000000..8b5fec6dd6
Binary files /dev/null and b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/__Snapshots__/OUDSComponentButtonUITests/test_OrangeTheme_Dark.Icon_Default_Default_Disabled.png differ
diff --git a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/__Snapshots__/OUDSComponentButtonUITests/test_OrangeTheme_Dark.Icon_Minimal_Default.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/__Snapshots__/OUDSComponentButtonUITests/test_OrangeTheme_Dark.Icon_Minimal_Default.png
new file mode 100644
index 0000000000..08c761237a
Binary files /dev/null and b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/__Snapshots__/OUDSComponentButtonUITests/test_OrangeTheme_Dark.Icon_Minimal_Default.png differ
diff --git a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/__Snapshots__/OUDSComponentButtonUITests/test_OrangeTheme_Dark.Icon_Minimal_Default_Disabled.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/__Snapshots__/OUDSComponentButtonUITests/test_OrangeTheme_Dark.Icon_Minimal_Default_Disabled.png
new file mode 100644
index 0000000000..08c761237a
Binary files /dev/null and b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/__Snapshots__/OUDSComponentButtonUITests/test_OrangeTheme_Dark.Icon_Minimal_Default_Disabled.png differ
diff --git a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/__Snapshots__/OUDSComponentButtonUITests/test_OrangeTheme_Dark.Icon_Negative_Default.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/__Snapshots__/OUDSComponentButtonUITests/test_OrangeTheme_Dark.Icon_Negative_Default.png
new file mode 100644
index 0000000000..96b810c3ba
Binary files /dev/null and b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/__Snapshots__/OUDSComponentButtonUITests/test_OrangeTheme_Dark.Icon_Negative_Default.png differ
diff --git a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/__Snapshots__/OUDSComponentButtonUITests/test_OrangeTheme_Dark.Icon_Negative_Default_Disabled.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/__Snapshots__/OUDSComponentButtonUITests/test_OrangeTheme_Dark.Icon_Negative_Default_Disabled.png
new file mode 100644
index 0000000000..955d204916
Binary files /dev/null and b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/__Snapshots__/OUDSComponentButtonUITests/test_OrangeTheme_Dark.Icon_Negative_Default_Disabled.png differ
diff --git a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/__Snapshots__/OUDSComponentButtonUITests/test_OrangeTheme_Dark.Icon_Strong_Default.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/__Snapshots__/OUDSComponentButtonUITests/test_OrangeTheme_Dark.Icon_Strong_Default.png
new file mode 100644
index 0000000000..8388b4f11a
Binary files /dev/null and b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/__Snapshots__/OUDSComponentButtonUITests/test_OrangeTheme_Dark.Icon_Strong_Default.png differ
diff --git a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/__Snapshots__/OUDSComponentButtonUITests/test_OrangeTheme_Dark.Icon_Strong_Default_Disabled.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/__Snapshots__/OUDSComponentButtonUITests/test_OrangeTheme_Dark.Icon_Strong_Default_Disabled.png
new file mode 100644
index 0000000000..955d204916
Binary files /dev/null and b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/__Snapshots__/OUDSComponentButtonUITests/test_OrangeTheme_Dark.Icon_Strong_Default_Disabled.png differ
diff --git a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/__Snapshots__/OUDSComponentButtonUITests/test_OrangeTheme_Dark.TextAndIcon_Default_Default.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/__Snapshots__/OUDSComponentButtonUITests/test_OrangeTheme_Dark.TextAndIcon_Default_Default.png
new file mode 100644
index 0000000000..f81263bdf1
Binary files /dev/null and b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/__Snapshots__/OUDSComponentButtonUITests/test_OrangeTheme_Dark.TextAndIcon_Default_Default.png differ
diff --git a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/__Snapshots__/OUDSComponentButtonUITests/test_OrangeTheme_Dark.TextAndIcon_Default_Default_Disabled.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/__Snapshots__/OUDSComponentButtonUITests/test_OrangeTheme_Dark.TextAndIcon_Default_Default_Disabled.png
new file mode 100644
index 0000000000..6623e2967a
Binary files /dev/null and b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/__Snapshots__/OUDSComponentButtonUITests/test_OrangeTheme_Dark.TextAndIcon_Default_Default_Disabled.png differ
diff --git a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/__Snapshots__/OUDSComponentButtonUITests/test_OrangeTheme_Dark.TextAndIcon_Minimal_Default.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/__Snapshots__/OUDSComponentButtonUITests/test_OrangeTheme_Dark.TextAndIcon_Minimal_Default.png
new file mode 100644
index 0000000000..85a4546e16
Binary files /dev/null and b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/__Snapshots__/OUDSComponentButtonUITests/test_OrangeTheme_Dark.TextAndIcon_Minimal_Default.png differ
diff --git a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/__Snapshots__/OUDSComponentButtonUITests/test_OrangeTheme_Dark.TextAndIcon_Minimal_Default_Disabled.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/__Snapshots__/OUDSComponentButtonUITests/test_OrangeTheme_Dark.TextAndIcon_Minimal_Default_Disabled.png
new file mode 100644
index 0000000000..d47d4d799c
Binary files /dev/null and b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/__Snapshots__/OUDSComponentButtonUITests/test_OrangeTheme_Dark.TextAndIcon_Minimal_Default_Disabled.png differ
diff --git a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/__Snapshots__/OUDSComponentButtonUITests/test_OrangeTheme_Dark.TextAndIcon_Negative_Default.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/__Snapshots__/OUDSComponentButtonUITests/test_OrangeTheme_Dark.TextAndIcon_Negative_Default.png
new file mode 100644
index 0000000000..91393bc5ea
Binary files /dev/null and b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/__Snapshots__/OUDSComponentButtonUITests/test_OrangeTheme_Dark.TextAndIcon_Negative_Default.png differ
diff --git a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/__Snapshots__/OUDSComponentButtonUITests/test_OrangeTheme_Dark.TextAndIcon_Negative_Default_Disabled.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/__Snapshots__/OUDSComponentButtonUITests/test_OrangeTheme_Dark.TextAndIcon_Negative_Default_Disabled.png
new file mode 100644
index 0000000000..10686fd9bc
Binary files /dev/null and b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/__Snapshots__/OUDSComponentButtonUITests/test_OrangeTheme_Dark.TextAndIcon_Negative_Default_Disabled.png differ
diff --git a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/__Snapshots__/OUDSComponentButtonUITests/test_OrangeTheme_Dark.TextAndIcon_Strong_Default.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/__Snapshots__/OUDSComponentButtonUITests/test_OrangeTheme_Dark.TextAndIcon_Strong_Default.png
new file mode 100644
index 0000000000..1098be1ab3
Binary files /dev/null and b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/__Snapshots__/OUDSComponentButtonUITests/test_OrangeTheme_Dark.TextAndIcon_Strong_Default.png differ
diff --git a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/__Snapshots__/OUDSComponentButtonUITests/test_OrangeTheme_Dark.TextAndIcon_Strong_Default_Disabled.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/__Snapshots__/OUDSComponentButtonUITests/test_OrangeTheme_Dark.TextAndIcon_Strong_Default_Disabled.png
new file mode 100644
index 0000000000..10686fd9bc
Binary files /dev/null and b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/__Snapshots__/OUDSComponentButtonUITests/test_OrangeTheme_Dark.TextAndIcon_Strong_Default_Disabled.png differ
diff --git a/Showcase/ShowcaseTests/__Snapshots__/Components/OUDSComponentButtonUITests/__Snapshots__/OUDSComponentButtonUITests/test_OrangeTheme_Dark.Text_Default_Default.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/__Snapshots__/OUDSComponentButtonUITests/test_OrangeTheme_Dark.Text_Default_Default.png
similarity index 100%
rename from Showcase/ShowcaseTests/__Snapshots__/Components/OUDSComponentButtonUITests/__Snapshots__/OUDSComponentButtonUITests/test_OrangeTheme_Dark.Text_Default_Default.png
rename to DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/__Snapshots__/OUDSComponentButtonUITests/test_OrangeTheme_Dark.Text_Default_Default.png
diff --git a/Showcase/ShowcaseTests/__Snapshots__/Components/OUDSComponentButtonUITests/__Snapshots__/OUDSComponentButtonUITests/test_OrangeTheme_Dark.Text_Default_Default_Disabled.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/__Snapshots__/OUDSComponentButtonUITests/test_OrangeTheme_Dark.Text_Default_Default_Disabled.png
similarity index 100%
rename from Showcase/ShowcaseTests/__Snapshots__/Components/OUDSComponentButtonUITests/__Snapshots__/OUDSComponentButtonUITests/test_OrangeTheme_Dark.Text_Default_Default_Disabled.png
rename to DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/__Snapshots__/OUDSComponentButtonUITests/test_OrangeTheme_Dark.Text_Default_Default_Disabled.png
diff --git a/Showcase/ShowcaseTests/__Snapshots__/Components/OUDSComponentButtonUITests/__Snapshots__/OUDSComponentButtonUITests/test_OrangeTheme_Dark.Text_Minimal_Default.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/__Snapshots__/OUDSComponentButtonUITests/test_OrangeTheme_Dark.Text_Minimal_Default.png
similarity index 100%
rename from Showcase/ShowcaseTests/__Snapshots__/Components/OUDSComponentButtonUITests/__Snapshots__/OUDSComponentButtonUITests/test_OrangeTheme_Dark.Text_Minimal_Default.png
rename to DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/__Snapshots__/OUDSComponentButtonUITests/test_OrangeTheme_Dark.Text_Minimal_Default.png
diff --git a/Showcase/ShowcaseTests/__Snapshots__/Components/OUDSComponentButtonUITests/__Snapshots__/OUDSComponentButtonUITests/test_OrangeTheme_Dark.Text_Minimal_Default_Disabled.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/__Snapshots__/OUDSComponentButtonUITests/test_OrangeTheme_Dark.Text_Minimal_Default_Disabled.png
similarity index 100%
rename from Showcase/ShowcaseTests/__Snapshots__/Components/OUDSComponentButtonUITests/__Snapshots__/OUDSComponentButtonUITests/test_OrangeTheme_Dark.Text_Minimal_Default_Disabled.png
rename to DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/__Snapshots__/OUDSComponentButtonUITests/test_OrangeTheme_Dark.Text_Minimal_Default_Disabled.png
diff --git a/Showcase/ShowcaseTests/__Snapshots__/Components/OUDSComponentButtonUITests/__Snapshots__/OUDSComponentButtonUITests/test_OrangeTheme_Dark.Text_Negative_Default.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/__Snapshots__/OUDSComponentButtonUITests/test_OrangeTheme_Dark.Text_Negative_Default.png
similarity index 100%
rename from Showcase/ShowcaseTests/__Snapshots__/Components/OUDSComponentButtonUITests/__Snapshots__/OUDSComponentButtonUITests/test_OrangeTheme_Dark.Text_Negative_Default.png
rename to DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/__Snapshots__/OUDSComponentButtonUITests/test_OrangeTheme_Dark.Text_Negative_Default.png
diff --git a/Showcase/ShowcaseTests/__Snapshots__/Components/OUDSComponentButtonUITests/__Snapshots__/OUDSComponentButtonUITests/test_OrangeTheme_Dark.Text_Negative_Default_Disabled.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/__Snapshots__/OUDSComponentButtonUITests/test_OrangeTheme_Dark.Text_Negative_Default_Disabled.png
similarity index 100%
rename from Showcase/ShowcaseTests/__Snapshots__/Components/OUDSComponentButtonUITests/__Snapshots__/OUDSComponentButtonUITests/test_OrangeTheme_Dark.Text_Negative_Default_Disabled.png
rename to DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/__Snapshots__/OUDSComponentButtonUITests/test_OrangeTheme_Dark.Text_Negative_Default_Disabled.png
diff --git a/Showcase/ShowcaseTests/__Snapshots__/Components/OUDSComponentButtonUITests/__Snapshots__/OUDSComponentButtonUITests/test_OrangeTheme_Dark.Text_Strong_Default.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/__Snapshots__/OUDSComponentButtonUITests/test_OrangeTheme_Dark.Text_Strong_Default.png
similarity index 100%
rename from Showcase/ShowcaseTests/__Snapshots__/Components/OUDSComponentButtonUITests/__Snapshots__/OUDSComponentButtonUITests/test_OrangeTheme_Dark.Text_Strong_Default.png
rename to DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/__Snapshots__/OUDSComponentButtonUITests/test_OrangeTheme_Dark.Text_Strong_Default.png
diff --git a/Showcase/ShowcaseTests/__Snapshots__/Components/OUDSComponentButtonUITests/__Snapshots__/OUDSComponentButtonUITests/test_OrangeTheme_Dark.Text_Strong_Default_Disabled.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/__Snapshots__/OUDSComponentButtonUITests/test_OrangeTheme_Dark.Text_Strong_Default_Disabled.png
similarity index 100%
rename from Showcase/ShowcaseTests/__Snapshots__/Components/OUDSComponentButtonUITests/__Snapshots__/OUDSComponentButtonUITests/test_OrangeTheme_Dark.Text_Strong_Default_Disabled.png
rename to DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/__Snapshots__/OUDSComponentButtonUITests/test_OrangeTheme_Dark.Text_Strong_Default_Disabled.png
diff --git a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/__Snapshots__/OUDSComponentButtonUITests/test_OrangeTheme_Light.ColoredSurface_Icon_Default_Default.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/__Snapshots__/OUDSComponentButtonUITests/test_OrangeTheme_Light.ColoredSurface_Icon_Default_Default.png
new file mode 100644
index 0000000000..21264b8371
Binary files /dev/null and b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/__Snapshots__/OUDSComponentButtonUITests/test_OrangeTheme_Light.ColoredSurface_Icon_Default_Default.png differ
diff --git a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/__Snapshots__/OUDSComponentButtonUITests/test_OrangeTheme_Light.ColoredSurface_Icon_Default_Default_Disabled.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/__Snapshots__/OUDSComponentButtonUITests/test_OrangeTheme_Light.ColoredSurface_Icon_Default_Default_Disabled.png
new file mode 100644
index 0000000000..37295a968c
Binary files /dev/null and b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/__Snapshots__/OUDSComponentButtonUITests/test_OrangeTheme_Light.ColoredSurface_Icon_Default_Default_Disabled.png differ
diff --git a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/__Snapshots__/OUDSComponentButtonUITests/test_OrangeTheme_Light.ColoredSurface_Icon_Minimal_Default.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/__Snapshots__/OUDSComponentButtonUITests/test_OrangeTheme_Light.ColoredSurface_Icon_Minimal_Default.png
new file mode 100644
index 0000000000..bd3d3a12b3
Binary files /dev/null and b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/__Snapshots__/OUDSComponentButtonUITests/test_OrangeTheme_Light.ColoredSurface_Icon_Minimal_Default.png differ
diff --git a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/__Snapshots__/OUDSComponentButtonUITests/test_OrangeTheme_Light.ColoredSurface_Icon_Minimal_Default_Disabled.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/__Snapshots__/OUDSComponentButtonUITests/test_OrangeTheme_Light.ColoredSurface_Icon_Minimal_Default_Disabled.png
new file mode 100644
index 0000000000..bd3d3a12b3
Binary files /dev/null and b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/__Snapshots__/OUDSComponentButtonUITests/test_OrangeTheme_Light.ColoredSurface_Icon_Minimal_Default_Disabled.png differ
diff --git a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/__Snapshots__/OUDSComponentButtonUITests/test_OrangeTheme_Light.ColoredSurface_Icon_Strong_Default.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/__Snapshots__/OUDSComponentButtonUITests/test_OrangeTheme_Light.ColoredSurface_Icon_Strong_Default.png
new file mode 100644
index 0000000000..a5c89277eb
Binary files /dev/null and b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/__Snapshots__/OUDSComponentButtonUITests/test_OrangeTheme_Light.ColoredSurface_Icon_Strong_Default.png differ
diff --git a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/__Snapshots__/OUDSComponentButtonUITests/test_OrangeTheme_Light.ColoredSurface_Icon_Strong_Default_Disabled.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/__Snapshots__/OUDSComponentButtonUITests/test_OrangeTheme_Light.ColoredSurface_Icon_Strong_Default_Disabled.png
new file mode 100644
index 0000000000..3ef9d47e8b
Binary files /dev/null and b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/__Snapshots__/OUDSComponentButtonUITests/test_OrangeTheme_Light.ColoredSurface_Icon_Strong_Default_Disabled.png differ
diff --git a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/__Snapshots__/OUDSComponentButtonUITests/test_OrangeTheme_Light.ColoredSurface_TextAndIcon_Default_Default.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/__Snapshots__/OUDSComponentButtonUITests/test_OrangeTheme_Light.ColoredSurface_TextAndIcon_Default_Default.png
new file mode 100644
index 0000000000..88db60e703
Binary files /dev/null and b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/__Snapshots__/OUDSComponentButtonUITests/test_OrangeTheme_Light.ColoredSurface_TextAndIcon_Default_Default.png differ
diff --git a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/__Snapshots__/OUDSComponentButtonUITests/test_OrangeTheme_Light.ColoredSurface_TextAndIcon_Default_Default_Disabled.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/__Snapshots__/OUDSComponentButtonUITests/test_OrangeTheme_Light.ColoredSurface_TextAndIcon_Default_Default_Disabled.png
new file mode 100644
index 0000000000..0ce91866c0
Binary files /dev/null and b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/__Snapshots__/OUDSComponentButtonUITests/test_OrangeTheme_Light.ColoredSurface_TextAndIcon_Default_Default_Disabled.png differ
diff --git a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/__Snapshots__/OUDSComponentButtonUITests/test_OrangeTheme_Light.ColoredSurface_TextAndIcon_Minimal_Default.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/__Snapshots__/OUDSComponentButtonUITests/test_OrangeTheme_Light.ColoredSurface_TextAndIcon_Minimal_Default.png
new file mode 100644
index 0000000000..4d0f9c34d1
Binary files /dev/null and b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/__Snapshots__/OUDSComponentButtonUITests/test_OrangeTheme_Light.ColoredSurface_TextAndIcon_Minimal_Default.png differ
diff --git a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/__Snapshots__/OUDSComponentButtonUITests/test_OrangeTheme_Light.ColoredSurface_TextAndIcon_Minimal_Default_Disabled.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/__Snapshots__/OUDSComponentButtonUITests/test_OrangeTheme_Light.ColoredSurface_TextAndIcon_Minimal_Default_Disabled.png
new file mode 100644
index 0000000000..9ea1643d10
Binary files /dev/null and b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/__Snapshots__/OUDSComponentButtonUITests/test_OrangeTheme_Light.ColoredSurface_TextAndIcon_Minimal_Default_Disabled.png differ
diff --git a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/__Snapshots__/OUDSComponentButtonUITests/test_OrangeTheme_Light.ColoredSurface_TextAndIcon_Strong_Default.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/__Snapshots__/OUDSComponentButtonUITests/test_OrangeTheme_Light.ColoredSurface_TextAndIcon_Strong_Default.png
new file mode 100644
index 0000000000..30ecd48043
Binary files /dev/null and b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/__Snapshots__/OUDSComponentButtonUITests/test_OrangeTheme_Light.ColoredSurface_TextAndIcon_Strong_Default.png differ
diff --git a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/__Snapshots__/OUDSComponentButtonUITests/test_OrangeTheme_Light.ColoredSurface_TextAndIcon_Strong_Default_Disabled.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/__Snapshots__/OUDSComponentButtonUITests/test_OrangeTheme_Light.ColoredSurface_TextAndIcon_Strong_Default_Disabled.png
new file mode 100644
index 0000000000..a91f157fdb
Binary files /dev/null and b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/__Snapshots__/OUDSComponentButtonUITests/test_OrangeTheme_Light.ColoredSurface_TextAndIcon_Strong_Default_Disabled.png differ
diff --git a/Showcase/ShowcaseTests/__Snapshots__/Components/OUDSComponentButtonUITests/__Snapshots__/OUDSComponentButtonUITests/test_OrangeTheme_Light.ColoredSurface_Text_Default_Default.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/__Snapshots__/OUDSComponentButtonUITests/test_OrangeTheme_Light.ColoredSurface_Text_Default_Default.png
similarity index 100%
rename from Showcase/ShowcaseTests/__Snapshots__/Components/OUDSComponentButtonUITests/__Snapshots__/OUDSComponentButtonUITests/test_OrangeTheme_Light.ColoredSurface_Text_Default_Default.png
rename to DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/__Snapshots__/OUDSComponentButtonUITests/test_OrangeTheme_Light.ColoredSurface_Text_Default_Default.png
diff --git a/Showcase/ShowcaseTests/__Snapshots__/Components/OUDSComponentButtonUITests/__Snapshots__/OUDSComponentButtonUITests/test_OrangeTheme_Light.ColoredSurface_Text_Default_Default_Disabled.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/__Snapshots__/OUDSComponentButtonUITests/test_OrangeTheme_Light.ColoredSurface_Text_Default_Default_Disabled.png
similarity index 100%
rename from Showcase/ShowcaseTests/__Snapshots__/Components/OUDSComponentButtonUITests/__Snapshots__/OUDSComponentButtonUITests/test_OrangeTheme_Light.ColoredSurface_Text_Default_Default_Disabled.png
rename to DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/__Snapshots__/OUDSComponentButtonUITests/test_OrangeTheme_Light.ColoredSurface_Text_Default_Default_Disabled.png
diff --git a/Showcase/ShowcaseTests/__Snapshots__/Components/OUDSComponentButtonUITests/__Snapshots__/OUDSComponentButtonUITests/test_OrangeTheme_Light.ColoredSurface_Text_Minimal_Default.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/__Snapshots__/OUDSComponentButtonUITests/test_OrangeTheme_Light.ColoredSurface_Text_Minimal_Default.png
similarity index 100%
rename from Showcase/ShowcaseTests/__Snapshots__/Components/OUDSComponentButtonUITests/__Snapshots__/OUDSComponentButtonUITests/test_OrangeTheme_Light.ColoredSurface_Text_Minimal_Default.png
rename to DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/__Snapshots__/OUDSComponentButtonUITests/test_OrangeTheme_Light.ColoredSurface_Text_Minimal_Default.png
diff --git a/Showcase/ShowcaseTests/__Snapshots__/Components/OUDSComponentButtonUITests/__Snapshots__/OUDSComponentButtonUITests/test_OrangeTheme_Light.ColoredSurface_Text_Minimal_Default_Disabled.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/__Snapshots__/OUDSComponentButtonUITests/test_OrangeTheme_Light.ColoredSurface_Text_Minimal_Default_Disabled.png
similarity index 100%
rename from Showcase/ShowcaseTests/__Snapshots__/Components/OUDSComponentButtonUITests/__Snapshots__/OUDSComponentButtonUITests/test_OrangeTheme_Light.ColoredSurface_Text_Minimal_Default_Disabled.png
rename to DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/__Snapshots__/OUDSComponentButtonUITests/test_OrangeTheme_Light.ColoredSurface_Text_Minimal_Default_Disabled.png
diff --git a/Showcase/ShowcaseTests/__Snapshots__/Components/OUDSComponentButtonUITests/__Snapshots__/OUDSComponentButtonUITests/test_OrangeTheme_Light.ColoredSurface_Text_Strong_Default.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/__Snapshots__/OUDSComponentButtonUITests/test_OrangeTheme_Light.ColoredSurface_Text_Strong_Default.png
similarity index 100%
rename from Showcase/ShowcaseTests/__Snapshots__/Components/OUDSComponentButtonUITests/__Snapshots__/OUDSComponentButtonUITests/test_OrangeTheme_Light.ColoredSurface_Text_Strong_Default.png
rename to DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/__Snapshots__/OUDSComponentButtonUITests/test_OrangeTheme_Light.ColoredSurface_Text_Strong_Default.png
diff --git a/Showcase/ShowcaseTests/__Snapshots__/Components/OUDSComponentButtonUITests/__Snapshots__/OUDSComponentButtonUITests/test_OrangeTheme_Light.ColoredSurface_Text_Strong_Default_Disabled.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/__Snapshots__/OUDSComponentButtonUITests/test_OrangeTheme_Light.ColoredSurface_Text_Strong_Default_Disabled.png
similarity index 100%
rename from Showcase/ShowcaseTests/__Snapshots__/Components/OUDSComponentButtonUITests/__Snapshots__/OUDSComponentButtonUITests/test_OrangeTheme_Light.ColoredSurface_Text_Strong_Default_Disabled.png
rename to DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/__Snapshots__/OUDSComponentButtonUITests/test_OrangeTheme_Light.ColoredSurface_Text_Strong_Default_Disabled.png
diff --git a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/__Snapshots__/OUDSComponentButtonUITests/test_OrangeTheme_Light.Icon_Default_Default.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/__Snapshots__/OUDSComponentButtonUITests/test_OrangeTheme_Light.Icon_Default_Default.png
new file mode 100644
index 0000000000..1b2941fd9e
Binary files /dev/null and b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/__Snapshots__/OUDSComponentButtonUITests/test_OrangeTheme_Light.Icon_Default_Default.png differ
diff --git a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/__Snapshots__/OUDSComponentButtonUITests/test_OrangeTheme_Light.Icon_Default_Default_Disabled.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/__Snapshots__/OUDSComponentButtonUITests/test_OrangeTheme_Light.Icon_Default_Default_Disabled.png
new file mode 100644
index 0000000000..67e61a5d99
Binary files /dev/null and b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/__Snapshots__/OUDSComponentButtonUITests/test_OrangeTheme_Light.Icon_Default_Default_Disabled.png differ
diff --git a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/__Snapshots__/OUDSComponentButtonUITests/test_OrangeTheme_Light.Icon_Minimal_Default.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/__Snapshots__/OUDSComponentButtonUITests/test_OrangeTheme_Light.Icon_Minimal_Default.png
new file mode 100644
index 0000000000..d26d3c7347
Binary files /dev/null and b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/__Snapshots__/OUDSComponentButtonUITests/test_OrangeTheme_Light.Icon_Minimal_Default.png differ
diff --git a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/__Snapshots__/OUDSComponentButtonUITests/test_OrangeTheme_Light.Icon_Minimal_Default_Disabled.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/__Snapshots__/OUDSComponentButtonUITests/test_OrangeTheme_Light.Icon_Minimal_Default_Disabled.png
new file mode 100644
index 0000000000..d26d3c7347
Binary files /dev/null and b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/__Snapshots__/OUDSComponentButtonUITests/test_OrangeTheme_Light.Icon_Minimal_Default_Disabled.png differ
diff --git a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/__Snapshots__/OUDSComponentButtonUITests/test_OrangeTheme_Light.Icon_Negative_Default.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/__Snapshots__/OUDSComponentButtonUITests/test_OrangeTheme_Light.Icon_Negative_Default.png
new file mode 100644
index 0000000000..6cbac805bc
Binary files /dev/null and b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/__Snapshots__/OUDSComponentButtonUITests/test_OrangeTheme_Light.Icon_Negative_Default.png differ
diff --git a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/__Snapshots__/OUDSComponentButtonUITests/test_OrangeTheme_Light.Icon_Negative_Default_Disabled.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/__Snapshots__/OUDSComponentButtonUITests/test_OrangeTheme_Light.Icon_Negative_Default_Disabled.png
new file mode 100644
index 0000000000..819b03da2b
Binary files /dev/null and b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/__Snapshots__/OUDSComponentButtonUITests/test_OrangeTheme_Light.Icon_Negative_Default_Disabled.png differ
diff --git a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/__Snapshots__/OUDSComponentButtonUITests/test_OrangeTheme_Light.Icon_Strong_Default.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/__Snapshots__/OUDSComponentButtonUITests/test_OrangeTheme_Light.Icon_Strong_Default.png
new file mode 100644
index 0000000000..a5c89277eb
Binary files /dev/null and b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/__Snapshots__/OUDSComponentButtonUITests/test_OrangeTheme_Light.Icon_Strong_Default.png differ
diff --git a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/__Snapshots__/OUDSComponentButtonUITests/test_OrangeTheme_Light.Icon_Strong_Default_Disabled.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/__Snapshots__/OUDSComponentButtonUITests/test_OrangeTheme_Light.Icon_Strong_Default_Disabled.png
new file mode 100644
index 0000000000..819b03da2b
Binary files /dev/null and b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/__Snapshots__/OUDSComponentButtonUITests/test_OrangeTheme_Light.Icon_Strong_Default_Disabled.png differ
diff --git a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/__Snapshots__/OUDSComponentButtonUITests/test_OrangeTheme_Light.TextAndIcon_Default_Default.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/__Snapshots__/OUDSComponentButtonUITests/test_OrangeTheme_Light.TextAndIcon_Default_Default.png
new file mode 100644
index 0000000000..97bda6fda1
Binary files /dev/null and b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/__Snapshots__/OUDSComponentButtonUITests/test_OrangeTheme_Light.TextAndIcon_Default_Default.png differ
diff --git a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/__Snapshots__/OUDSComponentButtonUITests/test_OrangeTheme_Light.TextAndIcon_Default_Default_Disabled.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/__Snapshots__/OUDSComponentButtonUITests/test_OrangeTheme_Light.TextAndIcon_Default_Default_Disabled.png
new file mode 100644
index 0000000000..680ea7bedd
Binary files /dev/null and b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/__Snapshots__/OUDSComponentButtonUITests/test_OrangeTheme_Light.TextAndIcon_Default_Default_Disabled.png differ
diff --git a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/__Snapshots__/OUDSComponentButtonUITests/test_OrangeTheme_Light.TextAndIcon_Minimal_Default.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/__Snapshots__/OUDSComponentButtonUITests/test_OrangeTheme_Light.TextAndIcon_Minimal_Default.png
new file mode 100644
index 0000000000..ee6ce4c672
Binary files /dev/null and b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/__Snapshots__/OUDSComponentButtonUITests/test_OrangeTheme_Light.TextAndIcon_Minimal_Default.png differ
diff --git a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/__Snapshots__/OUDSComponentButtonUITests/test_OrangeTheme_Light.TextAndIcon_Minimal_Default_Disabled.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/__Snapshots__/OUDSComponentButtonUITests/test_OrangeTheme_Light.TextAndIcon_Minimal_Default_Disabled.png
new file mode 100644
index 0000000000..d67b29f255
Binary files /dev/null and b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/__Snapshots__/OUDSComponentButtonUITests/test_OrangeTheme_Light.TextAndIcon_Minimal_Default_Disabled.png differ
diff --git a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/__Snapshots__/OUDSComponentButtonUITests/test_OrangeTheme_Light.TextAndIcon_Negative_Default.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/__Snapshots__/OUDSComponentButtonUITests/test_OrangeTheme_Light.TextAndIcon_Negative_Default.png
new file mode 100644
index 0000000000..453d6cf1d2
Binary files /dev/null and b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/__Snapshots__/OUDSComponentButtonUITests/test_OrangeTheme_Light.TextAndIcon_Negative_Default.png differ
diff --git a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/__Snapshots__/OUDSComponentButtonUITests/test_OrangeTheme_Light.TextAndIcon_Negative_Default_Disabled.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/__Snapshots__/OUDSComponentButtonUITests/test_OrangeTheme_Light.TextAndIcon_Negative_Default_Disabled.png
new file mode 100644
index 0000000000..e7494eef28
Binary files /dev/null and b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/__Snapshots__/OUDSComponentButtonUITests/test_OrangeTheme_Light.TextAndIcon_Negative_Default_Disabled.png differ
diff --git a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/__Snapshots__/OUDSComponentButtonUITests/test_OrangeTheme_Light.TextAndIcon_Strong_Default.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/__Snapshots__/OUDSComponentButtonUITests/test_OrangeTheme_Light.TextAndIcon_Strong_Default.png
new file mode 100644
index 0000000000..30ecd48043
Binary files /dev/null and b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/__Snapshots__/OUDSComponentButtonUITests/test_OrangeTheme_Light.TextAndIcon_Strong_Default.png differ
diff --git a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/__Snapshots__/OUDSComponentButtonUITests/test_OrangeTheme_Light.TextAndIcon_Strong_Default_Disabled.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/__Snapshots__/OUDSComponentButtonUITests/test_OrangeTheme_Light.TextAndIcon_Strong_Default_Disabled.png
new file mode 100644
index 0000000000..e7494eef28
Binary files /dev/null and b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/__Snapshots__/OUDSComponentButtonUITests/test_OrangeTheme_Light.TextAndIcon_Strong_Default_Disabled.png differ
diff --git a/Showcase/ShowcaseTests/__Snapshots__/Components/OUDSComponentButtonUITests/__Snapshots__/OUDSComponentButtonUITests/test_OrangeTheme_Light.Text_Default_Default.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/__Snapshots__/OUDSComponentButtonUITests/test_OrangeTheme_Light.Text_Default_Default.png
similarity index 100%
rename from Showcase/ShowcaseTests/__Snapshots__/Components/OUDSComponentButtonUITests/__Snapshots__/OUDSComponentButtonUITests/test_OrangeTheme_Light.Text_Default_Default.png
rename to DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/__Snapshots__/OUDSComponentButtonUITests/test_OrangeTheme_Light.Text_Default_Default.png
diff --git a/Showcase/ShowcaseTests/__Snapshots__/Components/OUDSComponentButtonUITests/__Snapshots__/OUDSComponentButtonUITests/test_OrangeTheme_Light.Text_Default_Default_Disabled.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/__Snapshots__/OUDSComponentButtonUITests/test_OrangeTheme_Light.Text_Default_Default_Disabled.png
similarity index 100%
rename from Showcase/ShowcaseTests/__Snapshots__/Components/OUDSComponentButtonUITests/__Snapshots__/OUDSComponentButtonUITests/test_OrangeTheme_Light.Text_Default_Default_Disabled.png
rename to DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/__Snapshots__/OUDSComponentButtonUITests/test_OrangeTheme_Light.Text_Default_Default_Disabled.png
diff --git a/Showcase/ShowcaseTests/__Snapshots__/Components/OUDSComponentButtonUITests/__Snapshots__/OUDSComponentButtonUITests/test_OrangeTheme_Light.Text_Minimal_Default.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/__Snapshots__/OUDSComponentButtonUITests/test_OrangeTheme_Light.Text_Minimal_Default.png
similarity index 100%
rename from Showcase/ShowcaseTests/__Snapshots__/Components/OUDSComponentButtonUITests/__Snapshots__/OUDSComponentButtonUITests/test_OrangeTheme_Light.Text_Minimal_Default.png
rename to DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/__Snapshots__/OUDSComponentButtonUITests/test_OrangeTheme_Light.Text_Minimal_Default.png
diff --git a/Showcase/ShowcaseTests/__Snapshots__/Components/OUDSComponentButtonUITests/__Snapshots__/OUDSComponentButtonUITests/test_OrangeTheme_Light.Text_Minimal_Default_Disabled.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/__Snapshots__/OUDSComponentButtonUITests/test_OrangeTheme_Light.Text_Minimal_Default_Disabled.png
similarity index 100%
rename from Showcase/ShowcaseTests/__Snapshots__/Components/OUDSComponentButtonUITests/__Snapshots__/OUDSComponentButtonUITests/test_OrangeTheme_Light.Text_Minimal_Default_Disabled.png
rename to DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/__Snapshots__/OUDSComponentButtonUITests/test_OrangeTheme_Light.Text_Minimal_Default_Disabled.png
diff --git a/Showcase/ShowcaseTests/__Snapshots__/Components/OUDSComponentButtonUITests/__Snapshots__/OUDSComponentButtonUITests/test_OrangeTheme_Light.Text_Negative_Default.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/__Snapshots__/OUDSComponentButtonUITests/test_OrangeTheme_Light.Text_Negative_Default.png
similarity index 100%
rename from Showcase/ShowcaseTests/__Snapshots__/Components/OUDSComponentButtonUITests/__Snapshots__/OUDSComponentButtonUITests/test_OrangeTheme_Light.Text_Negative_Default.png
rename to DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/__Snapshots__/OUDSComponentButtonUITests/test_OrangeTheme_Light.Text_Negative_Default.png
diff --git a/Showcase/ShowcaseTests/__Snapshots__/Components/OUDSComponentButtonUITests/__Snapshots__/OUDSComponentButtonUITests/test_OrangeTheme_Light.Text_Negative_Default_Disabled.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/__Snapshots__/OUDSComponentButtonUITests/test_OrangeTheme_Light.Text_Negative_Default_Disabled.png
similarity index 100%
rename from Showcase/ShowcaseTests/__Snapshots__/Components/OUDSComponentButtonUITests/__Snapshots__/OUDSComponentButtonUITests/test_OrangeTheme_Light.Text_Negative_Default_Disabled.png
rename to DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/__Snapshots__/OUDSComponentButtonUITests/test_OrangeTheme_Light.Text_Negative_Default_Disabled.png
diff --git a/Showcase/ShowcaseTests/__Snapshots__/Components/OUDSComponentButtonUITests/__Snapshots__/OUDSComponentButtonUITests/test_OrangeTheme_Light.Text_Strong_Default.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/__Snapshots__/OUDSComponentButtonUITests/test_OrangeTheme_Light.Text_Strong_Default.png
similarity index 100%
rename from Showcase/ShowcaseTests/__Snapshots__/Components/OUDSComponentButtonUITests/__Snapshots__/OUDSComponentButtonUITests/test_OrangeTheme_Light.Text_Strong_Default.png
rename to DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/__Snapshots__/OUDSComponentButtonUITests/test_OrangeTheme_Light.Text_Strong_Default.png
diff --git a/Showcase/ShowcaseTests/__Snapshots__/Components/OUDSComponentButtonUITests/__Snapshots__/OUDSComponentButtonUITests/test_OrangeTheme_Light.Text_Strong_Default_Disabled.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/__Snapshots__/OUDSComponentButtonUITests/test_OrangeTheme_Light.Text_Strong_Default_Disabled.png
similarity index 100%
rename from Showcase/ShowcaseTests/__Snapshots__/Components/OUDSComponentButtonUITests/__Snapshots__/OUDSComponentButtonUITests/test_OrangeTheme_Light.Text_Strong_Default_Disabled.png
rename to DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/__Snapshots__/OUDSComponentButtonUITests/test_OrangeTheme_Light.Text_Strong_Default_Disabled.png
diff --git a/Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensBorderUITests/OUDSTokenBorderUITests.swift b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensBorderUITests/OUDSTokensBorderUITests.swift
similarity index 100%
rename from Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensBorderUITests/OUDSTokenBorderUITests.swift
rename to DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensBorderUITests/OUDSTokensBorderUITests.swift
diff --git a/Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensBorderUITests/__Snapshots__/OUDSTokenBorderUITests/test_InverseTheme_Dark.borderRadiusDefault.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensBorderUITests/__Snapshots__/OUDSTokensBorderUITests/test_InverseTheme_Dark.borderRadiusDefault.png
similarity index 100%
rename from Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensBorderUITests/__Snapshots__/OUDSTokenBorderUITests/test_InverseTheme_Dark.borderRadiusDefault.png
rename to DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensBorderUITests/__Snapshots__/OUDSTokensBorderUITests/test_InverseTheme_Dark.borderRadiusDefault.png
diff --git a/Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensBorderUITests/__Snapshots__/OUDSTokenBorderUITests/test_InverseTheme_Dark.borderRadiusMedium.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensBorderUITests/__Snapshots__/OUDSTokensBorderUITests/test_InverseTheme_Dark.borderRadiusMedium.png
similarity index 100%
rename from Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensBorderUITests/__Snapshots__/OUDSTokenBorderUITests/test_InverseTheme_Dark.borderRadiusMedium.png
rename to DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensBorderUITests/__Snapshots__/OUDSTokensBorderUITests/test_InverseTheme_Dark.borderRadiusMedium.png
diff --git a/Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensBorderUITests/__Snapshots__/OUDSTokenBorderUITests/test_InverseTheme_Dark.borderRadiusNone.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensBorderUITests/__Snapshots__/OUDSTokensBorderUITests/test_InverseTheme_Dark.borderRadiusNone.png
similarity index 100%
rename from Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensBorderUITests/__Snapshots__/OUDSTokenBorderUITests/test_InverseTheme_Dark.borderRadiusNone.png
rename to DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensBorderUITests/__Snapshots__/OUDSTokensBorderUITests/test_InverseTheme_Dark.borderRadiusNone.png
diff --git a/Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensBorderUITests/__Snapshots__/OUDSTokenBorderUITests/test_InverseTheme_Dark.borderRadiusShort.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensBorderUITests/__Snapshots__/OUDSTokensBorderUITests/test_InverseTheme_Dark.borderRadiusShort.png
similarity index 100%
rename from Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensBorderUITests/__Snapshots__/OUDSTokenBorderUITests/test_InverseTheme_Dark.borderRadiusShort.png
rename to DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensBorderUITests/__Snapshots__/OUDSTokensBorderUITests/test_InverseTheme_Dark.borderRadiusShort.png
diff --git a/Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensBorderUITests/__Snapshots__/OUDSTokenBorderUITests/test_InverseTheme_Dark.borderRadiusTall.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensBorderUITests/__Snapshots__/OUDSTokensBorderUITests/test_InverseTheme_Dark.borderRadiusTall.png
similarity index 100%
rename from Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensBorderUITests/__Snapshots__/OUDSTokenBorderUITests/test_InverseTheme_Dark.borderRadiusTall.png
rename to DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensBorderUITests/__Snapshots__/OUDSTokensBorderUITests/test_InverseTheme_Dark.borderRadiusTall.png
diff --git a/Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensBorderUITests/__Snapshots__/OUDSTokenBorderUITests/test_InverseTheme_Dark.borderStyleDefault.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensBorderUITests/__Snapshots__/OUDSTokensBorderUITests/test_InverseTheme_Dark.borderStyleDefault.png
similarity index 100%
rename from Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensBorderUITests/__Snapshots__/OUDSTokenBorderUITests/test_InverseTheme_Dark.borderStyleDefault.png
rename to DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensBorderUITests/__Snapshots__/OUDSTokensBorderUITests/test_InverseTheme_Dark.borderStyleDefault.png
diff --git a/Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensBorderUITests/__Snapshots__/OUDSTokenBorderUITests/test_InverseTheme_Dark.borderStyleDrag.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensBorderUITests/__Snapshots__/OUDSTokensBorderUITests/test_InverseTheme_Dark.borderStyleDrag.png
similarity index 100%
rename from Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensBorderUITests/__Snapshots__/OUDSTokenBorderUITests/test_InverseTheme_Dark.borderStyleDrag.png
rename to DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensBorderUITests/__Snapshots__/OUDSTokensBorderUITests/test_InverseTheme_Dark.borderStyleDrag.png
diff --git a/Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensBorderUITests/__Snapshots__/OUDSTokenBorderUITests/test_InverseTheme_Dark.borderWidthDefault.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensBorderUITests/__Snapshots__/OUDSTokensBorderUITests/test_InverseTheme_Dark.borderWidthDefault.png
similarity index 100%
rename from Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensBorderUITests/__Snapshots__/OUDSTokenBorderUITests/test_InverseTheme_Dark.borderWidthDefault.png
rename to DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensBorderUITests/__Snapshots__/OUDSTokensBorderUITests/test_InverseTheme_Dark.borderWidthDefault.png
diff --git a/Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensBorderUITests/__Snapshots__/OUDSTokenBorderUITests/test_InverseTheme_Dark.borderWidthFocus.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensBorderUITests/__Snapshots__/OUDSTokensBorderUITests/test_InverseTheme_Dark.borderWidthFocus.png
similarity index 100%
rename from Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensBorderUITests/__Snapshots__/OUDSTokenBorderUITests/test_InverseTheme_Dark.borderWidthFocus.png
rename to DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensBorderUITests/__Snapshots__/OUDSTokensBorderUITests/test_InverseTheme_Dark.borderWidthFocus.png
diff --git a/Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensBorderUITests/__Snapshots__/OUDSTokenBorderUITests/test_InverseTheme_Dark.borderWidthFocusInset.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensBorderUITests/__Snapshots__/OUDSTokensBorderUITests/test_InverseTheme_Dark.borderWidthFocusInset.png
similarity index 100%
rename from Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensBorderUITests/__Snapshots__/OUDSTokenBorderUITests/test_InverseTheme_Dark.borderWidthFocusInset.png
rename to DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensBorderUITests/__Snapshots__/OUDSTokensBorderUITests/test_InverseTheme_Dark.borderWidthFocusInset.png
diff --git a/Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensBorderUITests/__Snapshots__/OUDSTokenBorderUITests/test_InverseTheme_Dark.borderWidthMedium.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensBorderUITests/__Snapshots__/OUDSTokensBorderUITests/test_InverseTheme_Dark.borderWidthMedium.png
similarity index 100%
rename from Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensBorderUITests/__Snapshots__/OUDSTokenBorderUITests/test_InverseTheme_Dark.borderWidthMedium.png
rename to DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensBorderUITests/__Snapshots__/OUDSTokensBorderUITests/test_InverseTheme_Dark.borderWidthMedium.png
diff --git a/Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensBorderUITests/__Snapshots__/OUDSTokenBorderUITests/test_InverseTheme_Dark.borderWidthNone.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensBorderUITests/__Snapshots__/OUDSTokensBorderUITests/test_InverseTheme_Dark.borderWidthNone.png
similarity index 100%
rename from Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensBorderUITests/__Snapshots__/OUDSTokenBorderUITests/test_InverseTheme_Dark.borderWidthNone.png
rename to DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensBorderUITests/__Snapshots__/OUDSTokensBorderUITests/test_InverseTheme_Dark.borderWidthNone.png
diff --git a/Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensBorderUITests/__Snapshots__/OUDSTokenBorderUITests/test_InverseTheme_Dark.borderWidthThick.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensBorderUITests/__Snapshots__/OUDSTokensBorderUITests/test_InverseTheme_Dark.borderWidthThick.png
similarity index 100%
rename from Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensBorderUITests/__Snapshots__/OUDSTokenBorderUITests/test_InverseTheme_Dark.borderWidthThick.png
rename to DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensBorderUITests/__Snapshots__/OUDSTokensBorderUITests/test_InverseTheme_Dark.borderWidthThick.png
diff --git a/Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensBorderUITests/__Snapshots__/OUDSTokenBorderUITests/test_InverseTheme_Dark.borderWidthThicker.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensBorderUITests/__Snapshots__/OUDSTokensBorderUITests/test_InverseTheme_Dark.borderWidthThicker.png
similarity index 100%
rename from Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensBorderUITests/__Snapshots__/OUDSTokenBorderUITests/test_InverseTheme_Dark.borderWidthThicker.png
rename to DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensBorderUITests/__Snapshots__/OUDSTokensBorderUITests/test_InverseTheme_Dark.borderWidthThicker.png
diff --git a/Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensBorderUITests/__Snapshots__/OUDSTokenBorderUITests/test_InverseTheme_Dark.borderWidthThin.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensBorderUITests/__Snapshots__/OUDSTokensBorderUITests/test_InverseTheme_Dark.borderWidthThin.png
similarity index 100%
rename from Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensBorderUITests/__Snapshots__/OUDSTokenBorderUITests/test_InverseTheme_Dark.borderWidthThin.png
rename to DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensBorderUITests/__Snapshots__/OUDSTokensBorderUITests/test_InverseTheme_Dark.borderWidthThin.png
diff --git a/Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensBorderUITests/__Snapshots__/OUDSTokenBorderUITests/test_InverseTheme_Light.borderRadiusDefault.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensBorderUITests/__Snapshots__/OUDSTokensBorderUITests/test_InverseTheme_Light.borderRadiusDefault.png
similarity index 100%
rename from Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensBorderUITests/__Snapshots__/OUDSTokenBorderUITests/test_InverseTheme_Light.borderRadiusDefault.png
rename to DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensBorderUITests/__Snapshots__/OUDSTokensBorderUITests/test_InverseTheme_Light.borderRadiusDefault.png
diff --git a/Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensBorderUITests/__Snapshots__/OUDSTokenBorderUITests/test_InverseTheme_Light.borderRadiusMedium.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensBorderUITests/__Snapshots__/OUDSTokensBorderUITests/test_InverseTheme_Light.borderRadiusMedium.png
similarity index 100%
rename from Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensBorderUITests/__Snapshots__/OUDSTokenBorderUITests/test_InverseTheme_Light.borderRadiusMedium.png
rename to DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensBorderUITests/__Snapshots__/OUDSTokensBorderUITests/test_InverseTheme_Light.borderRadiusMedium.png
diff --git a/Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensBorderUITests/__Snapshots__/OUDSTokenBorderUITests/test_InverseTheme_Light.borderRadiusNone.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensBorderUITests/__Snapshots__/OUDSTokensBorderUITests/test_InverseTheme_Light.borderRadiusNone.png
similarity index 100%
rename from Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensBorderUITests/__Snapshots__/OUDSTokenBorderUITests/test_InverseTheme_Light.borderRadiusNone.png
rename to DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensBorderUITests/__Snapshots__/OUDSTokensBorderUITests/test_InverseTheme_Light.borderRadiusNone.png
diff --git a/Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensBorderUITests/__Snapshots__/OUDSTokenBorderUITests/test_InverseTheme_Light.borderRadiusShort.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensBorderUITests/__Snapshots__/OUDSTokensBorderUITests/test_InverseTheme_Light.borderRadiusShort.png
similarity index 100%
rename from Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensBorderUITests/__Snapshots__/OUDSTokenBorderUITests/test_InverseTheme_Light.borderRadiusShort.png
rename to DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensBorderUITests/__Snapshots__/OUDSTokensBorderUITests/test_InverseTheme_Light.borderRadiusShort.png
diff --git a/Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensBorderUITests/__Snapshots__/OUDSTokenBorderUITests/test_InverseTheme_Light.borderRadiusTall.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensBorderUITests/__Snapshots__/OUDSTokensBorderUITests/test_InverseTheme_Light.borderRadiusTall.png
similarity index 100%
rename from Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensBorderUITests/__Snapshots__/OUDSTokenBorderUITests/test_InverseTheme_Light.borderRadiusTall.png
rename to DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensBorderUITests/__Snapshots__/OUDSTokensBorderUITests/test_InverseTheme_Light.borderRadiusTall.png
diff --git a/Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensBorderUITests/__Snapshots__/OUDSTokenBorderUITests/test_InverseTheme_Light.borderStyleDefault.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensBorderUITests/__Snapshots__/OUDSTokensBorderUITests/test_InverseTheme_Light.borderStyleDefault.png
similarity index 100%
rename from Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensBorderUITests/__Snapshots__/OUDSTokenBorderUITests/test_InverseTheme_Light.borderStyleDefault.png
rename to DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensBorderUITests/__Snapshots__/OUDSTokensBorderUITests/test_InverseTheme_Light.borderStyleDefault.png
diff --git a/Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensBorderUITests/__Snapshots__/OUDSTokenBorderUITests/test_InverseTheme_Light.borderStyleDrag.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensBorderUITests/__Snapshots__/OUDSTokensBorderUITests/test_InverseTheme_Light.borderStyleDrag.png
similarity index 100%
rename from Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensBorderUITests/__Snapshots__/OUDSTokenBorderUITests/test_InverseTheme_Light.borderStyleDrag.png
rename to DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensBorderUITests/__Snapshots__/OUDSTokensBorderUITests/test_InverseTheme_Light.borderStyleDrag.png
diff --git a/Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensBorderUITests/__Snapshots__/OUDSTokenBorderUITests/test_InverseTheme_Light.borderWidthDefault.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensBorderUITests/__Snapshots__/OUDSTokensBorderUITests/test_InverseTheme_Light.borderWidthDefault.png
similarity index 100%
rename from Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensBorderUITests/__Snapshots__/OUDSTokenBorderUITests/test_InverseTheme_Light.borderWidthDefault.png
rename to DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensBorderUITests/__Snapshots__/OUDSTokensBorderUITests/test_InverseTheme_Light.borderWidthDefault.png
diff --git a/Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensBorderUITests/__Snapshots__/OUDSTokenBorderUITests/test_InverseTheme_Light.borderWidthFocus.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensBorderUITests/__Snapshots__/OUDSTokensBorderUITests/test_InverseTheme_Light.borderWidthFocus.png
similarity index 100%
rename from Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensBorderUITests/__Snapshots__/OUDSTokenBorderUITests/test_InverseTheme_Light.borderWidthFocus.png
rename to DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensBorderUITests/__Snapshots__/OUDSTokensBorderUITests/test_InverseTheme_Light.borderWidthFocus.png
diff --git a/Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensBorderUITests/__Snapshots__/OUDSTokenBorderUITests/test_InverseTheme_Light.borderWidthFocusInset.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensBorderUITests/__Snapshots__/OUDSTokensBorderUITests/test_InverseTheme_Light.borderWidthFocusInset.png
similarity index 100%
rename from Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensBorderUITests/__Snapshots__/OUDSTokenBorderUITests/test_InverseTheme_Light.borderWidthFocusInset.png
rename to DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensBorderUITests/__Snapshots__/OUDSTokensBorderUITests/test_InverseTheme_Light.borderWidthFocusInset.png
diff --git a/Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensBorderUITests/__Snapshots__/OUDSTokenBorderUITests/test_InverseTheme_Light.borderWidthMedium.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensBorderUITests/__Snapshots__/OUDSTokensBorderUITests/test_InverseTheme_Light.borderWidthMedium.png
similarity index 100%
rename from Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensBorderUITests/__Snapshots__/OUDSTokenBorderUITests/test_InverseTheme_Light.borderWidthMedium.png
rename to DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensBorderUITests/__Snapshots__/OUDSTokensBorderUITests/test_InverseTheme_Light.borderWidthMedium.png
diff --git a/Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensBorderUITests/__Snapshots__/OUDSTokenBorderUITests/test_InverseTheme_Light.borderWidthNone.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensBorderUITests/__Snapshots__/OUDSTokensBorderUITests/test_InverseTheme_Light.borderWidthNone.png
similarity index 100%
rename from Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensBorderUITests/__Snapshots__/OUDSTokenBorderUITests/test_InverseTheme_Light.borderWidthNone.png
rename to DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensBorderUITests/__Snapshots__/OUDSTokensBorderUITests/test_InverseTheme_Light.borderWidthNone.png
diff --git a/Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensBorderUITests/__Snapshots__/OUDSTokenBorderUITests/test_InverseTheme_Light.borderWidthThick.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensBorderUITests/__Snapshots__/OUDSTokensBorderUITests/test_InverseTheme_Light.borderWidthThick.png
similarity index 100%
rename from Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensBorderUITests/__Snapshots__/OUDSTokenBorderUITests/test_InverseTheme_Light.borderWidthThick.png
rename to DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensBorderUITests/__Snapshots__/OUDSTokensBorderUITests/test_InverseTheme_Light.borderWidthThick.png
diff --git a/Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensBorderUITests/__Snapshots__/OUDSTokenBorderUITests/test_InverseTheme_Light.borderWidthThicker.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensBorderUITests/__Snapshots__/OUDSTokensBorderUITests/test_InverseTheme_Light.borderWidthThicker.png
similarity index 100%
rename from Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensBorderUITests/__Snapshots__/OUDSTokenBorderUITests/test_InverseTheme_Light.borderWidthThicker.png
rename to DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensBorderUITests/__Snapshots__/OUDSTokensBorderUITests/test_InverseTheme_Light.borderWidthThicker.png
diff --git a/Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensBorderUITests/__Snapshots__/OUDSTokenBorderUITests/test_InverseTheme_Light.borderWidthThin.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensBorderUITests/__Snapshots__/OUDSTokensBorderUITests/test_InverseTheme_Light.borderWidthThin.png
similarity index 100%
rename from Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensBorderUITests/__Snapshots__/OUDSTokenBorderUITests/test_InverseTheme_Light.borderWidthThin.png
rename to DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensBorderUITests/__Snapshots__/OUDSTokensBorderUITests/test_InverseTheme_Light.borderWidthThin.png
diff --git a/Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensBorderUITests/__Snapshots__/OUDSTokenBorderUITests/test_OrangeTheme_Dark.borderRadiusDefault.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensBorderUITests/__Snapshots__/OUDSTokensBorderUITests/test_OrangeTheme_Dark.borderRadiusDefault.png
similarity index 100%
rename from Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensBorderUITests/__Snapshots__/OUDSTokenBorderUITests/test_OrangeTheme_Dark.borderRadiusDefault.png
rename to DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensBorderUITests/__Snapshots__/OUDSTokensBorderUITests/test_OrangeTheme_Dark.borderRadiusDefault.png
diff --git a/Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensBorderUITests/__Snapshots__/OUDSTokenBorderUITests/test_OrangeTheme_Dark.borderRadiusMedium.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensBorderUITests/__Snapshots__/OUDSTokensBorderUITests/test_OrangeTheme_Dark.borderRadiusMedium.png
similarity index 100%
rename from Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensBorderUITests/__Snapshots__/OUDSTokenBorderUITests/test_OrangeTheme_Dark.borderRadiusMedium.png
rename to DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensBorderUITests/__Snapshots__/OUDSTokensBorderUITests/test_OrangeTheme_Dark.borderRadiusMedium.png
diff --git a/Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensBorderUITests/__Snapshots__/OUDSTokenBorderUITests/test_OrangeTheme_Dark.borderRadiusNone.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensBorderUITests/__Snapshots__/OUDSTokensBorderUITests/test_OrangeTheme_Dark.borderRadiusNone.png
similarity index 100%
rename from Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensBorderUITests/__Snapshots__/OUDSTokenBorderUITests/test_OrangeTheme_Dark.borderRadiusNone.png
rename to DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensBorderUITests/__Snapshots__/OUDSTokensBorderUITests/test_OrangeTheme_Dark.borderRadiusNone.png
diff --git a/Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensBorderUITests/__Snapshots__/OUDSTokenBorderUITests/test_OrangeTheme_Dark.borderRadiusShort.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensBorderUITests/__Snapshots__/OUDSTokensBorderUITests/test_OrangeTheme_Dark.borderRadiusShort.png
similarity index 100%
rename from Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensBorderUITests/__Snapshots__/OUDSTokenBorderUITests/test_OrangeTheme_Dark.borderRadiusShort.png
rename to DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensBorderUITests/__Snapshots__/OUDSTokensBorderUITests/test_OrangeTheme_Dark.borderRadiusShort.png
diff --git a/Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensBorderUITests/__Snapshots__/OUDSTokenBorderUITests/test_OrangeTheme_Dark.borderRadiusTall.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensBorderUITests/__Snapshots__/OUDSTokensBorderUITests/test_OrangeTheme_Dark.borderRadiusTall.png
similarity index 100%
rename from Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensBorderUITests/__Snapshots__/OUDSTokenBorderUITests/test_OrangeTheme_Dark.borderRadiusTall.png
rename to DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensBorderUITests/__Snapshots__/OUDSTokensBorderUITests/test_OrangeTheme_Dark.borderRadiusTall.png
diff --git a/Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensBorderUITests/__Snapshots__/OUDSTokenBorderUITests/test_OrangeTheme_Dark.borderStyleDefault.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensBorderUITests/__Snapshots__/OUDSTokensBorderUITests/test_OrangeTheme_Dark.borderStyleDefault.png
similarity index 100%
rename from Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensBorderUITests/__Snapshots__/OUDSTokenBorderUITests/test_OrangeTheme_Dark.borderStyleDefault.png
rename to DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensBorderUITests/__Snapshots__/OUDSTokensBorderUITests/test_OrangeTheme_Dark.borderStyleDefault.png
diff --git a/Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensBorderUITests/__Snapshots__/OUDSTokenBorderUITests/test_OrangeTheme_Dark.borderStyleDrag.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensBorderUITests/__Snapshots__/OUDSTokensBorderUITests/test_OrangeTheme_Dark.borderStyleDrag.png
similarity index 100%
rename from Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensBorderUITests/__Snapshots__/OUDSTokenBorderUITests/test_OrangeTheme_Dark.borderStyleDrag.png
rename to DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensBorderUITests/__Snapshots__/OUDSTokensBorderUITests/test_OrangeTheme_Dark.borderStyleDrag.png
diff --git a/Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensBorderUITests/__Snapshots__/OUDSTokenBorderUITests/test_OrangeTheme_Dark.borderWidthDefault.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensBorderUITests/__Snapshots__/OUDSTokensBorderUITests/test_OrangeTheme_Dark.borderWidthDefault.png
similarity index 100%
rename from Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensBorderUITests/__Snapshots__/OUDSTokenBorderUITests/test_OrangeTheme_Dark.borderWidthDefault.png
rename to DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensBorderUITests/__Snapshots__/OUDSTokensBorderUITests/test_OrangeTheme_Dark.borderWidthDefault.png
diff --git a/Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensBorderUITests/__Snapshots__/OUDSTokenBorderUITests/test_OrangeTheme_Dark.borderWidthFocus.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensBorderUITests/__Snapshots__/OUDSTokensBorderUITests/test_OrangeTheme_Dark.borderWidthFocus.png
similarity index 100%
rename from Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensBorderUITests/__Snapshots__/OUDSTokenBorderUITests/test_OrangeTheme_Dark.borderWidthFocus.png
rename to DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensBorderUITests/__Snapshots__/OUDSTokensBorderUITests/test_OrangeTheme_Dark.borderWidthFocus.png
diff --git a/Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensBorderUITests/__Snapshots__/OUDSTokenBorderUITests/test_OrangeTheme_Dark.borderWidthFocusInset.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensBorderUITests/__Snapshots__/OUDSTokensBorderUITests/test_OrangeTheme_Dark.borderWidthFocusInset.png
similarity index 100%
rename from Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensBorderUITests/__Snapshots__/OUDSTokenBorderUITests/test_OrangeTheme_Dark.borderWidthFocusInset.png
rename to DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensBorderUITests/__Snapshots__/OUDSTokensBorderUITests/test_OrangeTheme_Dark.borderWidthFocusInset.png
diff --git a/Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensBorderUITests/__Snapshots__/OUDSTokenBorderUITests/test_OrangeTheme_Dark.borderWidthMedium.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensBorderUITests/__Snapshots__/OUDSTokensBorderUITests/test_OrangeTheme_Dark.borderWidthMedium.png
similarity index 100%
rename from Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensBorderUITests/__Snapshots__/OUDSTokenBorderUITests/test_OrangeTheme_Dark.borderWidthMedium.png
rename to DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensBorderUITests/__Snapshots__/OUDSTokensBorderUITests/test_OrangeTheme_Dark.borderWidthMedium.png
diff --git a/Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensBorderUITests/__Snapshots__/OUDSTokenBorderUITests/test_OrangeTheme_Dark.borderWidthNone.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensBorderUITests/__Snapshots__/OUDSTokensBorderUITests/test_OrangeTheme_Dark.borderWidthNone.png
similarity index 100%
rename from Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensBorderUITests/__Snapshots__/OUDSTokenBorderUITests/test_OrangeTheme_Dark.borderWidthNone.png
rename to DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensBorderUITests/__Snapshots__/OUDSTokensBorderUITests/test_OrangeTheme_Dark.borderWidthNone.png
diff --git a/Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensBorderUITests/__Snapshots__/OUDSTokenBorderUITests/test_OrangeTheme_Dark.borderWidthThick.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensBorderUITests/__Snapshots__/OUDSTokensBorderUITests/test_OrangeTheme_Dark.borderWidthThick.png
similarity index 100%
rename from Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensBorderUITests/__Snapshots__/OUDSTokenBorderUITests/test_OrangeTheme_Dark.borderWidthThick.png
rename to DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensBorderUITests/__Snapshots__/OUDSTokensBorderUITests/test_OrangeTheme_Dark.borderWidthThick.png
diff --git a/Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensBorderUITests/__Snapshots__/OUDSTokenBorderUITests/test_OrangeTheme_Dark.borderWidthThicker.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensBorderUITests/__Snapshots__/OUDSTokensBorderUITests/test_OrangeTheme_Dark.borderWidthThicker.png
similarity index 100%
rename from Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensBorderUITests/__Snapshots__/OUDSTokenBorderUITests/test_OrangeTheme_Dark.borderWidthThicker.png
rename to DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensBorderUITests/__Snapshots__/OUDSTokensBorderUITests/test_OrangeTheme_Dark.borderWidthThicker.png
diff --git a/Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensBorderUITests/__Snapshots__/OUDSTokenBorderUITests/test_OrangeTheme_Dark.borderWidthThin.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensBorderUITests/__Snapshots__/OUDSTokensBorderUITests/test_OrangeTheme_Dark.borderWidthThin.png
similarity index 100%
rename from Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensBorderUITests/__Snapshots__/OUDSTokenBorderUITests/test_OrangeTheme_Dark.borderWidthThin.png
rename to DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensBorderUITests/__Snapshots__/OUDSTokensBorderUITests/test_OrangeTheme_Dark.borderWidthThin.png
diff --git a/Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensBorderUITests/__Snapshots__/OUDSTokenBorderUITests/test_OrangeTheme_Light.borderRadiusDefault.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensBorderUITests/__Snapshots__/OUDSTokensBorderUITests/test_OrangeTheme_Light.borderRadiusDefault.png
similarity index 100%
rename from Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensBorderUITests/__Snapshots__/OUDSTokenBorderUITests/test_OrangeTheme_Light.borderRadiusDefault.png
rename to DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensBorderUITests/__Snapshots__/OUDSTokensBorderUITests/test_OrangeTheme_Light.borderRadiusDefault.png
diff --git a/Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensBorderUITests/__Snapshots__/OUDSTokenBorderUITests/test_OrangeTheme_Light.borderRadiusMedium.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensBorderUITests/__Snapshots__/OUDSTokensBorderUITests/test_OrangeTheme_Light.borderRadiusMedium.png
similarity index 100%
rename from Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensBorderUITests/__Snapshots__/OUDSTokenBorderUITests/test_OrangeTheme_Light.borderRadiusMedium.png
rename to DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensBorderUITests/__Snapshots__/OUDSTokensBorderUITests/test_OrangeTheme_Light.borderRadiusMedium.png
diff --git a/Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensBorderUITests/__Snapshots__/OUDSTokenBorderUITests/test_OrangeTheme_Light.borderRadiusNone.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensBorderUITests/__Snapshots__/OUDSTokensBorderUITests/test_OrangeTheme_Light.borderRadiusNone.png
similarity index 100%
rename from Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensBorderUITests/__Snapshots__/OUDSTokenBorderUITests/test_OrangeTheme_Light.borderRadiusNone.png
rename to DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensBorderUITests/__Snapshots__/OUDSTokensBorderUITests/test_OrangeTheme_Light.borderRadiusNone.png
diff --git a/Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensBorderUITests/__Snapshots__/OUDSTokenBorderUITests/test_OrangeTheme_Light.borderRadiusShort.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensBorderUITests/__Snapshots__/OUDSTokensBorderUITests/test_OrangeTheme_Light.borderRadiusShort.png
similarity index 100%
rename from Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensBorderUITests/__Snapshots__/OUDSTokenBorderUITests/test_OrangeTheme_Light.borderRadiusShort.png
rename to DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensBorderUITests/__Snapshots__/OUDSTokensBorderUITests/test_OrangeTheme_Light.borderRadiusShort.png
diff --git a/Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensBorderUITests/__Snapshots__/OUDSTokenBorderUITests/test_OrangeTheme_Light.borderRadiusTall.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensBorderUITests/__Snapshots__/OUDSTokensBorderUITests/test_OrangeTheme_Light.borderRadiusTall.png
similarity index 100%
rename from Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensBorderUITests/__Snapshots__/OUDSTokenBorderUITests/test_OrangeTheme_Light.borderRadiusTall.png
rename to DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensBorderUITests/__Snapshots__/OUDSTokensBorderUITests/test_OrangeTheme_Light.borderRadiusTall.png
diff --git a/Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensBorderUITests/__Snapshots__/OUDSTokenBorderUITests/test_OrangeTheme_Light.borderStyleDefault.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensBorderUITests/__Snapshots__/OUDSTokensBorderUITests/test_OrangeTheme_Light.borderStyleDefault.png
similarity index 100%
rename from Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensBorderUITests/__Snapshots__/OUDSTokenBorderUITests/test_OrangeTheme_Light.borderStyleDefault.png
rename to DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensBorderUITests/__Snapshots__/OUDSTokensBorderUITests/test_OrangeTheme_Light.borderStyleDefault.png
diff --git a/Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensBorderUITests/__Snapshots__/OUDSTokenBorderUITests/test_OrangeTheme_Light.borderStyleDrag.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensBorderUITests/__Snapshots__/OUDSTokensBorderUITests/test_OrangeTheme_Light.borderStyleDrag.png
similarity index 100%
rename from Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensBorderUITests/__Snapshots__/OUDSTokenBorderUITests/test_OrangeTheme_Light.borderStyleDrag.png
rename to DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensBorderUITests/__Snapshots__/OUDSTokensBorderUITests/test_OrangeTheme_Light.borderStyleDrag.png
diff --git a/Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensBorderUITests/__Snapshots__/OUDSTokenBorderUITests/test_OrangeTheme_Light.borderWidthDefault.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensBorderUITests/__Snapshots__/OUDSTokensBorderUITests/test_OrangeTheme_Light.borderWidthDefault.png
similarity index 100%
rename from Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensBorderUITests/__Snapshots__/OUDSTokenBorderUITests/test_OrangeTheme_Light.borderWidthDefault.png
rename to DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensBorderUITests/__Snapshots__/OUDSTokensBorderUITests/test_OrangeTheme_Light.borderWidthDefault.png
diff --git a/Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensBorderUITests/__Snapshots__/OUDSTokenBorderUITests/test_OrangeTheme_Light.borderWidthFocus.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensBorderUITests/__Snapshots__/OUDSTokensBorderUITests/test_OrangeTheme_Light.borderWidthFocus.png
similarity index 100%
rename from Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensBorderUITests/__Snapshots__/OUDSTokenBorderUITests/test_OrangeTheme_Light.borderWidthFocus.png
rename to DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensBorderUITests/__Snapshots__/OUDSTokensBorderUITests/test_OrangeTheme_Light.borderWidthFocus.png
diff --git a/Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensBorderUITests/__Snapshots__/OUDSTokenBorderUITests/test_OrangeTheme_Light.borderWidthFocusInset.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensBorderUITests/__Snapshots__/OUDSTokensBorderUITests/test_OrangeTheme_Light.borderWidthFocusInset.png
similarity index 100%
rename from Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensBorderUITests/__Snapshots__/OUDSTokenBorderUITests/test_OrangeTheme_Light.borderWidthFocusInset.png
rename to DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensBorderUITests/__Snapshots__/OUDSTokensBorderUITests/test_OrangeTheme_Light.borderWidthFocusInset.png
diff --git a/Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensBorderUITests/__Snapshots__/OUDSTokenBorderUITests/test_OrangeTheme_Light.borderWidthMedium.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensBorderUITests/__Snapshots__/OUDSTokensBorderUITests/test_OrangeTheme_Light.borderWidthMedium.png
similarity index 100%
rename from Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensBorderUITests/__Snapshots__/OUDSTokenBorderUITests/test_OrangeTheme_Light.borderWidthMedium.png
rename to DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensBorderUITests/__Snapshots__/OUDSTokensBorderUITests/test_OrangeTheme_Light.borderWidthMedium.png
diff --git a/Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensBorderUITests/__Snapshots__/OUDSTokenBorderUITests/test_OrangeTheme_Light.borderWidthNone.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensBorderUITests/__Snapshots__/OUDSTokensBorderUITests/test_OrangeTheme_Light.borderWidthNone.png
similarity index 100%
rename from Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensBorderUITests/__Snapshots__/OUDSTokenBorderUITests/test_OrangeTheme_Light.borderWidthNone.png
rename to DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensBorderUITests/__Snapshots__/OUDSTokensBorderUITests/test_OrangeTheme_Light.borderWidthNone.png
diff --git a/Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensBorderUITests/__Snapshots__/OUDSTokenBorderUITests/test_OrangeTheme_Light.borderWidthThick.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensBorderUITests/__Snapshots__/OUDSTokensBorderUITests/test_OrangeTheme_Light.borderWidthThick.png
similarity index 100%
rename from Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensBorderUITests/__Snapshots__/OUDSTokenBorderUITests/test_OrangeTheme_Light.borderWidthThick.png
rename to DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensBorderUITests/__Snapshots__/OUDSTokensBorderUITests/test_OrangeTheme_Light.borderWidthThick.png
diff --git a/Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensBorderUITests/__Snapshots__/OUDSTokenBorderUITests/test_OrangeTheme_Light.borderWidthThicker.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensBorderUITests/__Snapshots__/OUDSTokensBorderUITests/test_OrangeTheme_Light.borderWidthThicker.png
similarity index 100%
rename from Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensBorderUITests/__Snapshots__/OUDSTokenBorderUITests/test_OrangeTheme_Light.borderWidthThicker.png
rename to DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensBorderUITests/__Snapshots__/OUDSTokensBorderUITests/test_OrangeTheme_Light.borderWidthThicker.png
diff --git a/Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensBorderUITests/__Snapshots__/OUDSTokenBorderUITests/test_OrangeTheme_Light.borderWidthThin.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensBorderUITests/__Snapshots__/OUDSTokensBorderUITests/test_OrangeTheme_Light.borderWidthThin.png
similarity index 100%
rename from Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensBorderUITests/__Snapshots__/OUDSTokenBorderUITests/test_OrangeTheme_Light.borderWidthThin.png
rename to DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensBorderUITests/__Snapshots__/OUDSTokensBorderUITests/test_OrangeTheme_Light.borderWidthThin.png
diff --git a/Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensColorUITests/OUDSTokensColorUITests.swift b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensColorUITests/OUDSTokensColorUITests.swift
similarity index 100%
rename from Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensColorUITests/OUDSTokensColorUITests.swift
rename to DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensColorUITests/OUDSTokensColorUITests.swift
diff --git a/Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_InverseTheme_Dark.colorActionDisabled.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_InverseTheme_Dark.colorActionDisabled.png
similarity index 100%
rename from Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_InverseTheme_Dark.colorActionDisabled.png
rename to DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_InverseTheme_Dark.colorActionDisabled.png
diff --git a/Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_InverseTheme_Dark.colorActionEnabled.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_InverseTheme_Dark.colorActionEnabled.png
similarity index 100%
rename from Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_InverseTheme_Dark.colorActionEnabled.png
rename to DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_InverseTheme_Dark.colorActionEnabled.png
diff --git a/Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_InverseTheme_Dark.colorActionFocus.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_InverseTheme_Dark.colorActionFocus.png
similarity index 100%
rename from Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_InverseTheme_Dark.colorActionFocus.png
rename to DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_InverseTheme_Dark.colorActionFocus.png
diff --git a/Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_InverseTheme_Dark.colorActionHighlighted.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_InverseTheme_Dark.colorActionHighlighted.png
similarity index 100%
rename from Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_InverseTheme_Dark.colorActionHighlighted.png
rename to DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_InverseTheme_Dark.colorActionHighlighted.png
diff --git a/Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_InverseTheme_Dark.colorActionHover.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_InverseTheme_Dark.colorActionHover.png
similarity index 100%
rename from Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_InverseTheme_Dark.colorActionHover.png
rename to DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_InverseTheme_Dark.colorActionHover.png
diff --git a/Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_InverseTheme_Dark.colorActionLoading.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_InverseTheme_Dark.colorActionLoading.png
similarity index 100%
rename from Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_InverseTheme_Dark.colorActionLoading.png
rename to DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_InverseTheme_Dark.colorActionLoading.png
diff --git a/Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_InverseTheme_Dark.colorActionNegativeEnabled.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_InverseTheme_Dark.colorActionNegativeEnabled.png
similarity index 100%
rename from Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_InverseTheme_Dark.colorActionNegativeEnabled.png
rename to DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_InverseTheme_Dark.colorActionNegativeEnabled.png
diff --git a/Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_InverseTheme_Dark.colorActionNegativeFocus.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_InverseTheme_Dark.colorActionNegativeFocus.png
similarity index 100%
rename from Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_InverseTheme_Dark.colorActionNegativeFocus.png
rename to DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_InverseTheme_Dark.colorActionNegativeFocus.png
diff --git a/Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_InverseTheme_Dark.colorActionNegativeHover.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_InverseTheme_Dark.colorActionNegativeHover.png
similarity index 100%
rename from Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_InverseTheme_Dark.colorActionNegativeHover.png
rename to DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_InverseTheme_Dark.colorActionNegativeHover.png
diff --git a/Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_InverseTheme_Dark.colorActionNegativeLoading.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_InverseTheme_Dark.colorActionNegativeLoading.png
similarity index 100%
rename from Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_InverseTheme_Dark.colorActionNegativeLoading.png
rename to DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_InverseTheme_Dark.colorActionNegativeLoading.png
diff --git a/Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_InverseTheme_Dark.colorActionNegativePressed.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_InverseTheme_Dark.colorActionNegativePressed.png
similarity index 100%
rename from Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_InverseTheme_Dark.colorActionNegativePressed.png
rename to DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_InverseTheme_Dark.colorActionNegativePressed.png
diff --git a/Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_InverseTheme_Dark.colorActionPressed.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_InverseTheme_Dark.colorActionPressed.png
similarity index 100%
rename from Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_InverseTheme_Dark.colorActionPressed.png
rename to DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_InverseTheme_Dark.colorActionPressed.png
diff --git a/Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_InverseTheme_Dark.colorActionSelected.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_InverseTheme_Dark.colorActionSelected.png
similarity index 100%
rename from Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_InverseTheme_Dark.colorActionSelected.png
rename to DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_InverseTheme_Dark.colorActionSelected.png
diff --git a/Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_InverseTheme_Dark.colorActionSupportEnabled.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_InverseTheme_Dark.colorActionSupportEnabled.png
similarity index 100%
rename from Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_InverseTheme_Dark.colorActionSupportEnabled.png
rename to DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_InverseTheme_Dark.colorActionSupportEnabled.png
diff --git a/Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_InverseTheme_Dark.colorActionSupportFocus.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_InverseTheme_Dark.colorActionSupportFocus.png
similarity index 100%
rename from Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_InverseTheme_Dark.colorActionSupportFocus.png
rename to DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_InverseTheme_Dark.colorActionSupportFocus.png
diff --git a/Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_InverseTheme_Dark.colorActionSupportHover.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_InverseTheme_Dark.colorActionSupportHover.png
similarity index 100%
rename from Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_InverseTheme_Dark.colorActionSupportHover.png
rename to DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_InverseTheme_Dark.colorActionSupportHover.png
diff --git a/Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_InverseTheme_Dark.colorActionSupportLoading.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_InverseTheme_Dark.colorActionSupportLoading.png
similarity index 100%
rename from Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_InverseTheme_Dark.colorActionSupportLoading.png
rename to DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_InverseTheme_Dark.colorActionSupportLoading.png
diff --git a/Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_InverseTheme_Dark.colorActionSupportPressed.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_InverseTheme_Dark.colorActionSupportPressed.png
similarity index 100%
rename from Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_InverseTheme_Dark.colorActionSupportPressed.png
rename to DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_InverseTheme_Dark.colorActionSupportPressed.png
diff --git a/Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_InverseTheme_Dark.colorActionVisited.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_InverseTheme_Dark.colorActionVisited.png
similarity index 100%
rename from Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_InverseTheme_Dark.colorActionVisited.png
rename to DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_InverseTheme_Dark.colorActionVisited.png
diff --git a/Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_InverseTheme_Dark.colorAlwaysBlack.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_InverseTheme_Dark.colorAlwaysBlack.png
similarity index 100%
rename from Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_InverseTheme_Dark.colorAlwaysBlack.png
rename to DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_InverseTheme_Dark.colorAlwaysBlack.png
diff --git a/Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_InverseTheme_Dark.colorAlwaysOnBlack.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_InverseTheme_Dark.colorAlwaysOnBlack.png
similarity index 100%
rename from Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_InverseTheme_Dark.colorAlwaysOnBlack.png
rename to DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_InverseTheme_Dark.colorAlwaysOnBlack.png
diff --git a/Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_InverseTheme_Dark.colorAlwaysOnWhite.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_InverseTheme_Dark.colorAlwaysOnWhite.png
similarity index 100%
rename from Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_InverseTheme_Dark.colorAlwaysOnWhite.png
rename to DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_InverseTheme_Dark.colorAlwaysOnWhite.png
diff --git a/Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_InverseTheme_Dark.colorAlwaysWhite.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_InverseTheme_Dark.colorAlwaysWhite.png
similarity index 100%
rename from Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_InverseTheme_Dark.colorAlwaysWhite.png
rename to DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_InverseTheme_Dark.colorAlwaysWhite.png
diff --git a/Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_InverseTheme_Dark.colorBgEmphasized.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_InverseTheme_Dark.colorBgEmphasized.png
similarity index 100%
rename from Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_InverseTheme_Dark.colorBgEmphasized.png
rename to DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_InverseTheme_Dark.colorBgEmphasized.png
diff --git a/Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_InverseTheme_Dark.colorBgPrimary.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_InverseTheme_Dark.colorBgPrimary.png
similarity index 100%
rename from Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_InverseTheme_Dark.colorBgPrimary.png
rename to DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_InverseTheme_Dark.colorBgPrimary.png
diff --git a/Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_InverseTheme_Dark.colorBgSecondary.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_InverseTheme_Dark.colorBgSecondary.png
similarity index 100%
rename from Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_InverseTheme_Dark.colorBgSecondary.png
rename to DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_InverseTheme_Dark.colorBgSecondary.png
diff --git a/Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_InverseTheme_Dark.colorBgTertiary.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_InverseTheme_Dark.colorBgTertiary.png
similarity index 100%
rename from Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_InverseTheme_Dark.colorBgTertiary.png
rename to DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_InverseTheme_Dark.colorBgTertiary.png
diff --git a/Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_InverseTheme_Dark.colorBorderBrandPrimary.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_InverseTheme_Dark.colorBorderBrandPrimary.png
similarity index 100%
rename from Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_InverseTheme_Dark.colorBorderBrandPrimary.png
rename to DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_InverseTheme_Dark.colorBorderBrandPrimary.png
diff --git a/Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_InverseTheme_Dark.colorBorderDefault.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_InverseTheme_Dark.colorBorderDefault.png
similarity index 100%
rename from Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_InverseTheme_Dark.colorBorderDefault.png
rename to DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_InverseTheme_Dark.colorBorderDefault.png
diff --git a/Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_InverseTheme_Dark.colorBorderEmphasized.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_InverseTheme_Dark.colorBorderEmphasized.png
similarity index 100%
rename from Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_InverseTheme_Dark.colorBorderEmphasized.png
rename to DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_InverseTheme_Dark.colorBorderEmphasized.png
diff --git a/Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_InverseTheme_Dark.colorBorderFocus.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_InverseTheme_Dark.colorBorderFocus.png
similarity index 100%
rename from Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_InverseTheme_Dark.colorBorderFocus.png
rename to DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_InverseTheme_Dark.colorBorderFocus.png
diff --git a/Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_InverseTheme_Dark.colorBorderFocusInset.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_InverseTheme_Dark.colorBorderFocusInset.png
similarity index 100%
rename from Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_InverseTheme_Dark.colorBorderFocusInset.png
rename to DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_InverseTheme_Dark.colorBorderFocusInset.png
diff --git a/Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_InverseTheme_Dark.colorBorderOnBrandPrimary.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_InverseTheme_Dark.colorBorderOnBrandPrimary.png
similarity index 100%
rename from Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_InverseTheme_Dark.colorBorderOnBrandPrimary.png
rename to DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_InverseTheme_Dark.colorBorderOnBrandPrimary.png
diff --git a/Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_InverseTheme_Dark.colorChartBorder.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_InverseTheme_Dark.colorChartBorder.png
similarity index 100%
rename from Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_InverseTheme_Dark.colorChartBorder.png
rename to DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_InverseTheme_Dark.colorChartBorder.png
diff --git a/Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_InverseTheme_Dark.colorChartBorderContrast.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_InverseTheme_Dark.colorChartBorderContrast.png
similarity index 100%
rename from Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_InverseTheme_Dark.colorChartBorderContrast.png
rename to DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_InverseTheme_Dark.colorChartBorderContrast.png
diff --git a/Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_InverseTheme_Dark.colorChartCategoricalTier1.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_InverseTheme_Dark.colorChartCategoricalTier1.png
similarity index 100%
rename from Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_InverseTheme_Dark.colorChartCategoricalTier1.png
rename to DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_InverseTheme_Dark.colorChartCategoricalTier1.png
diff --git a/Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_InverseTheme_Dark.colorChartCategoricalTier10.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_InverseTheme_Dark.colorChartCategoricalTier10.png
similarity index 100%
rename from Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_InverseTheme_Dark.colorChartCategoricalTier10.png
rename to DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_InverseTheme_Dark.colorChartCategoricalTier10.png
diff --git a/Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_InverseTheme_Dark.colorChartCategoricalTier2.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_InverseTheme_Dark.colorChartCategoricalTier2.png
similarity index 100%
rename from Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_InverseTheme_Dark.colorChartCategoricalTier2.png
rename to DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_InverseTheme_Dark.colorChartCategoricalTier2.png
diff --git a/Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_InverseTheme_Dark.colorChartCategoricalTier3.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_InverseTheme_Dark.colorChartCategoricalTier3.png
similarity index 100%
rename from Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_InverseTheme_Dark.colorChartCategoricalTier3.png
rename to DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_InverseTheme_Dark.colorChartCategoricalTier3.png
diff --git a/Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_InverseTheme_Dark.colorChartCategoricalTier4.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_InverseTheme_Dark.colorChartCategoricalTier4.png
similarity index 100%
rename from Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_InverseTheme_Dark.colorChartCategoricalTier4.png
rename to DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_InverseTheme_Dark.colorChartCategoricalTier4.png
diff --git a/Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_InverseTheme_Dark.colorChartCategoricalTier5.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_InverseTheme_Dark.colorChartCategoricalTier5.png
similarity index 100%
rename from Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_InverseTheme_Dark.colorChartCategoricalTier5.png
rename to DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_InverseTheme_Dark.colorChartCategoricalTier5.png
diff --git a/Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_InverseTheme_Dark.colorChartCategoricalTier6.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_InverseTheme_Dark.colorChartCategoricalTier6.png
similarity index 100%
rename from Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_InverseTheme_Dark.colorChartCategoricalTier6.png
rename to DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_InverseTheme_Dark.colorChartCategoricalTier6.png
diff --git a/Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_InverseTheme_Dark.colorChartCategoricalTier7.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_InverseTheme_Dark.colorChartCategoricalTier7.png
similarity index 100%
rename from Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_InverseTheme_Dark.colorChartCategoricalTier7.png
rename to DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_InverseTheme_Dark.colorChartCategoricalTier7.png
diff --git a/Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_InverseTheme_Dark.colorChartCategoricalTier8.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_InverseTheme_Dark.colorChartCategoricalTier8.png
similarity index 100%
rename from Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_InverseTheme_Dark.colorChartCategoricalTier8.png
rename to DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_InverseTheme_Dark.colorChartCategoricalTier8.png
diff --git a/Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_InverseTheme_Dark.colorChartCategoricalTier9.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_InverseTheme_Dark.colorChartCategoricalTier9.png
similarity index 100%
rename from Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_InverseTheme_Dark.colorChartCategoricalTier9.png
rename to DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_InverseTheme_Dark.colorChartCategoricalTier9.png
diff --git a/Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_InverseTheme_Dark.colorChartFunctionalInformation.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_InverseTheme_Dark.colorChartFunctionalInformation.png
similarity index 100%
rename from Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_InverseTheme_Dark.colorChartFunctionalInformation.png
rename to DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_InverseTheme_Dark.colorChartFunctionalInformation.png
diff --git a/Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_InverseTheme_Dark.colorChartFunctionalNegative.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_InverseTheme_Dark.colorChartFunctionalNegative.png
similarity index 100%
rename from Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_InverseTheme_Dark.colorChartFunctionalNegative.png
rename to DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_InverseTheme_Dark.colorChartFunctionalNegative.png
diff --git a/Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_InverseTheme_Dark.colorChartFunctionalPositive.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_InverseTheme_Dark.colorChartFunctionalPositive.png
similarity index 100%
rename from Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_InverseTheme_Dark.colorChartFunctionalPositive.png
rename to DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_InverseTheme_Dark.colorChartFunctionalPositive.png
diff --git a/Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_InverseTheme_Dark.colorChartFunctionalWarning.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_InverseTheme_Dark.colorChartFunctionalWarning.png
similarity index 100%
rename from Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_InverseTheme_Dark.colorChartFunctionalWarning.png
rename to DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_InverseTheme_Dark.colorChartFunctionalWarning.png
diff --git a/Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_InverseTheme_Dark.colorChartGridlines.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_InverseTheme_Dark.colorChartGridlines.png
similarity index 100%
rename from Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_InverseTheme_Dark.colorChartGridlines.png
rename to DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_InverseTheme_Dark.colorChartGridlines.png
diff --git a/Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_InverseTheme_Dark.colorChartHighlight.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_InverseTheme_Dark.colorChartHighlight.png
similarity index 100%
rename from Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_InverseTheme_Dark.colorChartHighlight.png
rename to DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_InverseTheme_Dark.colorChartHighlight.png
diff --git a/Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_InverseTheme_Dark.colorChartNeutral.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_InverseTheme_Dark.colorChartNeutral.png
similarity index 100%
rename from Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_InverseTheme_Dark.colorChartNeutral.png
rename to DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_InverseTheme_Dark.colorChartNeutral.png
diff --git a/Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_InverseTheme_Dark.colorContentBrandPrimary.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_InverseTheme_Dark.colorContentBrandPrimary.png
similarity index 100%
rename from Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_InverseTheme_Dark.colorContentBrandPrimary.png
rename to DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_InverseTheme_Dark.colorContentBrandPrimary.png
diff --git a/Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_InverseTheme_Dark.colorContentDefault.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_InverseTheme_Dark.colorContentDefault.png
similarity index 100%
rename from Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_InverseTheme_Dark.colorContentDefault.png
rename to DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_InverseTheme_Dark.colorContentDefault.png
diff --git a/Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_InverseTheme_Dark.colorContentDisabled.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_InverseTheme_Dark.colorContentDisabled.png
similarity index 100%
rename from Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_InverseTheme_Dark.colorContentDisabled.png
rename to DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_InverseTheme_Dark.colorContentDisabled.png
diff --git a/Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_InverseTheme_Dark.colorContentMuted.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_InverseTheme_Dark.colorContentMuted.png
similarity index 100%
rename from Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_InverseTheme_Dark.colorContentMuted.png
rename to DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_InverseTheme_Dark.colorContentMuted.png
diff --git a/Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_InverseTheme_Dark.colorContentOnActionDisabled.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_InverseTheme_Dark.colorContentOnActionDisabled.png
similarity index 100%
rename from Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_InverseTheme_Dark.colorContentOnActionDisabled.png
rename to DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_InverseTheme_Dark.colorContentOnActionDisabled.png
diff --git a/Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_InverseTheme_Dark.colorContentOnActionEnabled.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_InverseTheme_Dark.colorContentOnActionEnabled.png
similarity index 100%
rename from Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_InverseTheme_Dark.colorContentOnActionEnabled.png
rename to DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_InverseTheme_Dark.colorContentOnActionEnabled.png
diff --git a/Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_InverseTheme_Dark.colorContentOnActionFocus.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_InverseTheme_Dark.colorContentOnActionFocus.png
similarity index 100%
rename from Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_InverseTheme_Dark.colorContentOnActionFocus.png
rename to DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_InverseTheme_Dark.colorContentOnActionFocus.png
diff --git a/Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_InverseTheme_Dark.colorContentOnActionHighlighted.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_InverseTheme_Dark.colorContentOnActionHighlighted.png
similarity index 100%
rename from Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_InverseTheme_Dark.colorContentOnActionHighlighted.png
rename to DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_InverseTheme_Dark.colorContentOnActionHighlighted.png
diff --git a/Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_InverseTheme_Dark.colorContentOnActionHover.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_InverseTheme_Dark.colorContentOnActionHover.png
similarity index 100%
rename from Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_InverseTheme_Dark.colorContentOnActionHover.png
rename to DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_InverseTheme_Dark.colorContentOnActionHover.png
diff --git a/Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_InverseTheme_Dark.colorContentOnActionLoading.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_InverseTheme_Dark.colorContentOnActionLoading.png
similarity index 100%
rename from Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_InverseTheme_Dark.colorContentOnActionLoading.png
rename to DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_InverseTheme_Dark.colorContentOnActionLoading.png
diff --git a/Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_InverseTheme_Dark.colorContentOnActionPressed.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_InverseTheme_Dark.colorContentOnActionPressed.png
similarity index 100%
rename from Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_InverseTheme_Dark.colorContentOnActionPressed.png
rename to DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_InverseTheme_Dark.colorContentOnActionPressed.png
diff --git a/Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_InverseTheme_Dark.colorContentOnBrandPrimary.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_InverseTheme_Dark.colorContentOnBrandPrimary.png
similarity index 100%
rename from Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_InverseTheme_Dark.colorContentOnBrandPrimary.png
rename to DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_InverseTheme_Dark.colorContentOnBrandPrimary.png
diff --git a/Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_InverseTheme_Dark.colorContentOnOverlayEmphasized.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_InverseTheme_Dark.colorContentOnOverlayEmphasized.png
similarity index 100%
rename from Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_InverseTheme_Dark.colorContentOnOverlayEmphasized.png
rename to DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_InverseTheme_Dark.colorContentOnOverlayEmphasized.png
diff --git a/Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_InverseTheme_Dark.colorContentOnStatusEmphasized.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_InverseTheme_Dark.colorContentOnStatusEmphasized.png
similarity index 100%
rename from Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_InverseTheme_Dark.colorContentOnStatusEmphasized.png
rename to DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_InverseTheme_Dark.colorContentOnStatusEmphasized.png
diff --git a/Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_InverseTheme_Dark.colorContentOnStatusEmphasizedAlt.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_InverseTheme_Dark.colorContentOnStatusEmphasizedAlt.png
similarity index 100%
rename from Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_InverseTheme_Dark.colorContentOnStatusEmphasizedAlt.png
rename to DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_InverseTheme_Dark.colorContentOnStatusEmphasizedAlt.png
diff --git a/Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_InverseTheme_Dark.colorContentOnStatusMuted.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_InverseTheme_Dark.colorContentOnStatusMuted.png
similarity index 100%
rename from Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_InverseTheme_Dark.colorContentOnStatusMuted.png
rename to DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_InverseTheme_Dark.colorContentOnStatusMuted.png
diff --git a/Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_InverseTheme_Dark.colorContentStatusInfo.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_InverseTheme_Dark.colorContentStatusInfo.png
similarity index 100%
rename from Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_InverseTheme_Dark.colorContentStatusInfo.png
rename to DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_InverseTheme_Dark.colorContentStatusInfo.png
diff --git a/Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_InverseTheme_Dark.colorContentStatusNegative.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_InverseTheme_Dark.colorContentStatusNegative.png
similarity index 100%
rename from Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_InverseTheme_Dark.colorContentStatusNegative.png
rename to DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_InverseTheme_Dark.colorContentStatusNegative.png
diff --git a/Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_InverseTheme_Dark.colorContentStatusPositive.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_InverseTheme_Dark.colorContentStatusPositive.png
similarity index 100%
rename from Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_InverseTheme_Dark.colorContentStatusPositive.png
rename to DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_InverseTheme_Dark.colorContentStatusPositive.png
diff --git a/Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_InverseTheme_Dark.colorContentStatusWarning.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_InverseTheme_Dark.colorContentStatusWarning.png
similarity index 100%
rename from Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_InverseTheme_Dark.colorContentStatusWarning.png
rename to DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_InverseTheme_Dark.colorContentStatusWarning.png
diff --git a/Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_InverseTheme_Dark.colorDecorativeAccent1Default.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_InverseTheme_Dark.colorDecorativeAccent1Default.png
similarity index 100%
rename from Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_InverseTheme_Dark.colorDecorativeAccent1Default.png
rename to DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_InverseTheme_Dark.colorDecorativeAccent1Default.png
diff --git a/Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_InverseTheme_Dark.colorDecorativeAccent1Emphasized.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_InverseTheme_Dark.colorDecorativeAccent1Emphasized.png
similarity index 100%
rename from Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_InverseTheme_Dark.colorDecorativeAccent1Emphasized.png
rename to DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_InverseTheme_Dark.colorDecorativeAccent1Emphasized.png
diff --git a/Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_InverseTheme_Dark.colorDecorativeAccent1Muted.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_InverseTheme_Dark.colorDecorativeAccent1Muted.png
similarity index 100%
rename from Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_InverseTheme_Dark.colorDecorativeAccent1Muted.png
rename to DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_InverseTheme_Dark.colorDecorativeAccent1Muted.png
diff --git a/Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_InverseTheme_Dark.colorDecorativeAccent2Default.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_InverseTheme_Dark.colorDecorativeAccent2Default.png
similarity index 100%
rename from Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_InverseTheme_Dark.colorDecorativeAccent2Default.png
rename to DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_InverseTheme_Dark.colorDecorativeAccent2Default.png
diff --git a/Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_InverseTheme_Dark.colorDecorativeAccent2Emphasized.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_InverseTheme_Dark.colorDecorativeAccent2Emphasized.png
similarity index 100%
rename from Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_InverseTheme_Dark.colorDecorativeAccent2Emphasized.png
rename to DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_InverseTheme_Dark.colorDecorativeAccent2Emphasized.png
diff --git a/Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_InverseTheme_Dark.colorDecorativeAccent2Muted.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_InverseTheme_Dark.colorDecorativeAccent2Muted.png
similarity index 100%
rename from Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_InverseTheme_Dark.colorDecorativeAccent2Muted.png
rename to DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_InverseTheme_Dark.colorDecorativeAccent2Muted.png
diff --git a/Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_InverseTheme_Dark.colorDecorativeAccent3Default.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_InverseTheme_Dark.colorDecorativeAccent3Default.png
similarity index 100%
rename from Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_InverseTheme_Dark.colorDecorativeAccent3Default.png
rename to DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_InverseTheme_Dark.colorDecorativeAccent3Default.png
diff --git a/Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_InverseTheme_Dark.colorDecorativeAccent3Emphasized.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_InverseTheme_Dark.colorDecorativeAccent3Emphasized.png
similarity index 100%
rename from Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_InverseTheme_Dark.colorDecorativeAccent3Emphasized.png
rename to DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_InverseTheme_Dark.colorDecorativeAccent3Emphasized.png
diff --git a/Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_InverseTheme_Dark.colorDecorativeAccent3Muted.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_InverseTheme_Dark.colorDecorativeAccent3Muted.png
similarity index 100%
rename from Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_InverseTheme_Dark.colorDecorativeAccent3Muted.png
rename to DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_InverseTheme_Dark.colorDecorativeAccent3Muted.png
diff --git a/Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_InverseTheme_Dark.colorDecorativeAccent4Default.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_InverseTheme_Dark.colorDecorativeAccent4Default.png
similarity index 100%
rename from Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_InverseTheme_Dark.colorDecorativeAccent4Default.png
rename to DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_InverseTheme_Dark.colorDecorativeAccent4Default.png
diff --git a/Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_InverseTheme_Dark.colorDecorativeAccent4Emphasized.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_InverseTheme_Dark.colorDecorativeAccent4Emphasized.png
similarity index 100%
rename from Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_InverseTheme_Dark.colorDecorativeAccent4Emphasized.png
rename to DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_InverseTheme_Dark.colorDecorativeAccent4Emphasized.png
diff --git a/Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_InverseTheme_Dark.colorDecorativeAccent4Muted.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_InverseTheme_Dark.colorDecorativeAccent4Muted.png
similarity index 100%
rename from Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_InverseTheme_Dark.colorDecorativeAccent4Muted.png
rename to DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_InverseTheme_Dark.colorDecorativeAccent4Muted.png
diff --git a/Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_InverseTheme_Dark.colorDecorativeAccent5Default.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_InverseTheme_Dark.colorDecorativeAccent5Default.png
similarity index 100%
rename from Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_InverseTheme_Dark.colorDecorativeAccent5Default.png
rename to DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_InverseTheme_Dark.colorDecorativeAccent5Default.png
diff --git a/Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_InverseTheme_Dark.colorDecorativeAccent5Emphasized.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_InverseTheme_Dark.colorDecorativeAccent5Emphasized.png
similarity index 100%
rename from Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_InverseTheme_Dark.colorDecorativeAccent5Emphasized.png
rename to DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_InverseTheme_Dark.colorDecorativeAccent5Emphasized.png
diff --git a/Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_InverseTheme_Dark.colorDecorativeAccent5Muted.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_InverseTheme_Dark.colorDecorativeAccent5Muted.png
similarity index 100%
rename from Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_InverseTheme_Dark.colorDecorativeAccent5Muted.png
rename to DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_InverseTheme_Dark.colorDecorativeAccent5Muted.png
diff --git a/Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_InverseTheme_Dark.colorDecorativeBrandPrimary.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_InverseTheme_Dark.colorDecorativeBrandPrimary.png
similarity index 100%
rename from Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_InverseTheme_Dark.colorDecorativeBrandPrimary.png
rename to DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_InverseTheme_Dark.colorDecorativeBrandPrimary.png
diff --git a/Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_InverseTheme_Dark.colorDecorativeBrandSecondary.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_InverseTheme_Dark.colorDecorativeBrandSecondary.png
similarity index 100%
rename from Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_InverseTheme_Dark.colorDecorativeBrandSecondary.png
rename to DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_InverseTheme_Dark.colorDecorativeBrandSecondary.png
diff --git a/Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_InverseTheme_Dark.colorDecorativeBrandTertiary.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_InverseTheme_Dark.colorDecorativeBrandTertiary.png
similarity index 100%
rename from Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_InverseTheme_Dark.colorDecorativeBrandTertiary.png
rename to DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_InverseTheme_Dark.colorDecorativeBrandTertiary.png
diff --git a/Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_InverseTheme_Dark.colorDecorativeNeutralDefault.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_InverseTheme_Dark.colorDecorativeNeutralDefault.png
similarity index 100%
rename from Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_InverseTheme_Dark.colorDecorativeNeutralDefault.png
rename to DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_InverseTheme_Dark.colorDecorativeNeutralDefault.png
diff --git a/Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_InverseTheme_Dark.colorDecorativeNeutralEmphasized.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_InverseTheme_Dark.colorDecorativeNeutralEmphasized.png
similarity index 100%
rename from Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_InverseTheme_Dark.colorDecorativeNeutralEmphasized.png
rename to DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_InverseTheme_Dark.colorDecorativeNeutralEmphasized.png
diff --git a/Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_InverseTheme_Dark.colorDecorativeNeutralMuted.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_InverseTheme_Dark.colorDecorativeNeutralMuted.png
similarity index 100%
rename from Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_InverseTheme_Dark.colorDecorativeNeutralMuted.png
rename to DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_InverseTheme_Dark.colorDecorativeNeutralMuted.png
diff --git a/Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_InverseTheme_Dark.colorDecorativeSkinTint100.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_InverseTheme_Dark.colorDecorativeSkinTint100.png
similarity index 100%
rename from Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_InverseTheme_Dark.colorDecorativeSkinTint100.png
rename to DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_InverseTheme_Dark.colorDecorativeSkinTint100.png
diff --git a/Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_InverseTheme_Dark.colorDecorativeSkinTint200.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_InverseTheme_Dark.colorDecorativeSkinTint200.png
similarity index 100%
rename from Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_InverseTheme_Dark.colorDecorativeSkinTint200.png
rename to DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_InverseTheme_Dark.colorDecorativeSkinTint200.png
diff --git a/Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_InverseTheme_Dark.colorDecorativeSkinTint300.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_InverseTheme_Dark.colorDecorativeSkinTint300.png
similarity index 100%
rename from Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_InverseTheme_Dark.colorDecorativeSkinTint300.png
rename to DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_InverseTheme_Dark.colorDecorativeSkinTint300.png
diff --git a/Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_InverseTheme_Dark.colorDecorativeSkinTint400.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_InverseTheme_Dark.colorDecorativeSkinTint400.png
similarity index 100%
rename from Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_InverseTheme_Dark.colorDecorativeSkinTint400.png
rename to DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_InverseTheme_Dark.colorDecorativeSkinTint400.png
diff --git a/Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_InverseTheme_Dark.colorDecorativeSkinTint500.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_InverseTheme_Dark.colorDecorativeSkinTint500.png
similarity index 100%
rename from Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_InverseTheme_Dark.colorDecorativeSkinTint500.png
rename to DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_InverseTheme_Dark.colorDecorativeSkinTint500.png
diff --git a/Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_InverseTheme_Dark.colorDecorativeSkinTint600.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_InverseTheme_Dark.colorDecorativeSkinTint600.png
similarity index 100%
rename from Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_InverseTheme_Dark.colorDecorativeSkinTint600.png
rename to DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_InverseTheme_Dark.colorDecorativeSkinTint600.png
diff --git a/Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_InverseTheme_Dark.colorDecorativeSkinTint700.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_InverseTheme_Dark.colorDecorativeSkinTint700.png
similarity index 100%
rename from Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_InverseTheme_Dark.colorDecorativeSkinTint700.png
rename to DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_InverseTheme_Dark.colorDecorativeSkinTint700.png
diff --git a/Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_InverseTheme_Dark.colorDecorativeSkinTint800.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_InverseTheme_Dark.colorDecorativeSkinTint800.png
similarity index 100%
rename from Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_InverseTheme_Dark.colorDecorativeSkinTint800.png
rename to DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_InverseTheme_Dark.colorDecorativeSkinTint800.png
diff --git a/Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_InverseTheme_Dark.colorDecorativeSkinTint900.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_InverseTheme_Dark.colorDecorativeSkinTint900.png
similarity index 100%
rename from Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_InverseTheme_Dark.colorDecorativeSkinTint900.png
rename to DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_InverseTheme_Dark.colorDecorativeSkinTint900.png
diff --git a/Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_InverseTheme_Dark.colorOpacityLower.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_InverseTheme_Dark.colorOpacityLower.png
similarity index 100%
rename from Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_InverseTheme_Dark.colorOpacityLower.png
rename to DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_InverseTheme_Dark.colorOpacityLower.png
diff --git a/Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_InverseTheme_Dark.colorOpacityLowest.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_InverseTheme_Dark.colorOpacityLowest.png
similarity index 100%
rename from Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_InverseTheme_Dark.colorOpacityLowest.png
rename to DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_InverseTheme_Dark.colorOpacityLowest.png
diff --git a/Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_InverseTheme_Dark.colorOpacityTransparent.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_InverseTheme_Dark.colorOpacityTransparent.png
similarity index 100%
rename from Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_InverseTheme_Dark.colorOpacityTransparent.png
rename to DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_InverseTheme_Dark.colorOpacityTransparent.png
diff --git a/Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_InverseTheme_Dark.colorOverlayDefault.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_InverseTheme_Dark.colorOverlayDefault.png
similarity index 100%
rename from Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_InverseTheme_Dark.colorOverlayDefault.png
rename to DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_InverseTheme_Dark.colorOverlayDefault.png
diff --git a/Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_InverseTheme_Dark.colorOverlayDrag.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_InverseTheme_Dark.colorOverlayDrag.png
similarity index 100%
rename from Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_InverseTheme_Dark.colorOverlayDrag.png
rename to DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_InverseTheme_Dark.colorOverlayDrag.png
diff --git a/Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_InverseTheme_Dark.colorOverlayEmphasized.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_InverseTheme_Dark.colorOverlayEmphasized.png
similarity index 100%
rename from Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_InverseTheme_Dark.colorOverlayEmphasized.png
rename to DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_InverseTheme_Dark.colorOverlayEmphasized.png
diff --git a/Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_InverseTheme_Dark.colorOverlayModal.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_InverseTheme_Dark.colorOverlayModal.png
similarity index 100%
rename from Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_InverseTheme_Dark.colorOverlayModal.png
rename to DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_InverseTheme_Dark.colorOverlayModal.png
diff --git a/Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_InverseTheme_Dark.colorRepositoryAccentDefault.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_InverseTheme_Dark.colorRepositoryAccentDefault.png
similarity index 100%
rename from Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_InverseTheme_Dark.colorRepositoryAccentDefault.png
rename to DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_InverseTheme_Dark.colorRepositoryAccentDefault.png
diff --git a/Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_InverseTheme_Dark.colorRepositoryAccentHighest.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_InverseTheme_Dark.colorRepositoryAccentHighest.png
similarity index 100%
rename from Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_InverseTheme_Dark.colorRepositoryAccentHighest.png
rename to DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_InverseTheme_Dark.colorRepositoryAccentHighest.png
diff --git a/Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_InverseTheme_Dark.colorRepositoryAccentLow.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_InverseTheme_Dark.colorRepositoryAccentLow.png
similarity index 100%
rename from Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_InverseTheme_Dark.colorRepositoryAccentLow.png
rename to DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_InverseTheme_Dark.colorRepositoryAccentLow.png
diff --git a/Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_InverseTheme_Dark.colorRepositoryAccentLowest.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_InverseTheme_Dark.colorRepositoryAccentLowest.png
similarity index 100%
rename from Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_InverseTheme_Dark.colorRepositoryAccentLowest.png
rename to DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_InverseTheme_Dark.colorRepositoryAccentLowest.png
diff --git a/Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_InverseTheme_Dark.colorRepositoryInfoDefault.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_InverseTheme_Dark.colorRepositoryInfoDefault.png
similarity index 100%
rename from Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_InverseTheme_Dark.colorRepositoryInfoDefault.png
rename to DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_InverseTheme_Dark.colorRepositoryInfoDefault.png
diff --git a/Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_InverseTheme_Dark.colorRepositoryInfoHighest.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_InverseTheme_Dark.colorRepositoryInfoHighest.png
similarity index 100%
rename from Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_InverseTheme_Dark.colorRepositoryInfoHighest.png
rename to DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_InverseTheme_Dark.colorRepositoryInfoHighest.png
diff --git a/Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_InverseTheme_Dark.colorRepositoryInfoLow.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_InverseTheme_Dark.colorRepositoryInfoLow.png
similarity index 100%
rename from Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_InverseTheme_Dark.colorRepositoryInfoLow.png
rename to DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_InverseTheme_Dark.colorRepositoryInfoLow.png
diff --git a/Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_InverseTheme_Dark.colorRepositoryInfoLowest.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_InverseTheme_Dark.colorRepositoryInfoLowest.png
similarity index 100%
rename from Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_InverseTheme_Dark.colorRepositoryInfoLowest.png
rename to DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_InverseTheme_Dark.colorRepositoryInfoLowest.png
diff --git a/Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_InverseTheme_Dark.colorRepositoryNegativeDefault.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_InverseTheme_Dark.colorRepositoryNegativeDefault.png
similarity index 100%
rename from Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_InverseTheme_Dark.colorRepositoryNegativeDefault.png
rename to DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_InverseTheme_Dark.colorRepositoryNegativeDefault.png
diff --git a/Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_InverseTheme_Dark.colorRepositoryNegativeHigh.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_InverseTheme_Dark.colorRepositoryNegativeHigh.png
similarity index 100%
rename from Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_InverseTheme_Dark.colorRepositoryNegativeHigh.png
rename to DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_InverseTheme_Dark.colorRepositoryNegativeHigh.png
diff --git a/Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_InverseTheme_Dark.colorRepositoryNegativeHigher.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_InverseTheme_Dark.colorRepositoryNegativeHigher.png
similarity index 100%
rename from Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_InverseTheme_Dark.colorRepositoryNegativeHigher.png
rename to DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_InverseTheme_Dark.colorRepositoryNegativeHigher.png
diff --git a/Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_InverseTheme_Dark.colorRepositoryNegativeHighest.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_InverseTheme_Dark.colorRepositoryNegativeHighest.png
similarity index 100%
rename from Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_InverseTheme_Dark.colorRepositoryNegativeHighest.png
rename to DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_InverseTheme_Dark.colorRepositoryNegativeHighest.png
diff --git a/Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_InverseTheme_Dark.colorRepositoryNegativeLow.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_InverseTheme_Dark.colorRepositoryNegativeLow.png
similarity index 100%
rename from Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_InverseTheme_Dark.colorRepositoryNegativeLow.png
rename to DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_InverseTheme_Dark.colorRepositoryNegativeLow.png
diff --git a/Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_InverseTheme_Dark.colorRepositoryNegativeLower.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_InverseTheme_Dark.colorRepositoryNegativeLower.png
similarity index 100%
rename from Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_InverseTheme_Dark.colorRepositoryNegativeLower.png
rename to DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_InverseTheme_Dark.colorRepositoryNegativeLower.png
diff --git a/Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_InverseTheme_Dark.colorRepositoryNegativeLowest.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_InverseTheme_Dark.colorRepositoryNegativeLowest.png
similarity index 100%
rename from Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_InverseTheme_Dark.colorRepositoryNegativeLowest.png
rename to DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_InverseTheme_Dark.colorRepositoryNegativeLowest.png
diff --git a/Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_InverseTheme_Dark.colorRepositoryNeutralEmphasizedBlack.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_InverseTheme_Dark.colorRepositoryNeutralEmphasizedBlack.png
similarity index 100%
rename from Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_InverseTheme_Dark.colorRepositoryNeutralEmphasizedBlack.png
rename to DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_InverseTheme_Dark.colorRepositoryNeutralEmphasizedBlack.png
diff --git a/Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_InverseTheme_Dark.colorRepositoryNeutralEmphasizedHigh.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_InverseTheme_Dark.colorRepositoryNeutralEmphasizedHigh.png
similarity index 100%
rename from Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_InverseTheme_Dark.colorRepositoryNeutralEmphasizedHigh.png
rename to DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_InverseTheme_Dark.colorRepositoryNeutralEmphasizedHigh.png
diff --git a/Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_InverseTheme_Dark.colorRepositoryNeutralEmphasizedHigher.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_InverseTheme_Dark.colorRepositoryNeutralEmphasizedHigher.png
similarity index 100%
rename from Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_InverseTheme_Dark.colorRepositoryNeutralEmphasizedHigher.png
rename to DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_InverseTheme_Dark.colorRepositoryNeutralEmphasizedHigher.png
diff --git a/Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_InverseTheme_Dark.colorRepositoryNeutralEmphasizedHighest.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_InverseTheme_Dark.colorRepositoryNeutralEmphasizedHighest.png
similarity index 100%
rename from Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_InverseTheme_Dark.colorRepositoryNeutralEmphasizedHighest.png
rename to DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_InverseTheme_Dark.colorRepositoryNeutralEmphasizedHighest.png
diff --git a/Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_InverseTheme_Dark.colorRepositoryNeutralEmphasizedMedium.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_InverseTheme_Dark.colorRepositoryNeutralEmphasizedMedium.png
similarity index 100%
rename from Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_InverseTheme_Dark.colorRepositoryNeutralEmphasizedMedium.png
rename to DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_InverseTheme_Dark.colorRepositoryNeutralEmphasizedMedium.png
diff --git a/Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_InverseTheme_Dark.colorRepositoryNeutralMutedLower.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_InverseTheme_Dark.colorRepositoryNeutralMutedLower.png
similarity index 100%
rename from Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_InverseTheme_Dark.colorRepositoryNeutralMutedLower.png
rename to DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_InverseTheme_Dark.colorRepositoryNeutralMutedLower.png
diff --git a/Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_InverseTheme_Dark.colorRepositoryNeutralMutedLowest.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_InverseTheme_Dark.colorRepositoryNeutralMutedLowest.png
similarity index 100%
rename from Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_InverseTheme_Dark.colorRepositoryNeutralMutedLowest.png
rename to DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_InverseTheme_Dark.colorRepositoryNeutralMutedLowest.png
diff --git a/Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_InverseTheme_Dark.colorRepositoryNeutralMutedWhite.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_InverseTheme_Dark.colorRepositoryNeutralMutedWhite.png
similarity index 100%
rename from Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_InverseTheme_Dark.colorRepositoryNeutralMutedWhite.png
rename to DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_InverseTheme_Dark.colorRepositoryNeutralMutedWhite.png
diff --git a/Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_InverseTheme_Dark.colorRepositoryOpacityBlackHigher.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_InverseTheme_Dark.colorRepositoryOpacityBlackHigher.png
similarity index 100%
rename from Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_InverseTheme_Dark.colorRepositoryOpacityBlackHigher.png
rename to DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_InverseTheme_Dark.colorRepositoryOpacityBlackHigher.png
diff --git a/Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_InverseTheme_Dark.colorRepositoryOpacityBlackHighest.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_InverseTheme_Dark.colorRepositoryOpacityBlackHighest.png
similarity index 100%
rename from Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_InverseTheme_Dark.colorRepositoryOpacityBlackHighest.png
rename to DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_InverseTheme_Dark.colorRepositoryOpacityBlackHighest.png
diff --git a/Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_InverseTheme_Dark.colorRepositoryOpacityBlackLow.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_InverseTheme_Dark.colorRepositoryOpacityBlackLow.png
similarity index 100%
rename from Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_InverseTheme_Dark.colorRepositoryOpacityBlackLow.png
rename to DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_InverseTheme_Dark.colorRepositoryOpacityBlackLow.png
diff --git a/Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_InverseTheme_Dark.colorRepositoryOpacityBlackLower.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_InverseTheme_Dark.colorRepositoryOpacityBlackLower.png
similarity index 100%
rename from Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_InverseTheme_Dark.colorRepositoryOpacityBlackLower.png
rename to DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_InverseTheme_Dark.colorRepositoryOpacityBlackLower.png
diff --git a/Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_InverseTheme_Dark.colorRepositoryOpacityBlackLowest.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_InverseTheme_Dark.colorRepositoryOpacityBlackLowest.png
similarity index 100%
rename from Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_InverseTheme_Dark.colorRepositoryOpacityBlackLowest.png
rename to DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_InverseTheme_Dark.colorRepositoryOpacityBlackLowest.png
diff --git a/Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_InverseTheme_Dark.colorRepositoryOpacityBlackMedium.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_InverseTheme_Dark.colorRepositoryOpacityBlackMedium.png
similarity index 100%
rename from Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_InverseTheme_Dark.colorRepositoryOpacityBlackMedium.png
rename to DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_InverseTheme_Dark.colorRepositoryOpacityBlackMedium.png
diff --git a/Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_InverseTheme_Dark.colorRepositoryOpacityBlackTransparent.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_InverseTheme_Dark.colorRepositoryOpacityBlackTransparent.png
similarity index 100%
rename from Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_InverseTheme_Dark.colorRepositoryOpacityBlackTransparent.png
rename to DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_InverseTheme_Dark.colorRepositoryOpacityBlackTransparent.png
diff --git a/Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_InverseTheme_Dark.colorRepositoryOpacityInfo.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_InverseTheme_Dark.colorRepositoryOpacityInfo.png
similarity index 100%
rename from Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_InverseTheme_Dark.colorRepositoryOpacityInfo.png
rename to DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_InverseTheme_Dark.colorRepositoryOpacityInfo.png
diff --git a/Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_InverseTheme_Dark.colorRepositoryOpacityNegative.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_InverseTheme_Dark.colorRepositoryOpacityNegative.png
similarity index 100%
rename from Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_InverseTheme_Dark.colorRepositoryOpacityNegative.png
rename to DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_InverseTheme_Dark.colorRepositoryOpacityNegative.png
diff --git a/Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_InverseTheme_Dark.colorRepositoryOpacityPositive.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_InverseTheme_Dark.colorRepositoryOpacityPositive.png
similarity index 100%
rename from Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_InverseTheme_Dark.colorRepositoryOpacityPositive.png
rename to DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_InverseTheme_Dark.colorRepositoryOpacityPositive.png
diff --git a/Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_InverseTheme_Dark.colorRepositoryOpacityWarning.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_InverseTheme_Dark.colorRepositoryOpacityWarning.png
similarity index 100%
rename from Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_InverseTheme_Dark.colorRepositoryOpacityWarning.png
rename to DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_InverseTheme_Dark.colorRepositoryOpacityWarning.png
diff --git a/Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_InverseTheme_Dark.colorRepositoryOpacityWhiteHigh.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_InverseTheme_Dark.colorRepositoryOpacityWhiteHigh.png
similarity index 100%
rename from Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_InverseTheme_Dark.colorRepositoryOpacityWhiteHigh.png
rename to DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_InverseTheme_Dark.colorRepositoryOpacityWhiteHigh.png
diff --git a/Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_InverseTheme_Dark.colorRepositoryOpacityWhiteHigher.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_InverseTheme_Dark.colorRepositoryOpacityWhiteHigher.png
similarity index 100%
rename from Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_InverseTheme_Dark.colorRepositoryOpacityWhiteHigher.png
rename to DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_InverseTheme_Dark.colorRepositoryOpacityWhiteHigher.png
diff --git a/Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_InverseTheme_Dark.colorRepositoryOpacityWhiteHighest.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_InverseTheme_Dark.colorRepositoryOpacityWhiteHighest.png
similarity index 100%
rename from Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_InverseTheme_Dark.colorRepositoryOpacityWhiteHighest.png
rename to DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_InverseTheme_Dark.colorRepositoryOpacityWhiteHighest.png
diff --git a/Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_InverseTheme_Dark.colorRepositoryOpacityWhiteLow.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_InverseTheme_Dark.colorRepositoryOpacityWhiteLow.png
similarity index 100%
rename from Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_InverseTheme_Dark.colorRepositoryOpacityWhiteLow.png
rename to DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_InverseTheme_Dark.colorRepositoryOpacityWhiteLow.png
diff --git a/Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_InverseTheme_Dark.colorRepositoryOpacityWhiteLower.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_InverseTheme_Dark.colorRepositoryOpacityWhiteLower.png
similarity index 100%
rename from Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_InverseTheme_Dark.colorRepositoryOpacityWhiteLower.png
rename to DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_InverseTheme_Dark.colorRepositoryOpacityWhiteLower.png
diff --git a/Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_InverseTheme_Dark.colorRepositoryOpacityWhiteLowest.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_InverseTheme_Dark.colorRepositoryOpacityWhiteLowest.png
similarity index 100%
rename from Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_InverseTheme_Dark.colorRepositoryOpacityWhiteLowest.png
rename to DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_InverseTheme_Dark.colorRepositoryOpacityWhiteLowest.png
diff --git a/Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_InverseTheme_Dark.colorRepositoryOpacityWhiteTransparent.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_InverseTheme_Dark.colorRepositoryOpacityWhiteTransparent.png
similarity index 100%
rename from Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_InverseTheme_Dark.colorRepositoryOpacityWhiteTransparent.png
rename to DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_InverseTheme_Dark.colorRepositoryOpacityWhiteTransparent.png
diff --git a/Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_InverseTheme_Dark.colorRepositoryPositiveDefault.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_InverseTheme_Dark.colorRepositoryPositiveDefault.png
similarity index 100%
rename from Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_InverseTheme_Dark.colorRepositoryPositiveDefault.png
rename to DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_InverseTheme_Dark.colorRepositoryPositiveDefault.png
diff --git a/Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_InverseTheme_Dark.colorRepositoryPositiveHighest.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_InverseTheme_Dark.colorRepositoryPositiveHighest.png
similarity index 100%
rename from Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_InverseTheme_Dark.colorRepositoryPositiveHighest.png
rename to DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_InverseTheme_Dark.colorRepositoryPositiveHighest.png
diff --git a/Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_InverseTheme_Dark.colorRepositoryPositiveLow.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_InverseTheme_Dark.colorRepositoryPositiveLow.png
similarity index 100%
rename from Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_InverseTheme_Dark.colorRepositoryPositiveLow.png
rename to DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_InverseTheme_Dark.colorRepositoryPositiveLow.png
diff --git a/Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_InverseTheme_Dark.colorRepositoryPositiveLowest.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_InverseTheme_Dark.colorRepositoryPositiveLowest.png
similarity index 100%
rename from Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_InverseTheme_Dark.colorRepositoryPositiveLowest.png
rename to DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_InverseTheme_Dark.colorRepositoryPositiveLowest.png
diff --git a/Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_InverseTheme_Dark.colorRepositoryPrimaryDefault.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_InverseTheme_Dark.colorRepositoryPrimaryDefault.png
similarity index 100%
rename from Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_InverseTheme_Dark.colorRepositoryPrimaryDefault.png
rename to DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_InverseTheme_Dark.colorRepositoryPrimaryDefault.png
diff --git a/Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_InverseTheme_Dark.colorRepositoryPrimaryLow.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_InverseTheme_Dark.colorRepositoryPrimaryLow.png
similarity index 100%
rename from Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_InverseTheme_Dark.colorRepositoryPrimaryLow.png
rename to DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_InverseTheme_Dark.colorRepositoryPrimaryLow.png
diff --git a/Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_InverseTheme_Dark.colorRepositoryWarningDefault.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_InverseTheme_Dark.colorRepositoryWarningDefault.png
similarity index 100%
rename from Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_InverseTheme_Dark.colorRepositoryWarningDefault.png
rename to DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_InverseTheme_Dark.colorRepositoryWarningDefault.png
diff --git a/Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_InverseTheme_Dark.colorRepositoryWarningHighest.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_InverseTheme_Dark.colorRepositoryWarningHighest.png
similarity index 100%
rename from Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_InverseTheme_Dark.colorRepositoryWarningHighest.png
rename to DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_InverseTheme_Dark.colorRepositoryWarningHighest.png
diff --git a/Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_InverseTheme_Dark.colorRepositoryWarningLow.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_InverseTheme_Dark.colorRepositoryWarningLow.png
similarity index 100%
rename from Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_InverseTheme_Dark.colorRepositoryWarningLow.png
rename to DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_InverseTheme_Dark.colorRepositoryWarningLow.png
diff --git a/Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_InverseTheme_Dark.colorRepositoryWarningLowest.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_InverseTheme_Dark.colorRepositoryWarningLowest.png
similarity index 100%
rename from Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_InverseTheme_Dark.colorRepositoryWarningLowest.png
rename to DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_InverseTheme_Dark.colorRepositoryWarningLowest.png
diff --git a/Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_InverseTheme_Dark.colorSurfaceBrandPrimary.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_InverseTheme_Dark.colorSurfaceBrandPrimary.png
similarity index 100%
rename from Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_InverseTheme_Dark.colorSurfaceBrandPrimary.png
rename to DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_InverseTheme_Dark.colorSurfaceBrandPrimary.png
diff --git a/Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_InverseTheme_Dark.colorSurfaceStatusAccentEmphasized.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_InverseTheme_Dark.colorSurfaceStatusAccentEmphasized.png
similarity index 100%
rename from Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_InverseTheme_Dark.colorSurfaceStatusAccentEmphasized.png
rename to DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_InverseTheme_Dark.colorSurfaceStatusAccentEmphasized.png
diff --git a/Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_InverseTheme_Dark.colorSurfaceStatusAccentMuted.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_InverseTheme_Dark.colorSurfaceStatusAccentMuted.png
similarity index 100%
rename from Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_InverseTheme_Dark.colorSurfaceStatusAccentMuted.png
rename to DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_InverseTheme_Dark.colorSurfaceStatusAccentMuted.png
diff --git a/Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_InverseTheme_Dark.colorSurfaceStatusInfoEmphasized.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_InverseTheme_Dark.colorSurfaceStatusInfoEmphasized.png
similarity index 100%
rename from Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_InverseTheme_Dark.colorSurfaceStatusInfoEmphasized.png
rename to DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_InverseTheme_Dark.colorSurfaceStatusInfoEmphasized.png
diff --git a/Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_InverseTheme_Dark.colorSurfaceStatusInfoMuted.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_InverseTheme_Dark.colorSurfaceStatusInfoMuted.png
similarity index 100%
rename from Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_InverseTheme_Dark.colorSurfaceStatusInfoMuted.png
rename to DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_InverseTheme_Dark.colorSurfaceStatusInfoMuted.png
diff --git a/Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_InverseTheme_Dark.colorSurfaceStatusNegativeEmphasized.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_InverseTheme_Dark.colorSurfaceStatusNegativeEmphasized.png
similarity index 100%
rename from Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_InverseTheme_Dark.colorSurfaceStatusNegativeEmphasized.png
rename to DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_InverseTheme_Dark.colorSurfaceStatusNegativeEmphasized.png
diff --git a/Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_InverseTheme_Dark.colorSurfaceStatusNegativeMuted.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_InverseTheme_Dark.colorSurfaceStatusNegativeMuted.png
similarity index 100%
rename from Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_InverseTheme_Dark.colorSurfaceStatusNegativeMuted.png
rename to DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_InverseTheme_Dark.colorSurfaceStatusNegativeMuted.png
diff --git a/Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_InverseTheme_Dark.colorSurfaceStatusNeutralEmphasized.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_InverseTheme_Dark.colorSurfaceStatusNeutralEmphasized.png
similarity index 100%
rename from Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_InverseTheme_Dark.colorSurfaceStatusNeutralEmphasized.png
rename to DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_InverseTheme_Dark.colorSurfaceStatusNeutralEmphasized.png
diff --git a/Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_InverseTheme_Dark.colorSurfaceStatusNeutralMuted.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_InverseTheme_Dark.colorSurfaceStatusNeutralMuted.png
similarity index 100%
rename from Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_InverseTheme_Dark.colorSurfaceStatusNeutralMuted.png
rename to DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_InverseTheme_Dark.colorSurfaceStatusNeutralMuted.png
diff --git a/Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_InverseTheme_Dark.colorSurfaceStatusPositiveEmphasized.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_InverseTheme_Dark.colorSurfaceStatusPositiveEmphasized.png
similarity index 100%
rename from Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_InverseTheme_Dark.colorSurfaceStatusPositiveEmphasized.png
rename to DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_InverseTheme_Dark.colorSurfaceStatusPositiveEmphasized.png
diff --git a/Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_InverseTheme_Dark.colorSurfaceStatusPositiveMuted.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_InverseTheme_Dark.colorSurfaceStatusPositiveMuted.png
similarity index 100%
rename from Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_InverseTheme_Dark.colorSurfaceStatusPositiveMuted.png
rename to DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_InverseTheme_Dark.colorSurfaceStatusPositiveMuted.png
diff --git a/Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_InverseTheme_Dark.colorSurfaceStatusWarningEmphasized.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_InverseTheme_Dark.colorSurfaceStatusWarningEmphasized.png
similarity index 100%
rename from Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_InverseTheme_Dark.colorSurfaceStatusWarningEmphasized.png
rename to DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_InverseTheme_Dark.colorSurfaceStatusWarningEmphasized.png
diff --git a/Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_InverseTheme_Dark.colorSurfaceStatusWarningMuted.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_InverseTheme_Dark.colorSurfaceStatusWarningMuted.png
similarity index 100%
rename from Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_InverseTheme_Dark.colorSurfaceStatusWarningMuted.png
rename to DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_InverseTheme_Dark.colorSurfaceStatusWarningMuted.png
diff --git a/Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_InverseTheme_Light.colorActionDisabled.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_InverseTheme_Light.colorActionDisabled.png
similarity index 100%
rename from Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_InverseTheme_Light.colorActionDisabled.png
rename to DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_InverseTheme_Light.colorActionDisabled.png
diff --git a/Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_InverseTheme_Light.colorActionEnabled.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_InverseTheme_Light.colorActionEnabled.png
similarity index 100%
rename from Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_InverseTheme_Light.colorActionEnabled.png
rename to DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_InverseTheme_Light.colorActionEnabled.png
diff --git a/Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_InverseTheme_Light.colorActionFocus.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_InverseTheme_Light.colorActionFocus.png
similarity index 100%
rename from Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_InverseTheme_Light.colorActionFocus.png
rename to DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_InverseTheme_Light.colorActionFocus.png
diff --git a/Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_InverseTheme_Light.colorActionHighlighted.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_InverseTheme_Light.colorActionHighlighted.png
similarity index 100%
rename from Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_InverseTheme_Light.colorActionHighlighted.png
rename to DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_InverseTheme_Light.colorActionHighlighted.png
diff --git a/Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_InverseTheme_Light.colorActionHover.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_InverseTheme_Light.colorActionHover.png
similarity index 100%
rename from Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_InverseTheme_Light.colorActionHover.png
rename to DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_InverseTheme_Light.colorActionHover.png
diff --git a/Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_InverseTheme_Light.colorActionLoading.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_InverseTheme_Light.colorActionLoading.png
similarity index 100%
rename from Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_InverseTheme_Light.colorActionLoading.png
rename to DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_InverseTheme_Light.colorActionLoading.png
diff --git a/Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_InverseTheme_Light.colorActionNegativeEnabled.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_InverseTheme_Light.colorActionNegativeEnabled.png
similarity index 100%
rename from Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_InverseTheme_Light.colorActionNegativeEnabled.png
rename to DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_InverseTheme_Light.colorActionNegativeEnabled.png
diff --git a/Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_InverseTheme_Light.colorActionNegativeFocus.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_InverseTheme_Light.colorActionNegativeFocus.png
similarity index 100%
rename from Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_InverseTheme_Light.colorActionNegativeFocus.png
rename to DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_InverseTheme_Light.colorActionNegativeFocus.png
diff --git a/Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_InverseTheme_Light.colorActionNegativeHover.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_InverseTheme_Light.colorActionNegativeHover.png
similarity index 100%
rename from Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_InverseTheme_Light.colorActionNegativeHover.png
rename to DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_InverseTheme_Light.colorActionNegativeHover.png
diff --git a/Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_InverseTheme_Light.colorActionNegativeLoading.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_InverseTheme_Light.colorActionNegativeLoading.png
similarity index 100%
rename from Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_InverseTheme_Light.colorActionNegativeLoading.png
rename to DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_InverseTheme_Light.colorActionNegativeLoading.png
diff --git a/Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_InverseTheme_Light.colorActionNegativePressed.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_InverseTheme_Light.colorActionNegativePressed.png
similarity index 100%
rename from Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_InverseTheme_Light.colorActionNegativePressed.png
rename to DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_InverseTheme_Light.colorActionNegativePressed.png
diff --git a/Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_InverseTheme_Light.colorActionPressed.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_InverseTheme_Light.colorActionPressed.png
similarity index 100%
rename from Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_InverseTheme_Light.colorActionPressed.png
rename to DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_InverseTheme_Light.colorActionPressed.png
diff --git a/Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_InverseTheme_Light.colorActionSelected.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_InverseTheme_Light.colorActionSelected.png
similarity index 100%
rename from Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_InverseTheme_Light.colorActionSelected.png
rename to DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_InverseTheme_Light.colorActionSelected.png
diff --git a/Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_InverseTheme_Light.colorActionSupportEnabled.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_InverseTheme_Light.colorActionSupportEnabled.png
similarity index 100%
rename from Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_InverseTheme_Light.colorActionSupportEnabled.png
rename to DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_InverseTheme_Light.colorActionSupportEnabled.png
diff --git a/Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_InverseTheme_Light.colorActionSupportFocus.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_InverseTheme_Light.colorActionSupportFocus.png
similarity index 100%
rename from Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_InverseTheme_Light.colorActionSupportFocus.png
rename to DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_InverseTheme_Light.colorActionSupportFocus.png
diff --git a/Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_InverseTheme_Light.colorActionSupportHover.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_InverseTheme_Light.colorActionSupportHover.png
similarity index 100%
rename from Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_InverseTheme_Light.colorActionSupportHover.png
rename to DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_InverseTheme_Light.colorActionSupportHover.png
diff --git a/Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_InverseTheme_Light.colorActionSupportLoading.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_InverseTheme_Light.colorActionSupportLoading.png
similarity index 100%
rename from Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_InverseTheme_Light.colorActionSupportLoading.png
rename to DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_InverseTheme_Light.colorActionSupportLoading.png
diff --git a/Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_InverseTheme_Light.colorActionSupportPressed.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_InverseTheme_Light.colorActionSupportPressed.png
similarity index 100%
rename from Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_InverseTheme_Light.colorActionSupportPressed.png
rename to DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_InverseTheme_Light.colorActionSupportPressed.png
diff --git a/Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_InverseTheme_Light.colorActionVisited.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_InverseTheme_Light.colorActionVisited.png
similarity index 100%
rename from Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_InverseTheme_Light.colorActionVisited.png
rename to DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_InverseTheme_Light.colorActionVisited.png
diff --git a/Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_InverseTheme_Light.colorAlwaysBlack.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_InverseTheme_Light.colorAlwaysBlack.png
similarity index 100%
rename from Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_InverseTheme_Light.colorAlwaysBlack.png
rename to DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_InverseTheme_Light.colorAlwaysBlack.png
diff --git a/Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_InverseTheme_Light.colorAlwaysOnBlack.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_InverseTheme_Light.colorAlwaysOnBlack.png
similarity index 100%
rename from Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_InverseTheme_Light.colorAlwaysOnBlack.png
rename to DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_InverseTheme_Light.colorAlwaysOnBlack.png
diff --git a/Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_InverseTheme_Light.colorAlwaysOnWhite.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_InverseTheme_Light.colorAlwaysOnWhite.png
similarity index 100%
rename from Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_InverseTheme_Light.colorAlwaysOnWhite.png
rename to DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_InverseTheme_Light.colorAlwaysOnWhite.png
diff --git a/Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_InverseTheme_Light.colorAlwaysWhite.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_InverseTheme_Light.colorAlwaysWhite.png
similarity index 100%
rename from Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_InverseTheme_Light.colorAlwaysWhite.png
rename to DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_InverseTheme_Light.colorAlwaysWhite.png
diff --git a/Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_InverseTheme_Light.colorBgEmphasized.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_InverseTheme_Light.colorBgEmphasized.png
similarity index 100%
rename from Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_InverseTheme_Light.colorBgEmphasized.png
rename to DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_InverseTheme_Light.colorBgEmphasized.png
diff --git a/Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_InverseTheme_Light.colorBgPrimary.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_InverseTheme_Light.colorBgPrimary.png
similarity index 100%
rename from Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_InverseTheme_Light.colorBgPrimary.png
rename to DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_InverseTheme_Light.colorBgPrimary.png
diff --git a/Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_InverseTheme_Light.colorBgSecondary.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_InverseTheme_Light.colorBgSecondary.png
similarity index 100%
rename from Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_InverseTheme_Light.colorBgSecondary.png
rename to DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_InverseTheme_Light.colorBgSecondary.png
diff --git a/Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_InverseTheme_Light.colorBgTertiary.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_InverseTheme_Light.colorBgTertiary.png
similarity index 100%
rename from Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_InverseTheme_Light.colorBgTertiary.png
rename to DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_InverseTheme_Light.colorBgTertiary.png
diff --git a/Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_InverseTheme_Light.colorBorderBrandPrimary.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_InverseTheme_Light.colorBorderBrandPrimary.png
similarity index 100%
rename from Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_InverseTheme_Light.colorBorderBrandPrimary.png
rename to DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_InverseTheme_Light.colorBorderBrandPrimary.png
diff --git a/Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_InverseTheme_Light.colorBorderDefault.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_InverseTheme_Light.colorBorderDefault.png
similarity index 100%
rename from Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_InverseTheme_Light.colorBorderDefault.png
rename to DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_InverseTheme_Light.colorBorderDefault.png
diff --git a/Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_InverseTheme_Light.colorBorderEmphasized.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_InverseTheme_Light.colorBorderEmphasized.png
similarity index 100%
rename from Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_InverseTheme_Light.colorBorderEmphasized.png
rename to DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_InverseTheme_Light.colorBorderEmphasized.png
diff --git a/Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_InverseTheme_Light.colorBorderFocus.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_InverseTheme_Light.colorBorderFocus.png
similarity index 100%
rename from Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_InverseTheme_Light.colorBorderFocus.png
rename to DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_InverseTheme_Light.colorBorderFocus.png
diff --git a/Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_InverseTheme_Light.colorBorderFocusInset.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_InverseTheme_Light.colorBorderFocusInset.png
similarity index 100%
rename from Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_InverseTheme_Light.colorBorderFocusInset.png
rename to DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_InverseTheme_Light.colorBorderFocusInset.png
diff --git a/Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_InverseTheme_Light.colorBorderOnBrandPrimary.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_InverseTheme_Light.colorBorderOnBrandPrimary.png
similarity index 100%
rename from Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_InverseTheme_Light.colorBorderOnBrandPrimary.png
rename to DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_InverseTheme_Light.colorBorderOnBrandPrimary.png
diff --git a/Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_InverseTheme_Light.colorChartBorder.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_InverseTheme_Light.colorChartBorder.png
similarity index 100%
rename from Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_InverseTheme_Light.colorChartBorder.png
rename to DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_InverseTheme_Light.colorChartBorder.png
diff --git a/Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_InverseTheme_Light.colorChartBorderContrast.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_InverseTheme_Light.colorChartBorderContrast.png
similarity index 100%
rename from Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_InverseTheme_Light.colorChartBorderContrast.png
rename to DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_InverseTheme_Light.colorChartBorderContrast.png
diff --git a/Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_InverseTheme_Light.colorChartCategoricalTier1.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_InverseTheme_Light.colorChartCategoricalTier1.png
similarity index 100%
rename from Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_InverseTheme_Light.colorChartCategoricalTier1.png
rename to DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_InverseTheme_Light.colorChartCategoricalTier1.png
diff --git a/Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_InverseTheme_Light.colorChartCategoricalTier10.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_InverseTheme_Light.colorChartCategoricalTier10.png
similarity index 100%
rename from Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_InverseTheme_Light.colorChartCategoricalTier10.png
rename to DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_InverseTheme_Light.colorChartCategoricalTier10.png
diff --git a/Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_InverseTheme_Light.colorChartCategoricalTier2.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_InverseTheme_Light.colorChartCategoricalTier2.png
similarity index 100%
rename from Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_InverseTheme_Light.colorChartCategoricalTier2.png
rename to DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_InverseTheme_Light.colorChartCategoricalTier2.png
diff --git a/Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_InverseTheme_Light.colorChartCategoricalTier3.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_InverseTheme_Light.colorChartCategoricalTier3.png
similarity index 100%
rename from Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_InverseTheme_Light.colorChartCategoricalTier3.png
rename to DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_InverseTheme_Light.colorChartCategoricalTier3.png
diff --git a/Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_InverseTheme_Light.colorChartCategoricalTier4.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_InverseTheme_Light.colorChartCategoricalTier4.png
similarity index 100%
rename from Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_InverseTheme_Light.colorChartCategoricalTier4.png
rename to DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_InverseTheme_Light.colorChartCategoricalTier4.png
diff --git a/Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_InverseTheme_Light.colorChartCategoricalTier5.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_InverseTheme_Light.colorChartCategoricalTier5.png
similarity index 100%
rename from Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_InverseTheme_Light.colorChartCategoricalTier5.png
rename to DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_InverseTheme_Light.colorChartCategoricalTier5.png
diff --git a/Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_InverseTheme_Light.colorChartCategoricalTier6.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_InverseTheme_Light.colorChartCategoricalTier6.png
similarity index 100%
rename from Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_InverseTheme_Light.colorChartCategoricalTier6.png
rename to DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_InverseTheme_Light.colorChartCategoricalTier6.png
diff --git a/Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_InverseTheme_Light.colorChartCategoricalTier7.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_InverseTheme_Light.colorChartCategoricalTier7.png
similarity index 100%
rename from Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_InverseTheme_Light.colorChartCategoricalTier7.png
rename to DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_InverseTheme_Light.colorChartCategoricalTier7.png
diff --git a/Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_InverseTheme_Light.colorChartCategoricalTier8.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_InverseTheme_Light.colorChartCategoricalTier8.png
similarity index 100%
rename from Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_InverseTheme_Light.colorChartCategoricalTier8.png
rename to DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_InverseTheme_Light.colorChartCategoricalTier8.png
diff --git a/Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_InverseTheme_Light.colorChartCategoricalTier9.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_InverseTheme_Light.colorChartCategoricalTier9.png
similarity index 100%
rename from Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_InverseTheme_Light.colorChartCategoricalTier9.png
rename to DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_InverseTheme_Light.colorChartCategoricalTier9.png
diff --git a/Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_InverseTheme_Light.colorChartFunctionalInformation.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_InverseTheme_Light.colorChartFunctionalInformation.png
similarity index 100%
rename from Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_InverseTheme_Light.colorChartFunctionalInformation.png
rename to DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_InverseTheme_Light.colorChartFunctionalInformation.png
diff --git a/Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_InverseTheme_Light.colorChartFunctionalNegative.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_InverseTheme_Light.colorChartFunctionalNegative.png
similarity index 100%
rename from Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_InverseTheme_Light.colorChartFunctionalNegative.png
rename to DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_InverseTheme_Light.colorChartFunctionalNegative.png
diff --git a/Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_InverseTheme_Light.colorChartFunctionalPositive.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_InverseTheme_Light.colorChartFunctionalPositive.png
similarity index 100%
rename from Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_InverseTheme_Light.colorChartFunctionalPositive.png
rename to DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_InverseTheme_Light.colorChartFunctionalPositive.png
diff --git a/Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_InverseTheme_Light.colorChartFunctionalWarning.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_InverseTheme_Light.colorChartFunctionalWarning.png
similarity index 100%
rename from Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_InverseTheme_Light.colorChartFunctionalWarning.png
rename to DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_InverseTheme_Light.colorChartFunctionalWarning.png
diff --git a/Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_InverseTheme_Light.colorChartGridlines.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_InverseTheme_Light.colorChartGridlines.png
similarity index 100%
rename from Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_InverseTheme_Light.colorChartGridlines.png
rename to DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_InverseTheme_Light.colorChartGridlines.png
diff --git a/Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_InverseTheme_Light.colorChartHighlight.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_InverseTheme_Light.colorChartHighlight.png
similarity index 100%
rename from Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_InverseTheme_Light.colorChartHighlight.png
rename to DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_InverseTheme_Light.colorChartHighlight.png
diff --git a/Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_InverseTheme_Light.colorChartNeutral.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_InverseTheme_Light.colorChartNeutral.png
similarity index 100%
rename from Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_InverseTheme_Light.colorChartNeutral.png
rename to DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_InverseTheme_Light.colorChartNeutral.png
diff --git a/Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_InverseTheme_Light.colorContentBrandPrimary.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_InverseTheme_Light.colorContentBrandPrimary.png
similarity index 100%
rename from Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_InverseTheme_Light.colorContentBrandPrimary.png
rename to DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_InverseTheme_Light.colorContentBrandPrimary.png
diff --git a/Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_InverseTheme_Light.colorContentDefault.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_InverseTheme_Light.colorContentDefault.png
similarity index 100%
rename from Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_InverseTheme_Light.colorContentDefault.png
rename to DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_InverseTheme_Light.colorContentDefault.png
diff --git a/Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_InverseTheme_Light.colorContentDisabled.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_InverseTheme_Light.colorContentDisabled.png
similarity index 100%
rename from Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_InverseTheme_Light.colorContentDisabled.png
rename to DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_InverseTheme_Light.colorContentDisabled.png
diff --git a/Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_InverseTheme_Light.colorContentMuted.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_InverseTheme_Light.colorContentMuted.png
similarity index 100%
rename from Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_InverseTheme_Light.colorContentMuted.png
rename to DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_InverseTheme_Light.colorContentMuted.png
diff --git a/Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_InverseTheme_Light.colorContentOnActionDisabled.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_InverseTheme_Light.colorContentOnActionDisabled.png
similarity index 100%
rename from Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_InverseTheme_Light.colorContentOnActionDisabled.png
rename to DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_InverseTheme_Light.colorContentOnActionDisabled.png
diff --git a/Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_InverseTheme_Light.colorContentOnActionEnabled.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_InverseTheme_Light.colorContentOnActionEnabled.png
similarity index 100%
rename from Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_InverseTheme_Light.colorContentOnActionEnabled.png
rename to DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_InverseTheme_Light.colorContentOnActionEnabled.png
diff --git a/Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_InverseTheme_Light.colorContentOnActionFocus.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_InverseTheme_Light.colorContentOnActionFocus.png
similarity index 100%
rename from Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_InverseTheme_Light.colorContentOnActionFocus.png
rename to DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_InverseTheme_Light.colorContentOnActionFocus.png
diff --git a/Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_InverseTheme_Light.colorContentOnActionHighlighted.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_InverseTheme_Light.colorContentOnActionHighlighted.png
similarity index 100%
rename from Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_InverseTheme_Light.colorContentOnActionHighlighted.png
rename to DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_InverseTheme_Light.colorContentOnActionHighlighted.png
diff --git a/Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_InverseTheme_Light.colorContentOnActionHover.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_InverseTheme_Light.colorContentOnActionHover.png
similarity index 100%
rename from Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_InverseTheme_Light.colorContentOnActionHover.png
rename to DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_InverseTheme_Light.colorContentOnActionHover.png
diff --git a/Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_InverseTheme_Light.colorContentOnActionLoading.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_InverseTheme_Light.colorContentOnActionLoading.png
similarity index 100%
rename from Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_InverseTheme_Light.colorContentOnActionLoading.png
rename to DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_InverseTheme_Light.colorContentOnActionLoading.png
diff --git a/Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_InverseTheme_Light.colorContentOnActionPressed.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_InverseTheme_Light.colorContentOnActionPressed.png
similarity index 100%
rename from Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_InverseTheme_Light.colorContentOnActionPressed.png
rename to DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_InverseTheme_Light.colorContentOnActionPressed.png
diff --git a/Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_InverseTheme_Light.colorContentOnBrandPrimary.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_InverseTheme_Light.colorContentOnBrandPrimary.png
similarity index 100%
rename from Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_InverseTheme_Light.colorContentOnBrandPrimary.png
rename to DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_InverseTheme_Light.colorContentOnBrandPrimary.png
diff --git a/Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_InverseTheme_Light.colorContentOnOverlayEmphasized.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_InverseTheme_Light.colorContentOnOverlayEmphasized.png
similarity index 100%
rename from Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_InverseTheme_Light.colorContentOnOverlayEmphasized.png
rename to DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_InverseTheme_Light.colorContentOnOverlayEmphasized.png
diff --git a/Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_InverseTheme_Light.colorContentOnStatusEmphasized.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_InverseTheme_Light.colorContentOnStatusEmphasized.png
similarity index 100%
rename from Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_InverseTheme_Light.colorContentOnStatusEmphasized.png
rename to DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_InverseTheme_Light.colorContentOnStatusEmphasized.png
diff --git a/Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_InverseTheme_Light.colorContentOnStatusEmphasizedAlt.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_InverseTheme_Light.colorContentOnStatusEmphasizedAlt.png
similarity index 100%
rename from Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_InverseTheme_Light.colorContentOnStatusEmphasizedAlt.png
rename to DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_InverseTheme_Light.colorContentOnStatusEmphasizedAlt.png
diff --git a/Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_InverseTheme_Light.colorContentOnStatusMuted.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_InverseTheme_Light.colorContentOnStatusMuted.png
similarity index 100%
rename from Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_InverseTheme_Light.colorContentOnStatusMuted.png
rename to DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_InverseTheme_Light.colorContentOnStatusMuted.png
diff --git a/Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_InverseTheme_Light.colorContentStatusInfo.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_InverseTheme_Light.colorContentStatusInfo.png
similarity index 100%
rename from Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_InverseTheme_Light.colorContentStatusInfo.png
rename to DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_InverseTheme_Light.colorContentStatusInfo.png
diff --git a/Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_InverseTheme_Light.colorContentStatusNegative.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_InverseTheme_Light.colorContentStatusNegative.png
similarity index 100%
rename from Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_InverseTheme_Light.colorContentStatusNegative.png
rename to DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_InverseTheme_Light.colorContentStatusNegative.png
diff --git a/Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_InverseTheme_Light.colorContentStatusPositive.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_InverseTheme_Light.colorContentStatusPositive.png
similarity index 100%
rename from Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_InverseTheme_Light.colorContentStatusPositive.png
rename to DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_InverseTheme_Light.colorContentStatusPositive.png
diff --git a/Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_InverseTheme_Light.colorContentStatusWarning.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_InverseTheme_Light.colorContentStatusWarning.png
similarity index 100%
rename from Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_InverseTheme_Light.colorContentStatusWarning.png
rename to DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_InverseTheme_Light.colorContentStatusWarning.png
diff --git a/Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_InverseTheme_Light.colorDecorativeAccent1Default.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_InverseTheme_Light.colorDecorativeAccent1Default.png
similarity index 100%
rename from Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_InverseTheme_Light.colorDecorativeAccent1Default.png
rename to DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_InverseTheme_Light.colorDecorativeAccent1Default.png
diff --git a/Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_InverseTheme_Light.colorDecorativeAccent1Emphasized.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_InverseTheme_Light.colorDecorativeAccent1Emphasized.png
similarity index 100%
rename from Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_InverseTheme_Light.colorDecorativeAccent1Emphasized.png
rename to DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_InverseTheme_Light.colorDecorativeAccent1Emphasized.png
diff --git a/Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_InverseTheme_Light.colorDecorativeAccent1Muted.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_InverseTheme_Light.colorDecorativeAccent1Muted.png
similarity index 100%
rename from Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_InverseTheme_Light.colorDecorativeAccent1Muted.png
rename to DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_InverseTheme_Light.colorDecorativeAccent1Muted.png
diff --git a/Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_InverseTheme_Light.colorDecorativeAccent2Default.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_InverseTheme_Light.colorDecorativeAccent2Default.png
similarity index 100%
rename from Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_InverseTheme_Light.colorDecorativeAccent2Default.png
rename to DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_InverseTheme_Light.colorDecorativeAccent2Default.png
diff --git a/Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_InverseTheme_Light.colorDecorativeAccent2Emphasized.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_InverseTheme_Light.colorDecorativeAccent2Emphasized.png
similarity index 100%
rename from Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_InverseTheme_Light.colorDecorativeAccent2Emphasized.png
rename to DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_InverseTheme_Light.colorDecorativeAccent2Emphasized.png
diff --git a/Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_InverseTheme_Light.colorDecorativeAccent2Muted.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_InverseTheme_Light.colorDecorativeAccent2Muted.png
similarity index 100%
rename from Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_InverseTheme_Light.colorDecorativeAccent2Muted.png
rename to DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_InverseTheme_Light.colorDecorativeAccent2Muted.png
diff --git a/Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_InverseTheme_Light.colorDecorativeAccent3Default.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_InverseTheme_Light.colorDecorativeAccent3Default.png
similarity index 100%
rename from Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_InverseTheme_Light.colorDecorativeAccent3Default.png
rename to DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_InverseTheme_Light.colorDecorativeAccent3Default.png
diff --git a/Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_InverseTheme_Light.colorDecorativeAccent3Emphasized.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_InverseTheme_Light.colorDecorativeAccent3Emphasized.png
similarity index 100%
rename from Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_InverseTheme_Light.colorDecorativeAccent3Emphasized.png
rename to DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_InverseTheme_Light.colorDecorativeAccent3Emphasized.png
diff --git a/Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_InverseTheme_Light.colorDecorativeAccent3Muted.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_InverseTheme_Light.colorDecorativeAccent3Muted.png
similarity index 100%
rename from Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_InverseTheme_Light.colorDecorativeAccent3Muted.png
rename to DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_InverseTheme_Light.colorDecorativeAccent3Muted.png
diff --git a/Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_InverseTheme_Light.colorDecorativeAccent4Default.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_InverseTheme_Light.colorDecorativeAccent4Default.png
similarity index 100%
rename from Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_InverseTheme_Light.colorDecorativeAccent4Default.png
rename to DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_InverseTheme_Light.colorDecorativeAccent4Default.png
diff --git a/Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_InverseTheme_Light.colorDecorativeAccent4Emphasized.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_InverseTheme_Light.colorDecorativeAccent4Emphasized.png
similarity index 100%
rename from Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_InverseTheme_Light.colorDecorativeAccent4Emphasized.png
rename to DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_InverseTheme_Light.colorDecorativeAccent4Emphasized.png
diff --git a/Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_InverseTheme_Light.colorDecorativeAccent4Muted.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_InverseTheme_Light.colorDecorativeAccent4Muted.png
similarity index 100%
rename from Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_InverseTheme_Light.colorDecorativeAccent4Muted.png
rename to DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_InverseTheme_Light.colorDecorativeAccent4Muted.png
diff --git a/Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_InverseTheme_Light.colorDecorativeAccent5Default.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_InverseTheme_Light.colorDecorativeAccent5Default.png
similarity index 100%
rename from Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_InverseTheme_Light.colorDecorativeAccent5Default.png
rename to DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_InverseTheme_Light.colorDecorativeAccent5Default.png
diff --git a/Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_InverseTheme_Light.colorDecorativeAccent5Emphasized.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_InverseTheme_Light.colorDecorativeAccent5Emphasized.png
similarity index 100%
rename from Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_InverseTheme_Light.colorDecorativeAccent5Emphasized.png
rename to DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_InverseTheme_Light.colorDecorativeAccent5Emphasized.png
diff --git a/Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_InverseTheme_Light.colorDecorativeAccent5Muted.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_InverseTheme_Light.colorDecorativeAccent5Muted.png
similarity index 100%
rename from Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_InverseTheme_Light.colorDecorativeAccent5Muted.png
rename to DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_InverseTheme_Light.colorDecorativeAccent5Muted.png
diff --git a/Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_InverseTheme_Light.colorDecorativeBrandPrimary.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_InverseTheme_Light.colorDecorativeBrandPrimary.png
similarity index 100%
rename from Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_InverseTheme_Light.colorDecorativeBrandPrimary.png
rename to DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_InverseTheme_Light.colorDecorativeBrandPrimary.png
diff --git a/Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_InverseTheme_Light.colorDecorativeBrandSecondary.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_InverseTheme_Light.colorDecorativeBrandSecondary.png
similarity index 100%
rename from Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_InverseTheme_Light.colorDecorativeBrandSecondary.png
rename to DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_InverseTheme_Light.colorDecorativeBrandSecondary.png
diff --git a/Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_InverseTheme_Light.colorDecorativeBrandTertiary.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_InverseTheme_Light.colorDecorativeBrandTertiary.png
similarity index 100%
rename from Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_InverseTheme_Light.colorDecorativeBrandTertiary.png
rename to DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_InverseTheme_Light.colorDecorativeBrandTertiary.png
diff --git a/Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_InverseTheme_Light.colorDecorativeNeutralDefault.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_InverseTheme_Light.colorDecorativeNeutralDefault.png
similarity index 100%
rename from Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_InverseTheme_Light.colorDecorativeNeutralDefault.png
rename to DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_InverseTheme_Light.colorDecorativeNeutralDefault.png
diff --git a/Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_InverseTheme_Light.colorDecorativeNeutralEmphasized.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_InverseTheme_Light.colorDecorativeNeutralEmphasized.png
similarity index 100%
rename from Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_InverseTheme_Light.colorDecorativeNeutralEmphasized.png
rename to DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_InverseTheme_Light.colorDecorativeNeutralEmphasized.png
diff --git a/Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_InverseTheme_Light.colorDecorativeNeutralMuted.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_InverseTheme_Light.colorDecorativeNeutralMuted.png
similarity index 100%
rename from Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_InverseTheme_Light.colorDecorativeNeutralMuted.png
rename to DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_InverseTheme_Light.colorDecorativeNeutralMuted.png
diff --git a/Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_InverseTheme_Light.colorDecorativeSkinTint100.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_InverseTheme_Light.colorDecorativeSkinTint100.png
similarity index 100%
rename from Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_InverseTheme_Light.colorDecorativeSkinTint100.png
rename to DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_InverseTheme_Light.colorDecorativeSkinTint100.png
diff --git a/Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_InverseTheme_Light.colorDecorativeSkinTint200.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_InverseTheme_Light.colorDecorativeSkinTint200.png
similarity index 100%
rename from Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_InverseTheme_Light.colorDecorativeSkinTint200.png
rename to DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_InverseTheme_Light.colorDecorativeSkinTint200.png
diff --git a/Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_InverseTheme_Light.colorDecorativeSkinTint300.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_InverseTheme_Light.colorDecorativeSkinTint300.png
similarity index 100%
rename from Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_InverseTheme_Light.colorDecorativeSkinTint300.png
rename to DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_InverseTheme_Light.colorDecorativeSkinTint300.png
diff --git a/Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_InverseTheme_Light.colorDecorativeSkinTint400.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_InverseTheme_Light.colorDecorativeSkinTint400.png
similarity index 100%
rename from Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_InverseTheme_Light.colorDecorativeSkinTint400.png
rename to DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_InverseTheme_Light.colorDecorativeSkinTint400.png
diff --git a/Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_InverseTheme_Light.colorDecorativeSkinTint500.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_InverseTheme_Light.colorDecorativeSkinTint500.png
similarity index 100%
rename from Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_InverseTheme_Light.colorDecorativeSkinTint500.png
rename to DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_InverseTheme_Light.colorDecorativeSkinTint500.png
diff --git a/Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_InverseTheme_Light.colorDecorativeSkinTint600.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_InverseTheme_Light.colorDecorativeSkinTint600.png
similarity index 100%
rename from Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_InverseTheme_Light.colorDecorativeSkinTint600.png
rename to DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_InverseTheme_Light.colorDecorativeSkinTint600.png
diff --git a/Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_InverseTheme_Light.colorDecorativeSkinTint700.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_InverseTheme_Light.colorDecorativeSkinTint700.png
similarity index 100%
rename from Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_InverseTheme_Light.colorDecorativeSkinTint700.png
rename to DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_InverseTheme_Light.colorDecorativeSkinTint700.png
diff --git a/Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_InverseTheme_Light.colorDecorativeSkinTint800.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_InverseTheme_Light.colorDecorativeSkinTint800.png
similarity index 100%
rename from Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_InverseTheme_Light.colorDecorativeSkinTint800.png
rename to DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_InverseTheme_Light.colorDecorativeSkinTint800.png
diff --git a/Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_InverseTheme_Light.colorDecorativeSkinTint900.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_InverseTheme_Light.colorDecorativeSkinTint900.png
similarity index 100%
rename from Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_InverseTheme_Light.colorDecorativeSkinTint900.png
rename to DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_InverseTheme_Light.colorDecorativeSkinTint900.png
diff --git a/Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_InverseTheme_Light.colorOpacityLower.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_InverseTheme_Light.colorOpacityLower.png
similarity index 100%
rename from Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_InverseTheme_Light.colorOpacityLower.png
rename to DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_InverseTheme_Light.colorOpacityLower.png
diff --git a/Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_InverseTheme_Light.colorOpacityLowest.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_InverseTheme_Light.colorOpacityLowest.png
similarity index 100%
rename from Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_InverseTheme_Light.colorOpacityLowest.png
rename to DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_InverseTheme_Light.colorOpacityLowest.png
diff --git a/Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_InverseTheme_Light.colorOpacityTransparent.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_InverseTheme_Light.colorOpacityTransparent.png
similarity index 100%
rename from Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_InverseTheme_Light.colorOpacityTransparent.png
rename to DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_InverseTheme_Light.colorOpacityTransparent.png
diff --git a/Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_InverseTheme_Light.colorOverlayDefault.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_InverseTheme_Light.colorOverlayDefault.png
similarity index 100%
rename from Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_InverseTheme_Light.colorOverlayDefault.png
rename to DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_InverseTheme_Light.colorOverlayDefault.png
diff --git a/Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_InverseTheme_Light.colorOverlayDrag.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_InverseTheme_Light.colorOverlayDrag.png
similarity index 100%
rename from Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_InverseTheme_Light.colorOverlayDrag.png
rename to DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_InverseTheme_Light.colorOverlayDrag.png
diff --git a/Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_InverseTheme_Light.colorOverlayEmphasized.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_InverseTheme_Light.colorOverlayEmphasized.png
similarity index 100%
rename from Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_InverseTheme_Light.colorOverlayEmphasized.png
rename to DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_InverseTheme_Light.colorOverlayEmphasized.png
diff --git a/Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_InverseTheme_Light.colorOverlayModal.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_InverseTheme_Light.colorOverlayModal.png
similarity index 100%
rename from Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_InverseTheme_Light.colorOverlayModal.png
rename to DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_InverseTheme_Light.colorOverlayModal.png
diff --git a/Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_InverseTheme_Light.colorRepositoryAccentDefault.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_InverseTheme_Light.colorRepositoryAccentDefault.png
similarity index 100%
rename from Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_InverseTheme_Light.colorRepositoryAccentDefault.png
rename to DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_InverseTheme_Light.colorRepositoryAccentDefault.png
diff --git a/Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_InverseTheme_Light.colorRepositoryAccentHighest.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_InverseTheme_Light.colorRepositoryAccentHighest.png
similarity index 100%
rename from Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_InverseTheme_Light.colorRepositoryAccentHighest.png
rename to DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_InverseTheme_Light.colorRepositoryAccentHighest.png
diff --git a/Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_InverseTheme_Light.colorRepositoryAccentLow.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_InverseTheme_Light.colorRepositoryAccentLow.png
similarity index 100%
rename from Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_InverseTheme_Light.colorRepositoryAccentLow.png
rename to DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_InverseTheme_Light.colorRepositoryAccentLow.png
diff --git a/Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_InverseTheme_Light.colorRepositoryAccentLowest.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_InverseTheme_Light.colorRepositoryAccentLowest.png
similarity index 100%
rename from Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_InverseTheme_Light.colorRepositoryAccentLowest.png
rename to DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_InverseTheme_Light.colorRepositoryAccentLowest.png
diff --git a/Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_InverseTheme_Light.colorRepositoryInfoDefault.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_InverseTheme_Light.colorRepositoryInfoDefault.png
similarity index 100%
rename from Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_InverseTheme_Light.colorRepositoryInfoDefault.png
rename to DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_InverseTheme_Light.colorRepositoryInfoDefault.png
diff --git a/Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_InverseTheme_Light.colorRepositoryInfoHighest.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_InverseTheme_Light.colorRepositoryInfoHighest.png
similarity index 100%
rename from Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_InverseTheme_Light.colorRepositoryInfoHighest.png
rename to DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_InverseTheme_Light.colorRepositoryInfoHighest.png
diff --git a/Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_InverseTheme_Light.colorRepositoryInfoLow.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_InverseTheme_Light.colorRepositoryInfoLow.png
similarity index 100%
rename from Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_InverseTheme_Light.colorRepositoryInfoLow.png
rename to DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_InverseTheme_Light.colorRepositoryInfoLow.png
diff --git a/Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_InverseTheme_Light.colorRepositoryInfoLowest.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_InverseTheme_Light.colorRepositoryInfoLowest.png
similarity index 100%
rename from Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_InverseTheme_Light.colorRepositoryInfoLowest.png
rename to DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_InverseTheme_Light.colorRepositoryInfoLowest.png
diff --git a/Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_InverseTheme_Light.colorRepositoryNegativeDefault.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_InverseTheme_Light.colorRepositoryNegativeDefault.png
similarity index 100%
rename from Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_InverseTheme_Light.colorRepositoryNegativeDefault.png
rename to DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_InverseTheme_Light.colorRepositoryNegativeDefault.png
diff --git a/Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_InverseTheme_Light.colorRepositoryNegativeHigh.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_InverseTheme_Light.colorRepositoryNegativeHigh.png
similarity index 100%
rename from Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_InverseTheme_Light.colorRepositoryNegativeHigh.png
rename to DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_InverseTheme_Light.colorRepositoryNegativeHigh.png
diff --git a/Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_InverseTheme_Light.colorRepositoryNegativeHigher.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_InverseTheme_Light.colorRepositoryNegativeHigher.png
similarity index 100%
rename from Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_InverseTheme_Light.colorRepositoryNegativeHigher.png
rename to DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_InverseTheme_Light.colorRepositoryNegativeHigher.png
diff --git a/Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_InverseTheme_Light.colorRepositoryNegativeHighest.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_InverseTheme_Light.colorRepositoryNegativeHighest.png
similarity index 100%
rename from Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_InverseTheme_Light.colorRepositoryNegativeHighest.png
rename to DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_InverseTheme_Light.colorRepositoryNegativeHighest.png
diff --git a/Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_InverseTheme_Light.colorRepositoryNegativeLow.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_InverseTheme_Light.colorRepositoryNegativeLow.png
similarity index 100%
rename from Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_InverseTheme_Light.colorRepositoryNegativeLow.png
rename to DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_InverseTheme_Light.colorRepositoryNegativeLow.png
diff --git a/Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_InverseTheme_Light.colorRepositoryNegativeLower.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_InverseTheme_Light.colorRepositoryNegativeLower.png
similarity index 100%
rename from Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_InverseTheme_Light.colorRepositoryNegativeLower.png
rename to DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_InverseTheme_Light.colorRepositoryNegativeLower.png
diff --git a/Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_InverseTheme_Light.colorRepositoryNegativeLowest.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_InverseTheme_Light.colorRepositoryNegativeLowest.png
similarity index 100%
rename from Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_InverseTheme_Light.colorRepositoryNegativeLowest.png
rename to DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_InverseTheme_Light.colorRepositoryNegativeLowest.png
diff --git a/Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_InverseTheme_Light.colorRepositoryNeutralEmphasizedBlack.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_InverseTheme_Light.colorRepositoryNeutralEmphasizedBlack.png
similarity index 100%
rename from Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_InverseTheme_Light.colorRepositoryNeutralEmphasizedBlack.png
rename to DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_InverseTheme_Light.colorRepositoryNeutralEmphasizedBlack.png
diff --git a/Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_InverseTheme_Light.colorRepositoryNeutralEmphasizedHigh.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_InverseTheme_Light.colorRepositoryNeutralEmphasizedHigh.png
similarity index 100%
rename from Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_InverseTheme_Light.colorRepositoryNeutralEmphasizedHigh.png
rename to DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_InverseTheme_Light.colorRepositoryNeutralEmphasizedHigh.png
diff --git a/Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_InverseTheme_Light.colorRepositoryNeutralEmphasizedHigher.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_InverseTheme_Light.colorRepositoryNeutralEmphasizedHigher.png
similarity index 100%
rename from Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_InverseTheme_Light.colorRepositoryNeutralEmphasizedHigher.png
rename to DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_InverseTheme_Light.colorRepositoryNeutralEmphasizedHigher.png
diff --git a/Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_InverseTheme_Light.colorRepositoryNeutralEmphasizedHighest.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_InverseTheme_Light.colorRepositoryNeutralEmphasizedHighest.png
similarity index 100%
rename from Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_InverseTheme_Light.colorRepositoryNeutralEmphasizedHighest.png
rename to DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_InverseTheme_Light.colorRepositoryNeutralEmphasizedHighest.png
diff --git a/Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_InverseTheme_Light.colorRepositoryNeutralEmphasizedMedium.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_InverseTheme_Light.colorRepositoryNeutralEmphasizedMedium.png
similarity index 100%
rename from Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_InverseTheme_Light.colorRepositoryNeutralEmphasizedMedium.png
rename to DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_InverseTheme_Light.colorRepositoryNeutralEmphasizedMedium.png
diff --git a/Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_InverseTheme_Light.colorRepositoryNeutralMutedLower.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_InverseTheme_Light.colorRepositoryNeutralMutedLower.png
similarity index 100%
rename from Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_InverseTheme_Light.colorRepositoryNeutralMutedLower.png
rename to DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_InverseTheme_Light.colorRepositoryNeutralMutedLower.png
diff --git a/Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_InverseTheme_Light.colorRepositoryNeutralMutedLowest.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_InverseTheme_Light.colorRepositoryNeutralMutedLowest.png
similarity index 100%
rename from Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_InverseTheme_Light.colorRepositoryNeutralMutedLowest.png
rename to DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_InverseTheme_Light.colorRepositoryNeutralMutedLowest.png
diff --git a/Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_InverseTheme_Light.colorRepositoryNeutralMutedWhite.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_InverseTheme_Light.colorRepositoryNeutralMutedWhite.png
similarity index 100%
rename from Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_InverseTheme_Light.colorRepositoryNeutralMutedWhite.png
rename to DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_InverseTheme_Light.colorRepositoryNeutralMutedWhite.png
diff --git a/Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_InverseTheme_Light.colorRepositoryOpacityBlackHigher.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_InverseTheme_Light.colorRepositoryOpacityBlackHigher.png
similarity index 100%
rename from Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_InverseTheme_Light.colorRepositoryOpacityBlackHigher.png
rename to DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_InverseTheme_Light.colorRepositoryOpacityBlackHigher.png
diff --git a/Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_InverseTheme_Light.colorRepositoryOpacityBlackHighest.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_InverseTheme_Light.colorRepositoryOpacityBlackHighest.png
similarity index 100%
rename from Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_InverseTheme_Light.colorRepositoryOpacityBlackHighest.png
rename to DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_InverseTheme_Light.colorRepositoryOpacityBlackHighest.png
diff --git a/Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_InverseTheme_Light.colorRepositoryOpacityBlackLow.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_InverseTheme_Light.colorRepositoryOpacityBlackLow.png
similarity index 100%
rename from Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_InverseTheme_Light.colorRepositoryOpacityBlackLow.png
rename to DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_InverseTheme_Light.colorRepositoryOpacityBlackLow.png
diff --git a/Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_InverseTheme_Light.colorRepositoryOpacityBlackLower.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_InverseTheme_Light.colorRepositoryOpacityBlackLower.png
similarity index 100%
rename from Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_InverseTheme_Light.colorRepositoryOpacityBlackLower.png
rename to DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_InverseTheme_Light.colorRepositoryOpacityBlackLower.png
diff --git a/Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_InverseTheme_Light.colorRepositoryOpacityBlackLowest.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_InverseTheme_Light.colorRepositoryOpacityBlackLowest.png
similarity index 100%
rename from Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_InverseTheme_Light.colorRepositoryOpacityBlackLowest.png
rename to DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_InverseTheme_Light.colorRepositoryOpacityBlackLowest.png
diff --git a/Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_InverseTheme_Light.colorRepositoryOpacityBlackMedium.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_InverseTheme_Light.colorRepositoryOpacityBlackMedium.png
similarity index 100%
rename from Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_InverseTheme_Light.colorRepositoryOpacityBlackMedium.png
rename to DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_InverseTheme_Light.colorRepositoryOpacityBlackMedium.png
diff --git a/Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_InverseTheme_Light.colorRepositoryOpacityBlackTransparent.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_InverseTheme_Light.colorRepositoryOpacityBlackTransparent.png
similarity index 100%
rename from Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_InverseTheme_Light.colorRepositoryOpacityBlackTransparent.png
rename to DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_InverseTheme_Light.colorRepositoryOpacityBlackTransparent.png
diff --git a/Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_InverseTheme_Light.colorRepositoryOpacityInfo.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_InverseTheme_Light.colorRepositoryOpacityInfo.png
similarity index 100%
rename from Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_InverseTheme_Light.colorRepositoryOpacityInfo.png
rename to DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_InverseTheme_Light.colorRepositoryOpacityInfo.png
diff --git a/Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_InverseTheme_Light.colorRepositoryOpacityNegative.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_InverseTheme_Light.colorRepositoryOpacityNegative.png
similarity index 100%
rename from Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_InverseTheme_Light.colorRepositoryOpacityNegative.png
rename to DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_InverseTheme_Light.colorRepositoryOpacityNegative.png
diff --git a/Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_InverseTheme_Light.colorRepositoryOpacityPositive.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_InverseTheme_Light.colorRepositoryOpacityPositive.png
similarity index 100%
rename from Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_InverseTheme_Light.colorRepositoryOpacityPositive.png
rename to DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_InverseTheme_Light.colorRepositoryOpacityPositive.png
diff --git a/Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_InverseTheme_Light.colorRepositoryOpacityWarning.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_InverseTheme_Light.colorRepositoryOpacityWarning.png
similarity index 100%
rename from Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_InverseTheme_Light.colorRepositoryOpacityWarning.png
rename to DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_InverseTheme_Light.colorRepositoryOpacityWarning.png
diff --git a/Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_InverseTheme_Light.colorRepositoryOpacityWhiteHigh.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_InverseTheme_Light.colorRepositoryOpacityWhiteHigh.png
similarity index 100%
rename from Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_InverseTheme_Light.colorRepositoryOpacityWhiteHigh.png
rename to DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_InverseTheme_Light.colorRepositoryOpacityWhiteHigh.png
diff --git a/Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_InverseTheme_Light.colorRepositoryOpacityWhiteHigher.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_InverseTheme_Light.colorRepositoryOpacityWhiteHigher.png
similarity index 100%
rename from Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_InverseTheme_Light.colorRepositoryOpacityWhiteHigher.png
rename to DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_InverseTheme_Light.colorRepositoryOpacityWhiteHigher.png
diff --git a/Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_InverseTheme_Light.colorRepositoryOpacityWhiteHighest.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_InverseTheme_Light.colorRepositoryOpacityWhiteHighest.png
similarity index 100%
rename from Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_InverseTheme_Light.colorRepositoryOpacityWhiteHighest.png
rename to DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_InverseTheme_Light.colorRepositoryOpacityWhiteHighest.png
diff --git a/Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_InverseTheme_Light.colorRepositoryOpacityWhiteLow.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_InverseTheme_Light.colorRepositoryOpacityWhiteLow.png
similarity index 100%
rename from Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_InverseTheme_Light.colorRepositoryOpacityWhiteLow.png
rename to DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_InverseTheme_Light.colorRepositoryOpacityWhiteLow.png
diff --git a/Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_InverseTheme_Light.colorRepositoryOpacityWhiteLower.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_InverseTheme_Light.colorRepositoryOpacityWhiteLower.png
similarity index 100%
rename from Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_InverseTheme_Light.colorRepositoryOpacityWhiteLower.png
rename to DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_InverseTheme_Light.colorRepositoryOpacityWhiteLower.png
diff --git a/Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_InverseTheme_Light.colorRepositoryOpacityWhiteLowest.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_InverseTheme_Light.colorRepositoryOpacityWhiteLowest.png
similarity index 100%
rename from Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_InverseTheme_Light.colorRepositoryOpacityWhiteLowest.png
rename to DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_InverseTheme_Light.colorRepositoryOpacityWhiteLowest.png
diff --git a/Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_InverseTheme_Light.colorRepositoryOpacityWhiteTransparent.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_InverseTheme_Light.colorRepositoryOpacityWhiteTransparent.png
similarity index 100%
rename from Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_InverseTheme_Light.colorRepositoryOpacityWhiteTransparent.png
rename to DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_InverseTheme_Light.colorRepositoryOpacityWhiteTransparent.png
diff --git a/Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_InverseTheme_Light.colorRepositoryPositiveDefault.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_InverseTheme_Light.colorRepositoryPositiveDefault.png
similarity index 100%
rename from Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_InverseTheme_Light.colorRepositoryPositiveDefault.png
rename to DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_InverseTheme_Light.colorRepositoryPositiveDefault.png
diff --git a/Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_InverseTheme_Light.colorRepositoryPositiveHighest.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_InverseTheme_Light.colorRepositoryPositiveHighest.png
similarity index 100%
rename from Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_InverseTheme_Light.colorRepositoryPositiveHighest.png
rename to DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_InverseTheme_Light.colorRepositoryPositiveHighest.png
diff --git a/Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_InverseTheme_Light.colorRepositoryPositiveLow.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_InverseTheme_Light.colorRepositoryPositiveLow.png
similarity index 100%
rename from Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_InverseTheme_Light.colorRepositoryPositiveLow.png
rename to DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_InverseTheme_Light.colorRepositoryPositiveLow.png
diff --git a/Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_InverseTheme_Light.colorRepositoryPositiveLowest.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_InverseTheme_Light.colorRepositoryPositiveLowest.png
similarity index 100%
rename from Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_InverseTheme_Light.colorRepositoryPositiveLowest.png
rename to DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_InverseTheme_Light.colorRepositoryPositiveLowest.png
diff --git a/Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_InverseTheme_Light.colorRepositoryPrimaryDefault.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_InverseTheme_Light.colorRepositoryPrimaryDefault.png
similarity index 100%
rename from Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_InverseTheme_Light.colorRepositoryPrimaryDefault.png
rename to DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_InverseTheme_Light.colorRepositoryPrimaryDefault.png
diff --git a/Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_InverseTheme_Light.colorRepositoryPrimaryLow.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_InverseTheme_Light.colorRepositoryPrimaryLow.png
similarity index 100%
rename from Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_InverseTheme_Light.colorRepositoryPrimaryLow.png
rename to DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_InverseTheme_Light.colorRepositoryPrimaryLow.png
diff --git a/Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_InverseTheme_Light.colorRepositoryWarningDefault.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_InverseTheme_Light.colorRepositoryWarningDefault.png
similarity index 100%
rename from Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_InverseTheme_Light.colorRepositoryWarningDefault.png
rename to DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_InverseTheme_Light.colorRepositoryWarningDefault.png
diff --git a/Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_InverseTheme_Light.colorRepositoryWarningHighest.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_InverseTheme_Light.colorRepositoryWarningHighest.png
similarity index 100%
rename from Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_InverseTheme_Light.colorRepositoryWarningHighest.png
rename to DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_InverseTheme_Light.colorRepositoryWarningHighest.png
diff --git a/Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_InverseTheme_Light.colorRepositoryWarningLow.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_InverseTheme_Light.colorRepositoryWarningLow.png
similarity index 100%
rename from Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_InverseTheme_Light.colorRepositoryWarningLow.png
rename to DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_InverseTheme_Light.colorRepositoryWarningLow.png
diff --git a/Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_InverseTheme_Light.colorRepositoryWarningLowest.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_InverseTheme_Light.colorRepositoryWarningLowest.png
similarity index 100%
rename from Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_InverseTheme_Light.colorRepositoryWarningLowest.png
rename to DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_InverseTheme_Light.colorRepositoryWarningLowest.png
diff --git a/Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_InverseTheme_Light.colorSurfaceBrandPrimary.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_InverseTheme_Light.colorSurfaceBrandPrimary.png
similarity index 100%
rename from Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_InverseTheme_Light.colorSurfaceBrandPrimary.png
rename to DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_InverseTheme_Light.colorSurfaceBrandPrimary.png
diff --git a/Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_InverseTheme_Light.colorSurfaceStatusAccentEmphasized.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_InverseTheme_Light.colorSurfaceStatusAccentEmphasized.png
similarity index 100%
rename from Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_InverseTheme_Light.colorSurfaceStatusAccentEmphasized.png
rename to DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_InverseTheme_Light.colorSurfaceStatusAccentEmphasized.png
diff --git a/Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_InverseTheme_Light.colorSurfaceStatusAccentMuted.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_InverseTheme_Light.colorSurfaceStatusAccentMuted.png
similarity index 100%
rename from Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_InverseTheme_Light.colorSurfaceStatusAccentMuted.png
rename to DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_InverseTheme_Light.colorSurfaceStatusAccentMuted.png
diff --git a/Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_InverseTheme_Light.colorSurfaceStatusInfoEmphasized.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_InverseTheme_Light.colorSurfaceStatusInfoEmphasized.png
similarity index 100%
rename from Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_InverseTheme_Light.colorSurfaceStatusInfoEmphasized.png
rename to DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_InverseTheme_Light.colorSurfaceStatusInfoEmphasized.png
diff --git a/Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_InverseTheme_Light.colorSurfaceStatusInfoMuted.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_InverseTheme_Light.colorSurfaceStatusInfoMuted.png
similarity index 100%
rename from Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_InverseTheme_Light.colorSurfaceStatusInfoMuted.png
rename to DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_InverseTheme_Light.colorSurfaceStatusInfoMuted.png
diff --git a/Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_InverseTheme_Light.colorSurfaceStatusNegativeEmphasized.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_InverseTheme_Light.colorSurfaceStatusNegativeEmphasized.png
similarity index 100%
rename from Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_InverseTheme_Light.colorSurfaceStatusNegativeEmphasized.png
rename to DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_InverseTheme_Light.colorSurfaceStatusNegativeEmphasized.png
diff --git a/Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_InverseTheme_Light.colorSurfaceStatusNegativeMuted.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_InverseTheme_Light.colorSurfaceStatusNegativeMuted.png
similarity index 100%
rename from Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_InverseTheme_Light.colorSurfaceStatusNegativeMuted.png
rename to DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_InverseTheme_Light.colorSurfaceStatusNegativeMuted.png
diff --git a/Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_InverseTheme_Light.colorSurfaceStatusNeutralEmphasized.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_InverseTheme_Light.colorSurfaceStatusNeutralEmphasized.png
similarity index 100%
rename from Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_InverseTheme_Light.colorSurfaceStatusNeutralEmphasized.png
rename to DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_InverseTheme_Light.colorSurfaceStatusNeutralEmphasized.png
diff --git a/Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_InverseTheme_Light.colorSurfaceStatusNeutralMuted.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_InverseTheme_Light.colorSurfaceStatusNeutralMuted.png
similarity index 100%
rename from Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_InverseTheme_Light.colorSurfaceStatusNeutralMuted.png
rename to DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_InverseTheme_Light.colorSurfaceStatusNeutralMuted.png
diff --git a/Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_InverseTheme_Light.colorSurfaceStatusPositiveEmphasized.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_InverseTheme_Light.colorSurfaceStatusPositiveEmphasized.png
similarity index 100%
rename from Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_InverseTheme_Light.colorSurfaceStatusPositiveEmphasized.png
rename to DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_InverseTheme_Light.colorSurfaceStatusPositiveEmphasized.png
diff --git a/Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_InverseTheme_Light.colorSurfaceStatusPositiveMuted.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_InverseTheme_Light.colorSurfaceStatusPositiveMuted.png
similarity index 100%
rename from Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_InverseTheme_Light.colorSurfaceStatusPositiveMuted.png
rename to DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_InverseTheme_Light.colorSurfaceStatusPositiveMuted.png
diff --git a/Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_InverseTheme_Light.colorSurfaceStatusWarningEmphasized.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_InverseTheme_Light.colorSurfaceStatusWarningEmphasized.png
similarity index 100%
rename from Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_InverseTheme_Light.colorSurfaceStatusWarningEmphasized.png
rename to DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_InverseTheme_Light.colorSurfaceStatusWarningEmphasized.png
diff --git a/Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_InverseTheme_Light.colorSurfaceStatusWarningMuted.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_InverseTheme_Light.colorSurfaceStatusWarningMuted.png
similarity index 100%
rename from Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_InverseTheme_Light.colorSurfaceStatusWarningMuted.png
rename to DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_InverseTheme_Light.colorSurfaceStatusWarningMuted.png
diff --git a/Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_OrangeTheme_Dark.colorActionDisabled.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_OrangeTheme_Dark.colorActionDisabled.png
similarity index 100%
rename from Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_OrangeTheme_Dark.colorActionDisabled.png
rename to DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_OrangeTheme_Dark.colorActionDisabled.png
diff --git a/Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_OrangeTheme_Dark.colorActionEnabled.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_OrangeTheme_Dark.colorActionEnabled.png
similarity index 100%
rename from Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_OrangeTheme_Dark.colorActionEnabled.png
rename to DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_OrangeTheme_Dark.colorActionEnabled.png
diff --git a/Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_OrangeTheme_Dark.colorActionFocus.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_OrangeTheme_Dark.colorActionFocus.png
similarity index 100%
rename from Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_OrangeTheme_Dark.colorActionFocus.png
rename to DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_OrangeTheme_Dark.colorActionFocus.png
diff --git a/Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_OrangeTheme_Dark.colorActionHighlighted.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_OrangeTheme_Dark.colorActionHighlighted.png
similarity index 100%
rename from Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_OrangeTheme_Dark.colorActionHighlighted.png
rename to DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_OrangeTheme_Dark.colorActionHighlighted.png
diff --git a/Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_OrangeTheme_Dark.colorActionHover.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_OrangeTheme_Dark.colorActionHover.png
similarity index 100%
rename from Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_OrangeTheme_Dark.colorActionHover.png
rename to DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_OrangeTheme_Dark.colorActionHover.png
diff --git a/Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_OrangeTheme_Dark.colorActionLoading.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_OrangeTheme_Dark.colorActionLoading.png
similarity index 100%
rename from Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_OrangeTheme_Dark.colorActionLoading.png
rename to DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_OrangeTheme_Dark.colorActionLoading.png
diff --git a/Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_OrangeTheme_Dark.colorActionNegativeEnabled.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_OrangeTheme_Dark.colorActionNegativeEnabled.png
similarity index 100%
rename from Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_OrangeTheme_Dark.colorActionNegativeEnabled.png
rename to DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_OrangeTheme_Dark.colorActionNegativeEnabled.png
diff --git a/Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_OrangeTheme_Dark.colorActionNegativeFocus.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_OrangeTheme_Dark.colorActionNegativeFocus.png
similarity index 100%
rename from Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_OrangeTheme_Dark.colorActionNegativeFocus.png
rename to DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_OrangeTheme_Dark.colorActionNegativeFocus.png
diff --git a/Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_OrangeTheme_Dark.colorActionNegativeHover.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_OrangeTheme_Dark.colorActionNegativeHover.png
similarity index 100%
rename from Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_OrangeTheme_Dark.colorActionNegativeHover.png
rename to DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_OrangeTheme_Dark.colorActionNegativeHover.png
diff --git a/Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_OrangeTheme_Dark.colorActionNegativeLoading.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_OrangeTheme_Dark.colorActionNegativeLoading.png
similarity index 100%
rename from Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_OrangeTheme_Dark.colorActionNegativeLoading.png
rename to DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_OrangeTheme_Dark.colorActionNegativeLoading.png
diff --git a/Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_OrangeTheme_Dark.colorActionNegativePressed.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_OrangeTheme_Dark.colorActionNegativePressed.png
similarity index 100%
rename from Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_OrangeTheme_Dark.colorActionNegativePressed.png
rename to DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_OrangeTheme_Dark.colorActionNegativePressed.png
diff --git a/Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_OrangeTheme_Dark.colorActionPressed.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_OrangeTheme_Dark.colorActionPressed.png
similarity index 100%
rename from Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_OrangeTheme_Dark.colorActionPressed.png
rename to DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_OrangeTheme_Dark.colorActionPressed.png
diff --git a/Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_OrangeTheme_Dark.colorActionSelected.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_OrangeTheme_Dark.colorActionSelected.png
similarity index 100%
rename from Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_OrangeTheme_Dark.colorActionSelected.png
rename to DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_OrangeTheme_Dark.colorActionSelected.png
diff --git a/Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_OrangeTheme_Dark.colorActionSupportEnabled.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_OrangeTheme_Dark.colorActionSupportEnabled.png
similarity index 100%
rename from Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_OrangeTheme_Dark.colorActionSupportEnabled.png
rename to DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_OrangeTheme_Dark.colorActionSupportEnabled.png
diff --git a/Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_OrangeTheme_Dark.colorActionSupportFocus.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_OrangeTheme_Dark.colorActionSupportFocus.png
similarity index 100%
rename from Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_OrangeTheme_Dark.colorActionSupportFocus.png
rename to DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_OrangeTheme_Dark.colorActionSupportFocus.png
diff --git a/Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_OrangeTheme_Dark.colorActionSupportHover.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_OrangeTheme_Dark.colorActionSupportHover.png
similarity index 100%
rename from Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_OrangeTheme_Dark.colorActionSupportHover.png
rename to DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_OrangeTheme_Dark.colorActionSupportHover.png
diff --git a/Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_OrangeTheme_Dark.colorActionSupportLoading.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_OrangeTheme_Dark.colorActionSupportLoading.png
similarity index 100%
rename from Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_OrangeTheme_Dark.colorActionSupportLoading.png
rename to DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_OrangeTheme_Dark.colorActionSupportLoading.png
diff --git a/Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_OrangeTheme_Dark.colorActionSupportPressed.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_OrangeTheme_Dark.colorActionSupportPressed.png
similarity index 100%
rename from Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_OrangeTheme_Dark.colorActionSupportPressed.png
rename to DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_OrangeTheme_Dark.colorActionSupportPressed.png
diff --git a/Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_OrangeTheme_Dark.colorActionVisited.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_OrangeTheme_Dark.colorActionVisited.png
similarity index 100%
rename from Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_OrangeTheme_Dark.colorActionVisited.png
rename to DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_OrangeTheme_Dark.colorActionVisited.png
diff --git a/Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_OrangeTheme_Dark.colorAlwaysBlack.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_OrangeTheme_Dark.colorAlwaysBlack.png
similarity index 100%
rename from Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_OrangeTheme_Dark.colorAlwaysBlack.png
rename to DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_OrangeTheme_Dark.colorAlwaysBlack.png
diff --git a/Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_OrangeTheme_Dark.colorAlwaysOnBlack.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_OrangeTheme_Dark.colorAlwaysOnBlack.png
similarity index 100%
rename from Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_OrangeTheme_Dark.colorAlwaysOnBlack.png
rename to DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_OrangeTheme_Dark.colorAlwaysOnBlack.png
diff --git a/Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_OrangeTheme_Dark.colorAlwaysOnWhite.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_OrangeTheme_Dark.colorAlwaysOnWhite.png
similarity index 100%
rename from Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_OrangeTheme_Dark.colorAlwaysOnWhite.png
rename to DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_OrangeTheme_Dark.colorAlwaysOnWhite.png
diff --git a/Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_OrangeTheme_Dark.colorAlwaysWhite.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_OrangeTheme_Dark.colorAlwaysWhite.png
similarity index 100%
rename from Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_OrangeTheme_Dark.colorAlwaysWhite.png
rename to DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_OrangeTheme_Dark.colorAlwaysWhite.png
diff --git a/Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_OrangeTheme_Dark.colorBgEmphasized.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_OrangeTheme_Dark.colorBgEmphasized.png
similarity index 100%
rename from Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_OrangeTheme_Dark.colorBgEmphasized.png
rename to DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_OrangeTheme_Dark.colorBgEmphasized.png
diff --git a/Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_OrangeTheme_Dark.colorBgPrimary.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_OrangeTheme_Dark.colorBgPrimary.png
similarity index 100%
rename from Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_OrangeTheme_Dark.colorBgPrimary.png
rename to DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_OrangeTheme_Dark.colorBgPrimary.png
diff --git a/Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_OrangeTheme_Dark.colorBgSecondary.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_OrangeTheme_Dark.colorBgSecondary.png
similarity index 100%
rename from Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_OrangeTheme_Dark.colorBgSecondary.png
rename to DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_OrangeTheme_Dark.colorBgSecondary.png
diff --git a/Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_OrangeTheme_Dark.colorBgTertiary.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_OrangeTheme_Dark.colorBgTertiary.png
similarity index 100%
rename from Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_OrangeTheme_Dark.colorBgTertiary.png
rename to DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_OrangeTheme_Dark.colorBgTertiary.png
diff --git a/Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_OrangeTheme_Dark.colorBorderBrandPrimary.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_OrangeTheme_Dark.colorBorderBrandPrimary.png
similarity index 100%
rename from Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_OrangeTheme_Dark.colorBorderBrandPrimary.png
rename to DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_OrangeTheme_Dark.colorBorderBrandPrimary.png
diff --git a/Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_OrangeTheme_Dark.colorBorderDefault.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_OrangeTheme_Dark.colorBorderDefault.png
similarity index 100%
rename from Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_OrangeTheme_Dark.colorBorderDefault.png
rename to DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_OrangeTheme_Dark.colorBorderDefault.png
diff --git a/Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_OrangeTheme_Dark.colorBorderEmphasized.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_OrangeTheme_Dark.colorBorderEmphasized.png
similarity index 100%
rename from Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_OrangeTheme_Dark.colorBorderEmphasized.png
rename to DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_OrangeTheme_Dark.colorBorderEmphasized.png
diff --git a/Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_OrangeTheme_Dark.colorBorderFocus.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_OrangeTheme_Dark.colorBorderFocus.png
similarity index 100%
rename from Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_OrangeTheme_Dark.colorBorderFocus.png
rename to DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_OrangeTheme_Dark.colorBorderFocus.png
diff --git a/Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_OrangeTheme_Dark.colorBorderFocusInset.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_OrangeTheme_Dark.colorBorderFocusInset.png
similarity index 100%
rename from Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_OrangeTheme_Dark.colorBorderFocusInset.png
rename to DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_OrangeTheme_Dark.colorBorderFocusInset.png
diff --git a/Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_OrangeTheme_Dark.colorBorderOnBrandPrimary.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_OrangeTheme_Dark.colorBorderOnBrandPrimary.png
similarity index 100%
rename from Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_OrangeTheme_Dark.colorBorderOnBrandPrimary.png
rename to DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_OrangeTheme_Dark.colorBorderOnBrandPrimary.png
diff --git a/Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_OrangeTheme_Dark.colorChartBorder.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_OrangeTheme_Dark.colorChartBorder.png
similarity index 100%
rename from Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_OrangeTheme_Dark.colorChartBorder.png
rename to DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_OrangeTheme_Dark.colorChartBorder.png
diff --git a/Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_OrangeTheme_Dark.colorChartBorderContrast.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_OrangeTheme_Dark.colorChartBorderContrast.png
similarity index 100%
rename from Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_OrangeTheme_Dark.colorChartBorderContrast.png
rename to DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_OrangeTheme_Dark.colorChartBorderContrast.png
diff --git a/Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_OrangeTheme_Dark.colorChartCategoricalTier1.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_OrangeTheme_Dark.colorChartCategoricalTier1.png
similarity index 100%
rename from Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_OrangeTheme_Dark.colorChartCategoricalTier1.png
rename to DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_OrangeTheme_Dark.colorChartCategoricalTier1.png
diff --git a/Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_OrangeTheme_Dark.colorChartCategoricalTier10.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_OrangeTheme_Dark.colorChartCategoricalTier10.png
similarity index 100%
rename from Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_OrangeTheme_Dark.colorChartCategoricalTier10.png
rename to DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_OrangeTheme_Dark.colorChartCategoricalTier10.png
diff --git a/Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_OrangeTheme_Dark.colorChartCategoricalTier2.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_OrangeTheme_Dark.colorChartCategoricalTier2.png
similarity index 100%
rename from Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_OrangeTheme_Dark.colorChartCategoricalTier2.png
rename to DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_OrangeTheme_Dark.colorChartCategoricalTier2.png
diff --git a/Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_OrangeTheme_Dark.colorChartCategoricalTier3.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_OrangeTheme_Dark.colorChartCategoricalTier3.png
similarity index 100%
rename from Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_OrangeTheme_Dark.colorChartCategoricalTier3.png
rename to DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_OrangeTheme_Dark.colorChartCategoricalTier3.png
diff --git a/Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_OrangeTheme_Dark.colorChartCategoricalTier4.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_OrangeTheme_Dark.colorChartCategoricalTier4.png
similarity index 100%
rename from Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_OrangeTheme_Dark.colorChartCategoricalTier4.png
rename to DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_OrangeTheme_Dark.colorChartCategoricalTier4.png
diff --git a/Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_OrangeTheme_Dark.colorChartCategoricalTier5.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_OrangeTheme_Dark.colorChartCategoricalTier5.png
similarity index 100%
rename from Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_OrangeTheme_Dark.colorChartCategoricalTier5.png
rename to DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_OrangeTheme_Dark.colorChartCategoricalTier5.png
diff --git a/Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_OrangeTheme_Dark.colorChartCategoricalTier6.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_OrangeTheme_Dark.colorChartCategoricalTier6.png
similarity index 100%
rename from Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_OrangeTheme_Dark.colorChartCategoricalTier6.png
rename to DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_OrangeTheme_Dark.colorChartCategoricalTier6.png
diff --git a/Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_OrangeTheme_Dark.colorChartCategoricalTier7.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_OrangeTheme_Dark.colorChartCategoricalTier7.png
similarity index 100%
rename from Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_OrangeTheme_Dark.colorChartCategoricalTier7.png
rename to DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_OrangeTheme_Dark.colorChartCategoricalTier7.png
diff --git a/Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_OrangeTheme_Dark.colorChartCategoricalTier8.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_OrangeTheme_Dark.colorChartCategoricalTier8.png
similarity index 100%
rename from Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_OrangeTheme_Dark.colorChartCategoricalTier8.png
rename to DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_OrangeTheme_Dark.colorChartCategoricalTier8.png
diff --git a/Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_OrangeTheme_Dark.colorChartCategoricalTier9.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_OrangeTheme_Dark.colorChartCategoricalTier9.png
similarity index 100%
rename from Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_OrangeTheme_Dark.colorChartCategoricalTier9.png
rename to DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_OrangeTheme_Dark.colorChartCategoricalTier9.png
diff --git a/Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_OrangeTheme_Dark.colorChartFunctionalInformation.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_OrangeTheme_Dark.colorChartFunctionalInformation.png
similarity index 100%
rename from Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_OrangeTheme_Dark.colorChartFunctionalInformation.png
rename to DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_OrangeTheme_Dark.colorChartFunctionalInformation.png
diff --git a/Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_OrangeTheme_Dark.colorChartFunctionalNegative.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_OrangeTheme_Dark.colorChartFunctionalNegative.png
similarity index 100%
rename from Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_OrangeTheme_Dark.colorChartFunctionalNegative.png
rename to DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_OrangeTheme_Dark.colorChartFunctionalNegative.png
diff --git a/Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_OrangeTheme_Dark.colorChartFunctionalPositive.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_OrangeTheme_Dark.colorChartFunctionalPositive.png
similarity index 100%
rename from Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_OrangeTheme_Dark.colorChartFunctionalPositive.png
rename to DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_OrangeTheme_Dark.colorChartFunctionalPositive.png
diff --git a/Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_OrangeTheme_Dark.colorChartFunctionalWarning.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_OrangeTheme_Dark.colorChartFunctionalWarning.png
similarity index 100%
rename from Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_OrangeTheme_Dark.colorChartFunctionalWarning.png
rename to DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_OrangeTheme_Dark.colorChartFunctionalWarning.png
diff --git a/Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_OrangeTheme_Dark.colorChartGridlines.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_OrangeTheme_Dark.colorChartGridlines.png
similarity index 100%
rename from Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_OrangeTheme_Dark.colorChartGridlines.png
rename to DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_OrangeTheme_Dark.colorChartGridlines.png
diff --git a/Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_OrangeTheme_Dark.colorChartHighlight.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_OrangeTheme_Dark.colorChartHighlight.png
similarity index 100%
rename from Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_OrangeTheme_Dark.colorChartHighlight.png
rename to DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_OrangeTheme_Dark.colorChartHighlight.png
diff --git a/Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_OrangeTheme_Dark.colorChartNeutral.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_OrangeTheme_Dark.colorChartNeutral.png
similarity index 100%
rename from Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_OrangeTheme_Dark.colorChartNeutral.png
rename to DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_OrangeTheme_Dark.colorChartNeutral.png
diff --git a/Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_OrangeTheme_Dark.colorContentBrandPrimary.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_OrangeTheme_Dark.colorContentBrandPrimary.png
similarity index 100%
rename from Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_OrangeTheme_Dark.colorContentBrandPrimary.png
rename to DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_OrangeTheme_Dark.colorContentBrandPrimary.png
diff --git a/Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_OrangeTheme_Dark.colorContentDefault.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_OrangeTheme_Dark.colorContentDefault.png
similarity index 100%
rename from Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_OrangeTheme_Dark.colorContentDefault.png
rename to DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_OrangeTheme_Dark.colorContentDefault.png
diff --git a/Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_OrangeTheme_Dark.colorContentDisabled.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_OrangeTheme_Dark.colorContentDisabled.png
similarity index 100%
rename from Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_OrangeTheme_Dark.colorContentDisabled.png
rename to DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_OrangeTheme_Dark.colorContentDisabled.png
diff --git a/Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_OrangeTheme_Dark.colorContentMuted.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_OrangeTheme_Dark.colorContentMuted.png
similarity index 100%
rename from Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_OrangeTheme_Dark.colorContentMuted.png
rename to DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_OrangeTheme_Dark.colorContentMuted.png
diff --git a/Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_OrangeTheme_Dark.colorContentOnActionDisabled.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_OrangeTheme_Dark.colorContentOnActionDisabled.png
similarity index 100%
rename from Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_OrangeTheme_Dark.colorContentOnActionDisabled.png
rename to DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_OrangeTheme_Dark.colorContentOnActionDisabled.png
diff --git a/Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_OrangeTheme_Dark.colorContentOnActionEnabled.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_OrangeTheme_Dark.colorContentOnActionEnabled.png
similarity index 100%
rename from Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_OrangeTheme_Dark.colorContentOnActionEnabled.png
rename to DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_OrangeTheme_Dark.colorContentOnActionEnabled.png
diff --git a/Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_OrangeTheme_Dark.colorContentOnActionFocus.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_OrangeTheme_Dark.colorContentOnActionFocus.png
similarity index 100%
rename from Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_OrangeTheme_Dark.colorContentOnActionFocus.png
rename to DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_OrangeTheme_Dark.colorContentOnActionFocus.png
diff --git a/Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_OrangeTheme_Dark.colorContentOnActionHighlighted.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_OrangeTheme_Dark.colorContentOnActionHighlighted.png
similarity index 100%
rename from Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_OrangeTheme_Dark.colorContentOnActionHighlighted.png
rename to DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_OrangeTheme_Dark.colorContentOnActionHighlighted.png
diff --git a/Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_OrangeTheme_Dark.colorContentOnActionHover.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_OrangeTheme_Dark.colorContentOnActionHover.png
similarity index 100%
rename from Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_OrangeTheme_Dark.colorContentOnActionHover.png
rename to DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_OrangeTheme_Dark.colorContentOnActionHover.png
diff --git a/Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_OrangeTheme_Dark.colorContentOnActionLoading.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_OrangeTheme_Dark.colorContentOnActionLoading.png
similarity index 100%
rename from Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_OrangeTheme_Dark.colorContentOnActionLoading.png
rename to DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_OrangeTheme_Dark.colorContentOnActionLoading.png
diff --git a/Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_OrangeTheme_Dark.colorContentOnActionPressed.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_OrangeTheme_Dark.colorContentOnActionPressed.png
similarity index 100%
rename from Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_OrangeTheme_Dark.colorContentOnActionPressed.png
rename to DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_OrangeTheme_Dark.colorContentOnActionPressed.png
diff --git a/Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_OrangeTheme_Dark.colorContentOnBrandPrimary.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_OrangeTheme_Dark.colorContentOnBrandPrimary.png
similarity index 100%
rename from Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_OrangeTheme_Dark.colorContentOnBrandPrimary.png
rename to DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_OrangeTheme_Dark.colorContentOnBrandPrimary.png
diff --git a/Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_OrangeTheme_Dark.colorContentOnOverlayEmphasized.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_OrangeTheme_Dark.colorContentOnOverlayEmphasized.png
similarity index 100%
rename from Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_OrangeTheme_Dark.colorContentOnOverlayEmphasized.png
rename to DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_OrangeTheme_Dark.colorContentOnOverlayEmphasized.png
diff --git a/Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_OrangeTheme_Dark.colorContentOnStatusEmphasized.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_OrangeTheme_Dark.colorContentOnStatusEmphasized.png
similarity index 100%
rename from Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_OrangeTheme_Dark.colorContentOnStatusEmphasized.png
rename to DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_OrangeTheme_Dark.colorContentOnStatusEmphasized.png
diff --git a/Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_OrangeTheme_Dark.colorContentOnStatusEmphasizedAlt.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_OrangeTheme_Dark.colorContentOnStatusEmphasizedAlt.png
similarity index 100%
rename from Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_OrangeTheme_Dark.colorContentOnStatusEmphasizedAlt.png
rename to DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_OrangeTheme_Dark.colorContentOnStatusEmphasizedAlt.png
diff --git a/Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_OrangeTheme_Dark.colorContentOnStatusMuted.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_OrangeTheme_Dark.colorContentOnStatusMuted.png
similarity index 100%
rename from Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_OrangeTheme_Dark.colorContentOnStatusMuted.png
rename to DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_OrangeTheme_Dark.colorContentOnStatusMuted.png
diff --git a/Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_OrangeTheme_Dark.colorContentStatusInfo.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_OrangeTheme_Dark.colorContentStatusInfo.png
similarity index 100%
rename from Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_OrangeTheme_Dark.colorContentStatusInfo.png
rename to DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_OrangeTheme_Dark.colorContentStatusInfo.png
diff --git a/Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_OrangeTheme_Dark.colorContentStatusNegative.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_OrangeTheme_Dark.colorContentStatusNegative.png
similarity index 100%
rename from Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_OrangeTheme_Dark.colorContentStatusNegative.png
rename to DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_OrangeTheme_Dark.colorContentStatusNegative.png
diff --git a/Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_OrangeTheme_Dark.colorContentStatusPositive.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_OrangeTheme_Dark.colorContentStatusPositive.png
similarity index 100%
rename from Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_OrangeTheme_Dark.colorContentStatusPositive.png
rename to DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_OrangeTheme_Dark.colorContentStatusPositive.png
diff --git a/Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_OrangeTheme_Dark.colorContentStatusWarning.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_OrangeTheme_Dark.colorContentStatusWarning.png
similarity index 100%
rename from Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_OrangeTheme_Dark.colorContentStatusWarning.png
rename to DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_OrangeTheme_Dark.colorContentStatusWarning.png
diff --git a/Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_OrangeTheme_Dark.colorDecorativeAccent1Default.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_OrangeTheme_Dark.colorDecorativeAccent1Default.png
similarity index 100%
rename from Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_OrangeTheme_Dark.colorDecorativeAccent1Default.png
rename to DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_OrangeTheme_Dark.colorDecorativeAccent1Default.png
diff --git a/Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_OrangeTheme_Dark.colorDecorativeAccent1Emphasized.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_OrangeTheme_Dark.colorDecorativeAccent1Emphasized.png
similarity index 100%
rename from Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_OrangeTheme_Dark.colorDecorativeAccent1Emphasized.png
rename to DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_OrangeTheme_Dark.colorDecorativeAccent1Emphasized.png
diff --git a/Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_OrangeTheme_Dark.colorDecorativeAccent1Muted.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_OrangeTheme_Dark.colorDecorativeAccent1Muted.png
similarity index 100%
rename from Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_OrangeTheme_Dark.colorDecorativeAccent1Muted.png
rename to DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_OrangeTheme_Dark.colorDecorativeAccent1Muted.png
diff --git a/Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_OrangeTheme_Dark.colorDecorativeAccent2Default.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_OrangeTheme_Dark.colorDecorativeAccent2Default.png
similarity index 100%
rename from Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_OrangeTheme_Dark.colorDecorativeAccent2Default.png
rename to DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_OrangeTheme_Dark.colorDecorativeAccent2Default.png
diff --git a/Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_OrangeTheme_Dark.colorDecorativeAccent2Emphasized.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_OrangeTheme_Dark.colorDecorativeAccent2Emphasized.png
similarity index 100%
rename from Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_OrangeTheme_Dark.colorDecorativeAccent2Emphasized.png
rename to DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_OrangeTheme_Dark.colorDecorativeAccent2Emphasized.png
diff --git a/Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_OrangeTheme_Dark.colorDecorativeAccent2Muted.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_OrangeTheme_Dark.colorDecorativeAccent2Muted.png
similarity index 100%
rename from Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_OrangeTheme_Dark.colorDecorativeAccent2Muted.png
rename to DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_OrangeTheme_Dark.colorDecorativeAccent2Muted.png
diff --git a/Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_OrangeTheme_Dark.colorDecorativeAccent3Default.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_OrangeTheme_Dark.colorDecorativeAccent3Default.png
similarity index 100%
rename from Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_OrangeTheme_Dark.colorDecorativeAccent3Default.png
rename to DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_OrangeTheme_Dark.colorDecorativeAccent3Default.png
diff --git a/Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_OrangeTheme_Dark.colorDecorativeAccent3Emphasized.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_OrangeTheme_Dark.colorDecorativeAccent3Emphasized.png
similarity index 100%
rename from Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_OrangeTheme_Dark.colorDecorativeAccent3Emphasized.png
rename to DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_OrangeTheme_Dark.colorDecorativeAccent3Emphasized.png
diff --git a/Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_OrangeTheme_Dark.colorDecorativeAccent3Muted.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_OrangeTheme_Dark.colorDecorativeAccent3Muted.png
similarity index 100%
rename from Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_OrangeTheme_Dark.colorDecorativeAccent3Muted.png
rename to DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_OrangeTheme_Dark.colorDecorativeAccent3Muted.png
diff --git a/Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_OrangeTheme_Dark.colorDecorativeAccent4Default.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_OrangeTheme_Dark.colorDecorativeAccent4Default.png
similarity index 100%
rename from Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_OrangeTheme_Dark.colorDecorativeAccent4Default.png
rename to DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_OrangeTheme_Dark.colorDecorativeAccent4Default.png
diff --git a/Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_OrangeTheme_Dark.colorDecorativeAccent4Emphasized.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_OrangeTheme_Dark.colorDecorativeAccent4Emphasized.png
similarity index 100%
rename from Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_OrangeTheme_Dark.colorDecorativeAccent4Emphasized.png
rename to DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_OrangeTheme_Dark.colorDecorativeAccent4Emphasized.png
diff --git a/Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_OrangeTheme_Dark.colorDecorativeAccent4Muted.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_OrangeTheme_Dark.colorDecorativeAccent4Muted.png
similarity index 100%
rename from Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_OrangeTheme_Dark.colorDecorativeAccent4Muted.png
rename to DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_OrangeTheme_Dark.colorDecorativeAccent4Muted.png
diff --git a/Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_OrangeTheme_Dark.colorDecorativeAccent5Default.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_OrangeTheme_Dark.colorDecorativeAccent5Default.png
similarity index 100%
rename from Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_OrangeTheme_Dark.colorDecorativeAccent5Default.png
rename to DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_OrangeTheme_Dark.colorDecorativeAccent5Default.png
diff --git a/Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_OrangeTheme_Dark.colorDecorativeAccent5Emphasized.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_OrangeTheme_Dark.colorDecorativeAccent5Emphasized.png
similarity index 100%
rename from Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_OrangeTheme_Dark.colorDecorativeAccent5Emphasized.png
rename to DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_OrangeTheme_Dark.colorDecorativeAccent5Emphasized.png
diff --git a/Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_OrangeTheme_Dark.colorDecorativeAccent5Muted.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_OrangeTheme_Dark.colorDecorativeAccent5Muted.png
similarity index 100%
rename from Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_OrangeTheme_Dark.colorDecorativeAccent5Muted.png
rename to DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_OrangeTheme_Dark.colorDecorativeAccent5Muted.png
diff --git a/Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_OrangeTheme_Dark.colorDecorativeBrandPrimary.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_OrangeTheme_Dark.colorDecorativeBrandPrimary.png
similarity index 100%
rename from Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_OrangeTheme_Dark.colorDecorativeBrandPrimary.png
rename to DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_OrangeTheme_Dark.colorDecorativeBrandPrimary.png
diff --git a/Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_OrangeTheme_Dark.colorDecorativeBrandSecondary.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_OrangeTheme_Dark.colorDecorativeBrandSecondary.png
similarity index 100%
rename from Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_OrangeTheme_Dark.colorDecorativeBrandSecondary.png
rename to DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_OrangeTheme_Dark.colorDecorativeBrandSecondary.png
diff --git a/Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_OrangeTheme_Dark.colorDecorativeBrandTertiary.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_OrangeTheme_Dark.colorDecorativeBrandTertiary.png
similarity index 100%
rename from Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_OrangeTheme_Dark.colorDecorativeBrandTertiary.png
rename to DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_OrangeTheme_Dark.colorDecorativeBrandTertiary.png
diff --git a/Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_OrangeTheme_Dark.colorDecorativeNeutralDefault.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_OrangeTheme_Dark.colorDecorativeNeutralDefault.png
similarity index 100%
rename from Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_OrangeTheme_Dark.colorDecorativeNeutralDefault.png
rename to DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_OrangeTheme_Dark.colorDecorativeNeutralDefault.png
diff --git a/Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_OrangeTheme_Dark.colorDecorativeNeutralEmphasized.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_OrangeTheme_Dark.colorDecorativeNeutralEmphasized.png
similarity index 100%
rename from Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_OrangeTheme_Dark.colorDecorativeNeutralEmphasized.png
rename to DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_OrangeTheme_Dark.colorDecorativeNeutralEmphasized.png
diff --git a/Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_OrangeTheme_Dark.colorDecorativeNeutralMuted.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_OrangeTheme_Dark.colorDecorativeNeutralMuted.png
similarity index 100%
rename from Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_OrangeTheme_Dark.colorDecorativeNeutralMuted.png
rename to DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_OrangeTheme_Dark.colorDecorativeNeutralMuted.png
diff --git a/Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_OrangeTheme_Dark.colorDecorativeSkinTint100.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_OrangeTheme_Dark.colorDecorativeSkinTint100.png
similarity index 100%
rename from Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_OrangeTheme_Dark.colorDecorativeSkinTint100.png
rename to DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_OrangeTheme_Dark.colorDecorativeSkinTint100.png
diff --git a/Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_OrangeTheme_Dark.colorDecorativeSkinTint200.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_OrangeTheme_Dark.colorDecorativeSkinTint200.png
similarity index 100%
rename from Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_OrangeTheme_Dark.colorDecorativeSkinTint200.png
rename to DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_OrangeTheme_Dark.colorDecorativeSkinTint200.png
diff --git a/Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_OrangeTheme_Dark.colorDecorativeSkinTint300.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_OrangeTheme_Dark.colorDecorativeSkinTint300.png
similarity index 100%
rename from Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_OrangeTheme_Dark.colorDecorativeSkinTint300.png
rename to DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_OrangeTheme_Dark.colorDecorativeSkinTint300.png
diff --git a/Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_OrangeTheme_Dark.colorDecorativeSkinTint400.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_OrangeTheme_Dark.colorDecorativeSkinTint400.png
similarity index 100%
rename from Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_OrangeTheme_Dark.colorDecorativeSkinTint400.png
rename to DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_OrangeTheme_Dark.colorDecorativeSkinTint400.png
diff --git a/Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_OrangeTheme_Dark.colorDecorativeSkinTint500.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_OrangeTheme_Dark.colorDecorativeSkinTint500.png
similarity index 100%
rename from Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_OrangeTheme_Dark.colorDecorativeSkinTint500.png
rename to DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_OrangeTheme_Dark.colorDecorativeSkinTint500.png
diff --git a/Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_OrangeTheme_Dark.colorDecorativeSkinTint600.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_OrangeTheme_Dark.colorDecorativeSkinTint600.png
similarity index 100%
rename from Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_OrangeTheme_Dark.colorDecorativeSkinTint600.png
rename to DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_OrangeTheme_Dark.colorDecorativeSkinTint600.png
diff --git a/Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_OrangeTheme_Dark.colorDecorativeSkinTint700.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_OrangeTheme_Dark.colorDecorativeSkinTint700.png
similarity index 100%
rename from Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_OrangeTheme_Dark.colorDecorativeSkinTint700.png
rename to DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_OrangeTheme_Dark.colorDecorativeSkinTint700.png
diff --git a/Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_OrangeTheme_Dark.colorDecorativeSkinTint800.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_OrangeTheme_Dark.colorDecorativeSkinTint800.png
similarity index 100%
rename from Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_OrangeTheme_Dark.colorDecorativeSkinTint800.png
rename to DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_OrangeTheme_Dark.colorDecorativeSkinTint800.png
diff --git a/Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_OrangeTheme_Dark.colorDecorativeSkinTint900.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_OrangeTheme_Dark.colorDecorativeSkinTint900.png
similarity index 100%
rename from Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_OrangeTheme_Dark.colorDecorativeSkinTint900.png
rename to DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_OrangeTheme_Dark.colorDecorativeSkinTint900.png
diff --git a/Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_OrangeTheme_Dark.colorOpacityLower.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_OrangeTheme_Dark.colorOpacityLower.png
similarity index 100%
rename from Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_OrangeTheme_Dark.colorOpacityLower.png
rename to DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_OrangeTheme_Dark.colorOpacityLower.png
diff --git a/Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_OrangeTheme_Dark.colorOpacityLowest.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_OrangeTheme_Dark.colorOpacityLowest.png
similarity index 100%
rename from Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_OrangeTheme_Dark.colorOpacityLowest.png
rename to DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_OrangeTheme_Dark.colorOpacityLowest.png
diff --git a/Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_OrangeTheme_Dark.colorOpacityTransparent.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_OrangeTheme_Dark.colorOpacityTransparent.png
similarity index 100%
rename from Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_OrangeTheme_Dark.colorOpacityTransparent.png
rename to DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_OrangeTheme_Dark.colorOpacityTransparent.png
diff --git a/Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_OrangeTheme_Dark.colorOverlayDefault.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_OrangeTheme_Dark.colorOverlayDefault.png
similarity index 100%
rename from Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_OrangeTheme_Dark.colorOverlayDefault.png
rename to DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_OrangeTheme_Dark.colorOverlayDefault.png
diff --git a/Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_OrangeTheme_Dark.colorOverlayDrag.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_OrangeTheme_Dark.colorOverlayDrag.png
similarity index 100%
rename from Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_OrangeTheme_Dark.colorOverlayDrag.png
rename to DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_OrangeTheme_Dark.colorOverlayDrag.png
diff --git a/Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_OrangeTheme_Dark.colorOverlayEmphasized.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_OrangeTheme_Dark.colorOverlayEmphasized.png
similarity index 100%
rename from Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_OrangeTheme_Dark.colorOverlayEmphasized.png
rename to DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_OrangeTheme_Dark.colorOverlayEmphasized.png
diff --git a/Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_OrangeTheme_Dark.colorOverlayModal.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_OrangeTheme_Dark.colorOverlayModal.png
similarity index 100%
rename from Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_OrangeTheme_Dark.colorOverlayModal.png
rename to DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_OrangeTheme_Dark.colorOverlayModal.png
diff --git a/Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_OrangeTheme_Dark.colorRepositoryAccentDefault.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_OrangeTheme_Dark.colorRepositoryAccentDefault.png
similarity index 100%
rename from Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_OrangeTheme_Dark.colorRepositoryAccentDefault.png
rename to DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_OrangeTheme_Dark.colorRepositoryAccentDefault.png
diff --git a/Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_OrangeTheme_Dark.colorRepositoryAccentHighest.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_OrangeTheme_Dark.colorRepositoryAccentHighest.png
similarity index 100%
rename from Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_OrangeTheme_Dark.colorRepositoryAccentHighest.png
rename to DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_OrangeTheme_Dark.colorRepositoryAccentHighest.png
diff --git a/Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_OrangeTheme_Dark.colorRepositoryAccentLow.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_OrangeTheme_Dark.colorRepositoryAccentLow.png
similarity index 100%
rename from Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_OrangeTheme_Dark.colorRepositoryAccentLow.png
rename to DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_OrangeTheme_Dark.colorRepositoryAccentLow.png
diff --git a/Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_OrangeTheme_Dark.colorRepositoryAccentLowest.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_OrangeTheme_Dark.colorRepositoryAccentLowest.png
similarity index 100%
rename from Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_OrangeTheme_Dark.colorRepositoryAccentLowest.png
rename to DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_OrangeTheme_Dark.colorRepositoryAccentLowest.png
diff --git a/Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_OrangeTheme_Dark.colorRepositoryInfoDefault.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_OrangeTheme_Dark.colorRepositoryInfoDefault.png
similarity index 100%
rename from Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_OrangeTheme_Dark.colorRepositoryInfoDefault.png
rename to DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_OrangeTheme_Dark.colorRepositoryInfoDefault.png
diff --git a/Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_OrangeTheme_Dark.colorRepositoryInfoHighest.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_OrangeTheme_Dark.colorRepositoryInfoHighest.png
similarity index 100%
rename from Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_OrangeTheme_Dark.colorRepositoryInfoHighest.png
rename to DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_OrangeTheme_Dark.colorRepositoryInfoHighest.png
diff --git a/Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_OrangeTheme_Dark.colorRepositoryInfoLow.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_OrangeTheme_Dark.colorRepositoryInfoLow.png
similarity index 100%
rename from Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_OrangeTheme_Dark.colorRepositoryInfoLow.png
rename to DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_OrangeTheme_Dark.colorRepositoryInfoLow.png
diff --git a/Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_OrangeTheme_Dark.colorRepositoryInfoLowest.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_OrangeTheme_Dark.colorRepositoryInfoLowest.png
similarity index 100%
rename from Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_OrangeTheme_Dark.colorRepositoryInfoLowest.png
rename to DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_OrangeTheme_Dark.colorRepositoryInfoLowest.png
diff --git a/Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_OrangeTheme_Dark.colorRepositoryNegativeDefault.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_OrangeTheme_Dark.colorRepositoryNegativeDefault.png
similarity index 100%
rename from Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_OrangeTheme_Dark.colorRepositoryNegativeDefault.png
rename to DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_OrangeTheme_Dark.colorRepositoryNegativeDefault.png
diff --git a/Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_OrangeTheme_Dark.colorRepositoryNegativeHigh.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_OrangeTheme_Dark.colorRepositoryNegativeHigh.png
similarity index 100%
rename from Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_OrangeTheme_Dark.colorRepositoryNegativeHigh.png
rename to DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_OrangeTheme_Dark.colorRepositoryNegativeHigh.png
diff --git a/Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_OrangeTheme_Dark.colorRepositoryNegativeHigher.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_OrangeTheme_Dark.colorRepositoryNegativeHigher.png
similarity index 100%
rename from Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_OrangeTheme_Dark.colorRepositoryNegativeHigher.png
rename to DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_OrangeTheme_Dark.colorRepositoryNegativeHigher.png
diff --git a/Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_OrangeTheme_Dark.colorRepositoryNegativeHighest.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_OrangeTheme_Dark.colorRepositoryNegativeHighest.png
similarity index 100%
rename from Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_OrangeTheme_Dark.colorRepositoryNegativeHighest.png
rename to DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_OrangeTheme_Dark.colorRepositoryNegativeHighest.png
diff --git a/Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_OrangeTheme_Dark.colorRepositoryNegativeLow.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_OrangeTheme_Dark.colorRepositoryNegativeLow.png
similarity index 100%
rename from Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_OrangeTheme_Dark.colorRepositoryNegativeLow.png
rename to DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_OrangeTheme_Dark.colorRepositoryNegativeLow.png
diff --git a/Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_OrangeTheme_Dark.colorRepositoryNegativeLower.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_OrangeTheme_Dark.colorRepositoryNegativeLower.png
similarity index 100%
rename from Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_OrangeTheme_Dark.colorRepositoryNegativeLower.png
rename to DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_OrangeTheme_Dark.colorRepositoryNegativeLower.png
diff --git a/Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_OrangeTheme_Dark.colorRepositoryNegativeLowest.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_OrangeTheme_Dark.colorRepositoryNegativeLowest.png
similarity index 100%
rename from Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_OrangeTheme_Dark.colorRepositoryNegativeLowest.png
rename to DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_OrangeTheme_Dark.colorRepositoryNegativeLowest.png
diff --git a/Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_OrangeTheme_Dark.colorRepositoryNeutralEmphasizedBlack.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_OrangeTheme_Dark.colorRepositoryNeutralEmphasizedBlack.png
similarity index 100%
rename from Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_OrangeTheme_Dark.colorRepositoryNeutralEmphasizedBlack.png
rename to DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_OrangeTheme_Dark.colorRepositoryNeutralEmphasizedBlack.png
diff --git a/Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_OrangeTheme_Dark.colorRepositoryNeutralEmphasizedHigh.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_OrangeTheme_Dark.colorRepositoryNeutralEmphasizedHigh.png
similarity index 100%
rename from Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_OrangeTheme_Dark.colorRepositoryNeutralEmphasizedHigh.png
rename to DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_OrangeTheme_Dark.colorRepositoryNeutralEmphasizedHigh.png
diff --git a/Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_OrangeTheme_Dark.colorRepositoryNeutralEmphasizedHigher.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_OrangeTheme_Dark.colorRepositoryNeutralEmphasizedHigher.png
similarity index 100%
rename from Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_OrangeTheme_Dark.colorRepositoryNeutralEmphasizedHigher.png
rename to DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_OrangeTheme_Dark.colorRepositoryNeutralEmphasizedHigher.png
diff --git a/Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_OrangeTheme_Dark.colorRepositoryNeutralEmphasizedHighest.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_OrangeTheme_Dark.colorRepositoryNeutralEmphasizedHighest.png
similarity index 100%
rename from Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_OrangeTheme_Dark.colorRepositoryNeutralEmphasizedHighest.png
rename to DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_OrangeTheme_Dark.colorRepositoryNeutralEmphasizedHighest.png
diff --git a/Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_OrangeTheme_Dark.colorRepositoryNeutralEmphasizedMedium.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_OrangeTheme_Dark.colorRepositoryNeutralEmphasizedMedium.png
similarity index 100%
rename from Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_OrangeTheme_Dark.colorRepositoryNeutralEmphasizedMedium.png
rename to DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_OrangeTheme_Dark.colorRepositoryNeutralEmphasizedMedium.png
diff --git a/Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_OrangeTheme_Dark.colorRepositoryNeutralMutedLower.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_OrangeTheme_Dark.colorRepositoryNeutralMutedLower.png
similarity index 100%
rename from Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_OrangeTheme_Dark.colorRepositoryNeutralMutedLower.png
rename to DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_OrangeTheme_Dark.colorRepositoryNeutralMutedLower.png
diff --git a/Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_OrangeTheme_Dark.colorRepositoryNeutralMutedLowest.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_OrangeTheme_Dark.colorRepositoryNeutralMutedLowest.png
similarity index 100%
rename from Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_OrangeTheme_Dark.colorRepositoryNeutralMutedLowest.png
rename to DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_OrangeTheme_Dark.colorRepositoryNeutralMutedLowest.png
diff --git a/Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_OrangeTheme_Dark.colorRepositoryNeutralMutedWhite.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_OrangeTheme_Dark.colorRepositoryNeutralMutedWhite.png
similarity index 100%
rename from Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_OrangeTheme_Dark.colorRepositoryNeutralMutedWhite.png
rename to DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_OrangeTheme_Dark.colorRepositoryNeutralMutedWhite.png
diff --git a/Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_OrangeTheme_Dark.colorRepositoryOpacityBlackHigher.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_OrangeTheme_Dark.colorRepositoryOpacityBlackHigher.png
similarity index 100%
rename from Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_OrangeTheme_Dark.colorRepositoryOpacityBlackHigher.png
rename to DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_OrangeTheme_Dark.colorRepositoryOpacityBlackHigher.png
diff --git a/Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_OrangeTheme_Dark.colorRepositoryOpacityBlackHighest.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_OrangeTheme_Dark.colorRepositoryOpacityBlackHighest.png
similarity index 100%
rename from Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_OrangeTheme_Dark.colorRepositoryOpacityBlackHighest.png
rename to DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_OrangeTheme_Dark.colorRepositoryOpacityBlackHighest.png
diff --git a/Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_OrangeTheme_Dark.colorRepositoryOpacityBlackLow.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_OrangeTheme_Dark.colorRepositoryOpacityBlackLow.png
similarity index 100%
rename from Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_OrangeTheme_Dark.colorRepositoryOpacityBlackLow.png
rename to DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_OrangeTheme_Dark.colorRepositoryOpacityBlackLow.png
diff --git a/Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_OrangeTheme_Dark.colorRepositoryOpacityBlackLower.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_OrangeTheme_Dark.colorRepositoryOpacityBlackLower.png
similarity index 100%
rename from Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_OrangeTheme_Dark.colorRepositoryOpacityBlackLower.png
rename to DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_OrangeTheme_Dark.colorRepositoryOpacityBlackLower.png
diff --git a/Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_OrangeTheme_Dark.colorRepositoryOpacityBlackLowest.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_OrangeTheme_Dark.colorRepositoryOpacityBlackLowest.png
similarity index 100%
rename from Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_OrangeTheme_Dark.colorRepositoryOpacityBlackLowest.png
rename to DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_OrangeTheme_Dark.colorRepositoryOpacityBlackLowest.png
diff --git a/Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_OrangeTheme_Dark.colorRepositoryOpacityBlackMedium.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_OrangeTheme_Dark.colorRepositoryOpacityBlackMedium.png
similarity index 100%
rename from Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_OrangeTheme_Dark.colorRepositoryOpacityBlackMedium.png
rename to DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_OrangeTheme_Dark.colorRepositoryOpacityBlackMedium.png
diff --git a/Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_OrangeTheme_Dark.colorRepositoryOpacityBlackTransparent.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_OrangeTheme_Dark.colorRepositoryOpacityBlackTransparent.png
similarity index 100%
rename from Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_OrangeTheme_Dark.colorRepositoryOpacityBlackTransparent.png
rename to DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_OrangeTheme_Dark.colorRepositoryOpacityBlackTransparent.png
diff --git a/Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_OrangeTheme_Dark.colorRepositoryOpacityInfo.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_OrangeTheme_Dark.colorRepositoryOpacityInfo.png
similarity index 100%
rename from Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_OrangeTheme_Dark.colorRepositoryOpacityInfo.png
rename to DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_OrangeTheme_Dark.colorRepositoryOpacityInfo.png
diff --git a/Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_OrangeTheme_Dark.colorRepositoryOpacityNegative.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_OrangeTheme_Dark.colorRepositoryOpacityNegative.png
similarity index 100%
rename from Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_OrangeTheme_Dark.colorRepositoryOpacityNegative.png
rename to DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_OrangeTheme_Dark.colorRepositoryOpacityNegative.png
diff --git a/Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_OrangeTheme_Dark.colorRepositoryOpacityPositive.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_OrangeTheme_Dark.colorRepositoryOpacityPositive.png
similarity index 100%
rename from Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_OrangeTheme_Dark.colorRepositoryOpacityPositive.png
rename to DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_OrangeTheme_Dark.colorRepositoryOpacityPositive.png
diff --git a/Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_OrangeTheme_Dark.colorRepositoryOpacityWarning.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_OrangeTheme_Dark.colorRepositoryOpacityWarning.png
similarity index 100%
rename from Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_OrangeTheme_Dark.colorRepositoryOpacityWarning.png
rename to DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_OrangeTheme_Dark.colorRepositoryOpacityWarning.png
diff --git a/Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_OrangeTheme_Dark.colorRepositoryOpacityWhiteHigh.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_OrangeTheme_Dark.colorRepositoryOpacityWhiteHigh.png
similarity index 100%
rename from Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_OrangeTheme_Dark.colorRepositoryOpacityWhiteHigh.png
rename to DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_OrangeTheme_Dark.colorRepositoryOpacityWhiteHigh.png
diff --git a/Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_OrangeTheme_Dark.colorRepositoryOpacityWhiteHigher.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_OrangeTheme_Dark.colorRepositoryOpacityWhiteHigher.png
similarity index 100%
rename from Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_OrangeTheme_Dark.colorRepositoryOpacityWhiteHigher.png
rename to DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_OrangeTheme_Dark.colorRepositoryOpacityWhiteHigher.png
diff --git a/Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_OrangeTheme_Dark.colorRepositoryOpacityWhiteHighest.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_OrangeTheme_Dark.colorRepositoryOpacityWhiteHighest.png
similarity index 100%
rename from Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_OrangeTheme_Dark.colorRepositoryOpacityWhiteHighest.png
rename to DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_OrangeTheme_Dark.colorRepositoryOpacityWhiteHighest.png
diff --git a/Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_OrangeTheme_Dark.colorRepositoryOpacityWhiteLow.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_OrangeTheme_Dark.colorRepositoryOpacityWhiteLow.png
similarity index 100%
rename from Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_OrangeTheme_Dark.colorRepositoryOpacityWhiteLow.png
rename to DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_OrangeTheme_Dark.colorRepositoryOpacityWhiteLow.png
diff --git a/Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_OrangeTheme_Dark.colorRepositoryOpacityWhiteLower.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_OrangeTheme_Dark.colorRepositoryOpacityWhiteLower.png
similarity index 100%
rename from Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_OrangeTheme_Dark.colorRepositoryOpacityWhiteLower.png
rename to DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_OrangeTheme_Dark.colorRepositoryOpacityWhiteLower.png
diff --git a/Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_OrangeTheme_Dark.colorRepositoryOpacityWhiteLowest.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_OrangeTheme_Dark.colorRepositoryOpacityWhiteLowest.png
similarity index 100%
rename from Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_OrangeTheme_Dark.colorRepositoryOpacityWhiteLowest.png
rename to DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_OrangeTheme_Dark.colorRepositoryOpacityWhiteLowest.png
diff --git a/Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_OrangeTheme_Dark.colorRepositoryOpacityWhiteTransparent.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_OrangeTheme_Dark.colorRepositoryOpacityWhiteTransparent.png
similarity index 100%
rename from Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_OrangeTheme_Dark.colorRepositoryOpacityWhiteTransparent.png
rename to DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_OrangeTheme_Dark.colorRepositoryOpacityWhiteTransparent.png
diff --git a/Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_OrangeTheme_Dark.colorRepositoryPositiveDefault.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_OrangeTheme_Dark.colorRepositoryPositiveDefault.png
similarity index 100%
rename from Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_OrangeTheme_Dark.colorRepositoryPositiveDefault.png
rename to DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_OrangeTheme_Dark.colorRepositoryPositiveDefault.png
diff --git a/Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_OrangeTheme_Dark.colorRepositoryPositiveHighest.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_OrangeTheme_Dark.colorRepositoryPositiveHighest.png
similarity index 100%
rename from Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_OrangeTheme_Dark.colorRepositoryPositiveHighest.png
rename to DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_OrangeTheme_Dark.colorRepositoryPositiveHighest.png
diff --git a/Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_OrangeTheme_Dark.colorRepositoryPositiveLow.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_OrangeTheme_Dark.colorRepositoryPositiveLow.png
similarity index 100%
rename from Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_OrangeTheme_Dark.colorRepositoryPositiveLow.png
rename to DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_OrangeTheme_Dark.colorRepositoryPositiveLow.png
diff --git a/Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_OrangeTheme_Dark.colorRepositoryPositiveLowest.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_OrangeTheme_Dark.colorRepositoryPositiveLowest.png
similarity index 100%
rename from Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_OrangeTheme_Dark.colorRepositoryPositiveLowest.png
rename to DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_OrangeTheme_Dark.colorRepositoryPositiveLowest.png
diff --git a/Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_OrangeTheme_Dark.colorRepositoryPrimaryDefault.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_OrangeTheme_Dark.colorRepositoryPrimaryDefault.png
similarity index 100%
rename from Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_OrangeTheme_Dark.colorRepositoryPrimaryDefault.png
rename to DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_OrangeTheme_Dark.colorRepositoryPrimaryDefault.png
diff --git a/Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_OrangeTheme_Dark.colorRepositoryPrimaryLow.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_OrangeTheme_Dark.colorRepositoryPrimaryLow.png
similarity index 100%
rename from Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_OrangeTheme_Dark.colorRepositoryPrimaryLow.png
rename to DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_OrangeTheme_Dark.colorRepositoryPrimaryLow.png
diff --git a/Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_OrangeTheme_Dark.colorRepositoryWarningDefault.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_OrangeTheme_Dark.colorRepositoryWarningDefault.png
similarity index 100%
rename from Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_OrangeTheme_Dark.colorRepositoryWarningDefault.png
rename to DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_OrangeTheme_Dark.colorRepositoryWarningDefault.png
diff --git a/Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_OrangeTheme_Dark.colorRepositoryWarningHighest.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_OrangeTheme_Dark.colorRepositoryWarningHighest.png
similarity index 100%
rename from Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_OrangeTheme_Dark.colorRepositoryWarningHighest.png
rename to DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_OrangeTheme_Dark.colorRepositoryWarningHighest.png
diff --git a/Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_OrangeTheme_Dark.colorRepositoryWarningLow.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_OrangeTheme_Dark.colorRepositoryWarningLow.png
similarity index 100%
rename from Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_OrangeTheme_Dark.colorRepositoryWarningLow.png
rename to DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_OrangeTheme_Dark.colorRepositoryWarningLow.png
diff --git a/Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_OrangeTheme_Dark.colorRepositoryWarningLowest.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_OrangeTheme_Dark.colorRepositoryWarningLowest.png
similarity index 100%
rename from Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_OrangeTheme_Dark.colorRepositoryWarningLowest.png
rename to DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_OrangeTheme_Dark.colorRepositoryWarningLowest.png
diff --git a/Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_OrangeTheme_Dark.colorSurfaceBrandPrimary.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_OrangeTheme_Dark.colorSurfaceBrandPrimary.png
similarity index 100%
rename from Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_OrangeTheme_Dark.colorSurfaceBrandPrimary.png
rename to DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_OrangeTheme_Dark.colorSurfaceBrandPrimary.png
diff --git a/Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_OrangeTheme_Dark.colorSurfaceStatusAccentEmphasized.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_OrangeTheme_Dark.colorSurfaceStatusAccentEmphasized.png
similarity index 100%
rename from Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_OrangeTheme_Dark.colorSurfaceStatusAccentEmphasized.png
rename to DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_OrangeTheme_Dark.colorSurfaceStatusAccentEmphasized.png
diff --git a/Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_OrangeTheme_Dark.colorSurfaceStatusAccentMuted.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_OrangeTheme_Dark.colorSurfaceStatusAccentMuted.png
similarity index 100%
rename from Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_OrangeTheme_Dark.colorSurfaceStatusAccentMuted.png
rename to DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_OrangeTheme_Dark.colorSurfaceStatusAccentMuted.png
diff --git a/Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_OrangeTheme_Dark.colorSurfaceStatusInfoEmphasized.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_OrangeTheme_Dark.colorSurfaceStatusInfoEmphasized.png
similarity index 100%
rename from Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_OrangeTheme_Dark.colorSurfaceStatusInfoEmphasized.png
rename to DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_OrangeTheme_Dark.colorSurfaceStatusInfoEmphasized.png
diff --git a/Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_OrangeTheme_Dark.colorSurfaceStatusInfoMuted.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_OrangeTheme_Dark.colorSurfaceStatusInfoMuted.png
similarity index 100%
rename from Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_OrangeTheme_Dark.colorSurfaceStatusInfoMuted.png
rename to DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_OrangeTheme_Dark.colorSurfaceStatusInfoMuted.png
diff --git a/Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_OrangeTheme_Dark.colorSurfaceStatusNegativeEmphasized.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_OrangeTheme_Dark.colorSurfaceStatusNegativeEmphasized.png
similarity index 100%
rename from Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_OrangeTheme_Dark.colorSurfaceStatusNegativeEmphasized.png
rename to DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_OrangeTheme_Dark.colorSurfaceStatusNegativeEmphasized.png
diff --git a/Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_OrangeTheme_Dark.colorSurfaceStatusNegativeMuted.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_OrangeTheme_Dark.colorSurfaceStatusNegativeMuted.png
similarity index 100%
rename from Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_OrangeTheme_Dark.colorSurfaceStatusNegativeMuted.png
rename to DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_OrangeTheme_Dark.colorSurfaceStatusNegativeMuted.png
diff --git a/Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_OrangeTheme_Dark.colorSurfaceStatusNeutralEmphasized.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_OrangeTheme_Dark.colorSurfaceStatusNeutralEmphasized.png
similarity index 100%
rename from Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_OrangeTheme_Dark.colorSurfaceStatusNeutralEmphasized.png
rename to DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_OrangeTheme_Dark.colorSurfaceStatusNeutralEmphasized.png
diff --git a/Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_OrangeTheme_Dark.colorSurfaceStatusNeutralMuted.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_OrangeTheme_Dark.colorSurfaceStatusNeutralMuted.png
similarity index 100%
rename from Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_OrangeTheme_Dark.colorSurfaceStatusNeutralMuted.png
rename to DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_OrangeTheme_Dark.colorSurfaceStatusNeutralMuted.png
diff --git a/Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_OrangeTheme_Dark.colorSurfaceStatusPositiveEmphasized.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_OrangeTheme_Dark.colorSurfaceStatusPositiveEmphasized.png
similarity index 100%
rename from Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_OrangeTheme_Dark.colorSurfaceStatusPositiveEmphasized.png
rename to DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_OrangeTheme_Dark.colorSurfaceStatusPositiveEmphasized.png
diff --git a/Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_OrangeTheme_Dark.colorSurfaceStatusPositiveMuted.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_OrangeTheme_Dark.colorSurfaceStatusPositiveMuted.png
similarity index 100%
rename from Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_OrangeTheme_Dark.colorSurfaceStatusPositiveMuted.png
rename to DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_OrangeTheme_Dark.colorSurfaceStatusPositiveMuted.png
diff --git a/Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_OrangeTheme_Dark.colorSurfaceStatusWarningEmphasized.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_OrangeTheme_Dark.colorSurfaceStatusWarningEmphasized.png
similarity index 100%
rename from Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_OrangeTheme_Dark.colorSurfaceStatusWarningEmphasized.png
rename to DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_OrangeTheme_Dark.colorSurfaceStatusWarningEmphasized.png
diff --git a/Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_OrangeTheme_Dark.colorSurfaceStatusWarningMuted.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_OrangeTheme_Dark.colorSurfaceStatusWarningMuted.png
similarity index 100%
rename from Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_OrangeTheme_Dark.colorSurfaceStatusWarningMuted.png
rename to DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_OrangeTheme_Dark.colorSurfaceStatusWarningMuted.png
diff --git a/Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_OrangeTheme_Light.colorActionDisabled.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_OrangeTheme_Light.colorActionDisabled.png
similarity index 100%
rename from Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_OrangeTheme_Light.colorActionDisabled.png
rename to DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_OrangeTheme_Light.colorActionDisabled.png
diff --git a/Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_OrangeTheme_Light.colorActionEnabled.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_OrangeTheme_Light.colorActionEnabled.png
similarity index 100%
rename from Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_OrangeTheme_Light.colorActionEnabled.png
rename to DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_OrangeTheme_Light.colorActionEnabled.png
diff --git a/Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_OrangeTheme_Light.colorActionFocus.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_OrangeTheme_Light.colorActionFocus.png
similarity index 100%
rename from Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_OrangeTheme_Light.colorActionFocus.png
rename to DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_OrangeTheme_Light.colorActionFocus.png
diff --git a/Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_OrangeTheme_Light.colorActionHighlighted.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_OrangeTheme_Light.colorActionHighlighted.png
similarity index 100%
rename from Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_OrangeTheme_Light.colorActionHighlighted.png
rename to DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_OrangeTheme_Light.colorActionHighlighted.png
diff --git a/Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_OrangeTheme_Light.colorActionHover.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_OrangeTheme_Light.colorActionHover.png
similarity index 100%
rename from Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_OrangeTheme_Light.colorActionHover.png
rename to DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_OrangeTheme_Light.colorActionHover.png
diff --git a/Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_OrangeTheme_Light.colorActionLoading.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_OrangeTheme_Light.colorActionLoading.png
similarity index 100%
rename from Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_OrangeTheme_Light.colorActionLoading.png
rename to DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_OrangeTheme_Light.colorActionLoading.png
diff --git a/Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_OrangeTheme_Light.colorActionNegativeEnabled.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_OrangeTheme_Light.colorActionNegativeEnabled.png
similarity index 100%
rename from Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_OrangeTheme_Light.colorActionNegativeEnabled.png
rename to DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_OrangeTheme_Light.colorActionNegativeEnabled.png
diff --git a/Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_OrangeTheme_Light.colorActionNegativeFocus.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_OrangeTheme_Light.colorActionNegativeFocus.png
similarity index 100%
rename from Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_OrangeTheme_Light.colorActionNegativeFocus.png
rename to DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_OrangeTheme_Light.colorActionNegativeFocus.png
diff --git a/Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_OrangeTheme_Light.colorActionNegativeHover.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_OrangeTheme_Light.colorActionNegativeHover.png
similarity index 100%
rename from Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_OrangeTheme_Light.colorActionNegativeHover.png
rename to DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_OrangeTheme_Light.colorActionNegativeHover.png
diff --git a/Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_OrangeTheme_Light.colorActionNegativeLoading.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_OrangeTheme_Light.colorActionNegativeLoading.png
similarity index 100%
rename from Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_OrangeTheme_Light.colorActionNegativeLoading.png
rename to DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_OrangeTheme_Light.colorActionNegativeLoading.png
diff --git a/Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_OrangeTheme_Light.colorActionNegativePressed.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_OrangeTheme_Light.colorActionNegativePressed.png
similarity index 100%
rename from Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_OrangeTheme_Light.colorActionNegativePressed.png
rename to DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_OrangeTheme_Light.colorActionNegativePressed.png
diff --git a/Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_OrangeTheme_Light.colorActionPressed.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_OrangeTheme_Light.colorActionPressed.png
similarity index 100%
rename from Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_OrangeTheme_Light.colorActionPressed.png
rename to DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_OrangeTheme_Light.colorActionPressed.png
diff --git a/Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_OrangeTheme_Light.colorActionSelected.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_OrangeTheme_Light.colorActionSelected.png
similarity index 100%
rename from Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_OrangeTheme_Light.colorActionSelected.png
rename to DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_OrangeTheme_Light.colorActionSelected.png
diff --git a/Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_OrangeTheme_Light.colorActionSupportEnabled.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_OrangeTheme_Light.colorActionSupportEnabled.png
similarity index 100%
rename from Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_OrangeTheme_Light.colorActionSupportEnabled.png
rename to DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_OrangeTheme_Light.colorActionSupportEnabled.png
diff --git a/Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_OrangeTheme_Light.colorActionSupportFocus.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_OrangeTheme_Light.colorActionSupportFocus.png
similarity index 100%
rename from Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_OrangeTheme_Light.colorActionSupportFocus.png
rename to DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_OrangeTheme_Light.colorActionSupportFocus.png
diff --git a/Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_OrangeTheme_Light.colorActionSupportHover.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_OrangeTheme_Light.colorActionSupportHover.png
similarity index 100%
rename from Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_OrangeTheme_Light.colorActionSupportHover.png
rename to DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_OrangeTheme_Light.colorActionSupportHover.png
diff --git a/Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_OrangeTheme_Light.colorActionSupportLoading.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_OrangeTheme_Light.colorActionSupportLoading.png
similarity index 100%
rename from Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_OrangeTheme_Light.colorActionSupportLoading.png
rename to DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_OrangeTheme_Light.colorActionSupportLoading.png
diff --git a/Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_OrangeTheme_Light.colorActionSupportPressed.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_OrangeTheme_Light.colorActionSupportPressed.png
similarity index 100%
rename from Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_OrangeTheme_Light.colorActionSupportPressed.png
rename to DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_OrangeTheme_Light.colorActionSupportPressed.png
diff --git a/Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_OrangeTheme_Light.colorActionVisited.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_OrangeTheme_Light.colorActionVisited.png
similarity index 100%
rename from Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_OrangeTheme_Light.colorActionVisited.png
rename to DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_OrangeTheme_Light.colorActionVisited.png
diff --git a/Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_OrangeTheme_Light.colorAlwaysBlack.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_OrangeTheme_Light.colorAlwaysBlack.png
similarity index 100%
rename from Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_OrangeTheme_Light.colorAlwaysBlack.png
rename to DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_OrangeTheme_Light.colorAlwaysBlack.png
diff --git a/Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_OrangeTheme_Light.colorAlwaysOnBlack.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_OrangeTheme_Light.colorAlwaysOnBlack.png
similarity index 100%
rename from Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_OrangeTheme_Light.colorAlwaysOnBlack.png
rename to DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_OrangeTheme_Light.colorAlwaysOnBlack.png
diff --git a/Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_OrangeTheme_Light.colorAlwaysOnWhite.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_OrangeTheme_Light.colorAlwaysOnWhite.png
similarity index 100%
rename from Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_OrangeTheme_Light.colorAlwaysOnWhite.png
rename to DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_OrangeTheme_Light.colorAlwaysOnWhite.png
diff --git a/Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_OrangeTheme_Light.colorAlwaysWhite.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_OrangeTheme_Light.colorAlwaysWhite.png
similarity index 100%
rename from Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_OrangeTheme_Light.colorAlwaysWhite.png
rename to DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_OrangeTheme_Light.colorAlwaysWhite.png
diff --git a/Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_OrangeTheme_Light.colorBgEmphasized.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_OrangeTheme_Light.colorBgEmphasized.png
similarity index 100%
rename from Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_OrangeTheme_Light.colorBgEmphasized.png
rename to DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_OrangeTheme_Light.colorBgEmphasized.png
diff --git a/Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_OrangeTheme_Light.colorBgPrimary.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_OrangeTheme_Light.colorBgPrimary.png
similarity index 100%
rename from Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_OrangeTheme_Light.colorBgPrimary.png
rename to DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_OrangeTheme_Light.colorBgPrimary.png
diff --git a/Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_OrangeTheme_Light.colorBgSecondary.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_OrangeTheme_Light.colorBgSecondary.png
similarity index 100%
rename from Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_OrangeTheme_Light.colorBgSecondary.png
rename to DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_OrangeTheme_Light.colorBgSecondary.png
diff --git a/Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_OrangeTheme_Light.colorBgTertiary.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_OrangeTheme_Light.colorBgTertiary.png
similarity index 100%
rename from Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_OrangeTheme_Light.colorBgTertiary.png
rename to DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_OrangeTheme_Light.colorBgTertiary.png
diff --git a/Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_OrangeTheme_Light.colorBorderBrandPrimary.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_OrangeTheme_Light.colorBorderBrandPrimary.png
similarity index 100%
rename from Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_OrangeTheme_Light.colorBorderBrandPrimary.png
rename to DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_OrangeTheme_Light.colorBorderBrandPrimary.png
diff --git a/Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_OrangeTheme_Light.colorBorderDefault.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_OrangeTheme_Light.colorBorderDefault.png
similarity index 100%
rename from Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_OrangeTheme_Light.colorBorderDefault.png
rename to DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_OrangeTheme_Light.colorBorderDefault.png
diff --git a/Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_OrangeTheme_Light.colorBorderEmphasized.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_OrangeTheme_Light.colorBorderEmphasized.png
similarity index 100%
rename from Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_OrangeTheme_Light.colorBorderEmphasized.png
rename to DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_OrangeTheme_Light.colorBorderEmphasized.png
diff --git a/Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_OrangeTheme_Light.colorBorderFocus.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_OrangeTheme_Light.colorBorderFocus.png
similarity index 100%
rename from Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_OrangeTheme_Light.colorBorderFocus.png
rename to DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_OrangeTheme_Light.colorBorderFocus.png
diff --git a/Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_OrangeTheme_Light.colorBorderFocusInset.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_OrangeTheme_Light.colorBorderFocusInset.png
similarity index 100%
rename from Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_OrangeTheme_Light.colorBorderFocusInset.png
rename to DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_OrangeTheme_Light.colorBorderFocusInset.png
diff --git a/Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_OrangeTheme_Light.colorBorderOnBrandPrimary.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_OrangeTheme_Light.colorBorderOnBrandPrimary.png
similarity index 100%
rename from Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_OrangeTheme_Light.colorBorderOnBrandPrimary.png
rename to DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_OrangeTheme_Light.colorBorderOnBrandPrimary.png
diff --git a/Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_OrangeTheme_Light.colorChartBorder.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_OrangeTheme_Light.colorChartBorder.png
similarity index 100%
rename from Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_OrangeTheme_Light.colorChartBorder.png
rename to DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_OrangeTheme_Light.colorChartBorder.png
diff --git a/Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_OrangeTheme_Light.colorChartBorderContrast.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_OrangeTheme_Light.colorChartBorderContrast.png
similarity index 100%
rename from Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_OrangeTheme_Light.colorChartBorderContrast.png
rename to DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_OrangeTheme_Light.colorChartBorderContrast.png
diff --git a/Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_OrangeTheme_Light.colorChartCategoricalTier1.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_OrangeTheme_Light.colorChartCategoricalTier1.png
similarity index 100%
rename from Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_OrangeTheme_Light.colorChartCategoricalTier1.png
rename to DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_OrangeTheme_Light.colorChartCategoricalTier1.png
diff --git a/Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_OrangeTheme_Light.colorChartCategoricalTier10.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_OrangeTheme_Light.colorChartCategoricalTier10.png
similarity index 100%
rename from Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_OrangeTheme_Light.colorChartCategoricalTier10.png
rename to DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_OrangeTheme_Light.colorChartCategoricalTier10.png
diff --git a/Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_OrangeTheme_Light.colorChartCategoricalTier2.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_OrangeTheme_Light.colorChartCategoricalTier2.png
similarity index 100%
rename from Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_OrangeTheme_Light.colorChartCategoricalTier2.png
rename to DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_OrangeTheme_Light.colorChartCategoricalTier2.png
diff --git a/Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_OrangeTheme_Light.colorChartCategoricalTier3.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_OrangeTheme_Light.colorChartCategoricalTier3.png
similarity index 100%
rename from Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_OrangeTheme_Light.colorChartCategoricalTier3.png
rename to DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_OrangeTheme_Light.colorChartCategoricalTier3.png
diff --git a/Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_OrangeTheme_Light.colorChartCategoricalTier4.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_OrangeTheme_Light.colorChartCategoricalTier4.png
similarity index 100%
rename from Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_OrangeTheme_Light.colorChartCategoricalTier4.png
rename to DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_OrangeTheme_Light.colorChartCategoricalTier4.png
diff --git a/Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_OrangeTheme_Light.colorChartCategoricalTier5.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_OrangeTheme_Light.colorChartCategoricalTier5.png
similarity index 100%
rename from Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_OrangeTheme_Light.colorChartCategoricalTier5.png
rename to DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_OrangeTheme_Light.colorChartCategoricalTier5.png
diff --git a/Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_OrangeTheme_Light.colorChartCategoricalTier6.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_OrangeTheme_Light.colorChartCategoricalTier6.png
similarity index 100%
rename from Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_OrangeTheme_Light.colorChartCategoricalTier6.png
rename to DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_OrangeTheme_Light.colorChartCategoricalTier6.png
diff --git a/Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_OrangeTheme_Light.colorChartCategoricalTier7.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_OrangeTheme_Light.colorChartCategoricalTier7.png
similarity index 100%
rename from Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_OrangeTheme_Light.colorChartCategoricalTier7.png
rename to DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_OrangeTheme_Light.colorChartCategoricalTier7.png
diff --git a/Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_OrangeTheme_Light.colorChartCategoricalTier8.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_OrangeTheme_Light.colorChartCategoricalTier8.png
similarity index 100%
rename from Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_OrangeTheme_Light.colorChartCategoricalTier8.png
rename to DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_OrangeTheme_Light.colorChartCategoricalTier8.png
diff --git a/Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_OrangeTheme_Light.colorChartCategoricalTier9.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_OrangeTheme_Light.colorChartCategoricalTier9.png
similarity index 100%
rename from Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_OrangeTheme_Light.colorChartCategoricalTier9.png
rename to DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_OrangeTheme_Light.colorChartCategoricalTier9.png
diff --git a/Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_OrangeTheme_Light.colorChartFunctionalInformation.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_OrangeTheme_Light.colorChartFunctionalInformation.png
similarity index 100%
rename from Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_OrangeTheme_Light.colorChartFunctionalInformation.png
rename to DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_OrangeTheme_Light.colorChartFunctionalInformation.png
diff --git a/Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_OrangeTheme_Light.colorChartFunctionalNegative.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_OrangeTheme_Light.colorChartFunctionalNegative.png
similarity index 100%
rename from Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_OrangeTheme_Light.colorChartFunctionalNegative.png
rename to DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_OrangeTheme_Light.colorChartFunctionalNegative.png
diff --git a/Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_OrangeTheme_Light.colorChartFunctionalPositive.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_OrangeTheme_Light.colorChartFunctionalPositive.png
similarity index 100%
rename from Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_OrangeTheme_Light.colorChartFunctionalPositive.png
rename to DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_OrangeTheme_Light.colorChartFunctionalPositive.png
diff --git a/Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_OrangeTheme_Light.colorChartFunctionalWarning.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_OrangeTheme_Light.colorChartFunctionalWarning.png
similarity index 100%
rename from Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_OrangeTheme_Light.colorChartFunctionalWarning.png
rename to DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_OrangeTheme_Light.colorChartFunctionalWarning.png
diff --git a/Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_OrangeTheme_Light.colorChartGridlines.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_OrangeTheme_Light.colorChartGridlines.png
similarity index 100%
rename from Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_OrangeTheme_Light.colorChartGridlines.png
rename to DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_OrangeTheme_Light.colorChartGridlines.png
diff --git a/Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_OrangeTheme_Light.colorChartHighlight.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_OrangeTheme_Light.colorChartHighlight.png
similarity index 100%
rename from Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_OrangeTheme_Light.colorChartHighlight.png
rename to DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_OrangeTheme_Light.colorChartHighlight.png
diff --git a/Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_OrangeTheme_Light.colorChartNeutral.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_OrangeTheme_Light.colorChartNeutral.png
similarity index 100%
rename from Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_OrangeTheme_Light.colorChartNeutral.png
rename to DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_OrangeTheme_Light.colorChartNeutral.png
diff --git a/Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_OrangeTheme_Light.colorContentBrandPrimary.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_OrangeTheme_Light.colorContentBrandPrimary.png
similarity index 100%
rename from Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_OrangeTheme_Light.colorContentBrandPrimary.png
rename to DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_OrangeTheme_Light.colorContentBrandPrimary.png
diff --git a/Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_OrangeTheme_Light.colorContentDefault.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_OrangeTheme_Light.colorContentDefault.png
similarity index 100%
rename from Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_OrangeTheme_Light.colorContentDefault.png
rename to DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_OrangeTheme_Light.colorContentDefault.png
diff --git a/Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_OrangeTheme_Light.colorContentDisabled.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_OrangeTheme_Light.colorContentDisabled.png
similarity index 100%
rename from Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_OrangeTheme_Light.colorContentDisabled.png
rename to DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_OrangeTheme_Light.colorContentDisabled.png
diff --git a/Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_OrangeTheme_Light.colorContentMuted.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_OrangeTheme_Light.colorContentMuted.png
similarity index 100%
rename from Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_OrangeTheme_Light.colorContentMuted.png
rename to DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_OrangeTheme_Light.colorContentMuted.png
diff --git a/Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_OrangeTheme_Light.colorContentOnActionDisabled.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_OrangeTheme_Light.colorContentOnActionDisabled.png
similarity index 100%
rename from Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_OrangeTheme_Light.colorContentOnActionDisabled.png
rename to DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_OrangeTheme_Light.colorContentOnActionDisabled.png
diff --git a/Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_OrangeTheme_Light.colorContentOnActionEnabled.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_OrangeTheme_Light.colorContentOnActionEnabled.png
similarity index 100%
rename from Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_OrangeTheme_Light.colorContentOnActionEnabled.png
rename to DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_OrangeTheme_Light.colorContentOnActionEnabled.png
diff --git a/Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_OrangeTheme_Light.colorContentOnActionFocus.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_OrangeTheme_Light.colorContentOnActionFocus.png
similarity index 100%
rename from Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_OrangeTheme_Light.colorContentOnActionFocus.png
rename to DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_OrangeTheme_Light.colorContentOnActionFocus.png
diff --git a/Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_OrangeTheme_Light.colorContentOnActionHighlighted.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_OrangeTheme_Light.colorContentOnActionHighlighted.png
similarity index 100%
rename from Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_OrangeTheme_Light.colorContentOnActionHighlighted.png
rename to DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_OrangeTheme_Light.colorContentOnActionHighlighted.png
diff --git a/Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_OrangeTheme_Light.colorContentOnActionHover.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_OrangeTheme_Light.colorContentOnActionHover.png
similarity index 100%
rename from Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_OrangeTheme_Light.colorContentOnActionHover.png
rename to DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_OrangeTheme_Light.colorContentOnActionHover.png
diff --git a/Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_OrangeTheme_Light.colorContentOnActionLoading.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_OrangeTheme_Light.colorContentOnActionLoading.png
similarity index 100%
rename from Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_OrangeTheme_Light.colorContentOnActionLoading.png
rename to DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_OrangeTheme_Light.colorContentOnActionLoading.png
diff --git a/Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_OrangeTheme_Light.colorContentOnActionPressed.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_OrangeTheme_Light.colorContentOnActionPressed.png
similarity index 100%
rename from Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_OrangeTheme_Light.colorContentOnActionPressed.png
rename to DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_OrangeTheme_Light.colorContentOnActionPressed.png
diff --git a/Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_OrangeTheme_Light.colorContentOnBrandPrimary.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_OrangeTheme_Light.colorContentOnBrandPrimary.png
similarity index 100%
rename from Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_OrangeTheme_Light.colorContentOnBrandPrimary.png
rename to DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_OrangeTheme_Light.colorContentOnBrandPrimary.png
diff --git a/Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_OrangeTheme_Light.colorContentOnOverlayEmphasized.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_OrangeTheme_Light.colorContentOnOverlayEmphasized.png
similarity index 100%
rename from Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_OrangeTheme_Light.colorContentOnOverlayEmphasized.png
rename to DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_OrangeTheme_Light.colorContentOnOverlayEmphasized.png
diff --git a/Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_OrangeTheme_Light.colorContentOnStatusEmphasized.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_OrangeTheme_Light.colorContentOnStatusEmphasized.png
similarity index 100%
rename from Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_OrangeTheme_Light.colorContentOnStatusEmphasized.png
rename to DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_OrangeTheme_Light.colorContentOnStatusEmphasized.png
diff --git a/Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_OrangeTheme_Light.colorContentOnStatusEmphasizedAlt.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_OrangeTheme_Light.colorContentOnStatusEmphasizedAlt.png
similarity index 100%
rename from Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_OrangeTheme_Light.colorContentOnStatusEmphasizedAlt.png
rename to DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_OrangeTheme_Light.colorContentOnStatusEmphasizedAlt.png
diff --git a/Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_OrangeTheme_Light.colorContentOnStatusMuted.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_OrangeTheme_Light.colorContentOnStatusMuted.png
similarity index 100%
rename from Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_OrangeTheme_Light.colorContentOnStatusMuted.png
rename to DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_OrangeTheme_Light.colorContentOnStatusMuted.png
diff --git a/Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_OrangeTheme_Light.colorContentStatusInfo.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_OrangeTheme_Light.colorContentStatusInfo.png
similarity index 100%
rename from Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_OrangeTheme_Light.colorContentStatusInfo.png
rename to DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_OrangeTheme_Light.colorContentStatusInfo.png
diff --git a/Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_OrangeTheme_Light.colorContentStatusNegative.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_OrangeTheme_Light.colorContentStatusNegative.png
similarity index 100%
rename from Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_OrangeTheme_Light.colorContentStatusNegative.png
rename to DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_OrangeTheme_Light.colorContentStatusNegative.png
diff --git a/Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_OrangeTheme_Light.colorContentStatusPositive.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_OrangeTheme_Light.colorContentStatusPositive.png
similarity index 100%
rename from Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_OrangeTheme_Light.colorContentStatusPositive.png
rename to DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_OrangeTheme_Light.colorContentStatusPositive.png
diff --git a/Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_OrangeTheme_Light.colorContentStatusWarning.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_OrangeTheme_Light.colorContentStatusWarning.png
similarity index 100%
rename from Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_OrangeTheme_Light.colorContentStatusWarning.png
rename to DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_OrangeTheme_Light.colorContentStatusWarning.png
diff --git a/Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_OrangeTheme_Light.colorDecorativeAccent1Default.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_OrangeTheme_Light.colorDecorativeAccent1Default.png
similarity index 100%
rename from Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_OrangeTheme_Light.colorDecorativeAccent1Default.png
rename to DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_OrangeTheme_Light.colorDecorativeAccent1Default.png
diff --git a/Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_OrangeTheme_Light.colorDecorativeAccent1Emphasized.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_OrangeTheme_Light.colorDecorativeAccent1Emphasized.png
similarity index 100%
rename from Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_OrangeTheme_Light.colorDecorativeAccent1Emphasized.png
rename to DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_OrangeTheme_Light.colorDecorativeAccent1Emphasized.png
diff --git a/Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_OrangeTheme_Light.colorDecorativeAccent1Muted.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_OrangeTheme_Light.colorDecorativeAccent1Muted.png
similarity index 100%
rename from Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_OrangeTheme_Light.colorDecorativeAccent1Muted.png
rename to DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_OrangeTheme_Light.colorDecorativeAccent1Muted.png
diff --git a/Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_OrangeTheme_Light.colorDecorativeAccent2Default.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_OrangeTheme_Light.colorDecorativeAccent2Default.png
similarity index 100%
rename from Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_OrangeTheme_Light.colorDecorativeAccent2Default.png
rename to DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_OrangeTheme_Light.colorDecorativeAccent2Default.png
diff --git a/Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_OrangeTheme_Light.colorDecorativeAccent2Emphasized.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_OrangeTheme_Light.colorDecorativeAccent2Emphasized.png
similarity index 100%
rename from Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_OrangeTheme_Light.colorDecorativeAccent2Emphasized.png
rename to DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_OrangeTheme_Light.colorDecorativeAccent2Emphasized.png
diff --git a/Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_OrangeTheme_Light.colorDecorativeAccent2Muted.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_OrangeTheme_Light.colorDecorativeAccent2Muted.png
similarity index 100%
rename from Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_OrangeTheme_Light.colorDecorativeAccent2Muted.png
rename to DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_OrangeTheme_Light.colorDecorativeAccent2Muted.png
diff --git a/Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_OrangeTheme_Light.colorDecorativeAccent3Default.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_OrangeTheme_Light.colorDecorativeAccent3Default.png
similarity index 100%
rename from Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_OrangeTheme_Light.colorDecorativeAccent3Default.png
rename to DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_OrangeTheme_Light.colorDecorativeAccent3Default.png
diff --git a/Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_OrangeTheme_Light.colorDecorativeAccent3Emphasized.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_OrangeTheme_Light.colorDecorativeAccent3Emphasized.png
similarity index 100%
rename from Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_OrangeTheme_Light.colorDecorativeAccent3Emphasized.png
rename to DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_OrangeTheme_Light.colorDecorativeAccent3Emphasized.png
diff --git a/Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_OrangeTheme_Light.colorDecorativeAccent3Muted.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_OrangeTheme_Light.colorDecorativeAccent3Muted.png
similarity index 100%
rename from Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_OrangeTheme_Light.colorDecorativeAccent3Muted.png
rename to DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_OrangeTheme_Light.colorDecorativeAccent3Muted.png
diff --git a/Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_OrangeTheme_Light.colorDecorativeAccent4Default.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_OrangeTheme_Light.colorDecorativeAccent4Default.png
similarity index 100%
rename from Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_OrangeTheme_Light.colorDecorativeAccent4Default.png
rename to DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_OrangeTheme_Light.colorDecorativeAccent4Default.png
diff --git a/Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_OrangeTheme_Light.colorDecorativeAccent4Emphasized.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_OrangeTheme_Light.colorDecorativeAccent4Emphasized.png
similarity index 100%
rename from Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_OrangeTheme_Light.colorDecorativeAccent4Emphasized.png
rename to DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_OrangeTheme_Light.colorDecorativeAccent4Emphasized.png
diff --git a/Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_OrangeTheme_Light.colorDecorativeAccent4Muted.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_OrangeTheme_Light.colorDecorativeAccent4Muted.png
similarity index 100%
rename from Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_OrangeTheme_Light.colorDecorativeAccent4Muted.png
rename to DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_OrangeTheme_Light.colorDecorativeAccent4Muted.png
diff --git a/Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_OrangeTheme_Light.colorDecorativeAccent5Default.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_OrangeTheme_Light.colorDecorativeAccent5Default.png
similarity index 100%
rename from Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_OrangeTheme_Light.colorDecorativeAccent5Default.png
rename to DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_OrangeTheme_Light.colorDecorativeAccent5Default.png
diff --git a/Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_OrangeTheme_Light.colorDecorativeAccent5Emphasized.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_OrangeTheme_Light.colorDecorativeAccent5Emphasized.png
similarity index 100%
rename from Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_OrangeTheme_Light.colorDecorativeAccent5Emphasized.png
rename to DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_OrangeTheme_Light.colorDecorativeAccent5Emphasized.png
diff --git a/Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_OrangeTheme_Light.colorDecorativeAccent5Muted.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_OrangeTheme_Light.colorDecorativeAccent5Muted.png
similarity index 100%
rename from Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_OrangeTheme_Light.colorDecorativeAccent5Muted.png
rename to DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_OrangeTheme_Light.colorDecorativeAccent5Muted.png
diff --git a/Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_OrangeTheme_Light.colorDecorativeBrandPrimary.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_OrangeTheme_Light.colorDecorativeBrandPrimary.png
similarity index 100%
rename from Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_OrangeTheme_Light.colorDecorativeBrandPrimary.png
rename to DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_OrangeTheme_Light.colorDecorativeBrandPrimary.png
diff --git a/Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_OrangeTheme_Light.colorDecorativeBrandSecondary.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_OrangeTheme_Light.colorDecorativeBrandSecondary.png
similarity index 100%
rename from Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_OrangeTheme_Light.colorDecorativeBrandSecondary.png
rename to DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_OrangeTheme_Light.colorDecorativeBrandSecondary.png
diff --git a/Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_OrangeTheme_Light.colorDecorativeBrandTertiary.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_OrangeTheme_Light.colorDecorativeBrandTertiary.png
similarity index 100%
rename from Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_OrangeTheme_Light.colorDecorativeBrandTertiary.png
rename to DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_OrangeTheme_Light.colorDecorativeBrandTertiary.png
diff --git a/Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_OrangeTheme_Light.colorDecorativeNeutralDefault.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_OrangeTheme_Light.colorDecorativeNeutralDefault.png
similarity index 100%
rename from Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_OrangeTheme_Light.colorDecorativeNeutralDefault.png
rename to DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_OrangeTheme_Light.colorDecorativeNeutralDefault.png
diff --git a/Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_OrangeTheme_Light.colorDecorativeNeutralEmphasized.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_OrangeTheme_Light.colorDecorativeNeutralEmphasized.png
similarity index 100%
rename from Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_OrangeTheme_Light.colorDecorativeNeutralEmphasized.png
rename to DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_OrangeTheme_Light.colorDecorativeNeutralEmphasized.png
diff --git a/Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_OrangeTheme_Light.colorDecorativeNeutralMuted.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_OrangeTheme_Light.colorDecorativeNeutralMuted.png
similarity index 100%
rename from Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_OrangeTheme_Light.colorDecorativeNeutralMuted.png
rename to DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_OrangeTheme_Light.colorDecorativeNeutralMuted.png
diff --git a/Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_OrangeTheme_Light.colorDecorativeSkinTint100.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_OrangeTheme_Light.colorDecorativeSkinTint100.png
similarity index 100%
rename from Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_OrangeTheme_Light.colorDecorativeSkinTint100.png
rename to DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_OrangeTheme_Light.colorDecorativeSkinTint100.png
diff --git a/Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_OrangeTheme_Light.colorDecorativeSkinTint200.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_OrangeTheme_Light.colorDecorativeSkinTint200.png
similarity index 100%
rename from Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_OrangeTheme_Light.colorDecorativeSkinTint200.png
rename to DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_OrangeTheme_Light.colorDecorativeSkinTint200.png
diff --git a/Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_OrangeTheme_Light.colorDecorativeSkinTint300.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_OrangeTheme_Light.colorDecorativeSkinTint300.png
similarity index 100%
rename from Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_OrangeTheme_Light.colorDecorativeSkinTint300.png
rename to DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_OrangeTheme_Light.colorDecorativeSkinTint300.png
diff --git a/Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_OrangeTheme_Light.colorDecorativeSkinTint400.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_OrangeTheme_Light.colorDecorativeSkinTint400.png
similarity index 100%
rename from Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_OrangeTheme_Light.colorDecorativeSkinTint400.png
rename to DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_OrangeTheme_Light.colorDecorativeSkinTint400.png
diff --git a/Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_OrangeTheme_Light.colorDecorativeSkinTint500.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_OrangeTheme_Light.colorDecorativeSkinTint500.png
similarity index 100%
rename from Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_OrangeTheme_Light.colorDecorativeSkinTint500.png
rename to DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_OrangeTheme_Light.colorDecorativeSkinTint500.png
diff --git a/Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_OrangeTheme_Light.colorDecorativeSkinTint600.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_OrangeTheme_Light.colorDecorativeSkinTint600.png
similarity index 100%
rename from Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_OrangeTheme_Light.colorDecorativeSkinTint600.png
rename to DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_OrangeTheme_Light.colorDecorativeSkinTint600.png
diff --git a/Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_OrangeTheme_Light.colorDecorativeSkinTint700.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_OrangeTheme_Light.colorDecorativeSkinTint700.png
similarity index 100%
rename from Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_OrangeTheme_Light.colorDecorativeSkinTint700.png
rename to DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_OrangeTheme_Light.colorDecorativeSkinTint700.png
diff --git a/Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_OrangeTheme_Light.colorDecorativeSkinTint800.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_OrangeTheme_Light.colorDecorativeSkinTint800.png
similarity index 100%
rename from Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_OrangeTheme_Light.colorDecorativeSkinTint800.png
rename to DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_OrangeTheme_Light.colorDecorativeSkinTint800.png
diff --git a/Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_OrangeTheme_Light.colorDecorativeSkinTint900.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_OrangeTheme_Light.colorDecorativeSkinTint900.png
similarity index 100%
rename from Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_OrangeTheme_Light.colorDecorativeSkinTint900.png
rename to DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_OrangeTheme_Light.colorDecorativeSkinTint900.png
diff --git a/Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_OrangeTheme_Light.colorOpacityLower.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_OrangeTheme_Light.colorOpacityLower.png
similarity index 100%
rename from Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_OrangeTheme_Light.colorOpacityLower.png
rename to DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_OrangeTheme_Light.colorOpacityLower.png
diff --git a/Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_OrangeTheme_Light.colorOpacityLowest.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_OrangeTheme_Light.colorOpacityLowest.png
similarity index 100%
rename from Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_OrangeTheme_Light.colorOpacityLowest.png
rename to DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_OrangeTheme_Light.colorOpacityLowest.png
diff --git a/Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_OrangeTheme_Light.colorOpacityTransparent.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_OrangeTheme_Light.colorOpacityTransparent.png
similarity index 100%
rename from Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_OrangeTheme_Light.colorOpacityTransparent.png
rename to DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_OrangeTheme_Light.colorOpacityTransparent.png
diff --git a/Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_OrangeTheme_Light.colorOverlayDefault.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_OrangeTheme_Light.colorOverlayDefault.png
similarity index 100%
rename from Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_OrangeTheme_Light.colorOverlayDefault.png
rename to DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_OrangeTheme_Light.colorOverlayDefault.png
diff --git a/Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_OrangeTheme_Light.colorOverlayDrag.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_OrangeTheme_Light.colorOverlayDrag.png
similarity index 100%
rename from Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_OrangeTheme_Light.colorOverlayDrag.png
rename to DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_OrangeTheme_Light.colorOverlayDrag.png
diff --git a/Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_OrangeTheme_Light.colorOverlayEmphasized.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_OrangeTheme_Light.colorOverlayEmphasized.png
similarity index 100%
rename from Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_OrangeTheme_Light.colorOverlayEmphasized.png
rename to DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_OrangeTheme_Light.colorOverlayEmphasized.png
diff --git a/Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_OrangeTheme_Light.colorOverlayModal.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_OrangeTheme_Light.colorOverlayModal.png
similarity index 100%
rename from Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_OrangeTheme_Light.colorOverlayModal.png
rename to DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_OrangeTheme_Light.colorOverlayModal.png
diff --git a/Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_OrangeTheme_Light.colorRepositoryAccentDefault.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_OrangeTheme_Light.colorRepositoryAccentDefault.png
similarity index 100%
rename from Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_OrangeTheme_Light.colorRepositoryAccentDefault.png
rename to DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_OrangeTheme_Light.colorRepositoryAccentDefault.png
diff --git a/Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_OrangeTheme_Light.colorRepositoryAccentHighest.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_OrangeTheme_Light.colorRepositoryAccentHighest.png
similarity index 100%
rename from Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_OrangeTheme_Light.colorRepositoryAccentHighest.png
rename to DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_OrangeTheme_Light.colorRepositoryAccentHighest.png
diff --git a/Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_OrangeTheme_Light.colorRepositoryAccentLow.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_OrangeTheme_Light.colorRepositoryAccentLow.png
similarity index 100%
rename from Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_OrangeTheme_Light.colorRepositoryAccentLow.png
rename to DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_OrangeTheme_Light.colorRepositoryAccentLow.png
diff --git a/Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_OrangeTheme_Light.colorRepositoryAccentLowest.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_OrangeTheme_Light.colorRepositoryAccentLowest.png
similarity index 100%
rename from Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_OrangeTheme_Light.colorRepositoryAccentLowest.png
rename to DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_OrangeTheme_Light.colorRepositoryAccentLowest.png
diff --git a/Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_OrangeTheme_Light.colorRepositoryInfoDefault.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_OrangeTheme_Light.colorRepositoryInfoDefault.png
similarity index 100%
rename from Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_OrangeTheme_Light.colorRepositoryInfoDefault.png
rename to DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_OrangeTheme_Light.colorRepositoryInfoDefault.png
diff --git a/Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_OrangeTheme_Light.colorRepositoryInfoHighest.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_OrangeTheme_Light.colorRepositoryInfoHighest.png
similarity index 100%
rename from Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_OrangeTheme_Light.colorRepositoryInfoHighest.png
rename to DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_OrangeTheme_Light.colorRepositoryInfoHighest.png
diff --git a/Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_OrangeTheme_Light.colorRepositoryInfoLow.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_OrangeTheme_Light.colorRepositoryInfoLow.png
similarity index 100%
rename from Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_OrangeTheme_Light.colorRepositoryInfoLow.png
rename to DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_OrangeTheme_Light.colorRepositoryInfoLow.png
diff --git a/Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_OrangeTheme_Light.colorRepositoryInfoLowest.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_OrangeTheme_Light.colorRepositoryInfoLowest.png
similarity index 100%
rename from Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_OrangeTheme_Light.colorRepositoryInfoLowest.png
rename to DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_OrangeTheme_Light.colorRepositoryInfoLowest.png
diff --git a/Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_OrangeTheme_Light.colorRepositoryNegativeDefault.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_OrangeTheme_Light.colorRepositoryNegativeDefault.png
similarity index 100%
rename from Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_OrangeTheme_Light.colorRepositoryNegativeDefault.png
rename to DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_OrangeTheme_Light.colorRepositoryNegativeDefault.png
diff --git a/Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_OrangeTheme_Light.colorRepositoryNegativeHigh.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_OrangeTheme_Light.colorRepositoryNegativeHigh.png
similarity index 100%
rename from Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_OrangeTheme_Light.colorRepositoryNegativeHigh.png
rename to DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_OrangeTheme_Light.colorRepositoryNegativeHigh.png
diff --git a/Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_OrangeTheme_Light.colorRepositoryNegativeHigher.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_OrangeTheme_Light.colorRepositoryNegativeHigher.png
similarity index 100%
rename from Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_OrangeTheme_Light.colorRepositoryNegativeHigher.png
rename to DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_OrangeTheme_Light.colorRepositoryNegativeHigher.png
diff --git a/Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_OrangeTheme_Light.colorRepositoryNegativeHighest.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_OrangeTheme_Light.colorRepositoryNegativeHighest.png
similarity index 100%
rename from Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_OrangeTheme_Light.colorRepositoryNegativeHighest.png
rename to DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_OrangeTheme_Light.colorRepositoryNegativeHighest.png
diff --git a/Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_OrangeTheme_Light.colorRepositoryNegativeLow.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_OrangeTheme_Light.colorRepositoryNegativeLow.png
similarity index 100%
rename from Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_OrangeTheme_Light.colorRepositoryNegativeLow.png
rename to DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_OrangeTheme_Light.colorRepositoryNegativeLow.png
diff --git a/Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_OrangeTheme_Light.colorRepositoryNegativeLower.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_OrangeTheme_Light.colorRepositoryNegativeLower.png
similarity index 100%
rename from Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_OrangeTheme_Light.colorRepositoryNegativeLower.png
rename to DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_OrangeTheme_Light.colorRepositoryNegativeLower.png
diff --git a/Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_OrangeTheme_Light.colorRepositoryNegativeLowest.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_OrangeTheme_Light.colorRepositoryNegativeLowest.png
similarity index 100%
rename from Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_OrangeTheme_Light.colorRepositoryNegativeLowest.png
rename to DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_OrangeTheme_Light.colorRepositoryNegativeLowest.png
diff --git a/Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_OrangeTheme_Light.colorRepositoryNeutralEmphasizedBlack.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_OrangeTheme_Light.colorRepositoryNeutralEmphasizedBlack.png
similarity index 100%
rename from Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_OrangeTheme_Light.colorRepositoryNeutralEmphasizedBlack.png
rename to DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_OrangeTheme_Light.colorRepositoryNeutralEmphasizedBlack.png
diff --git a/Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_OrangeTheme_Light.colorRepositoryNeutralEmphasizedHigh.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_OrangeTheme_Light.colorRepositoryNeutralEmphasizedHigh.png
similarity index 100%
rename from Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_OrangeTheme_Light.colorRepositoryNeutralEmphasizedHigh.png
rename to DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_OrangeTheme_Light.colorRepositoryNeutralEmphasizedHigh.png
diff --git a/Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_OrangeTheme_Light.colorRepositoryNeutralEmphasizedHigher.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_OrangeTheme_Light.colorRepositoryNeutralEmphasizedHigher.png
similarity index 100%
rename from Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_OrangeTheme_Light.colorRepositoryNeutralEmphasizedHigher.png
rename to DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_OrangeTheme_Light.colorRepositoryNeutralEmphasizedHigher.png
diff --git a/Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_OrangeTheme_Light.colorRepositoryNeutralEmphasizedHighest.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_OrangeTheme_Light.colorRepositoryNeutralEmphasizedHighest.png
similarity index 100%
rename from Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_OrangeTheme_Light.colorRepositoryNeutralEmphasizedHighest.png
rename to DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_OrangeTheme_Light.colorRepositoryNeutralEmphasizedHighest.png
diff --git a/Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_OrangeTheme_Light.colorRepositoryNeutralEmphasizedMedium.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_OrangeTheme_Light.colorRepositoryNeutralEmphasizedMedium.png
similarity index 100%
rename from Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_OrangeTheme_Light.colorRepositoryNeutralEmphasizedMedium.png
rename to DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_OrangeTheme_Light.colorRepositoryNeutralEmphasizedMedium.png
diff --git a/Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_OrangeTheme_Light.colorRepositoryNeutralMutedLower.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_OrangeTheme_Light.colorRepositoryNeutralMutedLower.png
similarity index 100%
rename from Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_OrangeTheme_Light.colorRepositoryNeutralMutedLower.png
rename to DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_OrangeTheme_Light.colorRepositoryNeutralMutedLower.png
diff --git a/Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_OrangeTheme_Light.colorRepositoryNeutralMutedLowest.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_OrangeTheme_Light.colorRepositoryNeutralMutedLowest.png
similarity index 100%
rename from Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_OrangeTheme_Light.colorRepositoryNeutralMutedLowest.png
rename to DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_OrangeTheme_Light.colorRepositoryNeutralMutedLowest.png
diff --git a/Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_OrangeTheme_Light.colorRepositoryNeutralMutedWhite.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_OrangeTheme_Light.colorRepositoryNeutralMutedWhite.png
similarity index 100%
rename from Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_OrangeTheme_Light.colorRepositoryNeutralMutedWhite.png
rename to DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_OrangeTheme_Light.colorRepositoryNeutralMutedWhite.png
diff --git a/Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_OrangeTheme_Light.colorRepositoryOpacityBlackHigher.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_OrangeTheme_Light.colorRepositoryOpacityBlackHigher.png
similarity index 100%
rename from Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_OrangeTheme_Light.colorRepositoryOpacityBlackHigher.png
rename to DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_OrangeTheme_Light.colorRepositoryOpacityBlackHigher.png
diff --git a/Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_OrangeTheme_Light.colorRepositoryOpacityBlackHighest.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_OrangeTheme_Light.colorRepositoryOpacityBlackHighest.png
similarity index 100%
rename from Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_OrangeTheme_Light.colorRepositoryOpacityBlackHighest.png
rename to DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_OrangeTheme_Light.colorRepositoryOpacityBlackHighest.png
diff --git a/Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_OrangeTheme_Light.colorRepositoryOpacityBlackLow.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_OrangeTheme_Light.colorRepositoryOpacityBlackLow.png
similarity index 100%
rename from Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_OrangeTheme_Light.colorRepositoryOpacityBlackLow.png
rename to DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_OrangeTheme_Light.colorRepositoryOpacityBlackLow.png
diff --git a/Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_OrangeTheme_Light.colorRepositoryOpacityBlackLower.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_OrangeTheme_Light.colorRepositoryOpacityBlackLower.png
similarity index 100%
rename from Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_OrangeTheme_Light.colorRepositoryOpacityBlackLower.png
rename to DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_OrangeTheme_Light.colorRepositoryOpacityBlackLower.png
diff --git a/Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_OrangeTheme_Light.colorRepositoryOpacityBlackLowest.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_OrangeTheme_Light.colorRepositoryOpacityBlackLowest.png
similarity index 100%
rename from Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_OrangeTheme_Light.colorRepositoryOpacityBlackLowest.png
rename to DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_OrangeTheme_Light.colorRepositoryOpacityBlackLowest.png
diff --git a/Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_OrangeTheme_Light.colorRepositoryOpacityBlackMedium.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_OrangeTheme_Light.colorRepositoryOpacityBlackMedium.png
similarity index 100%
rename from Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_OrangeTheme_Light.colorRepositoryOpacityBlackMedium.png
rename to DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_OrangeTheme_Light.colorRepositoryOpacityBlackMedium.png
diff --git a/Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_OrangeTheme_Light.colorRepositoryOpacityBlackTransparent.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_OrangeTheme_Light.colorRepositoryOpacityBlackTransparent.png
similarity index 100%
rename from Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_OrangeTheme_Light.colorRepositoryOpacityBlackTransparent.png
rename to DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_OrangeTheme_Light.colorRepositoryOpacityBlackTransparent.png
diff --git a/Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_OrangeTheme_Light.colorRepositoryOpacityInfo.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_OrangeTheme_Light.colorRepositoryOpacityInfo.png
similarity index 100%
rename from Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_OrangeTheme_Light.colorRepositoryOpacityInfo.png
rename to DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_OrangeTheme_Light.colorRepositoryOpacityInfo.png
diff --git a/Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_OrangeTheme_Light.colorRepositoryOpacityNegative.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_OrangeTheme_Light.colorRepositoryOpacityNegative.png
similarity index 100%
rename from Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_OrangeTheme_Light.colorRepositoryOpacityNegative.png
rename to DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_OrangeTheme_Light.colorRepositoryOpacityNegative.png
diff --git a/Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_OrangeTheme_Light.colorRepositoryOpacityPositive.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_OrangeTheme_Light.colorRepositoryOpacityPositive.png
similarity index 100%
rename from Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_OrangeTheme_Light.colorRepositoryOpacityPositive.png
rename to DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_OrangeTheme_Light.colorRepositoryOpacityPositive.png
diff --git a/Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_OrangeTheme_Light.colorRepositoryOpacityWarning.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_OrangeTheme_Light.colorRepositoryOpacityWarning.png
similarity index 100%
rename from Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_OrangeTheme_Light.colorRepositoryOpacityWarning.png
rename to DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_OrangeTheme_Light.colorRepositoryOpacityWarning.png
diff --git a/Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_OrangeTheme_Light.colorRepositoryOpacityWhiteHigh.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_OrangeTheme_Light.colorRepositoryOpacityWhiteHigh.png
similarity index 100%
rename from Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_OrangeTheme_Light.colorRepositoryOpacityWhiteHigh.png
rename to DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_OrangeTheme_Light.colorRepositoryOpacityWhiteHigh.png
diff --git a/Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_OrangeTheme_Light.colorRepositoryOpacityWhiteHigher.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_OrangeTheme_Light.colorRepositoryOpacityWhiteHigher.png
similarity index 100%
rename from Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_OrangeTheme_Light.colorRepositoryOpacityWhiteHigher.png
rename to DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_OrangeTheme_Light.colorRepositoryOpacityWhiteHigher.png
diff --git a/Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_OrangeTheme_Light.colorRepositoryOpacityWhiteHighest.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_OrangeTheme_Light.colorRepositoryOpacityWhiteHighest.png
similarity index 100%
rename from Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_OrangeTheme_Light.colorRepositoryOpacityWhiteHighest.png
rename to DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_OrangeTheme_Light.colorRepositoryOpacityWhiteHighest.png
diff --git a/Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_OrangeTheme_Light.colorRepositoryOpacityWhiteLow.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_OrangeTheme_Light.colorRepositoryOpacityWhiteLow.png
similarity index 100%
rename from Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_OrangeTheme_Light.colorRepositoryOpacityWhiteLow.png
rename to DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_OrangeTheme_Light.colorRepositoryOpacityWhiteLow.png
diff --git a/Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_OrangeTheme_Light.colorRepositoryOpacityWhiteLower.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_OrangeTheme_Light.colorRepositoryOpacityWhiteLower.png
similarity index 100%
rename from Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_OrangeTheme_Light.colorRepositoryOpacityWhiteLower.png
rename to DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_OrangeTheme_Light.colorRepositoryOpacityWhiteLower.png
diff --git a/Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_OrangeTheme_Light.colorRepositoryOpacityWhiteLowest.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_OrangeTheme_Light.colorRepositoryOpacityWhiteLowest.png
similarity index 100%
rename from Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_OrangeTheme_Light.colorRepositoryOpacityWhiteLowest.png
rename to DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_OrangeTheme_Light.colorRepositoryOpacityWhiteLowest.png
diff --git a/Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_OrangeTheme_Light.colorRepositoryOpacityWhiteTransparent.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_OrangeTheme_Light.colorRepositoryOpacityWhiteTransparent.png
similarity index 100%
rename from Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_OrangeTheme_Light.colorRepositoryOpacityWhiteTransparent.png
rename to DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_OrangeTheme_Light.colorRepositoryOpacityWhiteTransparent.png
diff --git a/Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_OrangeTheme_Light.colorRepositoryPositiveDefault.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_OrangeTheme_Light.colorRepositoryPositiveDefault.png
similarity index 100%
rename from Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_OrangeTheme_Light.colorRepositoryPositiveDefault.png
rename to DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_OrangeTheme_Light.colorRepositoryPositiveDefault.png
diff --git a/Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_OrangeTheme_Light.colorRepositoryPositiveHighest.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_OrangeTheme_Light.colorRepositoryPositiveHighest.png
similarity index 100%
rename from Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_OrangeTheme_Light.colorRepositoryPositiveHighest.png
rename to DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_OrangeTheme_Light.colorRepositoryPositiveHighest.png
diff --git a/Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_OrangeTheme_Light.colorRepositoryPositiveLow.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_OrangeTheme_Light.colorRepositoryPositiveLow.png
similarity index 100%
rename from Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_OrangeTheme_Light.colorRepositoryPositiveLow.png
rename to DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_OrangeTheme_Light.colorRepositoryPositiveLow.png
diff --git a/Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_OrangeTheme_Light.colorRepositoryPositiveLowest.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_OrangeTheme_Light.colorRepositoryPositiveLowest.png
similarity index 100%
rename from Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_OrangeTheme_Light.colorRepositoryPositiveLowest.png
rename to DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_OrangeTheme_Light.colorRepositoryPositiveLowest.png
diff --git a/Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_OrangeTheme_Light.colorRepositoryPrimaryDefault.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_OrangeTheme_Light.colorRepositoryPrimaryDefault.png
similarity index 100%
rename from Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_OrangeTheme_Light.colorRepositoryPrimaryDefault.png
rename to DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_OrangeTheme_Light.colorRepositoryPrimaryDefault.png
diff --git a/Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_OrangeTheme_Light.colorRepositoryPrimaryLow.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_OrangeTheme_Light.colorRepositoryPrimaryLow.png
similarity index 100%
rename from Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_OrangeTheme_Light.colorRepositoryPrimaryLow.png
rename to DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_OrangeTheme_Light.colorRepositoryPrimaryLow.png
diff --git a/Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_OrangeTheme_Light.colorRepositoryWarningDefault.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_OrangeTheme_Light.colorRepositoryWarningDefault.png
similarity index 100%
rename from Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_OrangeTheme_Light.colorRepositoryWarningDefault.png
rename to DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_OrangeTheme_Light.colorRepositoryWarningDefault.png
diff --git a/Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_OrangeTheme_Light.colorRepositoryWarningHighest.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_OrangeTheme_Light.colorRepositoryWarningHighest.png
similarity index 100%
rename from Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_OrangeTheme_Light.colorRepositoryWarningHighest.png
rename to DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_OrangeTheme_Light.colorRepositoryWarningHighest.png
diff --git a/Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_OrangeTheme_Light.colorRepositoryWarningLow.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_OrangeTheme_Light.colorRepositoryWarningLow.png
similarity index 100%
rename from Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_OrangeTheme_Light.colorRepositoryWarningLow.png
rename to DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_OrangeTheme_Light.colorRepositoryWarningLow.png
diff --git a/Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_OrangeTheme_Light.colorRepositoryWarningLowest.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_OrangeTheme_Light.colorRepositoryWarningLowest.png
similarity index 100%
rename from Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_OrangeTheme_Light.colorRepositoryWarningLowest.png
rename to DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_OrangeTheme_Light.colorRepositoryWarningLowest.png
diff --git a/Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_OrangeTheme_Light.colorSurfaceBrandPrimary.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_OrangeTheme_Light.colorSurfaceBrandPrimary.png
similarity index 100%
rename from Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_OrangeTheme_Light.colorSurfaceBrandPrimary.png
rename to DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_OrangeTheme_Light.colorSurfaceBrandPrimary.png
diff --git a/Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_OrangeTheme_Light.colorSurfaceStatusAccentEmphasized.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_OrangeTheme_Light.colorSurfaceStatusAccentEmphasized.png
similarity index 100%
rename from Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_OrangeTheme_Light.colorSurfaceStatusAccentEmphasized.png
rename to DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_OrangeTheme_Light.colorSurfaceStatusAccentEmphasized.png
diff --git a/Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_OrangeTheme_Light.colorSurfaceStatusAccentMuted.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_OrangeTheme_Light.colorSurfaceStatusAccentMuted.png
similarity index 100%
rename from Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_OrangeTheme_Light.colorSurfaceStatusAccentMuted.png
rename to DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_OrangeTheme_Light.colorSurfaceStatusAccentMuted.png
diff --git a/Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_OrangeTheme_Light.colorSurfaceStatusInfoEmphasized.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_OrangeTheme_Light.colorSurfaceStatusInfoEmphasized.png
similarity index 100%
rename from Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_OrangeTheme_Light.colorSurfaceStatusInfoEmphasized.png
rename to DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_OrangeTheme_Light.colorSurfaceStatusInfoEmphasized.png
diff --git a/Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_OrangeTheme_Light.colorSurfaceStatusInfoMuted.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_OrangeTheme_Light.colorSurfaceStatusInfoMuted.png
similarity index 100%
rename from Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_OrangeTheme_Light.colorSurfaceStatusInfoMuted.png
rename to DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_OrangeTheme_Light.colorSurfaceStatusInfoMuted.png
diff --git a/Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_OrangeTheme_Light.colorSurfaceStatusNegativeEmphasized.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_OrangeTheme_Light.colorSurfaceStatusNegativeEmphasized.png
similarity index 100%
rename from Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_OrangeTheme_Light.colorSurfaceStatusNegativeEmphasized.png
rename to DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_OrangeTheme_Light.colorSurfaceStatusNegativeEmphasized.png
diff --git a/Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_OrangeTheme_Light.colorSurfaceStatusNegativeMuted.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_OrangeTheme_Light.colorSurfaceStatusNegativeMuted.png
similarity index 100%
rename from Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_OrangeTheme_Light.colorSurfaceStatusNegativeMuted.png
rename to DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_OrangeTheme_Light.colorSurfaceStatusNegativeMuted.png
diff --git a/Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_OrangeTheme_Light.colorSurfaceStatusNeutralEmphasized.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_OrangeTheme_Light.colorSurfaceStatusNeutralEmphasized.png
similarity index 100%
rename from Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_OrangeTheme_Light.colorSurfaceStatusNeutralEmphasized.png
rename to DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_OrangeTheme_Light.colorSurfaceStatusNeutralEmphasized.png
diff --git a/Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_OrangeTheme_Light.colorSurfaceStatusNeutralMuted.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_OrangeTheme_Light.colorSurfaceStatusNeutralMuted.png
similarity index 100%
rename from Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_OrangeTheme_Light.colorSurfaceStatusNeutralMuted.png
rename to DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_OrangeTheme_Light.colorSurfaceStatusNeutralMuted.png
diff --git a/Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_OrangeTheme_Light.colorSurfaceStatusPositiveEmphasized.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_OrangeTheme_Light.colorSurfaceStatusPositiveEmphasized.png
similarity index 100%
rename from Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_OrangeTheme_Light.colorSurfaceStatusPositiveEmphasized.png
rename to DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_OrangeTheme_Light.colorSurfaceStatusPositiveEmphasized.png
diff --git a/Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_OrangeTheme_Light.colorSurfaceStatusPositiveMuted.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_OrangeTheme_Light.colorSurfaceStatusPositiveMuted.png
similarity index 100%
rename from Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_OrangeTheme_Light.colorSurfaceStatusPositiveMuted.png
rename to DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_OrangeTheme_Light.colorSurfaceStatusPositiveMuted.png
diff --git a/Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_OrangeTheme_Light.colorSurfaceStatusWarningEmphasized.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_OrangeTheme_Light.colorSurfaceStatusWarningEmphasized.png
similarity index 100%
rename from Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_OrangeTheme_Light.colorSurfaceStatusWarningEmphasized.png
rename to DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_OrangeTheme_Light.colorSurfaceStatusWarningEmphasized.png
diff --git a/Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_OrangeTheme_Light.colorSurfaceStatusWarningMuted.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_OrangeTheme_Light.colorSurfaceStatusWarningMuted.png
similarity index 100%
rename from Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_OrangeTheme_Light.colorSurfaceStatusWarningMuted.png
rename to DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/test_OrangeTheme_Light.colorSurfaceStatusWarningMuted.png
diff --git a/Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Size/OUDSTokensSizeUITests.swift b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Size/OUDSTokensSizeUITests.swift
similarity index 100%
rename from Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Size/OUDSTokensSizeUITests.swift
rename to DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Size/OUDSTokensSizeUITests.swift
diff --git a/Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Size/__Snapshots__/OUDSTokensSizeUITests/test_InverseTheme_Dark.sizeIconDecorative2xl.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Size/__Snapshots__/OUDSTokensSizeUITests/test_InverseTheme_Dark.sizeIconDecorative2xl.png
similarity index 100%
rename from Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Size/__Snapshots__/OUDSTokensSizeUITests/test_InverseTheme_Dark.sizeIconDecorative2xl.png
rename to DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Size/__Snapshots__/OUDSTokensSizeUITests/test_InverseTheme_Dark.sizeIconDecorative2xl.png
diff --git a/Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Size/__Snapshots__/OUDSTokensSizeUITests/test_InverseTheme_Dark.sizeIconDecorative2xs.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Size/__Snapshots__/OUDSTokensSizeUITests/test_InverseTheme_Dark.sizeIconDecorative2xs.png
similarity index 100%
rename from Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Size/__Snapshots__/OUDSTokensSizeUITests/test_InverseTheme_Dark.sizeIconDecorative2xs.png
rename to DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Size/__Snapshots__/OUDSTokensSizeUITests/test_InverseTheme_Dark.sizeIconDecorative2xs.png
diff --git a/Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Size/__Snapshots__/OUDSTokensSizeUITests/test_InverseTheme_Dark.sizeIconDecorativeLg.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Size/__Snapshots__/OUDSTokensSizeUITests/test_InverseTheme_Dark.sizeIconDecorativeLg.png
similarity index 100%
rename from Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Size/__Snapshots__/OUDSTokensSizeUITests/test_InverseTheme_Dark.sizeIconDecorativeLg.png
rename to DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Size/__Snapshots__/OUDSTokensSizeUITests/test_InverseTheme_Dark.sizeIconDecorativeLg.png
diff --git a/Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Size/__Snapshots__/OUDSTokensSizeUITests/test_InverseTheme_Dark.sizeIconDecorativeMd.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Size/__Snapshots__/OUDSTokensSizeUITests/test_InverseTheme_Dark.sizeIconDecorativeMd.png
similarity index 100%
rename from Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Size/__Snapshots__/OUDSTokensSizeUITests/test_InverseTheme_Dark.sizeIconDecorativeMd.png
rename to DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Size/__Snapshots__/OUDSTokensSizeUITests/test_InverseTheme_Dark.sizeIconDecorativeMd.png
diff --git a/Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Size/__Snapshots__/OUDSTokensSizeUITests/test_InverseTheme_Dark.sizeIconDecorativeSm.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Size/__Snapshots__/OUDSTokensSizeUITests/test_InverseTheme_Dark.sizeIconDecorativeSm.png
similarity index 100%
rename from Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Size/__Snapshots__/OUDSTokensSizeUITests/test_InverseTheme_Dark.sizeIconDecorativeSm.png
rename to DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Size/__Snapshots__/OUDSTokensSizeUITests/test_InverseTheme_Dark.sizeIconDecorativeSm.png
diff --git a/Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Size/__Snapshots__/OUDSTokensSizeUITests/test_InverseTheme_Dark.sizeIconDecorativeXl.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Size/__Snapshots__/OUDSTokensSizeUITests/test_InverseTheme_Dark.sizeIconDecorativeXl.png
similarity index 100%
rename from Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Size/__Snapshots__/OUDSTokensSizeUITests/test_InverseTheme_Dark.sizeIconDecorativeXl.png
rename to DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Size/__Snapshots__/OUDSTokensSizeUITests/test_InverseTheme_Dark.sizeIconDecorativeXl.png
diff --git a/Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Size/__Snapshots__/OUDSTokensSizeUITests/test_InverseTheme_Dark.sizeIconDecorativeXs.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Size/__Snapshots__/OUDSTokensSizeUITests/test_InverseTheme_Dark.sizeIconDecorativeXs.png
similarity index 100%
rename from Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Size/__Snapshots__/OUDSTokensSizeUITests/test_InverseTheme_Dark.sizeIconDecorativeXs.png
rename to DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Size/__Snapshots__/OUDSTokensSizeUITests/test_InverseTheme_Dark.sizeIconDecorativeXs.png
diff --git a/Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Size/__Snapshots__/OUDSTokensSizeUITests/test_InverseTheme_Dark.sizeIconWithBodyLargeSizeLg.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Size/__Snapshots__/OUDSTokensSizeUITests/test_InverseTheme_Dark.sizeIconWithBodyLargeSizeLg.png
similarity index 100%
rename from Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Size/__Snapshots__/OUDSTokensSizeUITests/test_InverseTheme_Dark.sizeIconWithBodyLargeSizeLg.png
rename to DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Size/__Snapshots__/OUDSTokensSizeUITests/test_InverseTheme_Dark.sizeIconWithBodyLargeSizeLg.png
diff --git a/Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Size/__Snapshots__/OUDSTokensSizeUITests/test_InverseTheme_Dark.sizeIconWithBodyLargeSizeMd.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Size/__Snapshots__/OUDSTokensSizeUITests/test_InverseTheme_Dark.sizeIconWithBodyLargeSizeMd.png
similarity index 100%
rename from Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Size/__Snapshots__/OUDSTokensSizeUITests/test_InverseTheme_Dark.sizeIconWithBodyLargeSizeMd.png
rename to DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Size/__Snapshots__/OUDSTokensSizeUITests/test_InverseTheme_Dark.sizeIconWithBodyLargeSizeMd.png
diff --git a/Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Size/__Snapshots__/OUDSTokensSizeUITests/test_InverseTheme_Dark.sizeIconWithBodyLargeSizeSm.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Size/__Snapshots__/OUDSTokensSizeUITests/test_InverseTheme_Dark.sizeIconWithBodyLargeSizeSm.png
similarity index 100%
rename from Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Size/__Snapshots__/OUDSTokensSizeUITests/test_InverseTheme_Dark.sizeIconWithBodyLargeSizeSm.png
rename to DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Size/__Snapshots__/OUDSTokensSizeUITests/test_InverseTheme_Dark.sizeIconWithBodyLargeSizeSm.png
diff --git a/Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Size/__Snapshots__/OUDSTokensSizeUITests/test_InverseTheme_Dark.sizeIconWithBodyMediumSizeLg.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Size/__Snapshots__/OUDSTokensSizeUITests/test_InverseTheme_Dark.sizeIconWithBodyMediumSizeLg.png
similarity index 100%
rename from Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Size/__Snapshots__/OUDSTokensSizeUITests/test_InverseTheme_Dark.sizeIconWithBodyMediumSizeLg.png
rename to DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Size/__Snapshots__/OUDSTokensSizeUITests/test_InverseTheme_Dark.sizeIconWithBodyMediumSizeLg.png
diff --git a/Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Size/__Snapshots__/OUDSTokensSizeUITests/test_InverseTheme_Dark.sizeIconWithBodyMediumSizeMd.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Size/__Snapshots__/OUDSTokensSizeUITests/test_InverseTheme_Dark.sizeIconWithBodyMediumSizeMd.png
similarity index 100%
rename from Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Size/__Snapshots__/OUDSTokensSizeUITests/test_InverseTheme_Dark.sizeIconWithBodyMediumSizeMd.png
rename to DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Size/__Snapshots__/OUDSTokensSizeUITests/test_InverseTheme_Dark.sizeIconWithBodyMediumSizeMd.png
diff --git a/Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Size/__Snapshots__/OUDSTokensSizeUITests/test_InverseTheme_Dark.sizeIconWithBodyMediumSizeSm.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Size/__Snapshots__/OUDSTokensSizeUITests/test_InverseTheme_Dark.sizeIconWithBodyMediumSizeSm.png
similarity index 100%
rename from Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Size/__Snapshots__/OUDSTokensSizeUITests/test_InverseTheme_Dark.sizeIconWithBodyMediumSizeSm.png
rename to DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Size/__Snapshots__/OUDSTokensSizeUITests/test_InverseTheme_Dark.sizeIconWithBodyMediumSizeSm.png
diff --git a/Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Size/__Snapshots__/OUDSTokensSizeUITests/test_InverseTheme_Dark.sizeIconWithBodySmallSizeLg.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Size/__Snapshots__/OUDSTokensSizeUITests/test_InverseTheme_Dark.sizeIconWithBodySmallSizeLg.png
similarity index 100%
rename from Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Size/__Snapshots__/OUDSTokensSizeUITests/test_InverseTheme_Dark.sizeIconWithBodySmallSizeLg.png
rename to DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Size/__Snapshots__/OUDSTokensSizeUITests/test_InverseTheme_Dark.sizeIconWithBodySmallSizeLg.png
diff --git a/Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Size/__Snapshots__/OUDSTokensSizeUITests/test_InverseTheme_Dark.sizeIconWithBodySmallSizeMd.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Size/__Snapshots__/OUDSTokensSizeUITests/test_InverseTheme_Dark.sizeIconWithBodySmallSizeMd.png
similarity index 100%
rename from Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Size/__Snapshots__/OUDSTokensSizeUITests/test_InverseTheme_Dark.sizeIconWithBodySmallSizeMd.png
rename to DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Size/__Snapshots__/OUDSTokensSizeUITests/test_InverseTheme_Dark.sizeIconWithBodySmallSizeMd.png
diff --git a/Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Size/__Snapshots__/OUDSTokensSizeUITests/test_InverseTheme_Dark.sizeIconWithBodySmallSizeSm.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Size/__Snapshots__/OUDSTokensSizeUITests/test_InverseTheme_Dark.sizeIconWithBodySmallSizeSm.png
similarity index 100%
rename from Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Size/__Snapshots__/OUDSTokensSizeUITests/test_InverseTheme_Dark.sizeIconWithBodySmallSizeSm.png
rename to DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Size/__Snapshots__/OUDSTokensSizeUITests/test_InverseTheme_Dark.sizeIconWithBodySmallSizeSm.png
diff --git a/Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Size/__Snapshots__/OUDSTokensSizeUITests/test_InverseTheme_Dark.sizeIconWithHeadingLargeSizeLg.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Size/__Snapshots__/OUDSTokensSizeUITests/test_InverseTheme_Dark.sizeIconWithHeadingLargeSizeLg.png
similarity index 100%
rename from Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Size/__Snapshots__/OUDSTokensSizeUITests/test_InverseTheme_Dark.sizeIconWithHeadingLargeSizeLg.png
rename to DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Size/__Snapshots__/OUDSTokensSizeUITests/test_InverseTheme_Dark.sizeIconWithHeadingLargeSizeLg.png
diff --git a/Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Size/__Snapshots__/OUDSTokensSizeUITests/test_InverseTheme_Dark.sizeIconWithHeadingLargeSizeMd.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Size/__Snapshots__/OUDSTokensSizeUITests/test_InverseTheme_Dark.sizeIconWithHeadingLargeSizeMd.png
similarity index 100%
rename from Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Size/__Snapshots__/OUDSTokensSizeUITests/test_InverseTheme_Dark.sizeIconWithHeadingLargeSizeMd.png
rename to DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Size/__Snapshots__/OUDSTokensSizeUITests/test_InverseTheme_Dark.sizeIconWithHeadingLargeSizeMd.png
diff --git a/Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Size/__Snapshots__/OUDSTokensSizeUITests/test_InverseTheme_Dark.sizeIconWithHeadingLargeSizeSm.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Size/__Snapshots__/OUDSTokensSizeUITests/test_InverseTheme_Dark.sizeIconWithHeadingLargeSizeSm.png
similarity index 100%
rename from Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Size/__Snapshots__/OUDSTokensSizeUITests/test_InverseTheme_Dark.sizeIconWithHeadingLargeSizeSm.png
rename to DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Size/__Snapshots__/OUDSTokensSizeUITests/test_InverseTheme_Dark.sizeIconWithHeadingLargeSizeSm.png
diff --git a/Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Size/__Snapshots__/OUDSTokensSizeUITests/test_InverseTheme_Dark.sizeIconWithHeadingMediumSizeLg.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Size/__Snapshots__/OUDSTokensSizeUITests/test_InverseTheme_Dark.sizeIconWithHeadingMediumSizeLg.png
similarity index 100%
rename from Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Size/__Snapshots__/OUDSTokensSizeUITests/test_InverseTheme_Dark.sizeIconWithHeadingMediumSizeLg.png
rename to DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Size/__Snapshots__/OUDSTokensSizeUITests/test_InverseTheme_Dark.sizeIconWithHeadingMediumSizeLg.png
diff --git a/Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Size/__Snapshots__/OUDSTokensSizeUITests/test_InverseTheme_Dark.sizeIconWithHeadingMediumSizeMd.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Size/__Snapshots__/OUDSTokensSizeUITests/test_InverseTheme_Dark.sizeIconWithHeadingMediumSizeMd.png
similarity index 100%
rename from Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Size/__Snapshots__/OUDSTokensSizeUITests/test_InverseTheme_Dark.sizeIconWithHeadingMediumSizeMd.png
rename to DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Size/__Snapshots__/OUDSTokensSizeUITests/test_InverseTheme_Dark.sizeIconWithHeadingMediumSizeMd.png
diff --git a/Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Size/__Snapshots__/OUDSTokensSizeUITests/test_InverseTheme_Dark.sizeIconWithHeadingMediumSizeSm.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Size/__Snapshots__/OUDSTokensSizeUITests/test_InverseTheme_Dark.sizeIconWithHeadingMediumSizeSm.png
similarity index 100%
rename from Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Size/__Snapshots__/OUDSTokensSizeUITests/test_InverseTheme_Dark.sizeIconWithHeadingMediumSizeSm.png
rename to DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Size/__Snapshots__/OUDSTokensSizeUITests/test_InverseTheme_Dark.sizeIconWithHeadingMediumSizeSm.png
diff --git a/Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Size/__Snapshots__/OUDSTokensSizeUITests/test_InverseTheme_Dark.sizeIconWithHeadingSmallSizeLg.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Size/__Snapshots__/OUDSTokensSizeUITests/test_InverseTheme_Dark.sizeIconWithHeadingSmallSizeLg.png
similarity index 100%
rename from Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Size/__Snapshots__/OUDSTokensSizeUITests/test_InverseTheme_Dark.sizeIconWithHeadingSmallSizeLg.png
rename to DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Size/__Snapshots__/OUDSTokensSizeUITests/test_InverseTheme_Dark.sizeIconWithHeadingSmallSizeLg.png
diff --git a/Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Size/__Snapshots__/OUDSTokensSizeUITests/test_InverseTheme_Dark.sizeIconWithHeadingSmallSizeMd.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Size/__Snapshots__/OUDSTokensSizeUITests/test_InverseTheme_Dark.sizeIconWithHeadingSmallSizeMd.png
similarity index 100%
rename from Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Size/__Snapshots__/OUDSTokensSizeUITests/test_InverseTheme_Dark.sizeIconWithHeadingSmallSizeMd.png
rename to DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Size/__Snapshots__/OUDSTokensSizeUITests/test_InverseTheme_Dark.sizeIconWithHeadingSmallSizeMd.png
diff --git a/Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Size/__Snapshots__/OUDSTokensSizeUITests/test_InverseTheme_Dark.sizeIconWithHeadingSmallSizeSm.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Size/__Snapshots__/OUDSTokensSizeUITests/test_InverseTheme_Dark.sizeIconWithHeadingSmallSizeSm.png
similarity index 100%
rename from Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Size/__Snapshots__/OUDSTokensSizeUITests/test_InverseTheme_Dark.sizeIconWithHeadingSmallSizeSm.png
rename to DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Size/__Snapshots__/OUDSTokensSizeUITests/test_InverseTheme_Dark.sizeIconWithHeadingSmallSizeSm.png
diff --git a/Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Size/__Snapshots__/OUDSTokensSizeUITests/test_InverseTheme_Dark.sizeIconWithHeadingXlargeSizeLg.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Size/__Snapshots__/OUDSTokensSizeUITests/test_InverseTheme_Dark.sizeIconWithHeadingXlargeSizeLg.png
similarity index 100%
rename from Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Size/__Snapshots__/OUDSTokensSizeUITests/test_InverseTheme_Dark.sizeIconWithHeadingXlargeSizeLg.png
rename to DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Size/__Snapshots__/OUDSTokensSizeUITests/test_InverseTheme_Dark.sizeIconWithHeadingXlargeSizeLg.png
diff --git a/Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Size/__Snapshots__/OUDSTokensSizeUITests/test_InverseTheme_Dark.sizeIconWithHeadingXlargeSizeMd.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Size/__Snapshots__/OUDSTokensSizeUITests/test_InverseTheme_Dark.sizeIconWithHeadingXlargeSizeMd.png
similarity index 100%
rename from Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Size/__Snapshots__/OUDSTokensSizeUITests/test_InverseTheme_Dark.sizeIconWithHeadingXlargeSizeMd.png
rename to DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Size/__Snapshots__/OUDSTokensSizeUITests/test_InverseTheme_Dark.sizeIconWithHeadingXlargeSizeMd.png
diff --git a/Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Size/__Snapshots__/OUDSTokensSizeUITests/test_InverseTheme_Dark.sizeIconWithHeadingXlargeSizeSm.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Size/__Snapshots__/OUDSTokensSizeUITests/test_InverseTheme_Dark.sizeIconWithHeadingXlargeSizeSm.png
similarity index 100%
rename from Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Size/__Snapshots__/OUDSTokensSizeUITests/test_InverseTheme_Dark.sizeIconWithHeadingXlargeSizeSm.png
rename to DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Size/__Snapshots__/OUDSTokensSizeUITests/test_InverseTheme_Dark.sizeIconWithHeadingXlargeSizeSm.png
diff --git a/Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Size/__Snapshots__/OUDSTokensSizeUITests/test_InverseTheme_Dark.sizeIconWithLabelLargeSizeLg.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Size/__Snapshots__/OUDSTokensSizeUITests/test_InverseTheme_Dark.sizeIconWithLabelLargeSizeLg.png
similarity index 100%
rename from Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Size/__Snapshots__/OUDSTokensSizeUITests/test_InverseTheme_Dark.sizeIconWithLabelLargeSizeLg.png
rename to DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Size/__Snapshots__/OUDSTokensSizeUITests/test_InverseTheme_Dark.sizeIconWithLabelLargeSizeLg.png
diff --git a/Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Size/__Snapshots__/OUDSTokensSizeUITests/test_InverseTheme_Dark.sizeIconWithLabelLargeSizeMd.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Size/__Snapshots__/OUDSTokensSizeUITests/test_InverseTheme_Dark.sizeIconWithLabelLargeSizeMd.png
similarity index 100%
rename from Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Size/__Snapshots__/OUDSTokensSizeUITests/test_InverseTheme_Dark.sizeIconWithLabelLargeSizeMd.png
rename to DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Size/__Snapshots__/OUDSTokensSizeUITests/test_InverseTheme_Dark.sizeIconWithLabelLargeSizeMd.png
diff --git a/Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Size/__Snapshots__/OUDSTokensSizeUITests/test_InverseTheme_Dark.sizeIconWithLabelLargeSizeSm.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Size/__Snapshots__/OUDSTokensSizeUITests/test_InverseTheme_Dark.sizeIconWithLabelLargeSizeSm.png
similarity index 100%
rename from Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Size/__Snapshots__/OUDSTokensSizeUITests/test_InverseTheme_Dark.sizeIconWithLabelLargeSizeSm.png
rename to DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Size/__Snapshots__/OUDSTokensSizeUITests/test_InverseTheme_Dark.sizeIconWithLabelLargeSizeSm.png
diff --git a/Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Size/__Snapshots__/OUDSTokensSizeUITests/test_InverseTheme_Dark.sizeIconWithLabelLargeSizeXl.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Size/__Snapshots__/OUDSTokensSizeUITests/test_InverseTheme_Dark.sizeIconWithLabelLargeSizeXl.png
similarity index 100%
rename from Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Size/__Snapshots__/OUDSTokensSizeUITests/test_InverseTheme_Dark.sizeIconWithLabelLargeSizeXl.png
rename to DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Size/__Snapshots__/OUDSTokensSizeUITests/test_InverseTheme_Dark.sizeIconWithLabelLargeSizeXl.png
diff --git a/Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Size/__Snapshots__/OUDSTokensSizeUITests/test_InverseTheme_Dark.sizeIconWithLabelLargeSizeXs.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Size/__Snapshots__/OUDSTokensSizeUITests/test_InverseTheme_Dark.sizeIconWithLabelLargeSizeXs.png
similarity index 100%
rename from Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Size/__Snapshots__/OUDSTokensSizeUITests/test_InverseTheme_Dark.sizeIconWithLabelLargeSizeXs.png
rename to DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Size/__Snapshots__/OUDSTokensSizeUITests/test_InverseTheme_Dark.sizeIconWithLabelLargeSizeXs.png
diff --git a/Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Size/__Snapshots__/OUDSTokensSizeUITests/test_InverseTheme_Dark.sizeIconWithLabelMediumSizeLg.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Size/__Snapshots__/OUDSTokensSizeUITests/test_InverseTheme_Dark.sizeIconWithLabelMediumSizeLg.png
similarity index 100%
rename from Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Size/__Snapshots__/OUDSTokensSizeUITests/test_InverseTheme_Dark.sizeIconWithLabelMediumSizeLg.png
rename to DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Size/__Snapshots__/OUDSTokensSizeUITests/test_InverseTheme_Dark.sizeIconWithLabelMediumSizeLg.png
diff --git a/Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Size/__Snapshots__/OUDSTokensSizeUITests/test_InverseTheme_Dark.sizeIconWithLabelMediumSizeMd.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Size/__Snapshots__/OUDSTokensSizeUITests/test_InverseTheme_Dark.sizeIconWithLabelMediumSizeMd.png
similarity index 100%
rename from Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Size/__Snapshots__/OUDSTokensSizeUITests/test_InverseTheme_Dark.sizeIconWithLabelMediumSizeMd.png
rename to DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Size/__Snapshots__/OUDSTokensSizeUITests/test_InverseTheme_Dark.sizeIconWithLabelMediumSizeMd.png
diff --git a/Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Size/__Snapshots__/OUDSTokensSizeUITests/test_InverseTheme_Dark.sizeIconWithLabelMediumSizeSm.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Size/__Snapshots__/OUDSTokensSizeUITests/test_InverseTheme_Dark.sizeIconWithLabelMediumSizeSm.png
similarity index 100%
rename from Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Size/__Snapshots__/OUDSTokensSizeUITests/test_InverseTheme_Dark.sizeIconWithLabelMediumSizeSm.png
rename to DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Size/__Snapshots__/OUDSTokensSizeUITests/test_InverseTheme_Dark.sizeIconWithLabelMediumSizeSm.png
diff --git a/Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Size/__Snapshots__/OUDSTokensSizeUITests/test_InverseTheme_Dark.sizeIconWithLabelMediumSizeXs.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Size/__Snapshots__/OUDSTokensSizeUITests/test_InverseTheme_Dark.sizeIconWithLabelMediumSizeXs.png
similarity index 100%
rename from Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Size/__Snapshots__/OUDSTokensSizeUITests/test_InverseTheme_Dark.sizeIconWithLabelMediumSizeXs.png
rename to DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Size/__Snapshots__/OUDSTokensSizeUITests/test_InverseTheme_Dark.sizeIconWithLabelMediumSizeXs.png
diff --git a/Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Size/__Snapshots__/OUDSTokensSizeUITests/test_InverseTheme_Dark.sizeIconWithLabelSmallSizeLg.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Size/__Snapshots__/OUDSTokensSizeUITests/test_InverseTheme_Dark.sizeIconWithLabelSmallSizeLg.png
similarity index 100%
rename from Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Size/__Snapshots__/OUDSTokensSizeUITests/test_InverseTheme_Dark.sizeIconWithLabelSmallSizeLg.png
rename to DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Size/__Snapshots__/OUDSTokensSizeUITests/test_InverseTheme_Dark.sizeIconWithLabelSmallSizeLg.png
diff --git a/Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Size/__Snapshots__/OUDSTokensSizeUITests/test_InverseTheme_Dark.sizeIconWithLabelSmallSizeMd.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Size/__Snapshots__/OUDSTokensSizeUITests/test_InverseTheme_Dark.sizeIconWithLabelSmallSizeMd.png
similarity index 100%
rename from Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Size/__Snapshots__/OUDSTokensSizeUITests/test_InverseTheme_Dark.sizeIconWithLabelSmallSizeMd.png
rename to DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Size/__Snapshots__/OUDSTokensSizeUITests/test_InverseTheme_Dark.sizeIconWithLabelSmallSizeMd.png
diff --git a/Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Size/__Snapshots__/OUDSTokensSizeUITests/test_InverseTheme_Dark.sizeIconWithLabelSmallSizeSm.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Size/__Snapshots__/OUDSTokensSizeUITests/test_InverseTheme_Dark.sizeIconWithLabelSmallSizeSm.png
similarity index 100%
rename from Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Size/__Snapshots__/OUDSTokensSizeUITests/test_InverseTheme_Dark.sizeIconWithLabelSmallSizeSm.png
rename to DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Size/__Snapshots__/OUDSTokensSizeUITests/test_InverseTheme_Dark.sizeIconWithLabelSmallSizeSm.png
diff --git a/Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Size/__Snapshots__/OUDSTokensSizeUITests/test_InverseTheme_Dark.sizeIconWithLabelSmallSizeXs.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Size/__Snapshots__/OUDSTokensSizeUITests/test_InverseTheme_Dark.sizeIconWithLabelSmallSizeXs.png
similarity index 100%
rename from Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Size/__Snapshots__/OUDSTokensSizeUITests/test_InverseTheme_Dark.sizeIconWithLabelSmallSizeXs.png
rename to DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Size/__Snapshots__/OUDSTokensSizeUITests/test_InverseTheme_Dark.sizeIconWithLabelSmallSizeXs.png
diff --git a/Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Size/__Snapshots__/OUDSTokensSizeUITests/test_InverseTheme_Dark.sizeIconWithLabelXlargeSizeLg.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Size/__Snapshots__/OUDSTokensSizeUITests/test_InverseTheme_Dark.sizeIconWithLabelXlargeSizeLg.png
similarity index 100%
rename from Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Size/__Snapshots__/OUDSTokensSizeUITests/test_InverseTheme_Dark.sizeIconWithLabelXlargeSizeLg.png
rename to DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Size/__Snapshots__/OUDSTokensSizeUITests/test_InverseTheme_Dark.sizeIconWithLabelXlargeSizeLg.png
diff --git a/Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Size/__Snapshots__/OUDSTokensSizeUITests/test_InverseTheme_Dark.sizeIconWithLabelXlargeSizeMd.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Size/__Snapshots__/OUDSTokensSizeUITests/test_InverseTheme_Dark.sizeIconWithLabelXlargeSizeMd.png
similarity index 100%
rename from Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Size/__Snapshots__/OUDSTokensSizeUITests/test_InverseTheme_Dark.sizeIconWithLabelXlargeSizeMd.png
rename to DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Size/__Snapshots__/OUDSTokensSizeUITests/test_InverseTheme_Dark.sizeIconWithLabelXlargeSizeMd.png
diff --git a/Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Size/__Snapshots__/OUDSTokensSizeUITests/test_InverseTheme_Dark.sizeIconWithLabelXlargeSizeSm.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Size/__Snapshots__/OUDSTokensSizeUITests/test_InverseTheme_Dark.sizeIconWithLabelXlargeSizeSm.png
similarity index 100%
rename from Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Size/__Snapshots__/OUDSTokensSizeUITests/test_InverseTheme_Dark.sizeIconWithLabelXlargeSizeSm.png
rename to DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Size/__Snapshots__/OUDSTokensSizeUITests/test_InverseTheme_Dark.sizeIconWithLabelXlargeSizeSm.png
diff --git a/Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Size/__Snapshots__/OUDSTokensSizeUITests/test_InverseTheme_Light.sizeIconDecorative2xl.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Size/__Snapshots__/OUDSTokensSizeUITests/test_InverseTheme_Light.sizeIconDecorative2xl.png
similarity index 100%
rename from Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Size/__Snapshots__/OUDSTokensSizeUITests/test_InverseTheme_Light.sizeIconDecorative2xl.png
rename to DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Size/__Snapshots__/OUDSTokensSizeUITests/test_InverseTheme_Light.sizeIconDecorative2xl.png
diff --git a/Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Size/__Snapshots__/OUDSTokensSizeUITests/test_InverseTheme_Light.sizeIconDecorative2xs.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Size/__Snapshots__/OUDSTokensSizeUITests/test_InverseTheme_Light.sizeIconDecorative2xs.png
similarity index 100%
rename from Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Size/__Snapshots__/OUDSTokensSizeUITests/test_InverseTheme_Light.sizeIconDecorative2xs.png
rename to DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Size/__Snapshots__/OUDSTokensSizeUITests/test_InverseTheme_Light.sizeIconDecorative2xs.png
diff --git a/Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Size/__Snapshots__/OUDSTokensSizeUITests/test_InverseTheme_Light.sizeIconDecorativeLg.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Size/__Snapshots__/OUDSTokensSizeUITests/test_InverseTheme_Light.sizeIconDecorativeLg.png
similarity index 100%
rename from Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Size/__Snapshots__/OUDSTokensSizeUITests/test_InverseTheme_Light.sizeIconDecorativeLg.png
rename to DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Size/__Snapshots__/OUDSTokensSizeUITests/test_InverseTheme_Light.sizeIconDecorativeLg.png
diff --git a/Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Size/__Snapshots__/OUDSTokensSizeUITests/test_InverseTheme_Light.sizeIconDecorativeMd.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Size/__Snapshots__/OUDSTokensSizeUITests/test_InverseTheme_Light.sizeIconDecorativeMd.png
similarity index 100%
rename from Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Size/__Snapshots__/OUDSTokensSizeUITests/test_InverseTheme_Light.sizeIconDecorativeMd.png
rename to DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Size/__Snapshots__/OUDSTokensSizeUITests/test_InverseTheme_Light.sizeIconDecorativeMd.png
diff --git a/Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Size/__Snapshots__/OUDSTokensSizeUITests/test_InverseTheme_Light.sizeIconDecorativeSm.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Size/__Snapshots__/OUDSTokensSizeUITests/test_InverseTheme_Light.sizeIconDecorativeSm.png
similarity index 100%
rename from Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Size/__Snapshots__/OUDSTokensSizeUITests/test_InverseTheme_Light.sizeIconDecorativeSm.png
rename to DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Size/__Snapshots__/OUDSTokensSizeUITests/test_InverseTheme_Light.sizeIconDecorativeSm.png
diff --git a/Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Size/__Snapshots__/OUDSTokensSizeUITests/test_InverseTheme_Light.sizeIconDecorativeXl.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Size/__Snapshots__/OUDSTokensSizeUITests/test_InverseTheme_Light.sizeIconDecorativeXl.png
similarity index 100%
rename from Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Size/__Snapshots__/OUDSTokensSizeUITests/test_InverseTheme_Light.sizeIconDecorativeXl.png
rename to DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Size/__Snapshots__/OUDSTokensSizeUITests/test_InverseTheme_Light.sizeIconDecorativeXl.png
diff --git a/Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Size/__Snapshots__/OUDSTokensSizeUITests/test_InverseTheme_Light.sizeIconDecorativeXs.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Size/__Snapshots__/OUDSTokensSizeUITests/test_InverseTheme_Light.sizeIconDecorativeXs.png
similarity index 100%
rename from Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Size/__Snapshots__/OUDSTokensSizeUITests/test_InverseTheme_Light.sizeIconDecorativeXs.png
rename to DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Size/__Snapshots__/OUDSTokensSizeUITests/test_InverseTheme_Light.sizeIconDecorativeXs.png
diff --git a/Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Size/__Snapshots__/OUDSTokensSizeUITests/test_InverseTheme_Light.sizeIconWithBodyLargeSizeLg.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Size/__Snapshots__/OUDSTokensSizeUITests/test_InverseTheme_Light.sizeIconWithBodyLargeSizeLg.png
similarity index 100%
rename from Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Size/__Snapshots__/OUDSTokensSizeUITests/test_InverseTheme_Light.sizeIconWithBodyLargeSizeLg.png
rename to DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Size/__Snapshots__/OUDSTokensSizeUITests/test_InverseTheme_Light.sizeIconWithBodyLargeSizeLg.png
diff --git a/Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Size/__Snapshots__/OUDSTokensSizeUITests/test_InverseTheme_Light.sizeIconWithBodyLargeSizeMd.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Size/__Snapshots__/OUDSTokensSizeUITests/test_InverseTheme_Light.sizeIconWithBodyLargeSizeMd.png
similarity index 100%
rename from Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Size/__Snapshots__/OUDSTokensSizeUITests/test_InverseTheme_Light.sizeIconWithBodyLargeSizeMd.png
rename to DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Size/__Snapshots__/OUDSTokensSizeUITests/test_InverseTheme_Light.sizeIconWithBodyLargeSizeMd.png
diff --git a/Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Size/__Snapshots__/OUDSTokensSizeUITests/test_InverseTheme_Light.sizeIconWithBodyLargeSizeSm.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Size/__Snapshots__/OUDSTokensSizeUITests/test_InverseTheme_Light.sizeIconWithBodyLargeSizeSm.png
similarity index 100%
rename from Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Size/__Snapshots__/OUDSTokensSizeUITests/test_InverseTheme_Light.sizeIconWithBodyLargeSizeSm.png
rename to DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Size/__Snapshots__/OUDSTokensSizeUITests/test_InverseTheme_Light.sizeIconWithBodyLargeSizeSm.png
diff --git a/Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Size/__Snapshots__/OUDSTokensSizeUITests/test_InverseTheme_Light.sizeIconWithBodyMediumSizeLg.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Size/__Snapshots__/OUDSTokensSizeUITests/test_InverseTheme_Light.sizeIconWithBodyMediumSizeLg.png
similarity index 100%
rename from Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Size/__Snapshots__/OUDSTokensSizeUITests/test_InverseTheme_Light.sizeIconWithBodyMediumSizeLg.png
rename to DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Size/__Snapshots__/OUDSTokensSizeUITests/test_InverseTheme_Light.sizeIconWithBodyMediumSizeLg.png
diff --git a/Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Size/__Snapshots__/OUDSTokensSizeUITests/test_InverseTheme_Light.sizeIconWithBodyMediumSizeMd.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Size/__Snapshots__/OUDSTokensSizeUITests/test_InverseTheme_Light.sizeIconWithBodyMediumSizeMd.png
similarity index 100%
rename from Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Size/__Snapshots__/OUDSTokensSizeUITests/test_InverseTheme_Light.sizeIconWithBodyMediumSizeMd.png
rename to DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Size/__Snapshots__/OUDSTokensSizeUITests/test_InverseTheme_Light.sizeIconWithBodyMediumSizeMd.png
diff --git a/Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Size/__Snapshots__/OUDSTokensSizeUITests/test_InverseTheme_Light.sizeIconWithBodyMediumSizeSm.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Size/__Snapshots__/OUDSTokensSizeUITests/test_InverseTheme_Light.sizeIconWithBodyMediumSizeSm.png
similarity index 100%
rename from Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Size/__Snapshots__/OUDSTokensSizeUITests/test_InverseTheme_Light.sizeIconWithBodyMediumSizeSm.png
rename to DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Size/__Snapshots__/OUDSTokensSizeUITests/test_InverseTheme_Light.sizeIconWithBodyMediumSizeSm.png
diff --git a/Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Size/__Snapshots__/OUDSTokensSizeUITests/test_InverseTheme_Light.sizeIconWithBodySmallSizeLg.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Size/__Snapshots__/OUDSTokensSizeUITests/test_InverseTheme_Light.sizeIconWithBodySmallSizeLg.png
similarity index 100%
rename from Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Size/__Snapshots__/OUDSTokensSizeUITests/test_InverseTheme_Light.sizeIconWithBodySmallSizeLg.png
rename to DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Size/__Snapshots__/OUDSTokensSizeUITests/test_InverseTheme_Light.sizeIconWithBodySmallSizeLg.png
diff --git a/Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Size/__Snapshots__/OUDSTokensSizeUITests/test_InverseTheme_Light.sizeIconWithBodySmallSizeMd.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Size/__Snapshots__/OUDSTokensSizeUITests/test_InverseTheme_Light.sizeIconWithBodySmallSizeMd.png
similarity index 100%
rename from Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Size/__Snapshots__/OUDSTokensSizeUITests/test_InverseTheme_Light.sizeIconWithBodySmallSizeMd.png
rename to DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Size/__Snapshots__/OUDSTokensSizeUITests/test_InverseTheme_Light.sizeIconWithBodySmallSizeMd.png
diff --git a/Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Size/__Snapshots__/OUDSTokensSizeUITests/test_InverseTheme_Light.sizeIconWithBodySmallSizeSm.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Size/__Snapshots__/OUDSTokensSizeUITests/test_InverseTheme_Light.sizeIconWithBodySmallSizeSm.png
similarity index 100%
rename from Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Size/__Snapshots__/OUDSTokensSizeUITests/test_InverseTheme_Light.sizeIconWithBodySmallSizeSm.png
rename to DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Size/__Snapshots__/OUDSTokensSizeUITests/test_InverseTheme_Light.sizeIconWithBodySmallSizeSm.png
diff --git a/Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Size/__Snapshots__/OUDSTokensSizeUITests/test_InverseTheme_Light.sizeIconWithHeadingLargeSizeLg.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Size/__Snapshots__/OUDSTokensSizeUITests/test_InverseTheme_Light.sizeIconWithHeadingLargeSizeLg.png
similarity index 100%
rename from Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Size/__Snapshots__/OUDSTokensSizeUITests/test_InverseTheme_Light.sizeIconWithHeadingLargeSizeLg.png
rename to DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Size/__Snapshots__/OUDSTokensSizeUITests/test_InverseTheme_Light.sizeIconWithHeadingLargeSizeLg.png
diff --git a/Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Size/__Snapshots__/OUDSTokensSizeUITests/test_InverseTheme_Light.sizeIconWithHeadingLargeSizeMd.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Size/__Snapshots__/OUDSTokensSizeUITests/test_InverseTheme_Light.sizeIconWithHeadingLargeSizeMd.png
similarity index 100%
rename from Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Size/__Snapshots__/OUDSTokensSizeUITests/test_InverseTheme_Light.sizeIconWithHeadingLargeSizeMd.png
rename to DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Size/__Snapshots__/OUDSTokensSizeUITests/test_InverseTheme_Light.sizeIconWithHeadingLargeSizeMd.png
diff --git a/Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Size/__Snapshots__/OUDSTokensSizeUITests/test_InverseTheme_Light.sizeIconWithHeadingLargeSizeSm.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Size/__Snapshots__/OUDSTokensSizeUITests/test_InverseTheme_Light.sizeIconWithHeadingLargeSizeSm.png
similarity index 100%
rename from Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Size/__Snapshots__/OUDSTokensSizeUITests/test_InverseTheme_Light.sizeIconWithHeadingLargeSizeSm.png
rename to DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Size/__Snapshots__/OUDSTokensSizeUITests/test_InverseTheme_Light.sizeIconWithHeadingLargeSizeSm.png
diff --git a/Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Size/__Snapshots__/OUDSTokensSizeUITests/test_InverseTheme_Light.sizeIconWithHeadingMediumSizeLg.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Size/__Snapshots__/OUDSTokensSizeUITests/test_InverseTheme_Light.sizeIconWithHeadingMediumSizeLg.png
similarity index 100%
rename from Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Size/__Snapshots__/OUDSTokensSizeUITests/test_InverseTheme_Light.sizeIconWithHeadingMediumSizeLg.png
rename to DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Size/__Snapshots__/OUDSTokensSizeUITests/test_InverseTheme_Light.sizeIconWithHeadingMediumSizeLg.png
diff --git a/Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Size/__Snapshots__/OUDSTokensSizeUITests/test_InverseTheme_Light.sizeIconWithHeadingMediumSizeMd.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Size/__Snapshots__/OUDSTokensSizeUITests/test_InverseTheme_Light.sizeIconWithHeadingMediumSizeMd.png
similarity index 100%
rename from Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Size/__Snapshots__/OUDSTokensSizeUITests/test_InverseTheme_Light.sizeIconWithHeadingMediumSizeMd.png
rename to DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Size/__Snapshots__/OUDSTokensSizeUITests/test_InverseTheme_Light.sizeIconWithHeadingMediumSizeMd.png
diff --git a/Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Size/__Snapshots__/OUDSTokensSizeUITests/test_InverseTheme_Light.sizeIconWithHeadingMediumSizeSm.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Size/__Snapshots__/OUDSTokensSizeUITests/test_InverseTheme_Light.sizeIconWithHeadingMediumSizeSm.png
similarity index 100%
rename from Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Size/__Snapshots__/OUDSTokensSizeUITests/test_InverseTheme_Light.sizeIconWithHeadingMediumSizeSm.png
rename to DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Size/__Snapshots__/OUDSTokensSizeUITests/test_InverseTheme_Light.sizeIconWithHeadingMediumSizeSm.png
diff --git a/Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Size/__Snapshots__/OUDSTokensSizeUITests/test_InverseTheme_Light.sizeIconWithHeadingSmallSizeLg.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Size/__Snapshots__/OUDSTokensSizeUITests/test_InverseTheme_Light.sizeIconWithHeadingSmallSizeLg.png
similarity index 100%
rename from Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Size/__Snapshots__/OUDSTokensSizeUITests/test_InverseTheme_Light.sizeIconWithHeadingSmallSizeLg.png
rename to DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Size/__Snapshots__/OUDSTokensSizeUITests/test_InverseTheme_Light.sizeIconWithHeadingSmallSizeLg.png
diff --git a/Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Size/__Snapshots__/OUDSTokensSizeUITests/test_InverseTheme_Light.sizeIconWithHeadingSmallSizeMd.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Size/__Snapshots__/OUDSTokensSizeUITests/test_InverseTheme_Light.sizeIconWithHeadingSmallSizeMd.png
similarity index 100%
rename from Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Size/__Snapshots__/OUDSTokensSizeUITests/test_InverseTheme_Light.sizeIconWithHeadingSmallSizeMd.png
rename to DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Size/__Snapshots__/OUDSTokensSizeUITests/test_InverseTheme_Light.sizeIconWithHeadingSmallSizeMd.png
diff --git a/Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Size/__Snapshots__/OUDSTokensSizeUITests/test_InverseTheme_Light.sizeIconWithHeadingSmallSizeSm.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Size/__Snapshots__/OUDSTokensSizeUITests/test_InverseTheme_Light.sizeIconWithHeadingSmallSizeSm.png
similarity index 100%
rename from Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Size/__Snapshots__/OUDSTokensSizeUITests/test_InverseTheme_Light.sizeIconWithHeadingSmallSizeSm.png
rename to DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Size/__Snapshots__/OUDSTokensSizeUITests/test_InverseTheme_Light.sizeIconWithHeadingSmallSizeSm.png
diff --git a/Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Size/__Snapshots__/OUDSTokensSizeUITests/test_InverseTheme_Light.sizeIconWithHeadingXlargeSizeLg.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Size/__Snapshots__/OUDSTokensSizeUITests/test_InverseTheme_Light.sizeIconWithHeadingXlargeSizeLg.png
similarity index 100%
rename from Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Size/__Snapshots__/OUDSTokensSizeUITests/test_InverseTheme_Light.sizeIconWithHeadingXlargeSizeLg.png
rename to DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Size/__Snapshots__/OUDSTokensSizeUITests/test_InverseTheme_Light.sizeIconWithHeadingXlargeSizeLg.png
diff --git a/Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Size/__Snapshots__/OUDSTokensSizeUITests/test_InverseTheme_Light.sizeIconWithHeadingXlargeSizeMd.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Size/__Snapshots__/OUDSTokensSizeUITests/test_InverseTheme_Light.sizeIconWithHeadingXlargeSizeMd.png
similarity index 100%
rename from Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Size/__Snapshots__/OUDSTokensSizeUITests/test_InverseTheme_Light.sizeIconWithHeadingXlargeSizeMd.png
rename to DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Size/__Snapshots__/OUDSTokensSizeUITests/test_InverseTheme_Light.sizeIconWithHeadingXlargeSizeMd.png
diff --git a/Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Size/__Snapshots__/OUDSTokensSizeUITests/test_InverseTheme_Light.sizeIconWithHeadingXlargeSizeSm.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Size/__Snapshots__/OUDSTokensSizeUITests/test_InverseTheme_Light.sizeIconWithHeadingXlargeSizeSm.png
similarity index 100%
rename from Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Size/__Snapshots__/OUDSTokensSizeUITests/test_InverseTheme_Light.sizeIconWithHeadingXlargeSizeSm.png
rename to DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Size/__Snapshots__/OUDSTokensSizeUITests/test_InverseTheme_Light.sizeIconWithHeadingXlargeSizeSm.png
diff --git a/Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Size/__Snapshots__/OUDSTokensSizeUITests/test_InverseTheme_Light.sizeIconWithLabelLargeSizeLg.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Size/__Snapshots__/OUDSTokensSizeUITests/test_InverseTheme_Light.sizeIconWithLabelLargeSizeLg.png
similarity index 100%
rename from Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Size/__Snapshots__/OUDSTokensSizeUITests/test_InverseTheme_Light.sizeIconWithLabelLargeSizeLg.png
rename to DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Size/__Snapshots__/OUDSTokensSizeUITests/test_InverseTheme_Light.sizeIconWithLabelLargeSizeLg.png
diff --git a/Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Size/__Snapshots__/OUDSTokensSizeUITests/test_InverseTheme_Light.sizeIconWithLabelLargeSizeMd.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Size/__Snapshots__/OUDSTokensSizeUITests/test_InverseTheme_Light.sizeIconWithLabelLargeSizeMd.png
similarity index 100%
rename from Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Size/__Snapshots__/OUDSTokensSizeUITests/test_InverseTheme_Light.sizeIconWithLabelLargeSizeMd.png
rename to DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Size/__Snapshots__/OUDSTokensSizeUITests/test_InverseTheme_Light.sizeIconWithLabelLargeSizeMd.png
diff --git a/Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Size/__Snapshots__/OUDSTokensSizeUITests/test_InverseTheme_Light.sizeIconWithLabelLargeSizeSm.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Size/__Snapshots__/OUDSTokensSizeUITests/test_InverseTheme_Light.sizeIconWithLabelLargeSizeSm.png
similarity index 100%
rename from Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Size/__Snapshots__/OUDSTokensSizeUITests/test_InverseTheme_Light.sizeIconWithLabelLargeSizeSm.png
rename to DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Size/__Snapshots__/OUDSTokensSizeUITests/test_InverseTheme_Light.sizeIconWithLabelLargeSizeSm.png
diff --git a/Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Size/__Snapshots__/OUDSTokensSizeUITests/test_InverseTheme_Light.sizeIconWithLabelLargeSizeXl.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Size/__Snapshots__/OUDSTokensSizeUITests/test_InverseTheme_Light.sizeIconWithLabelLargeSizeXl.png
similarity index 100%
rename from Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Size/__Snapshots__/OUDSTokensSizeUITests/test_InverseTheme_Light.sizeIconWithLabelLargeSizeXl.png
rename to DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Size/__Snapshots__/OUDSTokensSizeUITests/test_InverseTheme_Light.sizeIconWithLabelLargeSizeXl.png
diff --git a/Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Size/__Snapshots__/OUDSTokensSizeUITests/test_InverseTheme_Light.sizeIconWithLabelLargeSizeXs.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Size/__Snapshots__/OUDSTokensSizeUITests/test_InverseTheme_Light.sizeIconWithLabelLargeSizeXs.png
similarity index 100%
rename from Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Size/__Snapshots__/OUDSTokensSizeUITests/test_InverseTheme_Light.sizeIconWithLabelLargeSizeXs.png
rename to DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Size/__Snapshots__/OUDSTokensSizeUITests/test_InverseTheme_Light.sizeIconWithLabelLargeSizeXs.png
diff --git a/Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Size/__Snapshots__/OUDSTokensSizeUITests/test_InverseTheme_Light.sizeIconWithLabelMediumSizeLg.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Size/__Snapshots__/OUDSTokensSizeUITests/test_InverseTheme_Light.sizeIconWithLabelMediumSizeLg.png
similarity index 100%
rename from Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Size/__Snapshots__/OUDSTokensSizeUITests/test_InverseTheme_Light.sizeIconWithLabelMediumSizeLg.png
rename to DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Size/__Snapshots__/OUDSTokensSizeUITests/test_InverseTheme_Light.sizeIconWithLabelMediumSizeLg.png
diff --git a/Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Size/__Snapshots__/OUDSTokensSizeUITests/test_InverseTheme_Light.sizeIconWithLabelMediumSizeMd.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Size/__Snapshots__/OUDSTokensSizeUITests/test_InverseTheme_Light.sizeIconWithLabelMediumSizeMd.png
similarity index 100%
rename from Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Size/__Snapshots__/OUDSTokensSizeUITests/test_InverseTheme_Light.sizeIconWithLabelMediumSizeMd.png
rename to DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Size/__Snapshots__/OUDSTokensSizeUITests/test_InverseTheme_Light.sizeIconWithLabelMediumSizeMd.png
diff --git a/Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Size/__Snapshots__/OUDSTokensSizeUITests/test_InverseTheme_Light.sizeIconWithLabelMediumSizeSm.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Size/__Snapshots__/OUDSTokensSizeUITests/test_InverseTheme_Light.sizeIconWithLabelMediumSizeSm.png
similarity index 100%
rename from Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Size/__Snapshots__/OUDSTokensSizeUITests/test_InverseTheme_Light.sizeIconWithLabelMediumSizeSm.png
rename to DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Size/__Snapshots__/OUDSTokensSizeUITests/test_InverseTheme_Light.sizeIconWithLabelMediumSizeSm.png
diff --git a/Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Size/__Snapshots__/OUDSTokensSizeUITests/test_InverseTheme_Light.sizeIconWithLabelMediumSizeXs.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Size/__Snapshots__/OUDSTokensSizeUITests/test_InverseTheme_Light.sizeIconWithLabelMediumSizeXs.png
similarity index 100%
rename from Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Size/__Snapshots__/OUDSTokensSizeUITests/test_InverseTheme_Light.sizeIconWithLabelMediumSizeXs.png
rename to DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Size/__Snapshots__/OUDSTokensSizeUITests/test_InverseTheme_Light.sizeIconWithLabelMediumSizeXs.png
diff --git a/Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Size/__Snapshots__/OUDSTokensSizeUITests/test_InverseTheme_Light.sizeIconWithLabelSmallSizeLg.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Size/__Snapshots__/OUDSTokensSizeUITests/test_InverseTheme_Light.sizeIconWithLabelSmallSizeLg.png
similarity index 100%
rename from Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Size/__Snapshots__/OUDSTokensSizeUITests/test_InverseTheme_Light.sizeIconWithLabelSmallSizeLg.png
rename to DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Size/__Snapshots__/OUDSTokensSizeUITests/test_InverseTheme_Light.sizeIconWithLabelSmallSizeLg.png
diff --git a/Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Size/__Snapshots__/OUDSTokensSizeUITests/test_InverseTheme_Light.sizeIconWithLabelSmallSizeMd.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Size/__Snapshots__/OUDSTokensSizeUITests/test_InverseTheme_Light.sizeIconWithLabelSmallSizeMd.png
similarity index 100%
rename from Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Size/__Snapshots__/OUDSTokensSizeUITests/test_InverseTheme_Light.sizeIconWithLabelSmallSizeMd.png
rename to DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Size/__Snapshots__/OUDSTokensSizeUITests/test_InverseTheme_Light.sizeIconWithLabelSmallSizeMd.png
diff --git a/Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Size/__Snapshots__/OUDSTokensSizeUITests/test_InverseTheme_Light.sizeIconWithLabelSmallSizeSm.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Size/__Snapshots__/OUDSTokensSizeUITests/test_InverseTheme_Light.sizeIconWithLabelSmallSizeSm.png
similarity index 100%
rename from Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Size/__Snapshots__/OUDSTokensSizeUITests/test_InverseTheme_Light.sizeIconWithLabelSmallSizeSm.png
rename to DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Size/__Snapshots__/OUDSTokensSizeUITests/test_InverseTheme_Light.sizeIconWithLabelSmallSizeSm.png
diff --git a/Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Size/__Snapshots__/OUDSTokensSizeUITests/test_InverseTheme_Light.sizeIconWithLabelSmallSizeXs.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Size/__Snapshots__/OUDSTokensSizeUITests/test_InverseTheme_Light.sizeIconWithLabelSmallSizeXs.png
similarity index 100%
rename from Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Size/__Snapshots__/OUDSTokensSizeUITests/test_InverseTheme_Light.sizeIconWithLabelSmallSizeXs.png
rename to DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Size/__Snapshots__/OUDSTokensSizeUITests/test_InverseTheme_Light.sizeIconWithLabelSmallSizeXs.png
diff --git a/Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Size/__Snapshots__/OUDSTokensSizeUITests/test_InverseTheme_Light.sizeIconWithLabelXlargeSizeLg.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Size/__Snapshots__/OUDSTokensSizeUITests/test_InverseTheme_Light.sizeIconWithLabelXlargeSizeLg.png
similarity index 100%
rename from Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Size/__Snapshots__/OUDSTokensSizeUITests/test_InverseTheme_Light.sizeIconWithLabelXlargeSizeLg.png
rename to DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Size/__Snapshots__/OUDSTokensSizeUITests/test_InverseTheme_Light.sizeIconWithLabelXlargeSizeLg.png
diff --git a/Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Size/__Snapshots__/OUDSTokensSizeUITests/test_InverseTheme_Light.sizeIconWithLabelXlargeSizeMd.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Size/__Snapshots__/OUDSTokensSizeUITests/test_InverseTheme_Light.sizeIconWithLabelXlargeSizeMd.png
similarity index 100%
rename from Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Size/__Snapshots__/OUDSTokensSizeUITests/test_InverseTheme_Light.sizeIconWithLabelXlargeSizeMd.png
rename to DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Size/__Snapshots__/OUDSTokensSizeUITests/test_InverseTheme_Light.sizeIconWithLabelXlargeSizeMd.png
diff --git a/Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Size/__Snapshots__/OUDSTokensSizeUITests/test_InverseTheme_Light.sizeIconWithLabelXlargeSizeSm.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Size/__Snapshots__/OUDSTokensSizeUITests/test_InverseTheme_Light.sizeIconWithLabelXlargeSizeSm.png
similarity index 100%
rename from Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Size/__Snapshots__/OUDSTokensSizeUITests/test_InverseTheme_Light.sizeIconWithLabelXlargeSizeSm.png
rename to DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Size/__Snapshots__/OUDSTokensSizeUITests/test_InverseTheme_Light.sizeIconWithLabelXlargeSizeSm.png
diff --git a/Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Size/__Snapshots__/OUDSTokensSizeUITests/test_OrangeTheme_Dark.sizeIconDecorative2xl.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Size/__Snapshots__/OUDSTokensSizeUITests/test_OrangeTheme_Dark.sizeIconDecorative2xl.png
similarity index 100%
rename from Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Size/__Snapshots__/OUDSTokensSizeUITests/test_OrangeTheme_Dark.sizeIconDecorative2xl.png
rename to DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Size/__Snapshots__/OUDSTokensSizeUITests/test_OrangeTheme_Dark.sizeIconDecorative2xl.png
diff --git a/Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Size/__Snapshots__/OUDSTokensSizeUITests/test_OrangeTheme_Dark.sizeIconDecorative2xs.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Size/__Snapshots__/OUDSTokensSizeUITests/test_OrangeTheme_Dark.sizeIconDecorative2xs.png
similarity index 100%
rename from Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Size/__Snapshots__/OUDSTokensSizeUITests/test_OrangeTheme_Dark.sizeIconDecorative2xs.png
rename to DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Size/__Snapshots__/OUDSTokensSizeUITests/test_OrangeTheme_Dark.sizeIconDecorative2xs.png
diff --git a/Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Size/__Snapshots__/OUDSTokensSizeUITests/test_OrangeTheme_Dark.sizeIconDecorativeLg.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Size/__Snapshots__/OUDSTokensSizeUITests/test_OrangeTheme_Dark.sizeIconDecorativeLg.png
similarity index 100%
rename from Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Size/__Snapshots__/OUDSTokensSizeUITests/test_OrangeTheme_Dark.sizeIconDecorativeLg.png
rename to DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Size/__Snapshots__/OUDSTokensSizeUITests/test_OrangeTheme_Dark.sizeIconDecorativeLg.png
diff --git a/Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Size/__Snapshots__/OUDSTokensSizeUITests/test_OrangeTheme_Dark.sizeIconDecorativeMd.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Size/__Snapshots__/OUDSTokensSizeUITests/test_OrangeTheme_Dark.sizeIconDecorativeMd.png
similarity index 100%
rename from Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Size/__Snapshots__/OUDSTokensSizeUITests/test_OrangeTheme_Dark.sizeIconDecorativeMd.png
rename to DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Size/__Snapshots__/OUDSTokensSizeUITests/test_OrangeTheme_Dark.sizeIconDecorativeMd.png
diff --git a/Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Size/__Snapshots__/OUDSTokensSizeUITests/test_OrangeTheme_Dark.sizeIconDecorativeSm.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Size/__Snapshots__/OUDSTokensSizeUITests/test_OrangeTheme_Dark.sizeIconDecorativeSm.png
similarity index 100%
rename from Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Size/__Snapshots__/OUDSTokensSizeUITests/test_OrangeTheme_Dark.sizeIconDecorativeSm.png
rename to DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Size/__Snapshots__/OUDSTokensSizeUITests/test_OrangeTheme_Dark.sizeIconDecorativeSm.png
diff --git a/Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Size/__Snapshots__/OUDSTokensSizeUITests/test_OrangeTheme_Dark.sizeIconDecorativeXl.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Size/__Snapshots__/OUDSTokensSizeUITests/test_OrangeTheme_Dark.sizeIconDecorativeXl.png
similarity index 100%
rename from Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Size/__Snapshots__/OUDSTokensSizeUITests/test_OrangeTheme_Dark.sizeIconDecorativeXl.png
rename to DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Size/__Snapshots__/OUDSTokensSizeUITests/test_OrangeTheme_Dark.sizeIconDecorativeXl.png
diff --git a/Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Size/__Snapshots__/OUDSTokensSizeUITests/test_OrangeTheme_Dark.sizeIconDecorativeXs.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Size/__Snapshots__/OUDSTokensSizeUITests/test_OrangeTheme_Dark.sizeIconDecorativeXs.png
similarity index 100%
rename from Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Size/__Snapshots__/OUDSTokensSizeUITests/test_OrangeTheme_Dark.sizeIconDecorativeXs.png
rename to DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Size/__Snapshots__/OUDSTokensSizeUITests/test_OrangeTheme_Dark.sizeIconDecorativeXs.png
diff --git a/Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Size/__Snapshots__/OUDSTokensSizeUITests/test_OrangeTheme_Dark.sizeIconWithBodyLargeSizeLg.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Size/__Snapshots__/OUDSTokensSizeUITests/test_OrangeTheme_Dark.sizeIconWithBodyLargeSizeLg.png
similarity index 100%
rename from Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Size/__Snapshots__/OUDSTokensSizeUITests/test_OrangeTheme_Dark.sizeIconWithBodyLargeSizeLg.png
rename to DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Size/__Snapshots__/OUDSTokensSizeUITests/test_OrangeTheme_Dark.sizeIconWithBodyLargeSizeLg.png
diff --git a/Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Size/__Snapshots__/OUDSTokensSizeUITests/test_OrangeTheme_Dark.sizeIconWithBodyLargeSizeMd.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Size/__Snapshots__/OUDSTokensSizeUITests/test_OrangeTheme_Dark.sizeIconWithBodyLargeSizeMd.png
similarity index 100%
rename from Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Size/__Snapshots__/OUDSTokensSizeUITests/test_OrangeTheme_Dark.sizeIconWithBodyLargeSizeMd.png
rename to DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Size/__Snapshots__/OUDSTokensSizeUITests/test_OrangeTheme_Dark.sizeIconWithBodyLargeSizeMd.png
diff --git a/Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Size/__Snapshots__/OUDSTokensSizeUITests/test_OrangeTheme_Dark.sizeIconWithBodyLargeSizeSm.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Size/__Snapshots__/OUDSTokensSizeUITests/test_OrangeTheme_Dark.sizeIconWithBodyLargeSizeSm.png
similarity index 100%
rename from Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Size/__Snapshots__/OUDSTokensSizeUITests/test_OrangeTheme_Dark.sizeIconWithBodyLargeSizeSm.png
rename to DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Size/__Snapshots__/OUDSTokensSizeUITests/test_OrangeTheme_Dark.sizeIconWithBodyLargeSizeSm.png
diff --git a/Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Size/__Snapshots__/OUDSTokensSizeUITests/test_OrangeTheme_Dark.sizeIconWithBodyMediumSizeLg.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Size/__Snapshots__/OUDSTokensSizeUITests/test_OrangeTheme_Dark.sizeIconWithBodyMediumSizeLg.png
similarity index 100%
rename from Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Size/__Snapshots__/OUDSTokensSizeUITests/test_OrangeTheme_Dark.sizeIconWithBodyMediumSizeLg.png
rename to DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Size/__Snapshots__/OUDSTokensSizeUITests/test_OrangeTheme_Dark.sizeIconWithBodyMediumSizeLg.png
diff --git a/Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Size/__Snapshots__/OUDSTokensSizeUITests/test_OrangeTheme_Dark.sizeIconWithBodyMediumSizeMd.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Size/__Snapshots__/OUDSTokensSizeUITests/test_OrangeTheme_Dark.sizeIconWithBodyMediumSizeMd.png
similarity index 100%
rename from Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Size/__Snapshots__/OUDSTokensSizeUITests/test_OrangeTheme_Dark.sizeIconWithBodyMediumSizeMd.png
rename to DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Size/__Snapshots__/OUDSTokensSizeUITests/test_OrangeTheme_Dark.sizeIconWithBodyMediumSizeMd.png
diff --git a/Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Size/__Snapshots__/OUDSTokensSizeUITests/test_OrangeTheme_Dark.sizeIconWithBodyMediumSizeSm.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Size/__Snapshots__/OUDSTokensSizeUITests/test_OrangeTheme_Dark.sizeIconWithBodyMediumSizeSm.png
similarity index 100%
rename from Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Size/__Snapshots__/OUDSTokensSizeUITests/test_OrangeTheme_Dark.sizeIconWithBodyMediumSizeSm.png
rename to DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Size/__Snapshots__/OUDSTokensSizeUITests/test_OrangeTheme_Dark.sizeIconWithBodyMediumSizeSm.png
diff --git a/Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Size/__Snapshots__/OUDSTokensSizeUITests/test_OrangeTheme_Dark.sizeIconWithBodySmallSizeLg.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Size/__Snapshots__/OUDSTokensSizeUITests/test_OrangeTheme_Dark.sizeIconWithBodySmallSizeLg.png
similarity index 100%
rename from Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Size/__Snapshots__/OUDSTokensSizeUITests/test_OrangeTheme_Dark.sizeIconWithBodySmallSizeLg.png
rename to DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Size/__Snapshots__/OUDSTokensSizeUITests/test_OrangeTheme_Dark.sizeIconWithBodySmallSizeLg.png
diff --git a/Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Size/__Snapshots__/OUDSTokensSizeUITests/test_OrangeTheme_Dark.sizeIconWithBodySmallSizeMd.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Size/__Snapshots__/OUDSTokensSizeUITests/test_OrangeTheme_Dark.sizeIconWithBodySmallSizeMd.png
similarity index 100%
rename from Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Size/__Snapshots__/OUDSTokensSizeUITests/test_OrangeTheme_Dark.sizeIconWithBodySmallSizeMd.png
rename to DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Size/__Snapshots__/OUDSTokensSizeUITests/test_OrangeTheme_Dark.sizeIconWithBodySmallSizeMd.png
diff --git a/Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Size/__Snapshots__/OUDSTokensSizeUITests/test_OrangeTheme_Dark.sizeIconWithBodySmallSizeSm.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Size/__Snapshots__/OUDSTokensSizeUITests/test_OrangeTheme_Dark.sizeIconWithBodySmallSizeSm.png
similarity index 100%
rename from Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Size/__Snapshots__/OUDSTokensSizeUITests/test_OrangeTheme_Dark.sizeIconWithBodySmallSizeSm.png
rename to DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Size/__Snapshots__/OUDSTokensSizeUITests/test_OrangeTheme_Dark.sizeIconWithBodySmallSizeSm.png
diff --git a/Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Size/__Snapshots__/OUDSTokensSizeUITests/test_OrangeTheme_Dark.sizeIconWithHeadingLargeSizeLg.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Size/__Snapshots__/OUDSTokensSizeUITests/test_OrangeTheme_Dark.sizeIconWithHeadingLargeSizeLg.png
similarity index 100%
rename from Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Size/__Snapshots__/OUDSTokensSizeUITests/test_OrangeTheme_Dark.sizeIconWithHeadingLargeSizeLg.png
rename to DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Size/__Snapshots__/OUDSTokensSizeUITests/test_OrangeTheme_Dark.sizeIconWithHeadingLargeSizeLg.png
diff --git a/Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Size/__Snapshots__/OUDSTokensSizeUITests/test_OrangeTheme_Dark.sizeIconWithHeadingLargeSizeMd.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Size/__Snapshots__/OUDSTokensSizeUITests/test_OrangeTheme_Dark.sizeIconWithHeadingLargeSizeMd.png
similarity index 100%
rename from Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Size/__Snapshots__/OUDSTokensSizeUITests/test_OrangeTheme_Dark.sizeIconWithHeadingLargeSizeMd.png
rename to DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Size/__Snapshots__/OUDSTokensSizeUITests/test_OrangeTheme_Dark.sizeIconWithHeadingLargeSizeMd.png
diff --git a/Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Size/__Snapshots__/OUDSTokensSizeUITests/test_OrangeTheme_Dark.sizeIconWithHeadingLargeSizeSm.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Size/__Snapshots__/OUDSTokensSizeUITests/test_OrangeTheme_Dark.sizeIconWithHeadingLargeSizeSm.png
similarity index 100%
rename from Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Size/__Snapshots__/OUDSTokensSizeUITests/test_OrangeTheme_Dark.sizeIconWithHeadingLargeSizeSm.png
rename to DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Size/__Snapshots__/OUDSTokensSizeUITests/test_OrangeTheme_Dark.sizeIconWithHeadingLargeSizeSm.png
diff --git a/Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Size/__Snapshots__/OUDSTokensSizeUITests/test_OrangeTheme_Dark.sizeIconWithHeadingMediumSizeLg.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Size/__Snapshots__/OUDSTokensSizeUITests/test_OrangeTheme_Dark.sizeIconWithHeadingMediumSizeLg.png
similarity index 100%
rename from Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Size/__Snapshots__/OUDSTokensSizeUITests/test_OrangeTheme_Dark.sizeIconWithHeadingMediumSizeLg.png
rename to DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Size/__Snapshots__/OUDSTokensSizeUITests/test_OrangeTheme_Dark.sizeIconWithHeadingMediumSizeLg.png
diff --git a/Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Size/__Snapshots__/OUDSTokensSizeUITests/test_OrangeTheme_Dark.sizeIconWithHeadingMediumSizeMd.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Size/__Snapshots__/OUDSTokensSizeUITests/test_OrangeTheme_Dark.sizeIconWithHeadingMediumSizeMd.png
similarity index 100%
rename from Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Size/__Snapshots__/OUDSTokensSizeUITests/test_OrangeTheme_Dark.sizeIconWithHeadingMediumSizeMd.png
rename to DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Size/__Snapshots__/OUDSTokensSizeUITests/test_OrangeTheme_Dark.sizeIconWithHeadingMediumSizeMd.png
diff --git a/Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Size/__Snapshots__/OUDSTokensSizeUITests/test_OrangeTheme_Dark.sizeIconWithHeadingMediumSizeSm.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Size/__Snapshots__/OUDSTokensSizeUITests/test_OrangeTheme_Dark.sizeIconWithHeadingMediumSizeSm.png
similarity index 100%
rename from Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Size/__Snapshots__/OUDSTokensSizeUITests/test_OrangeTheme_Dark.sizeIconWithHeadingMediumSizeSm.png
rename to DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Size/__Snapshots__/OUDSTokensSizeUITests/test_OrangeTheme_Dark.sizeIconWithHeadingMediumSizeSm.png
diff --git a/Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Size/__Snapshots__/OUDSTokensSizeUITests/test_OrangeTheme_Dark.sizeIconWithHeadingSmallSizeLg.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Size/__Snapshots__/OUDSTokensSizeUITests/test_OrangeTheme_Dark.sizeIconWithHeadingSmallSizeLg.png
similarity index 100%
rename from Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Size/__Snapshots__/OUDSTokensSizeUITests/test_OrangeTheme_Dark.sizeIconWithHeadingSmallSizeLg.png
rename to DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Size/__Snapshots__/OUDSTokensSizeUITests/test_OrangeTheme_Dark.sizeIconWithHeadingSmallSizeLg.png
diff --git a/Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Size/__Snapshots__/OUDSTokensSizeUITests/test_OrangeTheme_Dark.sizeIconWithHeadingSmallSizeMd.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Size/__Snapshots__/OUDSTokensSizeUITests/test_OrangeTheme_Dark.sizeIconWithHeadingSmallSizeMd.png
similarity index 100%
rename from Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Size/__Snapshots__/OUDSTokensSizeUITests/test_OrangeTheme_Dark.sizeIconWithHeadingSmallSizeMd.png
rename to DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Size/__Snapshots__/OUDSTokensSizeUITests/test_OrangeTheme_Dark.sizeIconWithHeadingSmallSizeMd.png
diff --git a/Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Size/__Snapshots__/OUDSTokensSizeUITests/test_OrangeTheme_Dark.sizeIconWithHeadingSmallSizeSm.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Size/__Snapshots__/OUDSTokensSizeUITests/test_OrangeTheme_Dark.sizeIconWithHeadingSmallSizeSm.png
similarity index 100%
rename from Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Size/__Snapshots__/OUDSTokensSizeUITests/test_OrangeTheme_Dark.sizeIconWithHeadingSmallSizeSm.png
rename to DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Size/__Snapshots__/OUDSTokensSizeUITests/test_OrangeTheme_Dark.sizeIconWithHeadingSmallSizeSm.png
diff --git a/Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Size/__Snapshots__/OUDSTokensSizeUITests/test_OrangeTheme_Dark.sizeIconWithHeadingXlargeSizeLg.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Size/__Snapshots__/OUDSTokensSizeUITests/test_OrangeTheme_Dark.sizeIconWithHeadingXlargeSizeLg.png
similarity index 100%
rename from Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Size/__Snapshots__/OUDSTokensSizeUITests/test_OrangeTheme_Dark.sizeIconWithHeadingXlargeSizeLg.png
rename to DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Size/__Snapshots__/OUDSTokensSizeUITests/test_OrangeTheme_Dark.sizeIconWithHeadingXlargeSizeLg.png
diff --git a/Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Size/__Snapshots__/OUDSTokensSizeUITests/test_OrangeTheme_Dark.sizeIconWithHeadingXlargeSizeMd.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Size/__Snapshots__/OUDSTokensSizeUITests/test_OrangeTheme_Dark.sizeIconWithHeadingXlargeSizeMd.png
similarity index 100%
rename from Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Size/__Snapshots__/OUDSTokensSizeUITests/test_OrangeTheme_Dark.sizeIconWithHeadingXlargeSizeMd.png
rename to DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Size/__Snapshots__/OUDSTokensSizeUITests/test_OrangeTheme_Dark.sizeIconWithHeadingXlargeSizeMd.png
diff --git a/Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Size/__Snapshots__/OUDSTokensSizeUITests/test_OrangeTheme_Dark.sizeIconWithHeadingXlargeSizeSm.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Size/__Snapshots__/OUDSTokensSizeUITests/test_OrangeTheme_Dark.sizeIconWithHeadingXlargeSizeSm.png
similarity index 100%
rename from Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Size/__Snapshots__/OUDSTokensSizeUITests/test_OrangeTheme_Dark.sizeIconWithHeadingXlargeSizeSm.png
rename to DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Size/__Snapshots__/OUDSTokensSizeUITests/test_OrangeTheme_Dark.sizeIconWithHeadingXlargeSizeSm.png
diff --git a/Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Size/__Snapshots__/OUDSTokensSizeUITests/test_OrangeTheme_Dark.sizeIconWithLabelLargeSizeLg.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Size/__Snapshots__/OUDSTokensSizeUITests/test_OrangeTheme_Dark.sizeIconWithLabelLargeSizeLg.png
similarity index 100%
rename from Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Size/__Snapshots__/OUDSTokensSizeUITests/test_OrangeTheme_Dark.sizeIconWithLabelLargeSizeLg.png
rename to DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Size/__Snapshots__/OUDSTokensSizeUITests/test_OrangeTheme_Dark.sizeIconWithLabelLargeSizeLg.png
diff --git a/Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Size/__Snapshots__/OUDSTokensSizeUITests/test_OrangeTheme_Dark.sizeIconWithLabelLargeSizeMd.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Size/__Snapshots__/OUDSTokensSizeUITests/test_OrangeTheme_Dark.sizeIconWithLabelLargeSizeMd.png
similarity index 100%
rename from Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Size/__Snapshots__/OUDSTokensSizeUITests/test_OrangeTheme_Dark.sizeIconWithLabelLargeSizeMd.png
rename to DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Size/__Snapshots__/OUDSTokensSizeUITests/test_OrangeTheme_Dark.sizeIconWithLabelLargeSizeMd.png
diff --git a/Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Size/__Snapshots__/OUDSTokensSizeUITests/test_OrangeTheme_Dark.sizeIconWithLabelLargeSizeSm.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Size/__Snapshots__/OUDSTokensSizeUITests/test_OrangeTheme_Dark.sizeIconWithLabelLargeSizeSm.png
similarity index 100%
rename from Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Size/__Snapshots__/OUDSTokensSizeUITests/test_OrangeTheme_Dark.sizeIconWithLabelLargeSizeSm.png
rename to DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Size/__Snapshots__/OUDSTokensSizeUITests/test_OrangeTheme_Dark.sizeIconWithLabelLargeSizeSm.png
diff --git a/Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Size/__Snapshots__/OUDSTokensSizeUITests/test_OrangeTheme_Dark.sizeIconWithLabelLargeSizeXl.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Size/__Snapshots__/OUDSTokensSizeUITests/test_OrangeTheme_Dark.sizeIconWithLabelLargeSizeXl.png
similarity index 100%
rename from Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Size/__Snapshots__/OUDSTokensSizeUITests/test_OrangeTheme_Dark.sizeIconWithLabelLargeSizeXl.png
rename to DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Size/__Snapshots__/OUDSTokensSizeUITests/test_OrangeTheme_Dark.sizeIconWithLabelLargeSizeXl.png
diff --git a/Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Size/__Snapshots__/OUDSTokensSizeUITests/test_OrangeTheme_Dark.sizeIconWithLabelLargeSizeXs.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Size/__Snapshots__/OUDSTokensSizeUITests/test_OrangeTheme_Dark.sizeIconWithLabelLargeSizeXs.png
similarity index 100%
rename from Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Size/__Snapshots__/OUDSTokensSizeUITests/test_OrangeTheme_Dark.sizeIconWithLabelLargeSizeXs.png
rename to DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Size/__Snapshots__/OUDSTokensSizeUITests/test_OrangeTheme_Dark.sizeIconWithLabelLargeSizeXs.png
diff --git a/Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Size/__Snapshots__/OUDSTokensSizeUITests/test_OrangeTheme_Dark.sizeIconWithLabelMediumSizeLg.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Size/__Snapshots__/OUDSTokensSizeUITests/test_OrangeTheme_Dark.sizeIconWithLabelMediumSizeLg.png
similarity index 100%
rename from Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Size/__Snapshots__/OUDSTokensSizeUITests/test_OrangeTheme_Dark.sizeIconWithLabelMediumSizeLg.png
rename to DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Size/__Snapshots__/OUDSTokensSizeUITests/test_OrangeTheme_Dark.sizeIconWithLabelMediumSizeLg.png
diff --git a/Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Size/__Snapshots__/OUDSTokensSizeUITests/test_OrangeTheme_Dark.sizeIconWithLabelMediumSizeMd.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Size/__Snapshots__/OUDSTokensSizeUITests/test_OrangeTheme_Dark.sizeIconWithLabelMediumSizeMd.png
similarity index 100%
rename from Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Size/__Snapshots__/OUDSTokensSizeUITests/test_OrangeTheme_Dark.sizeIconWithLabelMediumSizeMd.png
rename to DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Size/__Snapshots__/OUDSTokensSizeUITests/test_OrangeTheme_Dark.sizeIconWithLabelMediumSizeMd.png
diff --git a/Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Size/__Snapshots__/OUDSTokensSizeUITests/test_OrangeTheme_Dark.sizeIconWithLabelMediumSizeSm.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Size/__Snapshots__/OUDSTokensSizeUITests/test_OrangeTheme_Dark.sizeIconWithLabelMediumSizeSm.png
similarity index 100%
rename from Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Size/__Snapshots__/OUDSTokensSizeUITests/test_OrangeTheme_Dark.sizeIconWithLabelMediumSizeSm.png
rename to DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Size/__Snapshots__/OUDSTokensSizeUITests/test_OrangeTheme_Dark.sizeIconWithLabelMediumSizeSm.png
diff --git a/Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Size/__Snapshots__/OUDSTokensSizeUITests/test_OrangeTheme_Dark.sizeIconWithLabelMediumSizeXs.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Size/__Snapshots__/OUDSTokensSizeUITests/test_OrangeTheme_Dark.sizeIconWithLabelMediumSizeXs.png
similarity index 100%
rename from Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Size/__Snapshots__/OUDSTokensSizeUITests/test_OrangeTheme_Dark.sizeIconWithLabelMediumSizeXs.png
rename to DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Size/__Snapshots__/OUDSTokensSizeUITests/test_OrangeTheme_Dark.sizeIconWithLabelMediumSizeXs.png
diff --git a/Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Size/__Snapshots__/OUDSTokensSizeUITests/test_OrangeTheme_Dark.sizeIconWithLabelSmallSizeLg.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Size/__Snapshots__/OUDSTokensSizeUITests/test_OrangeTheme_Dark.sizeIconWithLabelSmallSizeLg.png
similarity index 100%
rename from Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Size/__Snapshots__/OUDSTokensSizeUITests/test_OrangeTheme_Dark.sizeIconWithLabelSmallSizeLg.png
rename to DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Size/__Snapshots__/OUDSTokensSizeUITests/test_OrangeTheme_Dark.sizeIconWithLabelSmallSizeLg.png
diff --git a/Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Size/__Snapshots__/OUDSTokensSizeUITests/test_OrangeTheme_Dark.sizeIconWithLabelSmallSizeMd.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Size/__Snapshots__/OUDSTokensSizeUITests/test_OrangeTheme_Dark.sizeIconWithLabelSmallSizeMd.png
similarity index 100%
rename from Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Size/__Snapshots__/OUDSTokensSizeUITests/test_OrangeTheme_Dark.sizeIconWithLabelSmallSizeMd.png
rename to DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Size/__Snapshots__/OUDSTokensSizeUITests/test_OrangeTheme_Dark.sizeIconWithLabelSmallSizeMd.png
diff --git a/Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Size/__Snapshots__/OUDSTokensSizeUITests/test_OrangeTheme_Dark.sizeIconWithLabelSmallSizeSm.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Size/__Snapshots__/OUDSTokensSizeUITests/test_OrangeTheme_Dark.sizeIconWithLabelSmallSizeSm.png
similarity index 100%
rename from Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Size/__Snapshots__/OUDSTokensSizeUITests/test_OrangeTheme_Dark.sizeIconWithLabelSmallSizeSm.png
rename to DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Size/__Snapshots__/OUDSTokensSizeUITests/test_OrangeTheme_Dark.sizeIconWithLabelSmallSizeSm.png
diff --git a/Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Size/__Snapshots__/OUDSTokensSizeUITests/test_OrangeTheme_Dark.sizeIconWithLabelSmallSizeXs.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Size/__Snapshots__/OUDSTokensSizeUITests/test_OrangeTheme_Dark.sizeIconWithLabelSmallSizeXs.png
similarity index 100%
rename from Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Size/__Snapshots__/OUDSTokensSizeUITests/test_OrangeTheme_Dark.sizeIconWithLabelSmallSizeXs.png
rename to DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Size/__Snapshots__/OUDSTokensSizeUITests/test_OrangeTheme_Dark.sizeIconWithLabelSmallSizeXs.png
diff --git a/Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Size/__Snapshots__/OUDSTokensSizeUITests/test_OrangeTheme_Dark.sizeIconWithLabelXlargeSizeLg.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Size/__Snapshots__/OUDSTokensSizeUITests/test_OrangeTheme_Dark.sizeIconWithLabelXlargeSizeLg.png
similarity index 100%
rename from Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Size/__Snapshots__/OUDSTokensSizeUITests/test_OrangeTheme_Dark.sizeIconWithLabelXlargeSizeLg.png
rename to DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Size/__Snapshots__/OUDSTokensSizeUITests/test_OrangeTheme_Dark.sizeIconWithLabelXlargeSizeLg.png
diff --git a/Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Size/__Snapshots__/OUDSTokensSizeUITests/test_OrangeTheme_Dark.sizeIconWithLabelXlargeSizeMd.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Size/__Snapshots__/OUDSTokensSizeUITests/test_OrangeTheme_Dark.sizeIconWithLabelXlargeSizeMd.png
similarity index 100%
rename from Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Size/__Snapshots__/OUDSTokensSizeUITests/test_OrangeTheme_Dark.sizeIconWithLabelXlargeSizeMd.png
rename to DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Size/__Snapshots__/OUDSTokensSizeUITests/test_OrangeTheme_Dark.sizeIconWithLabelXlargeSizeMd.png
diff --git a/Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Size/__Snapshots__/OUDSTokensSizeUITests/test_OrangeTheme_Dark.sizeIconWithLabelXlargeSizeSm.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Size/__Snapshots__/OUDSTokensSizeUITests/test_OrangeTheme_Dark.sizeIconWithLabelXlargeSizeSm.png
similarity index 100%
rename from Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Size/__Snapshots__/OUDSTokensSizeUITests/test_OrangeTheme_Dark.sizeIconWithLabelXlargeSizeSm.png
rename to DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Size/__Snapshots__/OUDSTokensSizeUITests/test_OrangeTheme_Dark.sizeIconWithLabelXlargeSizeSm.png
diff --git a/Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Size/__Snapshots__/OUDSTokensSizeUITests/test_OrangeTheme_Light.sizeIconDecorative2xl.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Size/__Snapshots__/OUDSTokensSizeUITests/test_OrangeTheme_Light.sizeIconDecorative2xl.png
similarity index 100%
rename from Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Size/__Snapshots__/OUDSTokensSizeUITests/test_OrangeTheme_Light.sizeIconDecorative2xl.png
rename to DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Size/__Snapshots__/OUDSTokensSizeUITests/test_OrangeTheme_Light.sizeIconDecorative2xl.png
diff --git a/Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Size/__Snapshots__/OUDSTokensSizeUITests/test_OrangeTheme_Light.sizeIconDecorative2xs.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Size/__Snapshots__/OUDSTokensSizeUITests/test_OrangeTheme_Light.sizeIconDecorative2xs.png
similarity index 100%
rename from Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Size/__Snapshots__/OUDSTokensSizeUITests/test_OrangeTheme_Light.sizeIconDecorative2xs.png
rename to DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Size/__Snapshots__/OUDSTokensSizeUITests/test_OrangeTheme_Light.sizeIconDecorative2xs.png
diff --git a/Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Size/__Snapshots__/OUDSTokensSizeUITests/test_OrangeTheme_Light.sizeIconDecorativeLg.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Size/__Snapshots__/OUDSTokensSizeUITests/test_OrangeTheme_Light.sizeIconDecorativeLg.png
similarity index 100%
rename from Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Size/__Snapshots__/OUDSTokensSizeUITests/test_OrangeTheme_Light.sizeIconDecorativeLg.png
rename to DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Size/__Snapshots__/OUDSTokensSizeUITests/test_OrangeTheme_Light.sizeIconDecorativeLg.png
diff --git a/Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Size/__Snapshots__/OUDSTokensSizeUITests/test_OrangeTheme_Light.sizeIconDecorativeMd.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Size/__Snapshots__/OUDSTokensSizeUITests/test_OrangeTheme_Light.sizeIconDecorativeMd.png
similarity index 100%
rename from Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Size/__Snapshots__/OUDSTokensSizeUITests/test_OrangeTheme_Light.sizeIconDecorativeMd.png
rename to DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Size/__Snapshots__/OUDSTokensSizeUITests/test_OrangeTheme_Light.sizeIconDecorativeMd.png
diff --git a/Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Size/__Snapshots__/OUDSTokensSizeUITests/test_OrangeTheme_Light.sizeIconDecorativeSm.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Size/__Snapshots__/OUDSTokensSizeUITests/test_OrangeTheme_Light.sizeIconDecorativeSm.png
similarity index 100%
rename from Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Size/__Snapshots__/OUDSTokensSizeUITests/test_OrangeTheme_Light.sizeIconDecorativeSm.png
rename to DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Size/__Snapshots__/OUDSTokensSizeUITests/test_OrangeTheme_Light.sizeIconDecorativeSm.png
diff --git a/Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Size/__Snapshots__/OUDSTokensSizeUITests/test_OrangeTheme_Light.sizeIconDecorativeXl.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Size/__Snapshots__/OUDSTokensSizeUITests/test_OrangeTheme_Light.sizeIconDecorativeXl.png
similarity index 100%
rename from Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Size/__Snapshots__/OUDSTokensSizeUITests/test_OrangeTheme_Light.sizeIconDecorativeXl.png
rename to DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Size/__Snapshots__/OUDSTokensSizeUITests/test_OrangeTheme_Light.sizeIconDecorativeXl.png
diff --git a/Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Size/__Snapshots__/OUDSTokensSizeUITests/test_OrangeTheme_Light.sizeIconDecorativeXs.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Size/__Snapshots__/OUDSTokensSizeUITests/test_OrangeTheme_Light.sizeIconDecorativeXs.png
similarity index 100%
rename from Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Size/__Snapshots__/OUDSTokensSizeUITests/test_OrangeTheme_Light.sizeIconDecorativeXs.png
rename to DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Size/__Snapshots__/OUDSTokensSizeUITests/test_OrangeTheme_Light.sizeIconDecorativeXs.png
diff --git a/Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Size/__Snapshots__/OUDSTokensSizeUITests/test_OrangeTheme_Light.sizeIconWithBodyLargeSizeLg.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Size/__Snapshots__/OUDSTokensSizeUITests/test_OrangeTheme_Light.sizeIconWithBodyLargeSizeLg.png
similarity index 100%
rename from Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Size/__Snapshots__/OUDSTokensSizeUITests/test_OrangeTheme_Light.sizeIconWithBodyLargeSizeLg.png
rename to DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Size/__Snapshots__/OUDSTokensSizeUITests/test_OrangeTheme_Light.sizeIconWithBodyLargeSizeLg.png
diff --git a/Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Size/__Snapshots__/OUDSTokensSizeUITests/test_OrangeTheme_Light.sizeIconWithBodyLargeSizeMd.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Size/__Snapshots__/OUDSTokensSizeUITests/test_OrangeTheme_Light.sizeIconWithBodyLargeSizeMd.png
similarity index 100%
rename from Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Size/__Snapshots__/OUDSTokensSizeUITests/test_OrangeTheme_Light.sizeIconWithBodyLargeSizeMd.png
rename to DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Size/__Snapshots__/OUDSTokensSizeUITests/test_OrangeTheme_Light.sizeIconWithBodyLargeSizeMd.png
diff --git a/Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Size/__Snapshots__/OUDSTokensSizeUITests/test_OrangeTheme_Light.sizeIconWithBodyLargeSizeSm.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Size/__Snapshots__/OUDSTokensSizeUITests/test_OrangeTheme_Light.sizeIconWithBodyLargeSizeSm.png
similarity index 100%
rename from Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Size/__Snapshots__/OUDSTokensSizeUITests/test_OrangeTheme_Light.sizeIconWithBodyLargeSizeSm.png
rename to DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Size/__Snapshots__/OUDSTokensSizeUITests/test_OrangeTheme_Light.sizeIconWithBodyLargeSizeSm.png
diff --git a/Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Size/__Snapshots__/OUDSTokensSizeUITests/test_OrangeTheme_Light.sizeIconWithBodyMediumSizeLg.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Size/__Snapshots__/OUDSTokensSizeUITests/test_OrangeTheme_Light.sizeIconWithBodyMediumSizeLg.png
similarity index 100%
rename from Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Size/__Snapshots__/OUDSTokensSizeUITests/test_OrangeTheme_Light.sizeIconWithBodyMediumSizeLg.png
rename to DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Size/__Snapshots__/OUDSTokensSizeUITests/test_OrangeTheme_Light.sizeIconWithBodyMediumSizeLg.png
diff --git a/Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Size/__Snapshots__/OUDSTokensSizeUITests/test_OrangeTheme_Light.sizeIconWithBodyMediumSizeMd.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Size/__Snapshots__/OUDSTokensSizeUITests/test_OrangeTheme_Light.sizeIconWithBodyMediumSizeMd.png
similarity index 100%
rename from Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Size/__Snapshots__/OUDSTokensSizeUITests/test_OrangeTheme_Light.sizeIconWithBodyMediumSizeMd.png
rename to DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Size/__Snapshots__/OUDSTokensSizeUITests/test_OrangeTheme_Light.sizeIconWithBodyMediumSizeMd.png
diff --git a/Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Size/__Snapshots__/OUDSTokensSizeUITests/test_OrangeTheme_Light.sizeIconWithBodyMediumSizeSm.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Size/__Snapshots__/OUDSTokensSizeUITests/test_OrangeTheme_Light.sizeIconWithBodyMediumSizeSm.png
similarity index 100%
rename from Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Size/__Snapshots__/OUDSTokensSizeUITests/test_OrangeTheme_Light.sizeIconWithBodyMediumSizeSm.png
rename to DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Size/__Snapshots__/OUDSTokensSizeUITests/test_OrangeTheme_Light.sizeIconWithBodyMediumSizeSm.png
diff --git a/Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Size/__Snapshots__/OUDSTokensSizeUITests/test_OrangeTheme_Light.sizeIconWithBodySmallSizeLg.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Size/__Snapshots__/OUDSTokensSizeUITests/test_OrangeTheme_Light.sizeIconWithBodySmallSizeLg.png
similarity index 100%
rename from Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Size/__Snapshots__/OUDSTokensSizeUITests/test_OrangeTheme_Light.sizeIconWithBodySmallSizeLg.png
rename to DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Size/__Snapshots__/OUDSTokensSizeUITests/test_OrangeTheme_Light.sizeIconWithBodySmallSizeLg.png
diff --git a/Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Size/__Snapshots__/OUDSTokensSizeUITests/test_OrangeTheme_Light.sizeIconWithBodySmallSizeMd.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Size/__Snapshots__/OUDSTokensSizeUITests/test_OrangeTheme_Light.sizeIconWithBodySmallSizeMd.png
similarity index 100%
rename from Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Size/__Snapshots__/OUDSTokensSizeUITests/test_OrangeTheme_Light.sizeIconWithBodySmallSizeMd.png
rename to DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Size/__Snapshots__/OUDSTokensSizeUITests/test_OrangeTheme_Light.sizeIconWithBodySmallSizeMd.png
diff --git a/Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Size/__Snapshots__/OUDSTokensSizeUITests/test_OrangeTheme_Light.sizeIconWithBodySmallSizeSm.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Size/__Snapshots__/OUDSTokensSizeUITests/test_OrangeTheme_Light.sizeIconWithBodySmallSizeSm.png
similarity index 100%
rename from Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Size/__Snapshots__/OUDSTokensSizeUITests/test_OrangeTheme_Light.sizeIconWithBodySmallSizeSm.png
rename to DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Size/__Snapshots__/OUDSTokensSizeUITests/test_OrangeTheme_Light.sizeIconWithBodySmallSizeSm.png
diff --git a/Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Size/__Snapshots__/OUDSTokensSizeUITests/test_OrangeTheme_Light.sizeIconWithHeadingLargeSizeLg.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Size/__Snapshots__/OUDSTokensSizeUITests/test_OrangeTheme_Light.sizeIconWithHeadingLargeSizeLg.png
similarity index 100%
rename from Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Size/__Snapshots__/OUDSTokensSizeUITests/test_OrangeTheme_Light.sizeIconWithHeadingLargeSizeLg.png
rename to DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Size/__Snapshots__/OUDSTokensSizeUITests/test_OrangeTheme_Light.sizeIconWithHeadingLargeSizeLg.png
diff --git a/Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Size/__Snapshots__/OUDSTokensSizeUITests/test_OrangeTheme_Light.sizeIconWithHeadingLargeSizeMd.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Size/__Snapshots__/OUDSTokensSizeUITests/test_OrangeTheme_Light.sizeIconWithHeadingLargeSizeMd.png
similarity index 100%
rename from Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Size/__Snapshots__/OUDSTokensSizeUITests/test_OrangeTheme_Light.sizeIconWithHeadingLargeSizeMd.png
rename to DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Size/__Snapshots__/OUDSTokensSizeUITests/test_OrangeTheme_Light.sizeIconWithHeadingLargeSizeMd.png
diff --git a/Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Size/__Snapshots__/OUDSTokensSizeUITests/test_OrangeTheme_Light.sizeIconWithHeadingLargeSizeSm.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Size/__Snapshots__/OUDSTokensSizeUITests/test_OrangeTheme_Light.sizeIconWithHeadingLargeSizeSm.png
similarity index 100%
rename from Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Size/__Snapshots__/OUDSTokensSizeUITests/test_OrangeTheme_Light.sizeIconWithHeadingLargeSizeSm.png
rename to DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Size/__Snapshots__/OUDSTokensSizeUITests/test_OrangeTheme_Light.sizeIconWithHeadingLargeSizeSm.png
diff --git a/Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Size/__Snapshots__/OUDSTokensSizeUITests/test_OrangeTheme_Light.sizeIconWithHeadingMediumSizeLg.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Size/__Snapshots__/OUDSTokensSizeUITests/test_OrangeTheme_Light.sizeIconWithHeadingMediumSizeLg.png
similarity index 100%
rename from Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Size/__Snapshots__/OUDSTokensSizeUITests/test_OrangeTheme_Light.sizeIconWithHeadingMediumSizeLg.png
rename to DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Size/__Snapshots__/OUDSTokensSizeUITests/test_OrangeTheme_Light.sizeIconWithHeadingMediumSizeLg.png
diff --git a/Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Size/__Snapshots__/OUDSTokensSizeUITests/test_OrangeTheme_Light.sizeIconWithHeadingMediumSizeMd.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Size/__Snapshots__/OUDSTokensSizeUITests/test_OrangeTheme_Light.sizeIconWithHeadingMediumSizeMd.png
similarity index 100%
rename from Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Size/__Snapshots__/OUDSTokensSizeUITests/test_OrangeTheme_Light.sizeIconWithHeadingMediumSizeMd.png
rename to DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Size/__Snapshots__/OUDSTokensSizeUITests/test_OrangeTheme_Light.sizeIconWithHeadingMediumSizeMd.png
diff --git a/Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Size/__Snapshots__/OUDSTokensSizeUITests/test_OrangeTheme_Light.sizeIconWithHeadingMediumSizeSm.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Size/__Snapshots__/OUDSTokensSizeUITests/test_OrangeTheme_Light.sizeIconWithHeadingMediumSizeSm.png
similarity index 100%
rename from Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Size/__Snapshots__/OUDSTokensSizeUITests/test_OrangeTheme_Light.sizeIconWithHeadingMediumSizeSm.png
rename to DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Size/__Snapshots__/OUDSTokensSizeUITests/test_OrangeTheme_Light.sizeIconWithHeadingMediumSizeSm.png
diff --git a/Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Size/__Snapshots__/OUDSTokensSizeUITests/test_OrangeTheme_Light.sizeIconWithHeadingSmallSizeLg.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Size/__Snapshots__/OUDSTokensSizeUITests/test_OrangeTheme_Light.sizeIconWithHeadingSmallSizeLg.png
similarity index 100%
rename from Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Size/__Snapshots__/OUDSTokensSizeUITests/test_OrangeTheme_Light.sizeIconWithHeadingSmallSizeLg.png
rename to DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Size/__Snapshots__/OUDSTokensSizeUITests/test_OrangeTheme_Light.sizeIconWithHeadingSmallSizeLg.png
diff --git a/Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Size/__Snapshots__/OUDSTokensSizeUITests/test_OrangeTheme_Light.sizeIconWithHeadingSmallSizeMd.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Size/__Snapshots__/OUDSTokensSizeUITests/test_OrangeTheme_Light.sizeIconWithHeadingSmallSizeMd.png
similarity index 100%
rename from Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Size/__Snapshots__/OUDSTokensSizeUITests/test_OrangeTheme_Light.sizeIconWithHeadingSmallSizeMd.png
rename to DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Size/__Snapshots__/OUDSTokensSizeUITests/test_OrangeTheme_Light.sizeIconWithHeadingSmallSizeMd.png
diff --git a/Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Size/__Snapshots__/OUDSTokensSizeUITests/test_OrangeTheme_Light.sizeIconWithHeadingSmallSizeSm.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Size/__Snapshots__/OUDSTokensSizeUITests/test_OrangeTheme_Light.sizeIconWithHeadingSmallSizeSm.png
similarity index 100%
rename from Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Size/__Snapshots__/OUDSTokensSizeUITests/test_OrangeTheme_Light.sizeIconWithHeadingSmallSizeSm.png
rename to DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Size/__Snapshots__/OUDSTokensSizeUITests/test_OrangeTheme_Light.sizeIconWithHeadingSmallSizeSm.png
diff --git a/Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Size/__Snapshots__/OUDSTokensSizeUITests/test_OrangeTheme_Light.sizeIconWithHeadingXlargeSizeLg.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Size/__Snapshots__/OUDSTokensSizeUITests/test_OrangeTheme_Light.sizeIconWithHeadingXlargeSizeLg.png
similarity index 100%
rename from Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Size/__Snapshots__/OUDSTokensSizeUITests/test_OrangeTheme_Light.sizeIconWithHeadingXlargeSizeLg.png
rename to DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Size/__Snapshots__/OUDSTokensSizeUITests/test_OrangeTheme_Light.sizeIconWithHeadingXlargeSizeLg.png
diff --git a/Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Size/__Snapshots__/OUDSTokensSizeUITests/test_OrangeTheme_Light.sizeIconWithHeadingXlargeSizeMd.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Size/__Snapshots__/OUDSTokensSizeUITests/test_OrangeTheme_Light.sizeIconWithHeadingXlargeSizeMd.png
similarity index 100%
rename from Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Size/__Snapshots__/OUDSTokensSizeUITests/test_OrangeTheme_Light.sizeIconWithHeadingXlargeSizeMd.png
rename to DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Size/__Snapshots__/OUDSTokensSizeUITests/test_OrangeTheme_Light.sizeIconWithHeadingXlargeSizeMd.png
diff --git a/Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Size/__Snapshots__/OUDSTokensSizeUITests/test_OrangeTheme_Light.sizeIconWithHeadingXlargeSizeSm.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Size/__Snapshots__/OUDSTokensSizeUITests/test_OrangeTheme_Light.sizeIconWithHeadingXlargeSizeSm.png
similarity index 100%
rename from Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Size/__Snapshots__/OUDSTokensSizeUITests/test_OrangeTheme_Light.sizeIconWithHeadingXlargeSizeSm.png
rename to DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Size/__Snapshots__/OUDSTokensSizeUITests/test_OrangeTheme_Light.sizeIconWithHeadingXlargeSizeSm.png
diff --git a/Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Size/__Snapshots__/OUDSTokensSizeUITests/test_OrangeTheme_Light.sizeIconWithLabelLargeSizeLg.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Size/__Snapshots__/OUDSTokensSizeUITests/test_OrangeTheme_Light.sizeIconWithLabelLargeSizeLg.png
similarity index 100%
rename from Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Size/__Snapshots__/OUDSTokensSizeUITests/test_OrangeTheme_Light.sizeIconWithLabelLargeSizeLg.png
rename to DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Size/__Snapshots__/OUDSTokensSizeUITests/test_OrangeTheme_Light.sizeIconWithLabelLargeSizeLg.png
diff --git a/Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Size/__Snapshots__/OUDSTokensSizeUITests/test_OrangeTheme_Light.sizeIconWithLabelLargeSizeMd.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Size/__Snapshots__/OUDSTokensSizeUITests/test_OrangeTheme_Light.sizeIconWithLabelLargeSizeMd.png
similarity index 100%
rename from Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Size/__Snapshots__/OUDSTokensSizeUITests/test_OrangeTheme_Light.sizeIconWithLabelLargeSizeMd.png
rename to DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Size/__Snapshots__/OUDSTokensSizeUITests/test_OrangeTheme_Light.sizeIconWithLabelLargeSizeMd.png
diff --git a/Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Size/__Snapshots__/OUDSTokensSizeUITests/test_OrangeTheme_Light.sizeIconWithLabelLargeSizeSm.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Size/__Snapshots__/OUDSTokensSizeUITests/test_OrangeTheme_Light.sizeIconWithLabelLargeSizeSm.png
similarity index 100%
rename from Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Size/__Snapshots__/OUDSTokensSizeUITests/test_OrangeTheme_Light.sizeIconWithLabelLargeSizeSm.png
rename to DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Size/__Snapshots__/OUDSTokensSizeUITests/test_OrangeTheme_Light.sizeIconWithLabelLargeSizeSm.png
diff --git a/Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Size/__Snapshots__/OUDSTokensSizeUITests/test_OrangeTheme_Light.sizeIconWithLabelLargeSizeXl.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Size/__Snapshots__/OUDSTokensSizeUITests/test_OrangeTheme_Light.sizeIconWithLabelLargeSizeXl.png
similarity index 100%
rename from Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Size/__Snapshots__/OUDSTokensSizeUITests/test_OrangeTheme_Light.sizeIconWithLabelLargeSizeXl.png
rename to DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Size/__Snapshots__/OUDSTokensSizeUITests/test_OrangeTheme_Light.sizeIconWithLabelLargeSizeXl.png
diff --git a/Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Size/__Snapshots__/OUDSTokensSizeUITests/test_OrangeTheme_Light.sizeIconWithLabelLargeSizeXs.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Size/__Snapshots__/OUDSTokensSizeUITests/test_OrangeTheme_Light.sizeIconWithLabelLargeSizeXs.png
similarity index 100%
rename from Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Size/__Snapshots__/OUDSTokensSizeUITests/test_OrangeTheme_Light.sizeIconWithLabelLargeSizeXs.png
rename to DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Size/__Snapshots__/OUDSTokensSizeUITests/test_OrangeTheme_Light.sizeIconWithLabelLargeSizeXs.png
diff --git a/Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Size/__Snapshots__/OUDSTokensSizeUITests/test_OrangeTheme_Light.sizeIconWithLabelMediumSizeLg.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Size/__Snapshots__/OUDSTokensSizeUITests/test_OrangeTheme_Light.sizeIconWithLabelMediumSizeLg.png
similarity index 100%
rename from Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Size/__Snapshots__/OUDSTokensSizeUITests/test_OrangeTheme_Light.sizeIconWithLabelMediumSizeLg.png
rename to DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Size/__Snapshots__/OUDSTokensSizeUITests/test_OrangeTheme_Light.sizeIconWithLabelMediumSizeLg.png
diff --git a/Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Size/__Snapshots__/OUDSTokensSizeUITests/test_OrangeTheme_Light.sizeIconWithLabelMediumSizeMd.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Size/__Snapshots__/OUDSTokensSizeUITests/test_OrangeTheme_Light.sizeIconWithLabelMediumSizeMd.png
similarity index 100%
rename from Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Size/__Snapshots__/OUDSTokensSizeUITests/test_OrangeTheme_Light.sizeIconWithLabelMediumSizeMd.png
rename to DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Size/__Snapshots__/OUDSTokensSizeUITests/test_OrangeTheme_Light.sizeIconWithLabelMediumSizeMd.png
diff --git a/Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Size/__Snapshots__/OUDSTokensSizeUITests/test_OrangeTheme_Light.sizeIconWithLabelMediumSizeSm.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Size/__Snapshots__/OUDSTokensSizeUITests/test_OrangeTheme_Light.sizeIconWithLabelMediumSizeSm.png
similarity index 100%
rename from Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Size/__Snapshots__/OUDSTokensSizeUITests/test_OrangeTheme_Light.sizeIconWithLabelMediumSizeSm.png
rename to DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Size/__Snapshots__/OUDSTokensSizeUITests/test_OrangeTheme_Light.sizeIconWithLabelMediumSizeSm.png
diff --git a/Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Size/__Snapshots__/OUDSTokensSizeUITests/test_OrangeTheme_Light.sizeIconWithLabelMediumSizeXs.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Size/__Snapshots__/OUDSTokensSizeUITests/test_OrangeTheme_Light.sizeIconWithLabelMediumSizeXs.png
similarity index 100%
rename from Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Size/__Snapshots__/OUDSTokensSizeUITests/test_OrangeTheme_Light.sizeIconWithLabelMediumSizeXs.png
rename to DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Size/__Snapshots__/OUDSTokensSizeUITests/test_OrangeTheme_Light.sizeIconWithLabelMediumSizeXs.png
diff --git a/Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Size/__Snapshots__/OUDSTokensSizeUITests/test_OrangeTheme_Light.sizeIconWithLabelSmallSizeLg.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Size/__Snapshots__/OUDSTokensSizeUITests/test_OrangeTheme_Light.sizeIconWithLabelSmallSizeLg.png
similarity index 100%
rename from Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Size/__Snapshots__/OUDSTokensSizeUITests/test_OrangeTheme_Light.sizeIconWithLabelSmallSizeLg.png
rename to DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Size/__Snapshots__/OUDSTokensSizeUITests/test_OrangeTheme_Light.sizeIconWithLabelSmallSizeLg.png
diff --git a/Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Size/__Snapshots__/OUDSTokensSizeUITests/test_OrangeTheme_Light.sizeIconWithLabelSmallSizeMd.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Size/__Snapshots__/OUDSTokensSizeUITests/test_OrangeTheme_Light.sizeIconWithLabelSmallSizeMd.png
similarity index 100%
rename from Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Size/__Snapshots__/OUDSTokensSizeUITests/test_OrangeTheme_Light.sizeIconWithLabelSmallSizeMd.png
rename to DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Size/__Snapshots__/OUDSTokensSizeUITests/test_OrangeTheme_Light.sizeIconWithLabelSmallSizeMd.png
diff --git a/Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Size/__Snapshots__/OUDSTokensSizeUITests/test_OrangeTheme_Light.sizeIconWithLabelSmallSizeSm.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Size/__Snapshots__/OUDSTokensSizeUITests/test_OrangeTheme_Light.sizeIconWithLabelSmallSizeSm.png
similarity index 100%
rename from Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Size/__Snapshots__/OUDSTokensSizeUITests/test_OrangeTheme_Light.sizeIconWithLabelSmallSizeSm.png
rename to DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Size/__Snapshots__/OUDSTokensSizeUITests/test_OrangeTheme_Light.sizeIconWithLabelSmallSizeSm.png
diff --git a/Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Size/__Snapshots__/OUDSTokensSizeUITests/test_OrangeTheme_Light.sizeIconWithLabelSmallSizeXs.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Size/__Snapshots__/OUDSTokensSizeUITests/test_OrangeTheme_Light.sizeIconWithLabelSmallSizeXs.png
similarity index 100%
rename from Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Size/__Snapshots__/OUDSTokensSizeUITests/test_OrangeTheme_Light.sizeIconWithLabelSmallSizeXs.png
rename to DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Size/__Snapshots__/OUDSTokensSizeUITests/test_OrangeTheme_Light.sizeIconWithLabelSmallSizeXs.png
diff --git a/Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Size/__Snapshots__/OUDSTokensSizeUITests/test_OrangeTheme_Light.sizeIconWithLabelXlargeSizeLg.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Size/__Snapshots__/OUDSTokensSizeUITests/test_OrangeTheme_Light.sizeIconWithLabelXlargeSizeLg.png
similarity index 100%
rename from Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Size/__Snapshots__/OUDSTokensSizeUITests/test_OrangeTheme_Light.sizeIconWithLabelXlargeSizeLg.png
rename to DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Size/__Snapshots__/OUDSTokensSizeUITests/test_OrangeTheme_Light.sizeIconWithLabelXlargeSizeLg.png
diff --git a/Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Size/__Snapshots__/OUDSTokensSizeUITests/test_OrangeTheme_Light.sizeIconWithLabelXlargeSizeMd.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Size/__Snapshots__/OUDSTokensSizeUITests/test_OrangeTheme_Light.sizeIconWithLabelXlargeSizeMd.png
similarity index 100%
rename from Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Size/__Snapshots__/OUDSTokensSizeUITests/test_OrangeTheme_Light.sizeIconWithLabelXlargeSizeMd.png
rename to DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Size/__Snapshots__/OUDSTokensSizeUITests/test_OrangeTheme_Light.sizeIconWithLabelXlargeSizeMd.png
diff --git a/Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Size/__Snapshots__/OUDSTokensSizeUITests/test_OrangeTheme_Light.sizeIconWithLabelXlargeSizeSm.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Size/__Snapshots__/OUDSTokensSizeUITests/test_OrangeTheme_Light.sizeIconWithLabelXlargeSizeSm.png
similarity index 100%
rename from Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Size/__Snapshots__/OUDSTokensSizeUITests/test_OrangeTheme_Light.sizeIconWithLabelXlargeSizeSm.png
rename to DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Size/__Snapshots__/OUDSTokensSizeUITests/test_OrangeTheme_Light.sizeIconWithLabelXlargeSizeSm.png
diff --git a/Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Space/OUDSTokensSpaceUITests.swift b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Space/OUDSTokensSpaceUITests.swift
similarity index 100%
rename from Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Space/OUDSTokensSpaceUITests.swift
rename to DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Space/OUDSTokensSpaceUITests.swift
diff --git a/Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Space/__Snapshots__/OUDSTokensSpaceUITests/test_InverseTheme_Dark.spaceColumnGapMedium.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Space/__Snapshots__/OUDSTokensSpaceUITests/test_InverseTheme_Dark.spaceColumnGapMedium.png
similarity index 100%
rename from Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Space/__Snapshots__/OUDSTokensSpaceUITests/test_InverseTheme_Dark.spaceColumnGapMedium.png
rename to DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Space/__Snapshots__/OUDSTokensSpaceUITests/test_InverseTheme_Dark.spaceColumnGapMedium.png
diff --git a/Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Space/__Snapshots__/OUDSTokensSpaceUITests/test_InverseTheme_Dark.spaceColumnGapNone.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Space/__Snapshots__/OUDSTokensSpaceUITests/test_InverseTheme_Dark.spaceColumnGapNone.png
similarity index 100%
rename from Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Space/__Snapshots__/OUDSTokensSpaceUITests/test_InverseTheme_Dark.spaceColumnGapNone.png
rename to DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Space/__Snapshots__/OUDSTokensSpaceUITests/test_InverseTheme_Dark.spaceColumnGapNone.png
diff --git a/Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Space/__Snapshots__/OUDSTokensSpaceUITests/test_InverseTheme_Dark.spaceColumnGapShort.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Space/__Snapshots__/OUDSTokensSpaceUITests/test_InverseTheme_Dark.spaceColumnGapShort.png
similarity index 100%
rename from Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Space/__Snapshots__/OUDSTokensSpaceUITests/test_InverseTheme_Dark.spaceColumnGapShort.png
rename to DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Space/__Snapshots__/OUDSTokensSpaceUITests/test_InverseTheme_Dark.spaceColumnGapShort.png
diff --git a/Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Space/__Snapshots__/OUDSTokensSpaceUITests/test_InverseTheme_Dark.spaceColumnGapShorter.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Space/__Snapshots__/OUDSTokensSpaceUITests/test_InverseTheme_Dark.spaceColumnGapShorter.png
similarity index 100%
rename from Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Space/__Snapshots__/OUDSTokensSpaceUITests/test_InverseTheme_Dark.spaceColumnGapShorter.png
rename to DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Space/__Snapshots__/OUDSTokensSpaceUITests/test_InverseTheme_Dark.spaceColumnGapShorter.png
diff --git a/Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Space/__Snapshots__/OUDSTokensSpaceUITests/test_InverseTheme_Dark.spaceColumnGapTall.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Space/__Snapshots__/OUDSTokensSpaceUITests/test_InverseTheme_Dark.spaceColumnGapTall.png
similarity index 100%
rename from Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Space/__Snapshots__/OUDSTokensSpaceUITests/test_InverseTheme_Dark.spaceColumnGapTall.png
rename to DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Space/__Snapshots__/OUDSTokensSpaceUITests/test_InverseTheme_Dark.spaceColumnGapTall.png
diff --git a/Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Space/__Snapshots__/OUDSTokensSpaceUITests/test_InverseTheme_Dark.spaceColumnGapTaller.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Space/__Snapshots__/OUDSTokensSpaceUITests/test_InverseTheme_Dark.spaceColumnGapTaller.png
similarity index 100%
rename from Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Space/__Snapshots__/OUDSTokensSpaceUITests/test_InverseTheme_Dark.spaceColumnGapTaller.png
rename to DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Space/__Snapshots__/OUDSTokensSpaceUITests/test_InverseTheme_Dark.spaceColumnGapTaller.png
diff --git a/Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Space/__Snapshots__/OUDSTokensSpaceUITests/test_InverseTheme_Dark.spaceFixedHuge.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Space/__Snapshots__/OUDSTokensSpaceUITests/test_InverseTheme_Dark.spaceFixedHuge.png
similarity index 100%
rename from Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Space/__Snapshots__/OUDSTokensSpaceUITests/test_InverseTheme_Dark.spaceFixedHuge.png
rename to DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Space/__Snapshots__/OUDSTokensSpaceUITests/test_InverseTheme_Dark.spaceFixedHuge.png
diff --git a/Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Space/__Snapshots__/OUDSTokensSpaceUITests/test_InverseTheme_Dark.spaceFixedJumbo.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Space/__Snapshots__/OUDSTokensSpaceUITests/test_InverseTheme_Dark.spaceFixedJumbo.png
similarity index 100%
rename from Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Space/__Snapshots__/OUDSTokensSpaceUITests/test_InverseTheme_Dark.spaceFixedJumbo.png
rename to DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Space/__Snapshots__/OUDSTokensSpaceUITests/test_InverseTheme_Dark.spaceFixedJumbo.png
diff --git a/Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Space/__Snapshots__/OUDSTokensSpaceUITests/test_InverseTheme_Dark.spaceFixedMedium.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Space/__Snapshots__/OUDSTokensSpaceUITests/test_InverseTheme_Dark.spaceFixedMedium.png
similarity index 100%
rename from Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Space/__Snapshots__/OUDSTokensSpaceUITests/test_InverseTheme_Dark.spaceFixedMedium.png
rename to DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Space/__Snapshots__/OUDSTokensSpaceUITests/test_InverseTheme_Dark.spaceFixedMedium.png
diff --git a/Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Space/__Snapshots__/OUDSTokensSpaceUITests/test_InverseTheme_Dark.spaceFixedNone.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Space/__Snapshots__/OUDSTokensSpaceUITests/test_InverseTheme_Dark.spaceFixedNone.png
similarity index 100%
rename from Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Space/__Snapshots__/OUDSTokensSpaceUITests/test_InverseTheme_Dark.spaceFixedNone.png
rename to DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Space/__Snapshots__/OUDSTokensSpaceUITests/test_InverseTheme_Dark.spaceFixedNone.png
diff --git a/Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Space/__Snapshots__/OUDSTokensSpaceUITests/test_InverseTheme_Dark.spaceFixedShort.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Space/__Snapshots__/OUDSTokensSpaceUITests/test_InverseTheme_Dark.spaceFixedShort.png
similarity index 100%
rename from Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Space/__Snapshots__/OUDSTokensSpaceUITests/test_InverseTheme_Dark.spaceFixedShort.png
rename to DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Space/__Snapshots__/OUDSTokensSpaceUITests/test_InverseTheme_Dark.spaceFixedShort.png
diff --git a/Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Space/__Snapshots__/OUDSTokensSpaceUITests/test_InverseTheme_Dark.spaceFixedShorter.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Space/__Snapshots__/OUDSTokensSpaceUITests/test_InverseTheme_Dark.spaceFixedShorter.png
similarity index 100%
rename from Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Space/__Snapshots__/OUDSTokensSpaceUITests/test_InverseTheme_Dark.spaceFixedShorter.png
rename to DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Space/__Snapshots__/OUDSTokensSpaceUITests/test_InverseTheme_Dark.spaceFixedShorter.png
diff --git a/Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Space/__Snapshots__/OUDSTokensSpaceUITests/test_InverseTheme_Dark.spaceFixedShortest.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Space/__Snapshots__/OUDSTokensSpaceUITests/test_InverseTheme_Dark.spaceFixedShortest.png
similarity index 100%
rename from Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Space/__Snapshots__/OUDSTokensSpaceUITests/test_InverseTheme_Dark.spaceFixedShortest.png
rename to DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Space/__Snapshots__/OUDSTokensSpaceUITests/test_InverseTheme_Dark.spaceFixedShortest.png
diff --git a/Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Space/__Snapshots__/OUDSTokensSpaceUITests/test_InverseTheme_Dark.spaceFixedSmash.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Space/__Snapshots__/OUDSTokensSpaceUITests/test_InverseTheme_Dark.spaceFixedSmash.png
similarity index 100%
rename from Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Space/__Snapshots__/OUDSTokensSpaceUITests/test_InverseTheme_Dark.spaceFixedSmash.png
rename to DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Space/__Snapshots__/OUDSTokensSpaceUITests/test_InverseTheme_Dark.spaceFixedSmash.png
diff --git a/Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Space/__Snapshots__/OUDSTokensSpaceUITests/test_InverseTheme_Dark.spaceFixedSpacious.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Space/__Snapshots__/OUDSTokensSpaceUITests/test_InverseTheme_Dark.spaceFixedSpacious.png
similarity index 100%
rename from Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Space/__Snapshots__/OUDSTokensSpaceUITests/test_InverseTheme_Dark.spaceFixedSpacious.png
rename to DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Space/__Snapshots__/OUDSTokensSpaceUITests/test_InverseTheme_Dark.spaceFixedSpacious.png
diff --git a/Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Space/__Snapshots__/OUDSTokensSpaceUITests/test_InverseTheme_Dark.spaceFixedTall.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Space/__Snapshots__/OUDSTokensSpaceUITests/test_InverseTheme_Dark.spaceFixedTall.png
similarity index 100%
rename from Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Space/__Snapshots__/OUDSTokensSpaceUITests/test_InverseTheme_Dark.spaceFixedTall.png
rename to DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Space/__Snapshots__/OUDSTokensSpaceUITests/test_InverseTheme_Dark.spaceFixedTall.png
diff --git a/Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Space/__Snapshots__/OUDSTokensSpaceUITests/test_InverseTheme_Dark.spaceFixedTaller.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Space/__Snapshots__/OUDSTokensSpaceUITests/test_InverseTheme_Dark.spaceFixedTaller.png
similarity index 100%
rename from Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Space/__Snapshots__/OUDSTokensSpaceUITests/test_InverseTheme_Dark.spaceFixedTaller.png
rename to DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Space/__Snapshots__/OUDSTokensSpaceUITests/test_InverseTheme_Dark.spaceFixedTaller.png
diff --git a/Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Space/__Snapshots__/OUDSTokensSpaceUITests/test_InverseTheme_Dark.spaceFixedTallest.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Space/__Snapshots__/OUDSTokensSpaceUITests/test_InverseTheme_Dark.spaceFixedTallest.png
similarity index 100%
rename from Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Space/__Snapshots__/OUDSTokensSpaceUITests/test_InverseTheme_Dark.spaceFixedTallest.png
rename to DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Space/__Snapshots__/OUDSTokensSpaceUITests/test_InverseTheme_Dark.spaceFixedTallest.png
diff --git a/Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Space/__Snapshots__/OUDSTokensSpaceUITests/test_InverseTheme_Dark.spaceInsetMedium.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Space/__Snapshots__/OUDSTokensSpaceUITests/test_InverseTheme_Dark.spaceInsetMedium.png
similarity index 100%
rename from Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Space/__Snapshots__/OUDSTokensSpaceUITests/test_InverseTheme_Dark.spaceInsetMedium.png
rename to DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Space/__Snapshots__/OUDSTokensSpaceUITests/test_InverseTheme_Dark.spaceInsetMedium.png
diff --git a/Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Space/__Snapshots__/OUDSTokensSpaceUITests/test_InverseTheme_Dark.spaceInsetNone.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Space/__Snapshots__/OUDSTokensSpaceUITests/test_InverseTheme_Dark.spaceInsetNone.png
similarity index 100%
rename from Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Space/__Snapshots__/OUDSTokensSpaceUITests/test_InverseTheme_Dark.spaceInsetNone.png
rename to DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Space/__Snapshots__/OUDSTokensSpaceUITests/test_InverseTheme_Dark.spaceInsetNone.png
diff --git a/Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Space/__Snapshots__/OUDSTokensSpaceUITests/test_InverseTheme_Dark.spaceInsetShort.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Space/__Snapshots__/OUDSTokensSpaceUITests/test_InverseTheme_Dark.spaceInsetShort.png
similarity index 100%
rename from Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Space/__Snapshots__/OUDSTokensSpaceUITests/test_InverseTheme_Dark.spaceInsetShort.png
rename to DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Space/__Snapshots__/OUDSTokensSpaceUITests/test_InverseTheme_Dark.spaceInsetShort.png
diff --git a/Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Space/__Snapshots__/OUDSTokensSpaceUITests/test_InverseTheme_Dark.spaceInsetShorter.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Space/__Snapshots__/OUDSTokensSpaceUITests/test_InverseTheme_Dark.spaceInsetShorter.png
similarity index 100%
rename from Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Space/__Snapshots__/OUDSTokensSpaceUITests/test_InverseTheme_Dark.spaceInsetShorter.png
rename to DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Space/__Snapshots__/OUDSTokensSpaceUITests/test_InverseTheme_Dark.spaceInsetShorter.png
diff --git a/Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Space/__Snapshots__/OUDSTokensSpaceUITests/test_InverseTheme_Dark.spaceInsetShortest.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Space/__Snapshots__/OUDSTokensSpaceUITests/test_InverseTheme_Dark.spaceInsetShortest.png
similarity index 100%
rename from Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Space/__Snapshots__/OUDSTokensSpaceUITests/test_InverseTheme_Dark.spaceInsetShortest.png
rename to DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Space/__Snapshots__/OUDSTokensSpaceUITests/test_InverseTheme_Dark.spaceInsetShortest.png
diff --git a/Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Space/__Snapshots__/OUDSTokensSpaceUITests/test_InverseTheme_Dark.spaceInsetSmash.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Space/__Snapshots__/OUDSTokensSpaceUITests/test_InverseTheme_Dark.spaceInsetSmash.png
similarity index 100%
rename from Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Space/__Snapshots__/OUDSTokensSpaceUITests/test_InverseTheme_Dark.spaceInsetSmash.png
rename to DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Space/__Snapshots__/OUDSTokensSpaceUITests/test_InverseTheme_Dark.spaceInsetSmash.png
diff --git a/Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Space/__Snapshots__/OUDSTokensSpaceUITests/test_InverseTheme_Dark.spaceInsetSpacious.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Space/__Snapshots__/OUDSTokensSpaceUITests/test_InverseTheme_Dark.spaceInsetSpacious.png
similarity index 100%
rename from Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Space/__Snapshots__/OUDSTokensSpaceUITests/test_InverseTheme_Dark.spaceInsetSpacious.png
rename to DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Space/__Snapshots__/OUDSTokensSpaceUITests/test_InverseTheme_Dark.spaceInsetSpacious.png
diff --git a/Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Space/__Snapshots__/OUDSTokensSpaceUITests/test_InverseTheme_Dark.spaceInsetTall.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Space/__Snapshots__/OUDSTokensSpaceUITests/test_InverseTheme_Dark.spaceInsetTall.png
similarity index 100%
rename from Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Space/__Snapshots__/OUDSTokensSpaceUITests/test_InverseTheme_Dark.spaceInsetTall.png
rename to DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Space/__Snapshots__/OUDSTokensSpaceUITests/test_InverseTheme_Dark.spaceInsetTall.png
diff --git a/Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Space/__Snapshots__/OUDSTokensSpaceUITests/test_InverseTheme_Dark.spaceInsetTaller.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Space/__Snapshots__/OUDSTokensSpaceUITests/test_InverseTheme_Dark.spaceInsetTaller.png
similarity index 100%
rename from Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Space/__Snapshots__/OUDSTokensSpaceUITests/test_InverseTheme_Dark.spaceInsetTaller.png
rename to DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Space/__Snapshots__/OUDSTokensSpaceUITests/test_InverseTheme_Dark.spaceInsetTaller.png
diff --git a/Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Space/__Snapshots__/OUDSTokensSpaceUITests/test_InverseTheme_Dark.spaceInsetTallest.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Space/__Snapshots__/OUDSTokensSpaceUITests/test_InverseTheme_Dark.spaceInsetTallest.png
similarity index 100%
rename from Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Space/__Snapshots__/OUDSTokensSpaceUITests/test_InverseTheme_Dark.spaceInsetTallest.png
rename to DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Space/__Snapshots__/OUDSTokensSpaceUITests/test_InverseTheme_Dark.spaceInsetTallest.png
diff --git a/Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Space/__Snapshots__/OUDSTokensSpaceUITests/test_InverseTheme_Dark.spacePaddingBlockMedium.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Space/__Snapshots__/OUDSTokensSpaceUITests/test_InverseTheme_Dark.spacePaddingBlockMedium.png
similarity index 100%
rename from Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Space/__Snapshots__/OUDSTokensSpaceUITests/test_InverseTheme_Dark.spacePaddingBlockMedium.png
rename to DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Space/__Snapshots__/OUDSTokensSpaceUITests/test_InverseTheme_Dark.spacePaddingBlockMedium.png
diff --git a/Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Space/__Snapshots__/OUDSTokensSpaceUITests/test_InverseTheme_Dark.spacePaddingBlockNone.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Space/__Snapshots__/OUDSTokensSpaceUITests/test_InverseTheme_Dark.spacePaddingBlockNone.png
similarity index 100%
rename from Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Space/__Snapshots__/OUDSTokensSpaceUITests/test_InverseTheme_Dark.spacePaddingBlockNone.png
rename to DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Space/__Snapshots__/OUDSTokensSpaceUITests/test_InverseTheme_Dark.spacePaddingBlockNone.png
diff --git a/Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Space/__Snapshots__/OUDSTokensSpaceUITests/test_InverseTheme_Dark.spacePaddingBlockShort.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Space/__Snapshots__/OUDSTokensSpaceUITests/test_InverseTheme_Dark.spacePaddingBlockShort.png
similarity index 100%
rename from Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Space/__Snapshots__/OUDSTokensSpaceUITests/test_InverseTheme_Dark.spacePaddingBlockShort.png
rename to DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Space/__Snapshots__/OUDSTokensSpaceUITests/test_InverseTheme_Dark.spacePaddingBlockShort.png
diff --git a/Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Space/__Snapshots__/OUDSTokensSpaceUITests/test_InverseTheme_Dark.spacePaddingBlockShorter.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Space/__Snapshots__/OUDSTokensSpaceUITests/test_InverseTheme_Dark.spacePaddingBlockShorter.png
similarity index 100%
rename from Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Space/__Snapshots__/OUDSTokensSpaceUITests/test_InverseTheme_Dark.spacePaddingBlockShorter.png
rename to DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Space/__Snapshots__/OUDSTokensSpaceUITests/test_InverseTheme_Dark.spacePaddingBlockShorter.png
diff --git a/Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Space/__Snapshots__/OUDSTokensSpaceUITests/test_InverseTheme_Dark.spacePaddingBlockTall.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Space/__Snapshots__/OUDSTokensSpaceUITests/test_InverseTheme_Dark.spacePaddingBlockTall.png
similarity index 100%
rename from Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Space/__Snapshots__/OUDSTokensSpaceUITests/test_InverseTheme_Dark.spacePaddingBlockTall.png
rename to DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Space/__Snapshots__/OUDSTokensSpaceUITests/test_InverseTheme_Dark.spacePaddingBlockTall.png
diff --git a/Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Space/__Snapshots__/OUDSTokensSpaceUITests/test_InverseTheme_Dark.spacePaddingBlockTaller.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Space/__Snapshots__/OUDSTokensSpaceUITests/test_InverseTheme_Dark.spacePaddingBlockTaller.png
similarity index 100%
rename from Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Space/__Snapshots__/OUDSTokensSpaceUITests/test_InverseTheme_Dark.spacePaddingBlockTaller.png
rename to DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Space/__Snapshots__/OUDSTokensSpaceUITests/test_InverseTheme_Dark.spacePaddingBlockTaller.png
diff --git a/Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Space/__Snapshots__/OUDSTokensSpaceUITests/test_InverseTheme_Dark.spacePaddingBlockTallest.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Space/__Snapshots__/OUDSTokensSpaceUITests/test_InverseTheme_Dark.spacePaddingBlockTallest.png
similarity index 100%
rename from Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Space/__Snapshots__/OUDSTokensSpaceUITests/test_InverseTheme_Dark.spacePaddingBlockTallest.png
rename to DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Space/__Snapshots__/OUDSTokensSpaceUITests/test_InverseTheme_Dark.spacePaddingBlockTallest.png
diff --git a/Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Space/__Snapshots__/OUDSTokensSpaceUITests/test_InverseTheme_Dark.spacePaddingInlineMedium.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Space/__Snapshots__/OUDSTokensSpaceUITests/test_InverseTheme_Dark.spacePaddingInlineMedium.png
similarity index 100%
rename from Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Space/__Snapshots__/OUDSTokensSpaceUITests/test_InverseTheme_Dark.spacePaddingInlineMedium.png
rename to DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Space/__Snapshots__/OUDSTokensSpaceUITests/test_InverseTheme_Dark.spacePaddingInlineMedium.png
diff --git a/Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Space/__Snapshots__/OUDSTokensSpaceUITests/test_InverseTheme_Dark.spacePaddingInlineNone.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Space/__Snapshots__/OUDSTokensSpaceUITests/test_InverseTheme_Dark.spacePaddingInlineNone.png
similarity index 100%
rename from Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Space/__Snapshots__/OUDSTokensSpaceUITests/test_InverseTheme_Dark.spacePaddingInlineNone.png
rename to DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Space/__Snapshots__/OUDSTokensSpaceUITests/test_InverseTheme_Dark.spacePaddingInlineNone.png
diff --git a/Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Space/__Snapshots__/OUDSTokensSpaceUITests/test_InverseTheme_Dark.spacePaddingInlineShort.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Space/__Snapshots__/OUDSTokensSpaceUITests/test_InverseTheme_Dark.spacePaddingInlineShort.png
similarity index 100%
rename from Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Space/__Snapshots__/OUDSTokensSpaceUITests/test_InverseTheme_Dark.spacePaddingInlineShort.png
rename to DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Space/__Snapshots__/OUDSTokensSpaceUITests/test_InverseTheme_Dark.spacePaddingInlineShort.png
diff --git a/Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Space/__Snapshots__/OUDSTokensSpaceUITests/test_InverseTheme_Dark.spacePaddingInlineShorter.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Space/__Snapshots__/OUDSTokensSpaceUITests/test_InverseTheme_Dark.spacePaddingInlineShorter.png
similarity index 100%
rename from Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Space/__Snapshots__/OUDSTokensSpaceUITests/test_InverseTheme_Dark.spacePaddingInlineShorter.png
rename to DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Space/__Snapshots__/OUDSTokensSpaceUITests/test_InverseTheme_Dark.spacePaddingInlineShorter.png
diff --git a/Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Space/__Snapshots__/OUDSTokensSpaceUITests/test_InverseTheme_Dark.spacePaddingInlineTall.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Space/__Snapshots__/OUDSTokensSpaceUITests/test_InverseTheme_Dark.spacePaddingInlineTall.png
similarity index 100%
rename from Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Space/__Snapshots__/OUDSTokensSpaceUITests/test_InverseTheme_Dark.spacePaddingInlineTall.png
rename to DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Space/__Snapshots__/OUDSTokensSpaceUITests/test_InverseTheme_Dark.spacePaddingInlineTall.png
diff --git a/Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Space/__Snapshots__/OUDSTokensSpaceUITests/test_InverseTheme_Dark.spacePaddingInlineTaller.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Space/__Snapshots__/OUDSTokensSpaceUITests/test_InverseTheme_Dark.spacePaddingInlineTaller.png
similarity index 100%
rename from Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Space/__Snapshots__/OUDSTokensSpaceUITests/test_InverseTheme_Dark.spacePaddingInlineTaller.png
rename to DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Space/__Snapshots__/OUDSTokensSpaceUITests/test_InverseTheme_Dark.spacePaddingInlineTaller.png
diff --git a/Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Space/__Snapshots__/OUDSTokensSpaceUITests/test_InverseTheme_Dark.spacePaddingInlineTallest.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Space/__Snapshots__/OUDSTokensSpaceUITests/test_InverseTheme_Dark.spacePaddingInlineTallest.png
similarity index 100%
rename from Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Space/__Snapshots__/OUDSTokensSpaceUITests/test_InverseTheme_Dark.spacePaddingInlineTallest.png
rename to DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Space/__Snapshots__/OUDSTokensSpaceUITests/test_InverseTheme_Dark.spacePaddingInlineTallest.png
diff --git a/Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Space/__Snapshots__/OUDSTokensSpaceUITests/test_InverseTheme_Dark.spaceRowGapMedium.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Space/__Snapshots__/OUDSTokensSpaceUITests/test_InverseTheme_Dark.spaceRowGapMedium.png
similarity index 100%
rename from Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Space/__Snapshots__/OUDSTokensSpaceUITests/test_InverseTheme_Dark.spaceRowGapMedium.png
rename to DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Space/__Snapshots__/OUDSTokensSpaceUITests/test_InverseTheme_Dark.spaceRowGapMedium.png
diff --git a/Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Space/__Snapshots__/OUDSTokensSpaceUITests/test_InverseTheme_Dark.spaceRowGapNone.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Space/__Snapshots__/OUDSTokensSpaceUITests/test_InverseTheme_Dark.spaceRowGapNone.png
similarity index 100%
rename from Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Space/__Snapshots__/OUDSTokensSpaceUITests/test_InverseTheme_Dark.spaceRowGapNone.png
rename to DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Space/__Snapshots__/OUDSTokensSpaceUITests/test_InverseTheme_Dark.spaceRowGapNone.png
diff --git a/Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Space/__Snapshots__/OUDSTokensSpaceUITests/test_InverseTheme_Dark.spaceRowGapShort.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Space/__Snapshots__/OUDSTokensSpaceUITests/test_InverseTheme_Dark.spaceRowGapShort.png
similarity index 100%
rename from Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Space/__Snapshots__/OUDSTokensSpaceUITests/test_InverseTheme_Dark.spaceRowGapShort.png
rename to DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Space/__Snapshots__/OUDSTokensSpaceUITests/test_InverseTheme_Dark.spaceRowGapShort.png
diff --git a/Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Space/__Snapshots__/OUDSTokensSpaceUITests/test_InverseTheme_Dark.spaceRowGapShorter.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Space/__Snapshots__/OUDSTokensSpaceUITests/test_InverseTheme_Dark.spaceRowGapShorter.png
similarity index 100%
rename from Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Space/__Snapshots__/OUDSTokensSpaceUITests/test_InverseTheme_Dark.spaceRowGapShorter.png
rename to DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Space/__Snapshots__/OUDSTokensSpaceUITests/test_InverseTheme_Dark.spaceRowGapShorter.png
diff --git a/Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Space/__Snapshots__/OUDSTokensSpaceUITests/test_InverseTheme_Dark.spaceRowGapShortest.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Space/__Snapshots__/OUDSTokensSpaceUITests/test_InverseTheme_Dark.spaceRowGapShortest.png
similarity index 100%
rename from Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Space/__Snapshots__/OUDSTokensSpaceUITests/test_InverseTheme_Dark.spaceRowGapShortest.png
rename to DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Space/__Snapshots__/OUDSTokensSpaceUITests/test_InverseTheme_Dark.spaceRowGapShortest.png
diff --git a/Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Space/__Snapshots__/OUDSTokensSpaceUITests/test_InverseTheme_Dark.spaceRowGapTall.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Space/__Snapshots__/OUDSTokensSpaceUITests/test_InverseTheme_Dark.spaceRowGapTall.png
similarity index 100%
rename from Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Space/__Snapshots__/OUDSTokensSpaceUITests/test_InverseTheme_Dark.spaceRowGapTall.png
rename to DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Space/__Snapshots__/OUDSTokensSpaceUITests/test_InverseTheme_Dark.spaceRowGapTall.png
diff --git a/Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Space/__Snapshots__/OUDSTokensSpaceUITests/test_InverseTheme_Dark.spaceScaledMedium.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Space/__Snapshots__/OUDSTokensSpaceUITests/test_InverseTheme_Dark.spaceScaledMedium.png
similarity index 100%
rename from Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Space/__Snapshots__/OUDSTokensSpaceUITests/test_InverseTheme_Dark.spaceScaledMedium.png
rename to DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Space/__Snapshots__/OUDSTokensSpaceUITests/test_InverseTheme_Dark.spaceScaledMedium.png
diff --git a/Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Space/__Snapshots__/OUDSTokensSpaceUITests/test_InverseTheme_Dark.spaceScaledNone.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Space/__Snapshots__/OUDSTokensSpaceUITests/test_InverseTheme_Dark.spaceScaledNone.png
similarity index 100%
rename from Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Space/__Snapshots__/OUDSTokensSpaceUITests/test_InverseTheme_Dark.spaceScaledNone.png
rename to DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Space/__Snapshots__/OUDSTokensSpaceUITests/test_InverseTheme_Dark.spaceScaledNone.png
diff --git a/Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Space/__Snapshots__/OUDSTokensSpaceUITests/test_InverseTheme_Dark.spaceScaledShort.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Space/__Snapshots__/OUDSTokensSpaceUITests/test_InverseTheme_Dark.spaceScaledShort.png
similarity index 100%
rename from Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Space/__Snapshots__/OUDSTokensSpaceUITests/test_InverseTheme_Dark.spaceScaledShort.png
rename to DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Space/__Snapshots__/OUDSTokensSpaceUITests/test_InverseTheme_Dark.spaceScaledShort.png
diff --git a/Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Space/__Snapshots__/OUDSTokensSpaceUITests/test_InverseTheme_Dark.spaceScaledShorter.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Space/__Snapshots__/OUDSTokensSpaceUITests/test_InverseTheme_Dark.spaceScaledShorter.png
similarity index 100%
rename from Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Space/__Snapshots__/OUDSTokensSpaceUITests/test_InverseTheme_Dark.spaceScaledShorter.png
rename to DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Space/__Snapshots__/OUDSTokensSpaceUITests/test_InverseTheme_Dark.spaceScaledShorter.png
diff --git a/Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Space/__Snapshots__/OUDSTokensSpaceUITests/test_InverseTheme_Dark.spaceScaledShortest.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Space/__Snapshots__/OUDSTokensSpaceUITests/test_InverseTheme_Dark.spaceScaledShortest.png
similarity index 100%
rename from Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Space/__Snapshots__/OUDSTokensSpaceUITests/test_InverseTheme_Dark.spaceScaledShortest.png
rename to DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Space/__Snapshots__/OUDSTokensSpaceUITests/test_InverseTheme_Dark.spaceScaledShortest.png
diff --git a/Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Space/__Snapshots__/OUDSTokensSpaceUITests/test_InverseTheme_Dark.spaceScaledSmash.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Space/__Snapshots__/OUDSTokensSpaceUITests/test_InverseTheme_Dark.spaceScaledSmash.png
similarity index 100%
rename from Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Space/__Snapshots__/OUDSTokensSpaceUITests/test_InverseTheme_Dark.spaceScaledSmash.png
rename to DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Space/__Snapshots__/OUDSTokensSpaceUITests/test_InverseTheme_Dark.spaceScaledSmash.png
diff --git a/Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Space/__Snapshots__/OUDSTokensSpaceUITests/test_InverseTheme_Dark.spaceScaledSpacious.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Space/__Snapshots__/OUDSTokensSpaceUITests/test_InverseTheme_Dark.spaceScaledSpacious.png
similarity index 100%
rename from Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Space/__Snapshots__/OUDSTokensSpaceUITests/test_InverseTheme_Dark.spaceScaledSpacious.png
rename to DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Space/__Snapshots__/OUDSTokensSpaceUITests/test_InverseTheme_Dark.spaceScaledSpacious.png
diff --git a/Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Space/__Snapshots__/OUDSTokensSpaceUITests/test_InverseTheme_Dark.spaceScaledTall.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Space/__Snapshots__/OUDSTokensSpaceUITests/test_InverseTheme_Dark.spaceScaledTall.png
similarity index 100%
rename from Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Space/__Snapshots__/OUDSTokensSpaceUITests/test_InverseTheme_Dark.spaceScaledTall.png
rename to DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Space/__Snapshots__/OUDSTokensSpaceUITests/test_InverseTheme_Dark.spaceScaledTall.png
diff --git a/Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Space/__Snapshots__/OUDSTokensSpaceUITests/test_InverseTheme_Dark.spaceScaledTaller.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Space/__Snapshots__/OUDSTokensSpaceUITests/test_InverseTheme_Dark.spaceScaledTaller.png
similarity index 100%
rename from Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Space/__Snapshots__/OUDSTokensSpaceUITests/test_InverseTheme_Dark.spaceScaledTaller.png
rename to DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Space/__Snapshots__/OUDSTokensSpaceUITests/test_InverseTheme_Dark.spaceScaledTaller.png
diff --git a/Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Space/__Snapshots__/OUDSTokensSpaceUITests/test_InverseTheme_Dark.spaceScaledTallest.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Space/__Snapshots__/OUDSTokensSpaceUITests/test_InverseTheme_Dark.spaceScaledTallest.png
similarity index 100%
rename from Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Space/__Snapshots__/OUDSTokensSpaceUITests/test_InverseTheme_Dark.spaceScaledTallest.png
rename to DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Space/__Snapshots__/OUDSTokensSpaceUITests/test_InverseTheme_Dark.spaceScaledTallest.png
diff --git a/Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Space/__Snapshots__/OUDSTokensSpaceUITests/test_InverseTheme_Light.spaceColumnGapMedium.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Space/__Snapshots__/OUDSTokensSpaceUITests/test_InverseTheme_Light.spaceColumnGapMedium.png
similarity index 100%
rename from Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Space/__Snapshots__/OUDSTokensSpaceUITests/test_InverseTheme_Light.spaceColumnGapMedium.png
rename to DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Space/__Snapshots__/OUDSTokensSpaceUITests/test_InverseTheme_Light.spaceColumnGapMedium.png
diff --git a/Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Space/__Snapshots__/OUDSTokensSpaceUITests/test_InverseTheme_Light.spaceColumnGapNone.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Space/__Snapshots__/OUDSTokensSpaceUITests/test_InverseTheme_Light.spaceColumnGapNone.png
similarity index 100%
rename from Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Space/__Snapshots__/OUDSTokensSpaceUITests/test_InverseTheme_Light.spaceColumnGapNone.png
rename to DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Space/__Snapshots__/OUDSTokensSpaceUITests/test_InverseTheme_Light.spaceColumnGapNone.png
diff --git a/Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Space/__Snapshots__/OUDSTokensSpaceUITests/test_InverseTheme_Light.spaceColumnGapShort.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Space/__Snapshots__/OUDSTokensSpaceUITests/test_InverseTheme_Light.spaceColumnGapShort.png
similarity index 100%
rename from Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Space/__Snapshots__/OUDSTokensSpaceUITests/test_InverseTheme_Light.spaceColumnGapShort.png
rename to DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Space/__Snapshots__/OUDSTokensSpaceUITests/test_InverseTheme_Light.spaceColumnGapShort.png
diff --git a/Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Space/__Snapshots__/OUDSTokensSpaceUITests/test_InverseTheme_Light.spaceColumnGapShorter.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Space/__Snapshots__/OUDSTokensSpaceUITests/test_InverseTheme_Light.spaceColumnGapShorter.png
similarity index 100%
rename from Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Space/__Snapshots__/OUDSTokensSpaceUITests/test_InverseTheme_Light.spaceColumnGapShorter.png
rename to DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Space/__Snapshots__/OUDSTokensSpaceUITests/test_InverseTheme_Light.spaceColumnGapShorter.png
diff --git a/Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Space/__Snapshots__/OUDSTokensSpaceUITests/test_InverseTheme_Light.spaceColumnGapTall.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Space/__Snapshots__/OUDSTokensSpaceUITests/test_InverseTheme_Light.spaceColumnGapTall.png
similarity index 100%
rename from Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Space/__Snapshots__/OUDSTokensSpaceUITests/test_InverseTheme_Light.spaceColumnGapTall.png
rename to DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Space/__Snapshots__/OUDSTokensSpaceUITests/test_InverseTheme_Light.spaceColumnGapTall.png
diff --git a/Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Space/__Snapshots__/OUDSTokensSpaceUITests/test_InverseTheme_Light.spaceColumnGapTaller.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Space/__Snapshots__/OUDSTokensSpaceUITests/test_InverseTheme_Light.spaceColumnGapTaller.png
similarity index 100%
rename from Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Space/__Snapshots__/OUDSTokensSpaceUITests/test_InverseTheme_Light.spaceColumnGapTaller.png
rename to DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Space/__Snapshots__/OUDSTokensSpaceUITests/test_InverseTheme_Light.spaceColumnGapTaller.png
diff --git a/Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Space/__Snapshots__/OUDSTokensSpaceUITests/test_InverseTheme_Light.spaceFixedHuge.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Space/__Snapshots__/OUDSTokensSpaceUITests/test_InverseTheme_Light.spaceFixedHuge.png
similarity index 100%
rename from Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Space/__Snapshots__/OUDSTokensSpaceUITests/test_InverseTheme_Light.spaceFixedHuge.png
rename to DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Space/__Snapshots__/OUDSTokensSpaceUITests/test_InverseTheme_Light.spaceFixedHuge.png
diff --git a/Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Space/__Snapshots__/OUDSTokensSpaceUITests/test_InverseTheme_Light.spaceFixedJumbo.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Space/__Snapshots__/OUDSTokensSpaceUITests/test_InverseTheme_Light.spaceFixedJumbo.png
similarity index 100%
rename from Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Space/__Snapshots__/OUDSTokensSpaceUITests/test_InverseTheme_Light.spaceFixedJumbo.png
rename to DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Space/__Snapshots__/OUDSTokensSpaceUITests/test_InverseTheme_Light.spaceFixedJumbo.png
diff --git a/Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Space/__Snapshots__/OUDSTokensSpaceUITests/test_InverseTheme_Light.spaceFixedMedium.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Space/__Snapshots__/OUDSTokensSpaceUITests/test_InverseTheme_Light.spaceFixedMedium.png
similarity index 100%
rename from Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Space/__Snapshots__/OUDSTokensSpaceUITests/test_InverseTheme_Light.spaceFixedMedium.png
rename to DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Space/__Snapshots__/OUDSTokensSpaceUITests/test_InverseTheme_Light.spaceFixedMedium.png
diff --git a/Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Space/__Snapshots__/OUDSTokensSpaceUITests/test_InverseTheme_Light.spaceFixedNone.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Space/__Snapshots__/OUDSTokensSpaceUITests/test_InverseTheme_Light.spaceFixedNone.png
similarity index 100%
rename from Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Space/__Snapshots__/OUDSTokensSpaceUITests/test_InverseTheme_Light.spaceFixedNone.png
rename to DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Space/__Snapshots__/OUDSTokensSpaceUITests/test_InverseTheme_Light.spaceFixedNone.png
diff --git a/Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Space/__Snapshots__/OUDSTokensSpaceUITests/test_InverseTheme_Light.spaceFixedShort.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Space/__Snapshots__/OUDSTokensSpaceUITests/test_InverseTheme_Light.spaceFixedShort.png
similarity index 100%
rename from Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Space/__Snapshots__/OUDSTokensSpaceUITests/test_InverseTheme_Light.spaceFixedShort.png
rename to DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Space/__Snapshots__/OUDSTokensSpaceUITests/test_InverseTheme_Light.spaceFixedShort.png
diff --git a/Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Space/__Snapshots__/OUDSTokensSpaceUITests/test_InverseTheme_Light.spaceFixedShorter.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Space/__Snapshots__/OUDSTokensSpaceUITests/test_InverseTheme_Light.spaceFixedShorter.png
similarity index 100%
rename from Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Space/__Snapshots__/OUDSTokensSpaceUITests/test_InverseTheme_Light.spaceFixedShorter.png
rename to DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Space/__Snapshots__/OUDSTokensSpaceUITests/test_InverseTheme_Light.spaceFixedShorter.png
diff --git a/Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Space/__Snapshots__/OUDSTokensSpaceUITests/test_InverseTheme_Light.spaceFixedShortest.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Space/__Snapshots__/OUDSTokensSpaceUITests/test_InverseTheme_Light.spaceFixedShortest.png
similarity index 100%
rename from Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Space/__Snapshots__/OUDSTokensSpaceUITests/test_InverseTheme_Light.spaceFixedShortest.png
rename to DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Space/__Snapshots__/OUDSTokensSpaceUITests/test_InverseTheme_Light.spaceFixedShortest.png
diff --git a/Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Space/__Snapshots__/OUDSTokensSpaceUITests/test_InverseTheme_Light.spaceFixedSmash.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Space/__Snapshots__/OUDSTokensSpaceUITests/test_InverseTheme_Light.spaceFixedSmash.png
similarity index 100%
rename from Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Space/__Snapshots__/OUDSTokensSpaceUITests/test_InverseTheme_Light.spaceFixedSmash.png
rename to DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Space/__Snapshots__/OUDSTokensSpaceUITests/test_InverseTheme_Light.spaceFixedSmash.png
diff --git a/Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Space/__Snapshots__/OUDSTokensSpaceUITests/test_InverseTheme_Light.spaceFixedSpacious.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Space/__Snapshots__/OUDSTokensSpaceUITests/test_InverseTheme_Light.spaceFixedSpacious.png
similarity index 100%
rename from Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Space/__Snapshots__/OUDSTokensSpaceUITests/test_InverseTheme_Light.spaceFixedSpacious.png
rename to DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Space/__Snapshots__/OUDSTokensSpaceUITests/test_InverseTheme_Light.spaceFixedSpacious.png
diff --git a/Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Space/__Snapshots__/OUDSTokensSpaceUITests/test_InverseTheme_Light.spaceFixedTall.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Space/__Snapshots__/OUDSTokensSpaceUITests/test_InverseTheme_Light.spaceFixedTall.png
similarity index 100%
rename from Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Space/__Snapshots__/OUDSTokensSpaceUITests/test_InverseTheme_Light.spaceFixedTall.png
rename to DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Space/__Snapshots__/OUDSTokensSpaceUITests/test_InverseTheme_Light.spaceFixedTall.png
diff --git a/Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Space/__Snapshots__/OUDSTokensSpaceUITests/test_InverseTheme_Light.spaceFixedTaller.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Space/__Snapshots__/OUDSTokensSpaceUITests/test_InverseTheme_Light.spaceFixedTaller.png
similarity index 100%
rename from Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Space/__Snapshots__/OUDSTokensSpaceUITests/test_InverseTheme_Light.spaceFixedTaller.png
rename to DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Space/__Snapshots__/OUDSTokensSpaceUITests/test_InverseTheme_Light.spaceFixedTaller.png
diff --git a/Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Space/__Snapshots__/OUDSTokensSpaceUITests/test_InverseTheme_Light.spaceFixedTallest.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Space/__Snapshots__/OUDSTokensSpaceUITests/test_InverseTheme_Light.spaceFixedTallest.png
similarity index 100%
rename from Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Space/__Snapshots__/OUDSTokensSpaceUITests/test_InverseTheme_Light.spaceFixedTallest.png
rename to DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Space/__Snapshots__/OUDSTokensSpaceUITests/test_InverseTheme_Light.spaceFixedTallest.png
diff --git a/Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Space/__Snapshots__/OUDSTokensSpaceUITests/test_InverseTheme_Light.spaceInsetMedium.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Space/__Snapshots__/OUDSTokensSpaceUITests/test_InverseTheme_Light.spaceInsetMedium.png
similarity index 100%
rename from Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Space/__Snapshots__/OUDSTokensSpaceUITests/test_InverseTheme_Light.spaceInsetMedium.png
rename to DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Space/__Snapshots__/OUDSTokensSpaceUITests/test_InverseTheme_Light.spaceInsetMedium.png
diff --git a/Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Space/__Snapshots__/OUDSTokensSpaceUITests/test_InverseTheme_Light.spaceInsetNone.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Space/__Snapshots__/OUDSTokensSpaceUITests/test_InverseTheme_Light.spaceInsetNone.png
similarity index 100%
rename from Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Space/__Snapshots__/OUDSTokensSpaceUITests/test_InverseTheme_Light.spaceInsetNone.png
rename to DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Space/__Snapshots__/OUDSTokensSpaceUITests/test_InverseTheme_Light.spaceInsetNone.png
diff --git a/Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Space/__Snapshots__/OUDSTokensSpaceUITests/test_InverseTheme_Light.spaceInsetShort.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Space/__Snapshots__/OUDSTokensSpaceUITests/test_InverseTheme_Light.spaceInsetShort.png
similarity index 100%
rename from Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Space/__Snapshots__/OUDSTokensSpaceUITests/test_InverseTheme_Light.spaceInsetShort.png
rename to DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Space/__Snapshots__/OUDSTokensSpaceUITests/test_InverseTheme_Light.spaceInsetShort.png
diff --git a/Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Space/__Snapshots__/OUDSTokensSpaceUITests/test_InverseTheme_Light.spaceInsetShorter.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Space/__Snapshots__/OUDSTokensSpaceUITests/test_InverseTheme_Light.spaceInsetShorter.png
similarity index 100%
rename from Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Space/__Snapshots__/OUDSTokensSpaceUITests/test_InverseTheme_Light.spaceInsetShorter.png
rename to DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Space/__Snapshots__/OUDSTokensSpaceUITests/test_InverseTheme_Light.spaceInsetShorter.png
diff --git a/Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Space/__Snapshots__/OUDSTokensSpaceUITests/test_InverseTheme_Light.spaceInsetShortest.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Space/__Snapshots__/OUDSTokensSpaceUITests/test_InverseTheme_Light.spaceInsetShortest.png
similarity index 100%
rename from Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Space/__Snapshots__/OUDSTokensSpaceUITests/test_InverseTheme_Light.spaceInsetShortest.png
rename to DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Space/__Snapshots__/OUDSTokensSpaceUITests/test_InverseTheme_Light.spaceInsetShortest.png
diff --git a/Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Space/__Snapshots__/OUDSTokensSpaceUITests/test_InverseTheme_Light.spaceInsetSmash.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Space/__Snapshots__/OUDSTokensSpaceUITests/test_InverseTheme_Light.spaceInsetSmash.png
similarity index 100%
rename from Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Space/__Snapshots__/OUDSTokensSpaceUITests/test_InverseTheme_Light.spaceInsetSmash.png
rename to DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Space/__Snapshots__/OUDSTokensSpaceUITests/test_InverseTheme_Light.spaceInsetSmash.png
diff --git a/Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Space/__Snapshots__/OUDSTokensSpaceUITests/test_InverseTheme_Light.spaceInsetSpacious.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Space/__Snapshots__/OUDSTokensSpaceUITests/test_InverseTheme_Light.spaceInsetSpacious.png
similarity index 100%
rename from Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Space/__Snapshots__/OUDSTokensSpaceUITests/test_InverseTheme_Light.spaceInsetSpacious.png
rename to DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Space/__Snapshots__/OUDSTokensSpaceUITests/test_InverseTheme_Light.spaceInsetSpacious.png
diff --git a/Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Space/__Snapshots__/OUDSTokensSpaceUITests/test_InverseTheme_Light.spaceInsetTall.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Space/__Snapshots__/OUDSTokensSpaceUITests/test_InverseTheme_Light.spaceInsetTall.png
similarity index 100%
rename from Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Space/__Snapshots__/OUDSTokensSpaceUITests/test_InverseTheme_Light.spaceInsetTall.png
rename to DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Space/__Snapshots__/OUDSTokensSpaceUITests/test_InverseTheme_Light.spaceInsetTall.png
diff --git a/Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Space/__Snapshots__/OUDSTokensSpaceUITests/test_InverseTheme_Light.spaceInsetTaller.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Space/__Snapshots__/OUDSTokensSpaceUITests/test_InverseTheme_Light.spaceInsetTaller.png
similarity index 100%
rename from Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Space/__Snapshots__/OUDSTokensSpaceUITests/test_InverseTheme_Light.spaceInsetTaller.png
rename to DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Space/__Snapshots__/OUDSTokensSpaceUITests/test_InverseTheme_Light.spaceInsetTaller.png
diff --git a/Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Space/__Snapshots__/OUDSTokensSpaceUITests/test_InverseTheme_Light.spaceInsetTallest.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Space/__Snapshots__/OUDSTokensSpaceUITests/test_InverseTheme_Light.spaceInsetTallest.png
similarity index 100%
rename from Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Space/__Snapshots__/OUDSTokensSpaceUITests/test_InverseTheme_Light.spaceInsetTallest.png
rename to DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Space/__Snapshots__/OUDSTokensSpaceUITests/test_InverseTheme_Light.spaceInsetTallest.png
diff --git a/Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Space/__Snapshots__/OUDSTokensSpaceUITests/test_InverseTheme_Light.spacePaddingBlockMedium.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Space/__Snapshots__/OUDSTokensSpaceUITests/test_InverseTheme_Light.spacePaddingBlockMedium.png
similarity index 100%
rename from Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Space/__Snapshots__/OUDSTokensSpaceUITests/test_InverseTheme_Light.spacePaddingBlockMedium.png
rename to DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Space/__Snapshots__/OUDSTokensSpaceUITests/test_InverseTheme_Light.spacePaddingBlockMedium.png
diff --git a/Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Space/__Snapshots__/OUDSTokensSpaceUITests/test_InverseTheme_Light.spacePaddingBlockNone.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Space/__Snapshots__/OUDSTokensSpaceUITests/test_InverseTheme_Light.spacePaddingBlockNone.png
similarity index 100%
rename from Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Space/__Snapshots__/OUDSTokensSpaceUITests/test_InverseTheme_Light.spacePaddingBlockNone.png
rename to DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Space/__Snapshots__/OUDSTokensSpaceUITests/test_InverseTheme_Light.spacePaddingBlockNone.png
diff --git a/Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Space/__Snapshots__/OUDSTokensSpaceUITests/test_InverseTheme_Light.spacePaddingBlockShort.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Space/__Snapshots__/OUDSTokensSpaceUITests/test_InverseTheme_Light.spacePaddingBlockShort.png
similarity index 100%
rename from Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Space/__Snapshots__/OUDSTokensSpaceUITests/test_InverseTheme_Light.spacePaddingBlockShort.png
rename to DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Space/__Snapshots__/OUDSTokensSpaceUITests/test_InverseTheme_Light.spacePaddingBlockShort.png
diff --git a/Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Space/__Snapshots__/OUDSTokensSpaceUITests/test_InverseTheme_Light.spacePaddingBlockShorter.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Space/__Snapshots__/OUDSTokensSpaceUITests/test_InverseTheme_Light.spacePaddingBlockShorter.png
similarity index 100%
rename from Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Space/__Snapshots__/OUDSTokensSpaceUITests/test_InverseTheme_Light.spacePaddingBlockShorter.png
rename to DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Space/__Snapshots__/OUDSTokensSpaceUITests/test_InverseTheme_Light.spacePaddingBlockShorter.png
diff --git a/Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Space/__Snapshots__/OUDSTokensSpaceUITests/test_InverseTheme_Light.spacePaddingBlockTall.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Space/__Snapshots__/OUDSTokensSpaceUITests/test_InverseTheme_Light.spacePaddingBlockTall.png
similarity index 100%
rename from Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Space/__Snapshots__/OUDSTokensSpaceUITests/test_InverseTheme_Light.spacePaddingBlockTall.png
rename to DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Space/__Snapshots__/OUDSTokensSpaceUITests/test_InverseTheme_Light.spacePaddingBlockTall.png
diff --git a/Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Space/__Snapshots__/OUDSTokensSpaceUITests/test_InverseTheme_Light.spacePaddingBlockTaller.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Space/__Snapshots__/OUDSTokensSpaceUITests/test_InverseTheme_Light.spacePaddingBlockTaller.png
similarity index 100%
rename from Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Space/__Snapshots__/OUDSTokensSpaceUITests/test_InverseTheme_Light.spacePaddingBlockTaller.png
rename to DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Space/__Snapshots__/OUDSTokensSpaceUITests/test_InverseTheme_Light.spacePaddingBlockTaller.png
diff --git a/Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Space/__Snapshots__/OUDSTokensSpaceUITests/test_InverseTheme_Light.spacePaddingBlockTallest.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Space/__Snapshots__/OUDSTokensSpaceUITests/test_InverseTheme_Light.spacePaddingBlockTallest.png
similarity index 100%
rename from Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Space/__Snapshots__/OUDSTokensSpaceUITests/test_InverseTheme_Light.spacePaddingBlockTallest.png
rename to DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Space/__Snapshots__/OUDSTokensSpaceUITests/test_InverseTheme_Light.spacePaddingBlockTallest.png
diff --git a/Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Space/__Snapshots__/OUDSTokensSpaceUITests/test_InverseTheme_Light.spacePaddingInlineMedium.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Space/__Snapshots__/OUDSTokensSpaceUITests/test_InverseTheme_Light.spacePaddingInlineMedium.png
similarity index 100%
rename from Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Space/__Snapshots__/OUDSTokensSpaceUITests/test_InverseTheme_Light.spacePaddingInlineMedium.png
rename to DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Space/__Snapshots__/OUDSTokensSpaceUITests/test_InverseTheme_Light.spacePaddingInlineMedium.png
diff --git a/Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Space/__Snapshots__/OUDSTokensSpaceUITests/test_InverseTheme_Light.spacePaddingInlineNone.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Space/__Snapshots__/OUDSTokensSpaceUITests/test_InverseTheme_Light.spacePaddingInlineNone.png
similarity index 100%
rename from Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Space/__Snapshots__/OUDSTokensSpaceUITests/test_InverseTheme_Light.spacePaddingInlineNone.png
rename to DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Space/__Snapshots__/OUDSTokensSpaceUITests/test_InverseTheme_Light.spacePaddingInlineNone.png
diff --git a/Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Space/__Snapshots__/OUDSTokensSpaceUITests/test_InverseTheme_Light.spacePaddingInlineShort.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Space/__Snapshots__/OUDSTokensSpaceUITests/test_InverseTheme_Light.spacePaddingInlineShort.png
similarity index 100%
rename from Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Space/__Snapshots__/OUDSTokensSpaceUITests/test_InverseTheme_Light.spacePaddingInlineShort.png
rename to DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Space/__Snapshots__/OUDSTokensSpaceUITests/test_InverseTheme_Light.spacePaddingInlineShort.png
diff --git a/Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Space/__Snapshots__/OUDSTokensSpaceUITests/test_InverseTheme_Light.spacePaddingInlineShorter.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Space/__Snapshots__/OUDSTokensSpaceUITests/test_InverseTheme_Light.spacePaddingInlineShorter.png
similarity index 100%
rename from Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Space/__Snapshots__/OUDSTokensSpaceUITests/test_InverseTheme_Light.spacePaddingInlineShorter.png
rename to DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Space/__Snapshots__/OUDSTokensSpaceUITests/test_InverseTheme_Light.spacePaddingInlineShorter.png
diff --git a/Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Space/__Snapshots__/OUDSTokensSpaceUITests/test_InverseTheme_Light.spacePaddingInlineTall.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Space/__Snapshots__/OUDSTokensSpaceUITests/test_InverseTheme_Light.spacePaddingInlineTall.png
similarity index 100%
rename from Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Space/__Snapshots__/OUDSTokensSpaceUITests/test_InverseTheme_Light.spacePaddingInlineTall.png
rename to DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Space/__Snapshots__/OUDSTokensSpaceUITests/test_InverseTheme_Light.spacePaddingInlineTall.png
diff --git a/Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Space/__Snapshots__/OUDSTokensSpaceUITests/test_InverseTheme_Light.spacePaddingInlineTaller.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Space/__Snapshots__/OUDSTokensSpaceUITests/test_InverseTheme_Light.spacePaddingInlineTaller.png
similarity index 100%
rename from Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Space/__Snapshots__/OUDSTokensSpaceUITests/test_InverseTheme_Light.spacePaddingInlineTaller.png
rename to DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Space/__Snapshots__/OUDSTokensSpaceUITests/test_InverseTheme_Light.spacePaddingInlineTaller.png
diff --git a/Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Space/__Snapshots__/OUDSTokensSpaceUITests/test_InverseTheme_Light.spacePaddingInlineTallest.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Space/__Snapshots__/OUDSTokensSpaceUITests/test_InverseTheme_Light.spacePaddingInlineTallest.png
similarity index 100%
rename from Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Space/__Snapshots__/OUDSTokensSpaceUITests/test_InverseTheme_Light.spacePaddingInlineTallest.png
rename to DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Space/__Snapshots__/OUDSTokensSpaceUITests/test_InverseTheme_Light.spacePaddingInlineTallest.png
diff --git a/Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Space/__Snapshots__/OUDSTokensSpaceUITests/test_InverseTheme_Light.spaceRowGapMedium.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Space/__Snapshots__/OUDSTokensSpaceUITests/test_InverseTheme_Light.spaceRowGapMedium.png
similarity index 100%
rename from Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Space/__Snapshots__/OUDSTokensSpaceUITests/test_InverseTheme_Light.spaceRowGapMedium.png
rename to DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Space/__Snapshots__/OUDSTokensSpaceUITests/test_InverseTheme_Light.spaceRowGapMedium.png
diff --git a/Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Space/__Snapshots__/OUDSTokensSpaceUITests/test_InverseTheme_Light.spaceRowGapNone.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Space/__Snapshots__/OUDSTokensSpaceUITests/test_InverseTheme_Light.spaceRowGapNone.png
similarity index 100%
rename from Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Space/__Snapshots__/OUDSTokensSpaceUITests/test_InverseTheme_Light.spaceRowGapNone.png
rename to DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Space/__Snapshots__/OUDSTokensSpaceUITests/test_InverseTheme_Light.spaceRowGapNone.png
diff --git a/Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Space/__Snapshots__/OUDSTokensSpaceUITests/test_InverseTheme_Light.spaceRowGapShort.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Space/__Snapshots__/OUDSTokensSpaceUITests/test_InverseTheme_Light.spaceRowGapShort.png
similarity index 100%
rename from Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Space/__Snapshots__/OUDSTokensSpaceUITests/test_InverseTheme_Light.spaceRowGapShort.png
rename to DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Space/__Snapshots__/OUDSTokensSpaceUITests/test_InverseTheme_Light.spaceRowGapShort.png
diff --git a/Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Space/__Snapshots__/OUDSTokensSpaceUITests/test_InverseTheme_Light.spaceRowGapShorter.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Space/__Snapshots__/OUDSTokensSpaceUITests/test_InverseTheme_Light.spaceRowGapShorter.png
similarity index 100%
rename from Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Space/__Snapshots__/OUDSTokensSpaceUITests/test_InverseTheme_Light.spaceRowGapShorter.png
rename to DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Space/__Snapshots__/OUDSTokensSpaceUITests/test_InverseTheme_Light.spaceRowGapShorter.png
diff --git a/Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Space/__Snapshots__/OUDSTokensSpaceUITests/test_InverseTheme_Light.spaceRowGapShortest.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Space/__Snapshots__/OUDSTokensSpaceUITests/test_InverseTheme_Light.spaceRowGapShortest.png
similarity index 100%
rename from Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Space/__Snapshots__/OUDSTokensSpaceUITests/test_InverseTheme_Light.spaceRowGapShortest.png
rename to DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Space/__Snapshots__/OUDSTokensSpaceUITests/test_InverseTheme_Light.spaceRowGapShortest.png
diff --git a/Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Space/__Snapshots__/OUDSTokensSpaceUITests/test_InverseTheme_Light.spaceRowGapTall.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Space/__Snapshots__/OUDSTokensSpaceUITests/test_InverseTheme_Light.spaceRowGapTall.png
similarity index 100%
rename from Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Space/__Snapshots__/OUDSTokensSpaceUITests/test_InverseTheme_Light.spaceRowGapTall.png
rename to DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Space/__Snapshots__/OUDSTokensSpaceUITests/test_InverseTheme_Light.spaceRowGapTall.png
diff --git a/Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Space/__Snapshots__/OUDSTokensSpaceUITests/test_InverseTheme_Light.spaceScaledMedium.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Space/__Snapshots__/OUDSTokensSpaceUITests/test_InverseTheme_Light.spaceScaledMedium.png
similarity index 100%
rename from Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Space/__Snapshots__/OUDSTokensSpaceUITests/test_InverseTheme_Light.spaceScaledMedium.png
rename to DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Space/__Snapshots__/OUDSTokensSpaceUITests/test_InverseTheme_Light.spaceScaledMedium.png
diff --git a/Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Space/__Snapshots__/OUDSTokensSpaceUITests/test_InverseTheme_Light.spaceScaledNone.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Space/__Snapshots__/OUDSTokensSpaceUITests/test_InverseTheme_Light.spaceScaledNone.png
similarity index 100%
rename from Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Space/__Snapshots__/OUDSTokensSpaceUITests/test_InverseTheme_Light.spaceScaledNone.png
rename to DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Space/__Snapshots__/OUDSTokensSpaceUITests/test_InverseTheme_Light.spaceScaledNone.png
diff --git a/Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Space/__Snapshots__/OUDSTokensSpaceUITests/test_InverseTheme_Light.spaceScaledShort.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Space/__Snapshots__/OUDSTokensSpaceUITests/test_InverseTheme_Light.spaceScaledShort.png
similarity index 100%
rename from Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Space/__Snapshots__/OUDSTokensSpaceUITests/test_InverseTheme_Light.spaceScaledShort.png
rename to DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Space/__Snapshots__/OUDSTokensSpaceUITests/test_InverseTheme_Light.spaceScaledShort.png
diff --git a/Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Space/__Snapshots__/OUDSTokensSpaceUITests/test_InverseTheme_Light.spaceScaledShorter.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Space/__Snapshots__/OUDSTokensSpaceUITests/test_InverseTheme_Light.spaceScaledShorter.png
similarity index 100%
rename from Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Space/__Snapshots__/OUDSTokensSpaceUITests/test_InverseTheme_Light.spaceScaledShorter.png
rename to DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Space/__Snapshots__/OUDSTokensSpaceUITests/test_InverseTheme_Light.spaceScaledShorter.png
diff --git a/Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Space/__Snapshots__/OUDSTokensSpaceUITests/test_InverseTheme_Light.spaceScaledShortest.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Space/__Snapshots__/OUDSTokensSpaceUITests/test_InverseTheme_Light.spaceScaledShortest.png
similarity index 100%
rename from Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Space/__Snapshots__/OUDSTokensSpaceUITests/test_InverseTheme_Light.spaceScaledShortest.png
rename to DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Space/__Snapshots__/OUDSTokensSpaceUITests/test_InverseTheme_Light.spaceScaledShortest.png
diff --git a/Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Space/__Snapshots__/OUDSTokensSpaceUITests/test_InverseTheme_Light.spaceScaledSmash.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Space/__Snapshots__/OUDSTokensSpaceUITests/test_InverseTheme_Light.spaceScaledSmash.png
similarity index 100%
rename from Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Space/__Snapshots__/OUDSTokensSpaceUITests/test_InverseTheme_Light.spaceScaledSmash.png
rename to DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Space/__Snapshots__/OUDSTokensSpaceUITests/test_InverseTheme_Light.spaceScaledSmash.png
diff --git a/Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Space/__Snapshots__/OUDSTokensSpaceUITests/test_InverseTheme_Light.spaceScaledSpacious.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Space/__Snapshots__/OUDSTokensSpaceUITests/test_InverseTheme_Light.spaceScaledSpacious.png
similarity index 100%
rename from Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Space/__Snapshots__/OUDSTokensSpaceUITests/test_InverseTheme_Light.spaceScaledSpacious.png
rename to DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Space/__Snapshots__/OUDSTokensSpaceUITests/test_InverseTheme_Light.spaceScaledSpacious.png
diff --git a/Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Space/__Snapshots__/OUDSTokensSpaceUITests/test_InverseTheme_Light.spaceScaledTall.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Space/__Snapshots__/OUDSTokensSpaceUITests/test_InverseTheme_Light.spaceScaledTall.png
similarity index 100%
rename from Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Space/__Snapshots__/OUDSTokensSpaceUITests/test_InverseTheme_Light.spaceScaledTall.png
rename to DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Space/__Snapshots__/OUDSTokensSpaceUITests/test_InverseTheme_Light.spaceScaledTall.png
diff --git a/Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Space/__Snapshots__/OUDSTokensSpaceUITests/test_InverseTheme_Light.spaceScaledTaller.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Space/__Snapshots__/OUDSTokensSpaceUITests/test_InverseTheme_Light.spaceScaledTaller.png
similarity index 100%
rename from Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Space/__Snapshots__/OUDSTokensSpaceUITests/test_InverseTheme_Light.spaceScaledTaller.png
rename to DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Space/__Snapshots__/OUDSTokensSpaceUITests/test_InverseTheme_Light.spaceScaledTaller.png
diff --git a/Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Space/__Snapshots__/OUDSTokensSpaceUITests/test_InverseTheme_Light.spaceScaledTallest.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Space/__Snapshots__/OUDSTokensSpaceUITests/test_InverseTheme_Light.spaceScaledTallest.png
similarity index 100%
rename from Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Space/__Snapshots__/OUDSTokensSpaceUITests/test_InverseTheme_Light.spaceScaledTallest.png
rename to DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Space/__Snapshots__/OUDSTokensSpaceUITests/test_InverseTheme_Light.spaceScaledTallest.png
diff --git a/Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Space/__Snapshots__/OUDSTokensSpaceUITests/test_OrangeTheme_Dark.spaceColumnGapMedium.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Space/__Snapshots__/OUDSTokensSpaceUITests/test_OrangeTheme_Dark.spaceColumnGapMedium.png
similarity index 100%
rename from Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Space/__Snapshots__/OUDSTokensSpaceUITests/test_OrangeTheme_Dark.spaceColumnGapMedium.png
rename to DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Space/__Snapshots__/OUDSTokensSpaceUITests/test_OrangeTheme_Dark.spaceColumnGapMedium.png
diff --git a/Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Space/__Snapshots__/OUDSTokensSpaceUITests/test_OrangeTheme_Dark.spaceColumnGapNone.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Space/__Snapshots__/OUDSTokensSpaceUITests/test_OrangeTheme_Dark.spaceColumnGapNone.png
similarity index 100%
rename from Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Space/__Snapshots__/OUDSTokensSpaceUITests/test_OrangeTheme_Dark.spaceColumnGapNone.png
rename to DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Space/__Snapshots__/OUDSTokensSpaceUITests/test_OrangeTheme_Dark.spaceColumnGapNone.png
diff --git a/Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Space/__Snapshots__/OUDSTokensSpaceUITests/test_OrangeTheme_Dark.spaceColumnGapShort.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Space/__Snapshots__/OUDSTokensSpaceUITests/test_OrangeTheme_Dark.spaceColumnGapShort.png
similarity index 100%
rename from Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Space/__Snapshots__/OUDSTokensSpaceUITests/test_OrangeTheme_Dark.spaceColumnGapShort.png
rename to DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Space/__Snapshots__/OUDSTokensSpaceUITests/test_OrangeTheme_Dark.spaceColumnGapShort.png
diff --git a/Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Space/__Snapshots__/OUDSTokensSpaceUITests/test_OrangeTheme_Dark.spaceColumnGapShorter.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Space/__Snapshots__/OUDSTokensSpaceUITests/test_OrangeTheme_Dark.spaceColumnGapShorter.png
similarity index 100%
rename from Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Space/__Snapshots__/OUDSTokensSpaceUITests/test_OrangeTheme_Dark.spaceColumnGapShorter.png
rename to DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Space/__Snapshots__/OUDSTokensSpaceUITests/test_OrangeTheme_Dark.spaceColumnGapShorter.png
diff --git a/Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Space/__Snapshots__/OUDSTokensSpaceUITests/test_OrangeTheme_Dark.spaceColumnGapTall.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Space/__Snapshots__/OUDSTokensSpaceUITests/test_OrangeTheme_Dark.spaceColumnGapTall.png
similarity index 100%
rename from Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Space/__Snapshots__/OUDSTokensSpaceUITests/test_OrangeTheme_Dark.spaceColumnGapTall.png
rename to DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Space/__Snapshots__/OUDSTokensSpaceUITests/test_OrangeTheme_Dark.spaceColumnGapTall.png
diff --git a/Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Space/__Snapshots__/OUDSTokensSpaceUITests/test_OrangeTheme_Dark.spaceColumnGapTaller.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Space/__Snapshots__/OUDSTokensSpaceUITests/test_OrangeTheme_Dark.spaceColumnGapTaller.png
similarity index 100%
rename from Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Space/__Snapshots__/OUDSTokensSpaceUITests/test_OrangeTheme_Dark.spaceColumnGapTaller.png
rename to DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Space/__Snapshots__/OUDSTokensSpaceUITests/test_OrangeTheme_Dark.spaceColumnGapTaller.png
diff --git a/Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Space/__Snapshots__/OUDSTokensSpaceUITests/test_OrangeTheme_Dark.spaceFixedHuge.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Space/__Snapshots__/OUDSTokensSpaceUITests/test_OrangeTheme_Dark.spaceFixedHuge.png
similarity index 100%
rename from Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Space/__Snapshots__/OUDSTokensSpaceUITests/test_OrangeTheme_Dark.spaceFixedHuge.png
rename to DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Space/__Snapshots__/OUDSTokensSpaceUITests/test_OrangeTheme_Dark.spaceFixedHuge.png
diff --git a/Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Space/__Snapshots__/OUDSTokensSpaceUITests/test_OrangeTheme_Dark.spaceFixedJumbo.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Space/__Snapshots__/OUDSTokensSpaceUITests/test_OrangeTheme_Dark.spaceFixedJumbo.png
similarity index 100%
rename from Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Space/__Snapshots__/OUDSTokensSpaceUITests/test_OrangeTheme_Dark.spaceFixedJumbo.png
rename to DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Space/__Snapshots__/OUDSTokensSpaceUITests/test_OrangeTheme_Dark.spaceFixedJumbo.png
diff --git a/Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Space/__Snapshots__/OUDSTokensSpaceUITests/test_OrangeTheme_Dark.spaceFixedMedium.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Space/__Snapshots__/OUDSTokensSpaceUITests/test_OrangeTheme_Dark.spaceFixedMedium.png
similarity index 100%
rename from Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Space/__Snapshots__/OUDSTokensSpaceUITests/test_OrangeTheme_Dark.spaceFixedMedium.png
rename to DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Space/__Snapshots__/OUDSTokensSpaceUITests/test_OrangeTheme_Dark.spaceFixedMedium.png
diff --git a/Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Space/__Snapshots__/OUDSTokensSpaceUITests/test_OrangeTheme_Dark.spaceFixedNone.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Space/__Snapshots__/OUDSTokensSpaceUITests/test_OrangeTheme_Dark.spaceFixedNone.png
similarity index 100%
rename from Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Space/__Snapshots__/OUDSTokensSpaceUITests/test_OrangeTheme_Dark.spaceFixedNone.png
rename to DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Space/__Snapshots__/OUDSTokensSpaceUITests/test_OrangeTheme_Dark.spaceFixedNone.png
diff --git a/Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Space/__Snapshots__/OUDSTokensSpaceUITests/test_OrangeTheme_Dark.spaceFixedShort.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Space/__Snapshots__/OUDSTokensSpaceUITests/test_OrangeTheme_Dark.spaceFixedShort.png
similarity index 100%
rename from Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Space/__Snapshots__/OUDSTokensSpaceUITests/test_OrangeTheme_Dark.spaceFixedShort.png
rename to DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Space/__Snapshots__/OUDSTokensSpaceUITests/test_OrangeTheme_Dark.spaceFixedShort.png
diff --git a/Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Space/__Snapshots__/OUDSTokensSpaceUITests/test_OrangeTheme_Dark.spaceFixedShorter.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Space/__Snapshots__/OUDSTokensSpaceUITests/test_OrangeTheme_Dark.spaceFixedShorter.png
similarity index 100%
rename from Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Space/__Snapshots__/OUDSTokensSpaceUITests/test_OrangeTheme_Dark.spaceFixedShorter.png
rename to DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Space/__Snapshots__/OUDSTokensSpaceUITests/test_OrangeTheme_Dark.spaceFixedShorter.png
diff --git a/Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Space/__Snapshots__/OUDSTokensSpaceUITests/test_OrangeTheme_Dark.spaceFixedShortest.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Space/__Snapshots__/OUDSTokensSpaceUITests/test_OrangeTheme_Dark.spaceFixedShortest.png
similarity index 100%
rename from Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Space/__Snapshots__/OUDSTokensSpaceUITests/test_OrangeTheme_Dark.spaceFixedShortest.png
rename to DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Space/__Snapshots__/OUDSTokensSpaceUITests/test_OrangeTheme_Dark.spaceFixedShortest.png
diff --git a/Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Space/__Snapshots__/OUDSTokensSpaceUITests/test_OrangeTheme_Dark.spaceFixedSmash.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Space/__Snapshots__/OUDSTokensSpaceUITests/test_OrangeTheme_Dark.spaceFixedSmash.png
similarity index 100%
rename from Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Space/__Snapshots__/OUDSTokensSpaceUITests/test_OrangeTheme_Dark.spaceFixedSmash.png
rename to DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Space/__Snapshots__/OUDSTokensSpaceUITests/test_OrangeTheme_Dark.spaceFixedSmash.png
diff --git a/Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Space/__Snapshots__/OUDSTokensSpaceUITests/test_OrangeTheme_Dark.spaceFixedSpacious.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Space/__Snapshots__/OUDSTokensSpaceUITests/test_OrangeTheme_Dark.spaceFixedSpacious.png
similarity index 100%
rename from Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Space/__Snapshots__/OUDSTokensSpaceUITests/test_OrangeTheme_Dark.spaceFixedSpacious.png
rename to DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Space/__Snapshots__/OUDSTokensSpaceUITests/test_OrangeTheme_Dark.spaceFixedSpacious.png
diff --git a/Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Space/__Snapshots__/OUDSTokensSpaceUITests/test_OrangeTheme_Dark.spaceFixedTall.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Space/__Snapshots__/OUDSTokensSpaceUITests/test_OrangeTheme_Dark.spaceFixedTall.png
similarity index 100%
rename from Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Space/__Snapshots__/OUDSTokensSpaceUITests/test_OrangeTheme_Dark.spaceFixedTall.png
rename to DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Space/__Snapshots__/OUDSTokensSpaceUITests/test_OrangeTheme_Dark.spaceFixedTall.png
diff --git a/Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Space/__Snapshots__/OUDSTokensSpaceUITests/test_OrangeTheme_Dark.spaceFixedTaller.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Space/__Snapshots__/OUDSTokensSpaceUITests/test_OrangeTheme_Dark.spaceFixedTaller.png
similarity index 100%
rename from Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Space/__Snapshots__/OUDSTokensSpaceUITests/test_OrangeTheme_Dark.spaceFixedTaller.png
rename to DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Space/__Snapshots__/OUDSTokensSpaceUITests/test_OrangeTheme_Dark.spaceFixedTaller.png
diff --git a/Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Space/__Snapshots__/OUDSTokensSpaceUITests/test_OrangeTheme_Dark.spaceFixedTallest.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Space/__Snapshots__/OUDSTokensSpaceUITests/test_OrangeTheme_Dark.spaceFixedTallest.png
similarity index 100%
rename from Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Space/__Snapshots__/OUDSTokensSpaceUITests/test_OrangeTheme_Dark.spaceFixedTallest.png
rename to DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Space/__Snapshots__/OUDSTokensSpaceUITests/test_OrangeTheme_Dark.spaceFixedTallest.png
diff --git a/Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Space/__Snapshots__/OUDSTokensSpaceUITests/test_OrangeTheme_Dark.spaceInsetMedium.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Space/__Snapshots__/OUDSTokensSpaceUITests/test_OrangeTheme_Dark.spaceInsetMedium.png
similarity index 100%
rename from Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Space/__Snapshots__/OUDSTokensSpaceUITests/test_OrangeTheme_Dark.spaceInsetMedium.png
rename to DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Space/__Snapshots__/OUDSTokensSpaceUITests/test_OrangeTheme_Dark.spaceInsetMedium.png
diff --git a/Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Space/__Snapshots__/OUDSTokensSpaceUITests/test_OrangeTheme_Dark.spaceInsetNone.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Space/__Snapshots__/OUDSTokensSpaceUITests/test_OrangeTheme_Dark.spaceInsetNone.png
similarity index 100%
rename from Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Space/__Snapshots__/OUDSTokensSpaceUITests/test_OrangeTheme_Dark.spaceInsetNone.png
rename to DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Space/__Snapshots__/OUDSTokensSpaceUITests/test_OrangeTheme_Dark.spaceInsetNone.png
diff --git a/Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Space/__Snapshots__/OUDSTokensSpaceUITests/test_OrangeTheme_Dark.spaceInsetShort.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Space/__Snapshots__/OUDSTokensSpaceUITests/test_OrangeTheme_Dark.spaceInsetShort.png
similarity index 100%
rename from Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Space/__Snapshots__/OUDSTokensSpaceUITests/test_OrangeTheme_Dark.spaceInsetShort.png
rename to DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Space/__Snapshots__/OUDSTokensSpaceUITests/test_OrangeTheme_Dark.spaceInsetShort.png
diff --git a/Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Space/__Snapshots__/OUDSTokensSpaceUITests/test_OrangeTheme_Dark.spaceInsetShorter.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Space/__Snapshots__/OUDSTokensSpaceUITests/test_OrangeTheme_Dark.spaceInsetShorter.png
similarity index 100%
rename from Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Space/__Snapshots__/OUDSTokensSpaceUITests/test_OrangeTheme_Dark.spaceInsetShorter.png
rename to DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Space/__Snapshots__/OUDSTokensSpaceUITests/test_OrangeTheme_Dark.spaceInsetShorter.png
diff --git a/Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Space/__Snapshots__/OUDSTokensSpaceUITests/test_OrangeTheme_Dark.spaceInsetShortest.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Space/__Snapshots__/OUDSTokensSpaceUITests/test_OrangeTheme_Dark.spaceInsetShortest.png
similarity index 100%
rename from Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Space/__Snapshots__/OUDSTokensSpaceUITests/test_OrangeTheme_Dark.spaceInsetShortest.png
rename to DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Space/__Snapshots__/OUDSTokensSpaceUITests/test_OrangeTheme_Dark.spaceInsetShortest.png
diff --git a/Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Space/__Snapshots__/OUDSTokensSpaceUITests/test_OrangeTheme_Dark.spaceInsetSmash.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Space/__Snapshots__/OUDSTokensSpaceUITests/test_OrangeTheme_Dark.spaceInsetSmash.png
similarity index 100%
rename from Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Space/__Snapshots__/OUDSTokensSpaceUITests/test_OrangeTheme_Dark.spaceInsetSmash.png
rename to DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Space/__Snapshots__/OUDSTokensSpaceUITests/test_OrangeTheme_Dark.spaceInsetSmash.png
diff --git a/Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Space/__Snapshots__/OUDSTokensSpaceUITests/test_OrangeTheme_Dark.spaceInsetSpacious.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Space/__Snapshots__/OUDSTokensSpaceUITests/test_OrangeTheme_Dark.spaceInsetSpacious.png
similarity index 100%
rename from Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Space/__Snapshots__/OUDSTokensSpaceUITests/test_OrangeTheme_Dark.spaceInsetSpacious.png
rename to DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Space/__Snapshots__/OUDSTokensSpaceUITests/test_OrangeTheme_Dark.spaceInsetSpacious.png
diff --git a/Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Space/__Snapshots__/OUDSTokensSpaceUITests/test_OrangeTheme_Dark.spaceInsetTall.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Space/__Snapshots__/OUDSTokensSpaceUITests/test_OrangeTheme_Dark.spaceInsetTall.png
similarity index 100%
rename from Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Space/__Snapshots__/OUDSTokensSpaceUITests/test_OrangeTheme_Dark.spaceInsetTall.png
rename to DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Space/__Snapshots__/OUDSTokensSpaceUITests/test_OrangeTheme_Dark.spaceInsetTall.png
diff --git a/Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Space/__Snapshots__/OUDSTokensSpaceUITests/test_OrangeTheme_Dark.spaceInsetTaller.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Space/__Snapshots__/OUDSTokensSpaceUITests/test_OrangeTheme_Dark.spaceInsetTaller.png
similarity index 100%
rename from Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Space/__Snapshots__/OUDSTokensSpaceUITests/test_OrangeTheme_Dark.spaceInsetTaller.png
rename to DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Space/__Snapshots__/OUDSTokensSpaceUITests/test_OrangeTheme_Dark.spaceInsetTaller.png
diff --git a/Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Space/__Snapshots__/OUDSTokensSpaceUITests/test_OrangeTheme_Dark.spaceInsetTallest.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Space/__Snapshots__/OUDSTokensSpaceUITests/test_OrangeTheme_Dark.spaceInsetTallest.png
similarity index 100%
rename from Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Space/__Snapshots__/OUDSTokensSpaceUITests/test_OrangeTheme_Dark.spaceInsetTallest.png
rename to DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Space/__Snapshots__/OUDSTokensSpaceUITests/test_OrangeTheme_Dark.spaceInsetTallest.png
diff --git a/Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Space/__Snapshots__/OUDSTokensSpaceUITests/test_OrangeTheme_Dark.spacePaddingBlockMedium.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Space/__Snapshots__/OUDSTokensSpaceUITests/test_OrangeTheme_Dark.spacePaddingBlockMedium.png
similarity index 100%
rename from Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Space/__Snapshots__/OUDSTokensSpaceUITests/test_OrangeTheme_Dark.spacePaddingBlockMedium.png
rename to DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Space/__Snapshots__/OUDSTokensSpaceUITests/test_OrangeTheme_Dark.spacePaddingBlockMedium.png
diff --git a/Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Space/__Snapshots__/OUDSTokensSpaceUITests/test_OrangeTheme_Dark.spacePaddingBlockNone.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Space/__Snapshots__/OUDSTokensSpaceUITests/test_OrangeTheme_Dark.spacePaddingBlockNone.png
similarity index 100%
rename from Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Space/__Snapshots__/OUDSTokensSpaceUITests/test_OrangeTheme_Dark.spacePaddingBlockNone.png
rename to DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Space/__Snapshots__/OUDSTokensSpaceUITests/test_OrangeTheme_Dark.spacePaddingBlockNone.png
diff --git a/Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Space/__Snapshots__/OUDSTokensSpaceUITests/test_OrangeTheme_Dark.spacePaddingBlockShort.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Space/__Snapshots__/OUDSTokensSpaceUITests/test_OrangeTheme_Dark.spacePaddingBlockShort.png
similarity index 100%
rename from Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Space/__Snapshots__/OUDSTokensSpaceUITests/test_OrangeTheme_Dark.spacePaddingBlockShort.png
rename to DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Space/__Snapshots__/OUDSTokensSpaceUITests/test_OrangeTheme_Dark.spacePaddingBlockShort.png
diff --git a/Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Space/__Snapshots__/OUDSTokensSpaceUITests/test_OrangeTheme_Dark.spacePaddingBlockShorter.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Space/__Snapshots__/OUDSTokensSpaceUITests/test_OrangeTheme_Dark.spacePaddingBlockShorter.png
similarity index 100%
rename from Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Space/__Snapshots__/OUDSTokensSpaceUITests/test_OrangeTheme_Dark.spacePaddingBlockShorter.png
rename to DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Space/__Snapshots__/OUDSTokensSpaceUITests/test_OrangeTheme_Dark.spacePaddingBlockShorter.png
diff --git a/Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Space/__Snapshots__/OUDSTokensSpaceUITests/test_OrangeTheme_Dark.spacePaddingBlockTall.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Space/__Snapshots__/OUDSTokensSpaceUITests/test_OrangeTheme_Dark.spacePaddingBlockTall.png
similarity index 100%
rename from Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Space/__Snapshots__/OUDSTokensSpaceUITests/test_OrangeTheme_Dark.spacePaddingBlockTall.png
rename to DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Space/__Snapshots__/OUDSTokensSpaceUITests/test_OrangeTheme_Dark.spacePaddingBlockTall.png
diff --git a/Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Space/__Snapshots__/OUDSTokensSpaceUITests/test_OrangeTheme_Dark.spacePaddingBlockTaller.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Space/__Snapshots__/OUDSTokensSpaceUITests/test_OrangeTheme_Dark.spacePaddingBlockTaller.png
similarity index 100%
rename from Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Space/__Snapshots__/OUDSTokensSpaceUITests/test_OrangeTheme_Dark.spacePaddingBlockTaller.png
rename to DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Space/__Snapshots__/OUDSTokensSpaceUITests/test_OrangeTheme_Dark.spacePaddingBlockTaller.png
diff --git a/Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Space/__Snapshots__/OUDSTokensSpaceUITests/test_OrangeTheme_Dark.spacePaddingBlockTallest.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Space/__Snapshots__/OUDSTokensSpaceUITests/test_OrangeTheme_Dark.spacePaddingBlockTallest.png
similarity index 100%
rename from Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Space/__Snapshots__/OUDSTokensSpaceUITests/test_OrangeTheme_Dark.spacePaddingBlockTallest.png
rename to DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Space/__Snapshots__/OUDSTokensSpaceUITests/test_OrangeTheme_Dark.spacePaddingBlockTallest.png
diff --git a/Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Space/__Snapshots__/OUDSTokensSpaceUITests/test_OrangeTheme_Dark.spacePaddingInlineMedium.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Space/__Snapshots__/OUDSTokensSpaceUITests/test_OrangeTheme_Dark.spacePaddingInlineMedium.png
similarity index 100%
rename from Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Space/__Snapshots__/OUDSTokensSpaceUITests/test_OrangeTheme_Dark.spacePaddingInlineMedium.png
rename to DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Space/__Snapshots__/OUDSTokensSpaceUITests/test_OrangeTheme_Dark.spacePaddingInlineMedium.png
diff --git a/Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Space/__Snapshots__/OUDSTokensSpaceUITests/test_OrangeTheme_Dark.spacePaddingInlineNone.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Space/__Snapshots__/OUDSTokensSpaceUITests/test_OrangeTheme_Dark.spacePaddingInlineNone.png
similarity index 100%
rename from Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Space/__Snapshots__/OUDSTokensSpaceUITests/test_OrangeTheme_Dark.spacePaddingInlineNone.png
rename to DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Space/__Snapshots__/OUDSTokensSpaceUITests/test_OrangeTheme_Dark.spacePaddingInlineNone.png
diff --git a/Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Space/__Snapshots__/OUDSTokensSpaceUITests/test_OrangeTheme_Dark.spacePaddingInlineShort.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Space/__Snapshots__/OUDSTokensSpaceUITests/test_OrangeTheme_Dark.spacePaddingInlineShort.png
similarity index 100%
rename from Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Space/__Snapshots__/OUDSTokensSpaceUITests/test_OrangeTheme_Dark.spacePaddingInlineShort.png
rename to DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Space/__Snapshots__/OUDSTokensSpaceUITests/test_OrangeTheme_Dark.spacePaddingInlineShort.png
diff --git a/Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Space/__Snapshots__/OUDSTokensSpaceUITests/test_OrangeTheme_Dark.spacePaddingInlineShorter.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Space/__Snapshots__/OUDSTokensSpaceUITests/test_OrangeTheme_Dark.spacePaddingInlineShorter.png
similarity index 100%
rename from Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Space/__Snapshots__/OUDSTokensSpaceUITests/test_OrangeTheme_Dark.spacePaddingInlineShorter.png
rename to DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Space/__Snapshots__/OUDSTokensSpaceUITests/test_OrangeTheme_Dark.spacePaddingInlineShorter.png
diff --git a/Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Space/__Snapshots__/OUDSTokensSpaceUITests/test_OrangeTheme_Dark.spacePaddingInlineTall.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Space/__Snapshots__/OUDSTokensSpaceUITests/test_OrangeTheme_Dark.spacePaddingInlineTall.png
similarity index 100%
rename from Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Space/__Snapshots__/OUDSTokensSpaceUITests/test_OrangeTheme_Dark.spacePaddingInlineTall.png
rename to DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Space/__Snapshots__/OUDSTokensSpaceUITests/test_OrangeTheme_Dark.spacePaddingInlineTall.png
diff --git a/Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Space/__Snapshots__/OUDSTokensSpaceUITests/test_OrangeTheme_Dark.spacePaddingInlineTaller.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Space/__Snapshots__/OUDSTokensSpaceUITests/test_OrangeTheme_Dark.spacePaddingInlineTaller.png
similarity index 100%
rename from Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Space/__Snapshots__/OUDSTokensSpaceUITests/test_OrangeTheme_Dark.spacePaddingInlineTaller.png
rename to DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Space/__Snapshots__/OUDSTokensSpaceUITests/test_OrangeTheme_Dark.spacePaddingInlineTaller.png
diff --git a/Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Space/__Snapshots__/OUDSTokensSpaceUITests/test_OrangeTheme_Dark.spacePaddingInlineTallest.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Space/__Snapshots__/OUDSTokensSpaceUITests/test_OrangeTheme_Dark.spacePaddingInlineTallest.png
similarity index 100%
rename from Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Space/__Snapshots__/OUDSTokensSpaceUITests/test_OrangeTheme_Dark.spacePaddingInlineTallest.png
rename to DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Space/__Snapshots__/OUDSTokensSpaceUITests/test_OrangeTheme_Dark.spacePaddingInlineTallest.png
diff --git a/Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Space/__Snapshots__/OUDSTokensSpaceUITests/test_OrangeTheme_Dark.spaceRowGapMedium.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Space/__Snapshots__/OUDSTokensSpaceUITests/test_OrangeTheme_Dark.spaceRowGapMedium.png
similarity index 100%
rename from Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Space/__Snapshots__/OUDSTokensSpaceUITests/test_OrangeTheme_Dark.spaceRowGapMedium.png
rename to DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Space/__Snapshots__/OUDSTokensSpaceUITests/test_OrangeTheme_Dark.spaceRowGapMedium.png
diff --git a/Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Space/__Snapshots__/OUDSTokensSpaceUITests/test_OrangeTheme_Dark.spaceRowGapNone.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Space/__Snapshots__/OUDSTokensSpaceUITests/test_OrangeTheme_Dark.spaceRowGapNone.png
similarity index 100%
rename from Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Space/__Snapshots__/OUDSTokensSpaceUITests/test_OrangeTheme_Dark.spaceRowGapNone.png
rename to DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Space/__Snapshots__/OUDSTokensSpaceUITests/test_OrangeTheme_Dark.spaceRowGapNone.png
diff --git a/Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Space/__Snapshots__/OUDSTokensSpaceUITests/test_OrangeTheme_Dark.spaceRowGapShort.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Space/__Snapshots__/OUDSTokensSpaceUITests/test_OrangeTheme_Dark.spaceRowGapShort.png
similarity index 100%
rename from Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Space/__Snapshots__/OUDSTokensSpaceUITests/test_OrangeTheme_Dark.spaceRowGapShort.png
rename to DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Space/__Snapshots__/OUDSTokensSpaceUITests/test_OrangeTheme_Dark.spaceRowGapShort.png
diff --git a/Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Space/__Snapshots__/OUDSTokensSpaceUITests/test_OrangeTheme_Dark.spaceRowGapShorter.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Space/__Snapshots__/OUDSTokensSpaceUITests/test_OrangeTheme_Dark.spaceRowGapShorter.png
similarity index 100%
rename from Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Space/__Snapshots__/OUDSTokensSpaceUITests/test_OrangeTheme_Dark.spaceRowGapShorter.png
rename to DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Space/__Snapshots__/OUDSTokensSpaceUITests/test_OrangeTheme_Dark.spaceRowGapShorter.png
diff --git a/Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Space/__Snapshots__/OUDSTokensSpaceUITests/test_OrangeTheme_Dark.spaceRowGapShortest.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Space/__Snapshots__/OUDSTokensSpaceUITests/test_OrangeTheme_Dark.spaceRowGapShortest.png
similarity index 100%
rename from Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Space/__Snapshots__/OUDSTokensSpaceUITests/test_OrangeTheme_Dark.spaceRowGapShortest.png
rename to DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Space/__Snapshots__/OUDSTokensSpaceUITests/test_OrangeTheme_Dark.spaceRowGapShortest.png
diff --git a/Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Space/__Snapshots__/OUDSTokensSpaceUITests/test_OrangeTheme_Dark.spaceRowGapTall.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Space/__Snapshots__/OUDSTokensSpaceUITests/test_OrangeTheme_Dark.spaceRowGapTall.png
similarity index 100%
rename from Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Space/__Snapshots__/OUDSTokensSpaceUITests/test_OrangeTheme_Dark.spaceRowGapTall.png
rename to DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Space/__Snapshots__/OUDSTokensSpaceUITests/test_OrangeTheme_Dark.spaceRowGapTall.png
diff --git a/Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Space/__Snapshots__/OUDSTokensSpaceUITests/test_OrangeTheme_Dark.spaceScaledMedium.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Space/__Snapshots__/OUDSTokensSpaceUITests/test_OrangeTheme_Dark.spaceScaledMedium.png
similarity index 100%
rename from Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Space/__Snapshots__/OUDSTokensSpaceUITests/test_OrangeTheme_Dark.spaceScaledMedium.png
rename to DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Space/__Snapshots__/OUDSTokensSpaceUITests/test_OrangeTheme_Dark.spaceScaledMedium.png
diff --git a/Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Space/__Snapshots__/OUDSTokensSpaceUITests/test_OrangeTheme_Dark.spaceScaledNone.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Space/__Snapshots__/OUDSTokensSpaceUITests/test_OrangeTheme_Dark.spaceScaledNone.png
similarity index 100%
rename from Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Space/__Snapshots__/OUDSTokensSpaceUITests/test_OrangeTheme_Dark.spaceScaledNone.png
rename to DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Space/__Snapshots__/OUDSTokensSpaceUITests/test_OrangeTheme_Dark.spaceScaledNone.png
diff --git a/Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Space/__Snapshots__/OUDSTokensSpaceUITests/test_OrangeTheme_Dark.spaceScaledShort.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Space/__Snapshots__/OUDSTokensSpaceUITests/test_OrangeTheme_Dark.spaceScaledShort.png
similarity index 100%
rename from Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Space/__Snapshots__/OUDSTokensSpaceUITests/test_OrangeTheme_Dark.spaceScaledShort.png
rename to DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Space/__Snapshots__/OUDSTokensSpaceUITests/test_OrangeTheme_Dark.spaceScaledShort.png
diff --git a/Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Space/__Snapshots__/OUDSTokensSpaceUITests/test_OrangeTheme_Dark.spaceScaledShorter.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Space/__Snapshots__/OUDSTokensSpaceUITests/test_OrangeTheme_Dark.spaceScaledShorter.png
similarity index 100%
rename from Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Space/__Snapshots__/OUDSTokensSpaceUITests/test_OrangeTheme_Dark.spaceScaledShorter.png
rename to DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Space/__Snapshots__/OUDSTokensSpaceUITests/test_OrangeTheme_Dark.spaceScaledShorter.png
diff --git a/Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Space/__Snapshots__/OUDSTokensSpaceUITests/test_OrangeTheme_Dark.spaceScaledShortest.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Space/__Snapshots__/OUDSTokensSpaceUITests/test_OrangeTheme_Dark.spaceScaledShortest.png
similarity index 100%
rename from Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Space/__Snapshots__/OUDSTokensSpaceUITests/test_OrangeTheme_Dark.spaceScaledShortest.png
rename to DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Space/__Snapshots__/OUDSTokensSpaceUITests/test_OrangeTheme_Dark.spaceScaledShortest.png
diff --git a/Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Space/__Snapshots__/OUDSTokensSpaceUITests/test_OrangeTheme_Dark.spaceScaledSmash.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Space/__Snapshots__/OUDSTokensSpaceUITests/test_OrangeTheme_Dark.spaceScaledSmash.png
similarity index 100%
rename from Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Space/__Snapshots__/OUDSTokensSpaceUITests/test_OrangeTheme_Dark.spaceScaledSmash.png
rename to DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Space/__Snapshots__/OUDSTokensSpaceUITests/test_OrangeTheme_Dark.spaceScaledSmash.png
diff --git a/Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Space/__Snapshots__/OUDSTokensSpaceUITests/test_OrangeTheme_Dark.spaceScaledSpacious.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Space/__Snapshots__/OUDSTokensSpaceUITests/test_OrangeTheme_Dark.spaceScaledSpacious.png
similarity index 100%
rename from Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Space/__Snapshots__/OUDSTokensSpaceUITests/test_OrangeTheme_Dark.spaceScaledSpacious.png
rename to DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Space/__Snapshots__/OUDSTokensSpaceUITests/test_OrangeTheme_Dark.spaceScaledSpacious.png
diff --git a/Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Space/__Snapshots__/OUDSTokensSpaceUITests/test_OrangeTheme_Dark.spaceScaledTall.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Space/__Snapshots__/OUDSTokensSpaceUITests/test_OrangeTheme_Dark.spaceScaledTall.png
similarity index 100%
rename from Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Space/__Snapshots__/OUDSTokensSpaceUITests/test_OrangeTheme_Dark.spaceScaledTall.png
rename to DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Space/__Snapshots__/OUDSTokensSpaceUITests/test_OrangeTheme_Dark.spaceScaledTall.png
diff --git a/Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Space/__Snapshots__/OUDSTokensSpaceUITests/test_OrangeTheme_Dark.spaceScaledTaller.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Space/__Snapshots__/OUDSTokensSpaceUITests/test_OrangeTheme_Dark.spaceScaledTaller.png
similarity index 100%
rename from Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Space/__Snapshots__/OUDSTokensSpaceUITests/test_OrangeTheme_Dark.spaceScaledTaller.png
rename to DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Space/__Snapshots__/OUDSTokensSpaceUITests/test_OrangeTheme_Dark.spaceScaledTaller.png
diff --git a/Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Space/__Snapshots__/OUDSTokensSpaceUITests/test_OrangeTheme_Dark.spaceScaledTallest.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Space/__Snapshots__/OUDSTokensSpaceUITests/test_OrangeTheme_Dark.spaceScaledTallest.png
similarity index 100%
rename from Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Space/__Snapshots__/OUDSTokensSpaceUITests/test_OrangeTheme_Dark.spaceScaledTallest.png
rename to DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Space/__Snapshots__/OUDSTokensSpaceUITests/test_OrangeTheme_Dark.spaceScaledTallest.png
diff --git a/Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Space/__Snapshots__/OUDSTokensSpaceUITests/test_OrangeTheme_Light.spaceColumnGapMedium.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Space/__Snapshots__/OUDSTokensSpaceUITests/test_OrangeTheme_Light.spaceColumnGapMedium.png
similarity index 100%
rename from Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Space/__Snapshots__/OUDSTokensSpaceUITests/test_OrangeTheme_Light.spaceColumnGapMedium.png
rename to DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Space/__Snapshots__/OUDSTokensSpaceUITests/test_OrangeTheme_Light.spaceColumnGapMedium.png
diff --git a/Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Space/__Snapshots__/OUDSTokensSpaceUITests/test_OrangeTheme_Light.spaceColumnGapNone.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Space/__Snapshots__/OUDSTokensSpaceUITests/test_OrangeTheme_Light.spaceColumnGapNone.png
similarity index 100%
rename from Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Space/__Snapshots__/OUDSTokensSpaceUITests/test_OrangeTheme_Light.spaceColumnGapNone.png
rename to DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Space/__Snapshots__/OUDSTokensSpaceUITests/test_OrangeTheme_Light.spaceColumnGapNone.png
diff --git a/Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Space/__Snapshots__/OUDSTokensSpaceUITests/test_OrangeTheme_Light.spaceColumnGapShort.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Space/__Snapshots__/OUDSTokensSpaceUITests/test_OrangeTheme_Light.spaceColumnGapShort.png
similarity index 100%
rename from Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Space/__Snapshots__/OUDSTokensSpaceUITests/test_OrangeTheme_Light.spaceColumnGapShort.png
rename to DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Space/__Snapshots__/OUDSTokensSpaceUITests/test_OrangeTheme_Light.spaceColumnGapShort.png
diff --git a/Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Space/__Snapshots__/OUDSTokensSpaceUITests/test_OrangeTheme_Light.spaceColumnGapShorter.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Space/__Snapshots__/OUDSTokensSpaceUITests/test_OrangeTheme_Light.spaceColumnGapShorter.png
similarity index 100%
rename from Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Space/__Snapshots__/OUDSTokensSpaceUITests/test_OrangeTheme_Light.spaceColumnGapShorter.png
rename to DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Space/__Snapshots__/OUDSTokensSpaceUITests/test_OrangeTheme_Light.spaceColumnGapShorter.png
diff --git a/Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Space/__Snapshots__/OUDSTokensSpaceUITests/test_OrangeTheme_Light.spaceColumnGapTall.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Space/__Snapshots__/OUDSTokensSpaceUITests/test_OrangeTheme_Light.spaceColumnGapTall.png
similarity index 100%
rename from Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Space/__Snapshots__/OUDSTokensSpaceUITests/test_OrangeTheme_Light.spaceColumnGapTall.png
rename to DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Space/__Snapshots__/OUDSTokensSpaceUITests/test_OrangeTheme_Light.spaceColumnGapTall.png
diff --git a/Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Space/__Snapshots__/OUDSTokensSpaceUITests/test_OrangeTheme_Light.spaceColumnGapTaller.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Space/__Snapshots__/OUDSTokensSpaceUITests/test_OrangeTheme_Light.spaceColumnGapTaller.png
similarity index 100%
rename from Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Space/__Snapshots__/OUDSTokensSpaceUITests/test_OrangeTheme_Light.spaceColumnGapTaller.png
rename to DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Space/__Snapshots__/OUDSTokensSpaceUITests/test_OrangeTheme_Light.spaceColumnGapTaller.png
diff --git a/Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Space/__Snapshots__/OUDSTokensSpaceUITests/test_OrangeTheme_Light.spaceFixedHuge.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Space/__Snapshots__/OUDSTokensSpaceUITests/test_OrangeTheme_Light.spaceFixedHuge.png
similarity index 100%
rename from Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Space/__Snapshots__/OUDSTokensSpaceUITests/test_OrangeTheme_Light.spaceFixedHuge.png
rename to DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Space/__Snapshots__/OUDSTokensSpaceUITests/test_OrangeTheme_Light.spaceFixedHuge.png
diff --git a/Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Space/__Snapshots__/OUDSTokensSpaceUITests/test_OrangeTheme_Light.spaceFixedJumbo.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Space/__Snapshots__/OUDSTokensSpaceUITests/test_OrangeTheme_Light.spaceFixedJumbo.png
similarity index 100%
rename from Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Space/__Snapshots__/OUDSTokensSpaceUITests/test_OrangeTheme_Light.spaceFixedJumbo.png
rename to DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Space/__Snapshots__/OUDSTokensSpaceUITests/test_OrangeTheme_Light.spaceFixedJumbo.png
diff --git a/Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Space/__Snapshots__/OUDSTokensSpaceUITests/test_OrangeTheme_Light.spaceFixedMedium.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Space/__Snapshots__/OUDSTokensSpaceUITests/test_OrangeTheme_Light.spaceFixedMedium.png
similarity index 100%
rename from Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Space/__Snapshots__/OUDSTokensSpaceUITests/test_OrangeTheme_Light.spaceFixedMedium.png
rename to DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Space/__Snapshots__/OUDSTokensSpaceUITests/test_OrangeTheme_Light.spaceFixedMedium.png
diff --git a/Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Space/__Snapshots__/OUDSTokensSpaceUITests/test_OrangeTheme_Light.spaceFixedNone.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Space/__Snapshots__/OUDSTokensSpaceUITests/test_OrangeTheme_Light.spaceFixedNone.png
similarity index 100%
rename from Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Space/__Snapshots__/OUDSTokensSpaceUITests/test_OrangeTheme_Light.spaceFixedNone.png
rename to DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Space/__Snapshots__/OUDSTokensSpaceUITests/test_OrangeTheme_Light.spaceFixedNone.png
diff --git a/Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Space/__Snapshots__/OUDSTokensSpaceUITests/test_OrangeTheme_Light.spaceFixedShort.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Space/__Snapshots__/OUDSTokensSpaceUITests/test_OrangeTheme_Light.spaceFixedShort.png
similarity index 100%
rename from Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Space/__Snapshots__/OUDSTokensSpaceUITests/test_OrangeTheme_Light.spaceFixedShort.png
rename to DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Space/__Snapshots__/OUDSTokensSpaceUITests/test_OrangeTheme_Light.spaceFixedShort.png
diff --git a/Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Space/__Snapshots__/OUDSTokensSpaceUITests/test_OrangeTheme_Light.spaceFixedShorter.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Space/__Snapshots__/OUDSTokensSpaceUITests/test_OrangeTheme_Light.spaceFixedShorter.png
similarity index 100%
rename from Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Space/__Snapshots__/OUDSTokensSpaceUITests/test_OrangeTheme_Light.spaceFixedShorter.png
rename to DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Space/__Snapshots__/OUDSTokensSpaceUITests/test_OrangeTheme_Light.spaceFixedShorter.png
diff --git a/Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Space/__Snapshots__/OUDSTokensSpaceUITests/test_OrangeTheme_Light.spaceFixedShortest.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Space/__Snapshots__/OUDSTokensSpaceUITests/test_OrangeTheme_Light.spaceFixedShortest.png
similarity index 100%
rename from Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Space/__Snapshots__/OUDSTokensSpaceUITests/test_OrangeTheme_Light.spaceFixedShortest.png
rename to DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Space/__Snapshots__/OUDSTokensSpaceUITests/test_OrangeTheme_Light.spaceFixedShortest.png
diff --git a/Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Space/__Snapshots__/OUDSTokensSpaceUITests/test_OrangeTheme_Light.spaceFixedSmash.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Space/__Snapshots__/OUDSTokensSpaceUITests/test_OrangeTheme_Light.spaceFixedSmash.png
similarity index 100%
rename from Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Space/__Snapshots__/OUDSTokensSpaceUITests/test_OrangeTheme_Light.spaceFixedSmash.png
rename to DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Space/__Snapshots__/OUDSTokensSpaceUITests/test_OrangeTheme_Light.spaceFixedSmash.png
diff --git a/Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Space/__Snapshots__/OUDSTokensSpaceUITests/test_OrangeTheme_Light.spaceFixedSpacious.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Space/__Snapshots__/OUDSTokensSpaceUITests/test_OrangeTheme_Light.spaceFixedSpacious.png
similarity index 100%
rename from Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Space/__Snapshots__/OUDSTokensSpaceUITests/test_OrangeTheme_Light.spaceFixedSpacious.png
rename to DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Space/__Snapshots__/OUDSTokensSpaceUITests/test_OrangeTheme_Light.spaceFixedSpacious.png
diff --git a/Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Space/__Snapshots__/OUDSTokensSpaceUITests/test_OrangeTheme_Light.spaceFixedTall.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Space/__Snapshots__/OUDSTokensSpaceUITests/test_OrangeTheme_Light.spaceFixedTall.png
similarity index 100%
rename from Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Space/__Snapshots__/OUDSTokensSpaceUITests/test_OrangeTheme_Light.spaceFixedTall.png
rename to DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Space/__Snapshots__/OUDSTokensSpaceUITests/test_OrangeTheme_Light.spaceFixedTall.png
diff --git a/Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Space/__Snapshots__/OUDSTokensSpaceUITests/test_OrangeTheme_Light.spaceFixedTaller.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Space/__Snapshots__/OUDSTokensSpaceUITests/test_OrangeTheme_Light.spaceFixedTaller.png
similarity index 100%
rename from Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Space/__Snapshots__/OUDSTokensSpaceUITests/test_OrangeTheme_Light.spaceFixedTaller.png
rename to DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Space/__Snapshots__/OUDSTokensSpaceUITests/test_OrangeTheme_Light.spaceFixedTaller.png
diff --git a/Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Space/__Snapshots__/OUDSTokensSpaceUITests/test_OrangeTheme_Light.spaceFixedTallest.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Space/__Snapshots__/OUDSTokensSpaceUITests/test_OrangeTheme_Light.spaceFixedTallest.png
similarity index 100%
rename from Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Space/__Snapshots__/OUDSTokensSpaceUITests/test_OrangeTheme_Light.spaceFixedTallest.png
rename to DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Space/__Snapshots__/OUDSTokensSpaceUITests/test_OrangeTheme_Light.spaceFixedTallest.png
diff --git a/Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Space/__Snapshots__/OUDSTokensSpaceUITests/test_OrangeTheme_Light.spaceInsetMedium.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Space/__Snapshots__/OUDSTokensSpaceUITests/test_OrangeTheme_Light.spaceInsetMedium.png
similarity index 100%
rename from Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Space/__Snapshots__/OUDSTokensSpaceUITests/test_OrangeTheme_Light.spaceInsetMedium.png
rename to DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Space/__Snapshots__/OUDSTokensSpaceUITests/test_OrangeTheme_Light.spaceInsetMedium.png
diff --git a/Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Space/__Snapshots__/OUDSTokensSpaceUITests/test_OrangeTheme_Light.spaceInsetNone.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Space/__Snapshots__/OUDSTokensSpaceUITests/test_OrangeTheme_Light.spaceInsetNone.png
similarity index 100%
rename from Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Space/__Snapshots__/OUDSTokensSpaceUITests/test_OrangeTheme_Light.spaceInsetNone.png
rename to DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Space/__Snapshots__/OUDSTokensSpaceUITests/test_OrangeTheme_Light.spaceInsetNone.png
diff --git a/Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Space/__Snapshots__/OUDSTokensSpaceUITests/test_OrangeTheme_Light.spaceInsetShort.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Space/__Snapshots__/OUDSTokensSpaceUITests/test_OrangeTheme_Light.spaceInsetShort.png
similarity index 100%
rename from Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Space/__Snapshots__/OUDSTokensSpaceUITests/test_OrangeTheme_Light.spaceInsetShort.png
rename to DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Space/__Snapshots__/OUDSTokensSpaceUITests/test_OrangeTheme_Light.spaceInsetShort.png
diff --git a/Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Space/__Snapshots__/OUDSTokensSpaceUITests/test_OrangeTheme_Light.spaceInsetShorter.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Space/__Snapshots__/OUDSTokensSpaceUITests/test_OrangeTheme_Light.spaceInsetShorter.png
similarity index 100%
rename from Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Space/__Snapshots__/OUDSTokensSpaceUITests/test_OrangeTheme_Light.spaceInsetShorter.png
rename to DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Space/__Snapshots__/OUDSTokensSpaceUITests/test_OrangeTheme_Light.spaceInsetShorter.png
diff --git a/Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Space/__Snapshots__/OUDSTokensSpaceUITests/test_OrangeTheme_Light.spaceInsetShortest.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Space/__Snapshots__/OUDSTokensSpaceUITests/test_OrangeTheme_Light.spaceInsetShortest.png
similarity index 100%
rename from Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Space/__Snapshots__/OUDSTokensSpaceUITests/test_OrangeTheme_Light.spaceInsetShortest.png
rename to DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Space/__Snapshots__/OUDSTokensSpaceUITests/test_OrangeTheme_Light.spaceInsetShortest.png
diff --git a/Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Space/__Snapshots__/OUDSTokensSpaceUITests/test_OrangeTheme_Light.spaceInsetSmash.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Space/__Snapshots__/OUDSTokensSpaceUITests/test_OrangeTheme_Light.spaceInsetSmash.png
similarity index 100%
rename from Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Space/__Snapshots__/OUDSTokensSpaceUITests/test_OrangeTheme_Light.spaceInsetSmash.png
rename to DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Space/__Snapshots__/OUDSTokensSpaceUITests/test_OrangeTheme_Light.spaceInsetSmash.png
diff --git a/Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Space/__Snapshots__/OUDSTokensSpaceUITests/test_OrangeTheme_Light.spaceInsetSpacious.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Space/__Snapshots__/OUDSTokensSpaceUITests/test_OrangeTheme_Light.spaceInsetSpacious.png
similarity index 100%
rename from Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Space/__Snapshots__/OUDSTokensSpaceUITests/test_OrangeTheme_Light.spaceInsetSpacious.png
rename to DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Space/__Snapshots__/OUDSTokensSpaceUITests/test_OrangeTheme_Light.spaceInsetSpacious.png
diff --git a/Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Space/__Snapshots__/OUDSTokensSpaceUITests/test_OrangeTheme_Light.spaceInsetTall.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Space/__Snapshots__/OUDSTokensSpaceUITests/test_OrangeTheme_Light.spaceInsetTall.png
similarity index 100%
rename from Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Space/__Snapshots__/OUDSTokensSpaceUITests/test_OrangeTheme_Light.spaceInsetTall.png
rename to DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Space/__Snapshots__/OUDSTokensSpaceUITests/test_OrangeTheme_Light.spaceInsetTall.png
diff --git a/Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Space/__Snapshots__/OUDSTokensSpaceUITests/test_OrangeTheme_Light.spaceInsetTaller.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Space/__Snapshots__/OUDSTokensSpaceUITests/test_OrangeTheme_Light.spaceInsetTaller.png
similarity index 100%
rename from Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Space/__Snapshots__/OUDSTokensSpaceUITests/test_OrangeTheme_Light.spaceInsetTaller.png
rename to DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Space/__Snapshots__/OUDSTokensSpaceUITests/test_OrangeTheme_Light.spaceInsetTaller.png
diff --git a/Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Space/__Snapshots__/OUDSTokensSpaceUITests/test_OrangeTheme_Light.spaceInsetTallest.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Space/__Snapshots__/OUDSTokensSpaceUITests/test_OrangeTheme_Light.spaceInsetTallest.png
similarity index 100%
rename from Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Space/__Snapshots__/OUDSTokensSpaceUITests/test_OrangeTheme_Light.spaceInsetTallest.png
rename to DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Space/__Snapshots__/OUDSTokensSpaceUITests/test_OrangeTheme_Light.spaceInsetTallest.png
diff --git a/Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Space/__Snapshots__/OUDSTokensSpaceUITests/test_OrangeTheme_Light.spacePaddingBlockMedium.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Space/__Snapshots__/OUDSTokensSpaceUITests/test_OrangeTheme_Light.spacePaddingBlockMedium.png
similarity index 100%
rename from Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Space/__Snapshots__/OUDSTokensSpaceUITests/test_OrangeTheme_Light.spacePaddingBlockMedium.png
rename to DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Space/__Snapshots__/OUDSTokensSpaceUITests/test_OrangeTheme_Light.spacePaddingBlockMedium.png
diff --git a/Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Space/__Snapshots__/OUDSTokensSpaceUITests/test_OrangeTheme_Light.spacePaddingBlockNone.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Space/__Snapshots__/OUDSTokensSpaceUITests/test_OrangeTheme_Light.spacePaddingBlockNone.png
similarity index 100%
rename from Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Space/__Snapshots__/OUDSTokensSpaceUITests/test_OrangeTheme_Light.spacePaddingBlockNone.png
rename to DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Space/__Snapshots__/OUDSTokensSpaceUITests/test_OrangeTheme_Light.spacePaddingBlockNone.png
diff --git a/Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Space/__Snapshots__/OUDSTokensSpaceUITests/test_OrangeTheme_Light.spacePaddingBlockShort.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Space/__Snapshots__/OUDSTokensSpaceUITests/test_OrangeTheme_Light.spacePaddingBlockShort.png
similarity index 100%
rename from Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Space/__Snapshots__/OUDSTokensSpaceUITests/test_OrangeTheme_Light.spacePaddingBlockShort.png
rename to DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Space/__Snapshots__/OUDSTokensSpaceUITests/test_OrangeTheme_Light.spacePaddingBlockShort.png
diff --git a/Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Space/__Snapshots__/OUDSTokensSpaceUITests/test_OrangeTheme_Light.spacePaddingBlockShorter.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Space/__Snapshots__/OUDSTokensSpaceUITests/test_OrangeTheme_Light.spacePaddingBlockShorter.png
similarity index 100%
rename from Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Space/__Snapshots__/OUDSTokensSpaceUITests/test_OrangeTheme_Light.spacePaddingBlockShorter.png
rename to DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Space/__Snapshots__/OUDSTokensSpaceUITests/test_OrangeTheme_Light.spacePaddingBlockShorter.png
diff --git a/Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Space/__Snapshots__/OUDSTokensSpaceUITests/test_OrangeTheme_Light.spacePaddingBlockTall.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Space/__Snapshots__/OUDSTokensSpaceUITests/test_OrangeTheme_Light.spacePaddingBlockTall.png
similarity index 100%
rename from Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Space/__Snapshots__/OUDSTokensSpaceUITests/test_OrangeTheme_Light.spacePaddingBlockTall.png
rename to DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Space/__Snapshots__/OUDSTokensSpaceUITests/test_OrangeTheme_Light.spacePaddingBlockTall.png
diff --git a/Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Space/__Snapshots__/OUDSTokensSpaceUITests/test_OrangeTheme_Light.spacePaddingBlockTaller.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Space/__Snapshots__/OUDSTokensSpaceUITests/test_OrangeTheme_Light.spacePaddingBlockTaller.png
similarity index 100%
rename from Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Space/__Snapshots__/OUDSTokensSpaceUITests/test_OrangeTheme_Light.spacePaddingBlockTaller.png
rename to DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Space/__Snapshots__/OUDSTokensSpaceUITests/test_OrangeTheme_Light.spacePaddingBlockTaller.png
diff --git a/Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Space/__Snapshots__/OUDSTokensSpaceUITests/test_OrangeTheme_Light.spacePaddingBlockTallest.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Space/__Snapshots__/OUDSTokensSpaceUITests/test_OrangeTheme_Light.spacePaddingBlockTallest.png
similarity index 100%
rename from Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Space/__Snapshots__/OUDSTokensSpaceUITests/test_OrangeTheme_Light.spacePaddingBlockTallest.png
rename to DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Space/__Snapshots__/OUDSTokensSpaceUITests/test_OrangeTheme_Light.spacePaddingBlockTallest.png
diff --git a/Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Space/__Snapshots__/OUDSTokensSpaceUITests/test_OrangeTheme_Light.spacePaddingInlineMedium.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Space/__Snapshots__/OUDSTokensSpaceUITests/test_OrangeTheme_Light.spacePaddingInlineMedium.png
similarity index 100%
rename from Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Space/__Snapshots__/OUDSTokensSpaceUITests/test_OrangeTheme_Light.spacePaddingInlineMedium.png
rename to DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Space/__Snapshots__/OUDSTokensSpaceUITests/test_OrangeTheme_Light.spacePaddingInlineMedium.png
diff --git a/Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Space/__Snapshots__/OUDSTokensSpaceUITests/test_OrangeTheme_Light.spacePaddingInlineNone.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Space/__Snapshots__/OUDSTokensSpaceUITests/test_OrangeTheme_Light.spacePaddingInlineNone.png
similarity index 100%
rename from Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Space/__Snapshots__/OUDSTokensSpaceUITests/test_OrangeTheme_Light.spacePaddingInlineNone.png
rename to DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Space/__Snapshots__/OUDSTokensSpaceUITests/test_OrangeTheme_Light.spacePaddingInlineNone.png
diff --git a/Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Space/__Snapshots__/OUDSTokensSpaceUITests/test_OrangeTheme_Light.spacePaddingInlineShort.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Space/__Snapshots__/OUDSTokensSpaceUITests/test_OrangeTheme_Light.spacePaddingInlineShort.png
similarity index 100%
rename from Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Space/__Snapshots__/OUDSTokensSpaceUITests/test_OrangeTheme_Light.spacePaddingInlineShort.png
rename to DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Space/__Snapshots__/OUDSTokensSpaceUITests/test_OrangeTheme_Light.spacePaddingInlineShort.png
diff --git a/Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Space/__Snapshots__/OUDSTokensSpaceUITests/test_OrangeTheme_Light.spacePaddingInlineShorter.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Space/__Snapshots__/OUDSTokensSpaceUITests/test_OrangeTheme_Light.spacePaddingInlineShorter.png
similarity index 100%
rename from Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Space/__Snapshots__/OUDSTokensSpaceUITests/test_OrangeTheme_Light.spacePaddingInlineShorter.png
rename to DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Space/__Snapshots__/OUDSTokensSpaceUITests/test_OrangeTheme_Light.spacePaddingInlineShorter.png
diff --git a/Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Space/__Snapshots__/OUDSTokensSpaceUITests/test_OrangeTheme_Light.spacePaddingInlineTall.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Space/__Snapshots__/OUDSTokensSpaceUITests/test_OrangeTheme_Light.spacePaddingInlineTall.png
similarity index 100%
rename from Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Space/__Snapshots__/OUDSTokensSpaceUITests/test_OrangeTheme_Light.spacePaddingInlineTall.png
rename to DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Space/__Snapshots__/OUDSTokensSpaceUITests/test_OrangeTheme_Light.spacePaddingInlineTall.png
diff --git a/Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Space/__Snapshots__/OUDSTokensSpaceUITests/test_OrangeTheme_Light.spacePaddingInlineTaller.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Space/__Snapshots__/OUDSTokensSpaceUITests/test_OrangeTheme_Light.spacePaddingInlineTaller.png
similarity index 100%
rename from Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Space/__Snapshots__/OUDSTokensSpaceUITests/test_OrangeTheme_Light.spacePaddingInlineTaller.png
rename to DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Space/__Snapshots__/OUDSTokensSpaceUITests/test_OrangeTheme_Light.spacePaddingInlineTaller.png
diff --git a/Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Space/__Snapshots__/OUDSTokensSpaceUITests/test_OrangeTheme_Light.spacePaddingInlineTallest.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Space/__Snapshots__/OUDSTokensSpaceUITests/test_OrangeTheme_Light.spacePaddingInlineTallest.png
similarity index 100%
rename from Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Space/__Snapshots__/OUDSTokensSpaceUITests/test_OrangeTheme_Light.spacePaddingInlineTallest.png
rename to DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Space/__Snapshots__/OUDSTokensSpaceUITests/test_OrangeTheme_Light.spacePaddingInlineTallest.png
diff --git a/Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Space/__Snapshots__/OUDSTokensSpaceUITests/test_OrangeTheme_Light.spaceRowGapMedium.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Space/__Snapshots__/OUDSTokensSpaceUITests/test_OrangeTheme_Light.spaceRowGapMedium.png
similarity index 100%
rename from Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Space/__Snapshots__/OUDSTokensSpaceUITests/test_OrangeTheme_Light.spaceRowGapMedium.png
rename to DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Space/__Snapshots__/OUDSTokensSpaceUITests/test_OrangeTheme_Light.spaceRowGapMedium.png
diff --git a/Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Space/__Snapshots__/OUDSTokensSpaceUITests/test_OrangeTheme_Light.spaceRowGapNone.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Space/__Snapshots__/OUDSTokensSpaceUITests/test_OrangeTheme_Light.spaceRowGapNone.png
similarity index 100%
rename from Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Space/__Snapshots__/OUDSTokensSpaceUITests/test_OrangeTheme_Light.spaceRowGapNone.png
rename to DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Space/__Snapshots__/OUDSTokensSpaceUITests/test_OrangeTheme_Light.spaceRowGapNone.png
diff --git a/Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Space/__Snapshots__/OUDSTokensSpaceUITests/test_OrangeTheme_Light.spaceRowGapShort.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Space/__Snapshots__/OUDSTokensSpaceUITests/test_OrangeTheme_Light.spaceRowGapShort.png
similarity index 100%
rename from Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Space/__Snapshots__/OUDSTokensSpaceUITests/test_OrangeTheme_Light.spaceRowGapShort.png
rename to DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Space/__Snapshots__/OUDSTokensSpaceUITests/test_OrangeTheme_Light.spaceRowGapShort.png
diff --git a/Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Space/__Snapshots__/OUDSTokensSpaceUITests/test_OrangeTheme_Light.spaceRowGapShorter.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Space/__Snapshots__/OUDSTokensSpaceUITests/test_OrangeTheme_Light.spaceRowGapShorter.png
similarity index 100%
rename from Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Space/__Snapshots__/OUDSTokensSpaceUITests/test_OrangeTheme_Light.spaceRowGapShorter.png
rename to DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Space/__Snapshots__/OUDSTokensSpaceUITests/test_OrangeTheme_Light.spaceRowGapShorter.png
diff --git a/Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Space/__Snapshots__/OUDSTokensSpaceUITests/test_OrangeTheme_Light.spaceRowGapShortest.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Space/__Snapshots__/OUDSTokensSpaceUITests/test_OrangeTheme_Light.spaceRowGapShortest.png
similarity index 100%
rename from Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Space/__Snapshots__/OUDSTokensSpaceUITests/test_OrangeTheme_Light.spaceRowGapShortest.png
rename to DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Space/__Snapshots__/OUDSTokensSpaceUITests/test_OrangeTheme_Light.spaceRowGapShortest.png
diff --git a/Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Space/__Snapshots__/OUDSTokensSpaceUITests/test_OrangeTheme_Light.spaceRowGapTall.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Space/__Snapshots__/OUDSTokensSpaceUITests/test_OrangeTheme_Light.spaceRowGapTall.png
similarity index 100%
rename from Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Space/__Snapshots__/OUDSTokensSpaceUITests/test_OrangeTheme_Light.spaceRowGapTall.png
rename to DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Space/__Snapshots__/OUDSTokensSpaceUITests/test_OrangeTheme_Light.spaceRowGapTall.png
diff --git a/Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Space/__Snapshots__/OUDSTokensSpaceUITests/test_OrangeTheme_Light.spaceScaledMedium.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Space/__Snapshots__/OUDSTokensSpaceUITests/test_OrangeTheme_Light.spaceScaledMedium.png
similarity index 100%
rename from Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Space/__Snapshots__/OUDSTokensSpaceUITests/test_OrangeTheme_Light.spaceScaledMedium.png
rename to DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Space/__Snapshots__/OUDSTokensSpaceUITests/test_OrangeTheme_Light.spaceScaledMedium.png
diff --git a/Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Space/__Snapshots__/OUDSTokensSpaceUITests/test_OrangeTheme_Light.spaceScaledNone.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Space/__Snapshots__/OUDSTokensSpaceUITests/test_OrangeTheme_Light.spaceScaledNone.png
similarity index 100%
rename from Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Space/__Snapshots__/OUDSTokensSpaceUITests/test_OrangeTheme_Light.spaceScaledNone.png
rename to DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Space/__Snapshots__/OUDSTokensSpaceUITests/test_OrangeTheme_Light.spaceScaledNone.png
diff --git a/Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Space/__Snapshots__/OUDSTokensSpaceUITests/test_OrangeTheme_Light.spaceScaledShort.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Space/__Snapshots__/OUDSTokensSpaceUITests/test_OrangeTheme_Light.spaceScaledShort.png
similarity index 100%
rename from Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Space/__Snapshots__/OUDSTokensSpaceUITests/test_OrangeTheme_Light.spaceScaledShort.png
rename to DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Space/__Snapshots__/OUDSTokensSpaceUITests/test_OrangeTheme_Light.spaceScaledShort.png
diff --git a/Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Space/__Snapshots__/OUDSTokensSpaceUITests/test_OrangeTheme_Light.spaceScaledShorter.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Space/__Snapshots__/OUDSTokensSpaceUITests/test_OrangeTheme_Light.spaceScaledShorter.png
similarity index 100%
rename from Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Space/__Snapshots__/OUDSTokensSpaceUITests/test_OrangeTheme_Light.spaceScaledShorter.png
rename to DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Space/__Snapshots__/OUDSTokensSpaceUITests/test_OrangeTheme_Light.spaceScaledShorter.png
diff --git a/Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Space/__Snapshots__/OUDSTokensSpaceUITests/test_OrangeTheme_Light.spaceScaledShortest.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Space/__Snapshots__/OUDSTokensSpaceUITests/test_OrangeTheme_Light.spaceScaledShortest.png
similarity index 100%
rename from Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Space/__Snapshots__/OUDSTokensSpaceUITests/test_OrangeTheme_Light.spaceScaledShortest.png
rename to DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Space/__Snapshots__/OUDSTokensSpaceUITests/test_OrangeTheme_Light.spaceScaledShortest.png
diff --git a/Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Space/__Snapshots__/OUDSTokensSpaceUITests/test_OrangeTheme_Light.spaceScaledSmash.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Space/__Snapshots__/OUDSTokensSpaceUITests/test_OrangeTheme_Light.spaceScaledSmash.png
similarity index 100%
rename from Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Space/__Snapshots__/OUDSTokensSpaceUITests/test_OrangeTheme_Light.spaceScaledSmash.png
rename to DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Space/__Snapshots__/OUDSTokensSpaceUITests/test_OrangeTheme_Light.spaceScaledSmash.png
diff --git a/Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Space/__Snapshots__/OUDSTokensSpaceUITests/test_OrangeTheme_Light.spaceScaledSpacious.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Space/__Snapshots__/OUDSTokensSpaceUITests/test_OrangeTheme_Light.spaceScaledSpacious.png
similarity index 100%
rename from Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Space/__Snapshots__/OUDSTokensSpaceUITests/test_OrangeTheme_Light.spaceScaledSpacious.png
rename to DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Space/__Snapshots__/OUDSTokensSpaceUITests/test_OrangeTheme_Light.spaceScaledSpacious.png
diff --git a/Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Space/__Snapshots__/OUDSTokensSpaceUITests/test_OrangeTheme_Light.spaceScaledTall.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Space/__Snapshots__/OUDSTokensSpaceUITests/test_OrangeTheme_Light.spaceScaledTall.png
similarity index 100%
rename from Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Space/__Snapshots__/OUDSTokensSpaceUITests/test_OrangeTheme_Light.spaceScaledTall.png
rename to DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Space/__Snapshots__/OUDSTokensSpaceUITests/test_OrangeTheme_Light.spaceScaledTall.png
diff --git a/Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Space/__Snapshots__/OUDSTokensSpaceUITests/test_OrangeTheme_Light.spaceScaledTaller.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Space/__Snapshots__/OUDSTokensSpaceUITests/test_OrangeTheme_Light.spaceScaledTaller.png
similarity index 100%
rename from Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Space/__Snapshots__/OUDSTokensSpaceUITests/test_OrangeTheme_Light.spaceScaledTaller.png
rename to DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Space/__Snapshots__/OUDSTokensSpaceUITests/test_OrangeTheme_Light.spaceScaledTaller.png
diff --git a/Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Space/__Snapshots__/OUDSTokensSpaceUITests/test_OrangeTheme_Light.spaceScaledTallest.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Space/__Snapshots__/OUDSTokensSpaceUITests/test_OrangeTheme_Light.spaceScaledTallest.png
similarity index 100%
rename from Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Space/__Snapshots__/OUDSTokensSpaceUITests/test_OrangeTheme_Light.spaceScaledTallest.png
rename to DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensDimensionUITests/Space/__Snapshots__/OUDSTokensSpaceUITests/test_OrangeTheme_Light.spaceScaledTallest.png
diff --git a/Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensElevationUITests/OUDSTokensElevationUITests.swift b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensElevationUITests/OUDSTokensElevationUITests.swift
similarity index 100%
rename from Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensElevationUITests/OUDSTokensElevationUITests.swift
rename to DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensElevationUITests/OUDSTokensElevationUITests.swift
diff --git a/Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensElevationUITests/__Snapshots__/OUDSTokensElevationUITests/test_InverseTheme_Dark.elevationDrag.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensElevationUITests/__Snapshots__/OUDSTokensElevationUITests/test_InverseTheme_Dark.elevationDrag.png
similarity index 100%
rename from Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensElevationUITests/__Snapshots__/OUDSTokensElevationUITests/test_InverseTheme_Dark.elevationDrag.png
rename to DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensElevationUITests/__Snapshots__/OUDSTokensElevationUITests/test_InverseTheme_Dark.elevationDrag.png
diff --git a/Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensElevationUITests/__Snapshots__/OUDSTokensElevationUITests/test_InverseTheme_Dark.elevationNone.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensElevationUITests/__Snapshots__/OUDSTokensElevationUITests/test_InverseTheme_Dark.elevationNone.png
similarity index 100%
rename from Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensElevationUITests/__Snapshots__/OUDSTokensElevationUITests/test_InverseTheme_Dark.elevationNone.png
rename to DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensElevationUITests/__Snapshots__/OUDSTokensElevationUITests/test_InverseTheme_Dark.elevationNone.png
diff --git a/Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensElevationUITests/__Snapshots__/OUDSTokensElevationUITests/test_InverseTheme_Dark.elevationOverlayDefault.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensElevationUITests/__Snapshots__/OUDSTokensElevationUITests/test_InverseTheme_Dark.elevationOverlayDefault.png
similarity index 100%
rename from Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensElevationUITests/__Snapshots__/OUDSTokensElevationUITests/test_InverseTheme_Dark.elevationOverlayDefault.png
rename to DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensElevationUITests/__Snapshots__/OUDSTokensElevationUITests/test_InverseTheme_Dark.elevationOverlayDefault.png
diff --git a/Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensElevationUITests/__Snapshots__/OUDSTokensElevationUITests/test_InverseTheme_Dark.elevationOverlayEmphasized.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensElevationUITests/__Snapshots__/OUDSTokensElevationUITests/test_InverseTheme_Dark.elevationOverlayEmphasized.png
similarity index 100%
rename from Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensElevationUITests/__Snapshots__/OUDSTokensElevationUITests/test_InverseTheme_Dark.elevationOverlayEmphasized.png
rename to DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensElevationUITests/__Snapshots__/OUDSTokensElevationUITests/test_InverseTheme_Dark.elevationOverlayEmphasized.png
diff --git a/Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensElevationUITests/__Snapshots__/OUDSTokensElevationUITests/test_InverseTheme_Dark.elevationRaised.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensElevationUITests/__Snapshots__/OUDSTokensElevationUITests/test_InverseTheme_Dark.elevationRaised.png
similarity index 100%
rename from Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensElevationUITests/__Snapshots__/OUDSTokensElevationUITests/test_InverseTheme_Dark.elevationRaised.png
rename to DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensElevationUITests/__Snapshots__/OUDSTokensElevationUITests/test_InverseTheme_Dark.elevationRaised.png
diff --git a/Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensElevationUITests/__Snapshots__/OUDSTokensElevationUITests/test_InverseTheme_Dark.elevationStickyDefault.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensElevationUITests/__Snapshots__/OUDSTokensElevationUITests/test_InverseTheme_Dark.elevationStickyDefault.png
similarity index 100%
rename from Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensElevationUITests/__Snapshots__/OUDSTokensElevationUITests/test_InverseTheme_Dark.elevationStickyDefault.png
rename to DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensElevationUITests/__Snapshots__/OUDSTokensElevationUITests/test_InverseTheme_Dark.elevationStickyDefault.png
diff --git a/Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensElevationUITests/__Snapshots__/OUDSTokensElevationUITests/test_InverseTheme_Dark.elevationStickyEmphasized.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensElevationUITests/__Snapshots__/OUDSTokensElevationUITests/test_InverseTheme_Dark.elevationStickyEmphasized.png
similarity index 100%
rename from Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensElevationUITests/__Snapshots__/OUDSTokensElevationUITests/test_InverseTheme_Dark.elevationStickyEmphasized.png
rename to DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensElevationUITests/__Snapshots__/OUDSTokensElevationUITests/test_InverseTheme_Dark.elevationStickyEmphasized.png
diff --git a/Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensElevationUITests/__Snapshots__/OUDSTokensElevationUITests/test_InverseTheme_Dark.elevationStickyNavigationScrolled.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensElevationUITests/__Snapshots__/OUDSTokensElevationUITests/test_InverseTheme_Dark.elevationStickyNavigationScrolled.png
similarity index 100%
rename from Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensElevationUITests/__Snapshots__/OUDSTokensElevationUITests/test_InverseTheme_Dark.elevationStickyNavigationScrolled.png
rename to DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensElevationUITests/__Snapshots__/OUDSTokensElevationUITests/test_InverseTheme_Dark.elevationStickyNavigationScrolled.png
diff --git a/Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensElevationUITests/__Snapshots__/OUDSTokensElevationUITests/test_InverseTheme_Light.elevationDrag.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensElevationUITests/__Snapshots__/OUDSTokensElevationUITests/test_InverseTheme_Light.elevationDrag.png
similarity index 100%
rename from Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensElevationUITests/__Snapshots__/OUDSTokensElevationUITests/test_InverseTheme_Light.elevationDrag.png
rename to DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensElevationUITests/__Snapshots__/OUDSTokensElevationUITests/test_InverseTheme_Light.elevationDrag.png
diff --git a/Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensElevationUITests/__Snapshots__/OUDSTokensElevationUITests/test_InverseTheme_Light.elevationNone.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensElevationUITests/__Snapshots__/OUDSTokensElevationUITests/test_InverseTheme_Light.elevationNone.png
similarity index 100%
rename from Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensElevationUITests/__Snapshots__/OUDSTokensElevationUITests/test_InverseTheme_Light.elevationNone.png
rename to DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensElevationUITests/__Snapshots__/OUDSTokensElevationUITests/test_InverseTheme_Light.elevationNone.png
diff --git a/Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensElevationUITests/__Snapshots__/OUDSTokensElevationUITests/test_InverseTheme_Light.elevationOverlayDefault.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensElevationUITests/__Snapshots__/OUDSTokensElevationUITests/test_InverseTheme_Light.elevationOverlayDefault.png
similarity index 100%
rename from Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensElevationUITests/__Snapshots__/OUDSTokensElevationUITests/test_InverseTheme_Light.elevationOverlayDefault.png
rename to DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensElevationUITests/__Snapshots__/OUDSTokensElevationUITests/test_InverseTheme_Light.elevationOverlayDefault.png
diff --git a/Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensElevationUITests/__Snapshots__/OUDSTokensElevationUITests/test_InverseTheme_Light.elevationOverlayEmphasized.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensElevationUITests/__Snapshots__/OUDSTokensElevationUITests/test_InverseTheme_Light.elevationOverlayEmphasized.png
similarity index 100%
rename from Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensElevationUITests/__Snapshots__/OUDSTokensElevationUITests/test_InverseTheme_Light.elevationOverlayEmphasized.png
rename to DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensElevationUITests/__Snapshots__/OUDSTokensElevationUITests/test_InverseTheme_Light.elevationOverlayEmphasized.png
diff --git a/Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensElevationUITests/__Snapshots__/OUDSTokensElevationUITests/test_InverseTheme_Light.elevationRaised.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensElevationUITests/__Snapshots__/OUDSTokensElevationUITests/test_InverseTheme_Light.elevationRaised.png
similarity index 100%
rename from Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensElevationUITests/__Snapshots__/OUDSTokensElevationUITests/test_InverseTheme_Light.elevationRaised.png
rename to DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensElevationUITests/__Snapshots__/OUDSTokensElevationUITests/test_InverseTheme_Light.elevationRaised.png
diff --git a/Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensElevationUITests/__Snapshots__/OUDSTokensElevationUITests/test_InverseTheme_Light.elevationStickyDefault.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensElevationUITests/__Snapshots__/OUDSTokensElevationUITests/test_InverseTheme_Light.elevationStickyDefault.png
similarity index 100%
rename from Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensElevationUITests/__Snapshots__/OUDSTokensElevationUITests/test_InverseTheme_Light.elevationStickyDefault.png
rename to DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensElevationUITests/__Snapshots__/OUDSTokensElevationUITests/test_InverseTheme_Light.elevationStickyDefault.png
diff --git a/Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensElevationUITests/__Snapshots__/OUDSTokensElevationUITests/test_InverseTheme_Light.elevationStickyEmphasized.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensElevationUITests/__Snapshots__/OUDSTokensElevationUITests/test_InverseTheme_Light.elevationStickyEmphasized.png
similarity index 100%
rename from Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensElevationUITests/__Snapshots__/OUDSTokensElevationUITests/test_InverseTheme_Light.elevationStickyEmphasized.png
rename to DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensElevationUITests/__Snapshots__/OUDSTokensElevationUITests/test_InverseTheme_Light.elevationStickyEmphasized.png
diff --git a/Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensElevationUITests/__Snapshots__/OUDSTokensElevationUITests/test_InverseTheme_Light.elevationStickyNavigationScrolled.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensElevationUITests/__Snapshots__/OUDSTokensElevationUITests/test_InverseTheme_Light.elevationStickyNavigationScrolled.png
similarity index 100%
rename from Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensElevationUITests/__Snapshots__/OUDSTokensElevationUITests/test_InverseTheme_Light.elevationStickyNavigationScrolled.png
rename to DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensElevationUITests/__Snapshots__/OUDSTokensElevationUITests/test_InverseTheme_Light.elevationStickyNavigationScrolled.png
diff --git a/Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensElevationUITests/__Snapshots__/OUDSTokensElevationUITests/test_OrangeTheme_Dark.elevationDrag.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensElevationUITests/__Snapshots__/OUDSTokensElevationUITests/test_OrangeTheme_Dark.elevationDrag.png
similarity index 100%
rename from Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensElevationUITests/__Snapshots__/OUDSTokensElevationUITests/test_OrangeTheme_Dark.elevationDrag.png
rename to DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensElevationUITests/__Snapshots__/OUDSTokensElevationUITests/test_OrangeTheme_Dark.elevationDrag.png
diff --git a/Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensElevationUITests/__Snapshots__/OUDSTokensElevationUITests/test_OrangeTheme_Dark.elevationNone.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensElevationUITests/__Snapshots__/OUDSTokensElevationUITests/test_OrangeTheme_Dark.elevationNone.png
similarity index 100%
rename from Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensElevationUITests/__Snapshots__/OUDSTokensElevationUITests/test_OrangeTheme_Dark.elevationNone.png
rename to DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensElevationUITests/__Snapshots__/OUDSTokensElevationUITests/test_OrangeTheme_Dark.elevationNone.png
diff --git a/Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensElevationUITests/__Snapshots__/OUDSTokensElevationUITests/test_OrangeTheme_Dark.elevationOverlayDefault.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensElevationUITests/__Snapshots__/OUDSTokensElevationUITests/test_OrangeTheme_Dark.elevationOverlayDefault.png
similarity index 100%
rename from Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensElevationUITests/__Snapshots__/OUDSTokensElevationUITests/test_OrangeTheme_Dark.elevationOverlayDefault.png
rename to DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensElevationUITests/__Snapshots__/OUDSTokensElevationUITests/test_OrangeTheme_Dark.elevationOverlayDefault.png
diff --git a/Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensElevationUITests/__Snapshots__/OUDSTokensElevationUITests/test_OrangeTheme_Dark.elevationOverlayEmphasized.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensElevationUITests/__Snapshots__/OUDSTokensElevationUITests/test_OrangeTheme_Dark.elevationOverlayEmphasized.png
similarity index 100%
rename from Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensElevationUITests/__Snapshots__/OUDSTokensElevationUITests/test_OrangeTheme_Dark.elevationOverlayEmphasized.png
rename to DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensElevationUITests/__Snapshots__/OUDSTokensElevationUITests/test_OrangeTheme_Dark.elevationOverlayEmphasized.png
diff --git a/Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensElevationUITests/__Snapshots__/OUDSTokensElevationUITests/test_OrangeTheme_Dark.elevationRaised.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensElevationUITests/__Snapshots__/OUDSTokensElevationUITests/test_OrangeTheme_Dark.elevationRaised.png
similarity index 100%
rename from Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensElevationUITests/__Snapshots__/OUDSTokensElevationUITests/test_OrangeTheme_Dark.elevationRaised.png
rename to DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensElevationUITests/__Snapshots__/OUDSTokensElevationUITests/test_OrangeTheme_Dark.elevationRaised.png
diff --git a/Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensElevationUITests/__Snapshots__/OUDSTokensElevationUITests/test_OrangeTheme_Dark.elevationStickyDefault.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensElevationUITests/__Snapshots__/OUDSTokensElevationUITests/test_OrangeTheme_Dark.elevationStickyDefault.png
similarity index 100%
rename from Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensElevationUITests/__Snapshots__/OUDSTokensElevationUITests/test_OrangeTheme_Dark.elevationStickyDefault.png
rename to DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensElevationUITests/__Snapshots__/OUDSTokensElevationUITests/test_OrangeTheme_Dark.elevationStickyDefault.png
diff --git a/Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensElevationUITests/__Snapshots__/OUDSTokensElevationUITests/test_OrangeTheme_Dark.elevationStickyEmphasized.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensElevationUITests/__Snapshots__/OUDSTokensElevationUITests/test_OrangeTheme_Dark.elevationStickyEmphasized.png
similarity index 100%
rename from Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensElevationUITests/__Snapshots__/OUDSTokensElevationUITests/test_OrangeTheme_Dark.elevationStickyEmphasized.png
rename to DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensElevationUITests/__Snapshots__/OUDSTokensElevationUITests/test_OrangeTheme_Dark.elevationStickyEmphasized.png
diff --git a/Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensElevationUITests/__Snapshots__/OUDSTokensElevationUITests/test_OrangeTheme_Dark.elevationStickyNavigationScrolled.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensElevationUITests/__Snapshots__/OUDSTokensElevationUITests/test_OrangeTheme_Dark.elevationStickyNavigationScrolled.png
similarity index 100%
rename from Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensElevationUITests/__Snapshots__/OUDSTokensElevationUITests/test_OrangeTheme_Dark.elevationStickyNavigationScrolled.png
rename to DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensElevationUITests/__Snapshots__/OUDSTokensElevationUITests/test_OrangeTheme_Dark.elevationStickyNavigationScrolled.png
diff --git a/Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensElevationUITests/__Snapshots__/OUDSTokensElevationUITests/test_OrangeTheme_Light.elevationDrag.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensElevationUITests/__Snapshots__/OUDSTokensElevationUITests/test_OrangeTheme_Light.elevationDrag.png
similarity index 100%
rename from Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensElevationUITests/__Snapshots__/OUDSTokensElevationUITests/test_OrangeTheme_Light.elevationDrag.png
rename to DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensElevationUITests/__Snapshots__/OUDSTokensElevationUITests/test_OrangeTheme_Light.elevationDrag.png
diff --git a/Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensElevationUITests/__Snapshots__/OUDSTokensElevationUITests/test_OrangeTheme_Light.elevationNone.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensElevationUITests/__Snapshots__/OUDSTokensElevationUITests/test_OrangeTheme_Light.elevationNone.png
similarity index 100%
rename from Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensElevationUITests/__Snapshots__/OUDSTokensElevationUITests/test_OrangeTheme_Light.elevationNone.png
rename to DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensElevationUITests/__Snapshots__/OUDSTokensElevationUITests/test_OrangeTheme_Light.elevationNone.png
diff --git a/Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensElevationUITests/__Snapshots__/OUDSTokensElevationUITests/test_OrangeTheme_Light.elevationOverlayDefault.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensElevationUITests/__Snapshots__/OUDSTokensElevationUITests/test_OrangeTheme_Light.elevationOverlayDefault.png
similarity index 100%
rename from Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensElevationUITests/__Snapshots__/OUDSTokensElevationUITests/test_OrangeTheme_Light.elevationOverlayDefault.png
rename to DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensElevationUITests/__Snapshots__/OUDSTokensElevationUITests/test_OrangeTheme_Light.elevationOverlayDefault.png
diff --git a/Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensElevationUITests/__Snapshots__/OUDSTokensElevationUITests/test_OrangeTheme_Light.elevationOverlayEmphasized.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensElevationUITests/__Snapshots__/OUDSTokensElevationUITests/test_OrangeTheme_Light.elevationOverlayEmphasized.png
similarity index 100%
rename from Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensElevationUITests/__Snapshots__/OUDSTokensElevationUITests/test_OrangeTheme_Light.elevationOverlayEmphasized.png
rename to DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensElevationUITests/__Snapshots__/OUDSTokensElevationUITests/test_OrangeTheme_Light.elevationOverlayEmphasized.png
diff --git a/Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensElevationUITests/__Snapshots__/OUDSTokensElevationUITests/test_OrangeTheme_Light.elevationRaised.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensElevationUITests/__Snapshots__/OUDSTokensElevationUITests/test_OrangeTheme_Light.elevationRaised.png
similarity index 100%
rename from Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensElevationUITests/__Snapshots__/OUDSTokensElevationUITests/test_OrangeTheme_Light.elevationRaised.png
rename to DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensElevationUITests/__Snapshots__/OUDSTokensElevationUITests/test_OrangeTheme_Light.elevationRaised.png
diff --git a/Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensElevationUITests/__Snapshots__/OUDSTokensElevationUITests/test_OrangeTheme_Light.elevationStickyDefault.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensElevationUITests/__Snapshots__/OUDSTokensElevationUITests/test_OrangeTheme_Light.elevationStickyDefault.png
similarity index 100%
rename from Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensElevationUITests/__Snapshots__/OUDSTokensElevationUITests/test_OrangeTheme_Light.elevationStickyDefault.png
rename to DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensElevationUITests/__Snapshots__/OUDSTokensElevationUITests/test_OrangeTheme_Light.elevationStickyDefault.png
diff --git a/Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensElevationUITests/__Snapshots__/OUDSTokensElevationUITests/test_OrangeTheme_Light.elevationStickyEmphasized.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensElevationUITests/__Snapshots__/OUDSTokensElevationUITests/test_OrangeTheme_Light.elevationStickyEmphasized.png
similarity index 100%
rename from Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensElevationUITests/__Snapshots__/OUDSTokensElevationUITests/test_OrangeTheme_Light.elevationStickyEmphasized.png
rename to DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensElevationUITests/__Snapshots__/OUDSTokensElevationUITests/test_OrangeTheme_Light.elevationStickyEmphasized.png
diff --git a/Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensElevationUITests/__Snapshots__/OUDSTokensElevationUITests/test_OrangeTheme_Light.elevationStickyNavigationScrolled.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensElevationUITests/__Snapshots__/OUDSTokensElevationUITests/test_OrangeTheme_Light.elevationStickyNavigationScrolled.png
similarity index 100%
rename from Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensElevationUITests/__Snapshots__/OUDSTokensElevationUITests/test_OrangeTheme_Light.elevationStickyNavigationScrolled.png
rename to DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensElevationUITests/__Snapshots__/OUDSTokensElevationUITests/test_OrangeTheme_Light.elevationStickyNavigationScrolled.png
diff --git a/Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensFontUITests/OUDSTokensFontUITests.swift b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensFontUITests/OUDSTokensFontUITests.swift
similarity index 100%
rename from Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensFontUITests/OUDSTokensFontUITests.swift
rename to DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensFontUITests/OUDSTokensFontUITests.swift
diff --git a/Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensFontUITests/__Snapshots__/OUDSTokensFontUITests/test_InverseTheme_Dark.bodyDefaultLarge.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensFontUITests/__Snapshots__/OUDSTokensFontUITests/test_InverseTheme_Dark.bodyDefaultLarge.png
similarity index 100%
rename from Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensFontUITests/__Snapshots__/OUDSTokensFontUITests/test_InverseTheme_Dark.bodyDefaultLarge.png
rename to DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensFontUITests/__Snapshots__/OUDSTokensFontUITests/test_InverseTheme_Dark.bodyDefaultLarge.png
diff --git a/Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensFontUITests/__Snapshots__/OUDSTokensFontUITests/test_InverseTheme_Dark.bodyDefaultMedium.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensFontUITests/__Snapshots__/OUDSTokensFontUITests/test_InverseTheme_Dark.bodyDefaultMedium.png
similarity index 100%
rename from Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensFontUITests/__Snapshots__/OUDSTokensFontUITests/test_InverseTheme_Dark.bodyDefaultMedium.png
rename to DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensFontUITests/__Snapshots__/OUDSTokensFontUITests/test_InverseTheme_Dark.bodyDefaultMedium.png
diff --git a/Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensFontUITests/__Snapshots__/OUDSTokensFontUITests/test_InverseTheme_Dark.bodyDefaultSmall.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensFontUITests/__Snapshots__/OUDSTokensFontUITests/test_InverseTheme_Dark.bodyDefaultSmall.png
similarity index 100%
rename from Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensFontUITests/__Snapshots__/OUDSTokensFontUITests/test_InverseTheme_Dark.bodyDefaultSmall.png
rename to DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensFontUITests/__Snapshots__/OUDSTokensFontUITests/test_InverseTheme_Dark.bodyDefaultSmall.png
diff --git a/Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensFontUITests/__Snapshots__/OUDSTokensFontUITests/test_InverseTheme_Dark.bodyStrongLarge.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensFontUITests/__Snapshots__/OUDSTokensFontUITests/test_InverseTheme_Dark.bodyStrongLarge.png
similarity index 100%
rename from Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensFontUITests/__Snapshots__/OUDSTokensFontUITests/test_InverseTheme_Dark.bodyStrongLarge.png
rename to DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensFontUITests/__Snapshots__/OUDSTokensFontUITests/test_InverseTheme_Dark.bodyStrongLarge.png
diff --git a/Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensFontUITests/__Snapshots__/OUDSTokensFontUITests/test_InverseTheme_Dark.bodyStrongMedium.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensFontUITests/__Snapshots__/OUDSTokensFontUITests/test_InverseTheme_Dark.bodyStrongMedium.png
similarity index 100%
rename from Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensFontUITests/__Snapshots__/OUDSTokensFontUITests/test_InverseTheme_Dark.bodyStrongMedium.png
rename to DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensFontUITests/__Snapshots__/OUDSTokensFontUITests/test_InverseTheme_Dark.bodyStrongMedium.png
diff --git a/Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensFontUITests/__Snapshots__/OUDSTokensFontUITests/test_InverseTheme_Dark.bodyStrongSmall.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensFontUITests/__Snapshots__/OUDSTokensFontUITests/test_InverseTheme_Dark.bodyStrongSmall.png
similarity index 100%
rename from Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensFontUITests/__Snapshots__/OUDSTokensFontUITests/test_InverseTheme_Dark.bodyStrongSmall.png
rename to DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensFontUITests/__Snapshots__/OUDSTokensFontUITests/test_InverseTheme_Dark.bodyStrongSmall.png
diff --git a/Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensFontUITests/__Snapshots__/OUDSTokensFontUITests/test_InverseTheme_Dark.codeMedium.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensFontUITests/__Snapshots__/OUDSTokensFontUITests/test_InverseTheme_Dark.codeMedium.png
similarity index 100%
rename from Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensFontUITests/__Snapshots__/OUDSTokensFontUITests/test_InverseTheme_Dark.codeMedium.png
rename to DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensFontUITests/__Snapshots__/OUDSTokensFontUITests/test_InverseTheme_Dark.codeMedium.png
diff --git a/Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensFontUITests/__Snapshots__/OUDSTokensFontUITests/test_InverseTheme_Dark.codeSmall.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensFontUITests/__Snapshots__/OUDSTokensFontUITests/test_InverseTheme_Dark.codeSmall.png
similarity index 100%
rename from Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensFontUITests/__Snapshots__/OUDSTokensFontUITests/test_InverseTheme_Dark.codeSmall.png
rename to DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensFontUITests/__Snapshots__/OUDSTokensFontUITests/test_InverseTheme_Dark.codeSmall.png
diff --git a/Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensFontUITests/__Snapshots__/OUDSTokensFontUITests/test_InverseTheme_Dark.displayLarge.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensFontUITests/__Snapshots__/OUDSTokensFontUITests/test_InverseTheme_Dark.displayLarge.png
similarity index 100%
rename from Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensFontUITests/__Snapshots__/OUDSTokensFontUITests/test_InverseTheme_Dark.displayLarge.png
rename to DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensFontUITests/__Snapshots__/OUDSTokensFontUITests/test_InverseTheme_Dark.displayLarge.png
diff --git a/Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensFontUITests/__Snapshots__/OUDSTokensFontUITests/test_InverseTheme_Dark.displayMedium.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensFontUITests/__Snapshots__/OUDSTokensFontUITests/test_InverseTheme_Dark.displayMedium.png
similarity index 100%
rename from Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensFontUITests/__Snapshots__/OUDSTokensFontUITests/test_InverseTheme_Dark.displayMedium.png
rename to DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensFontUITests/__Snapshots__/OUDSTokensFontUITests/test_InverseTheme_Dark.displayMedium.png
diff --git a/Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensFontUITests/__Snapshots__/OUDSTokensFontUITests/test_InverseTheme_Dark.displaySmall.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensFontUITests/__Snapshots__/OUDSTokensFontUITests/test_InverseTheme_Dark.displaySmall.png
similarity index 100%
rename from Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensFontUITests/__Snapshots__/OUDSTokensFontUITests/test_InverseTheme_Dark.displaySmall.png
rename to DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensFontUITests/__Snapshots__/OUDSTokensFontUITests/test_InverseTheme_Dark.displaySmall.png
diff --git a/Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensFontUITests/__Snapshots__/OUDSTokensFontUITests/test_InverseTheme_Dark.headingLarge.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensFontUITests/__Snapshots__/OUDSTokensFontUITests/test_InverseTheme_Dark.headingLarge.png
similarity index 100%
rename from Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensFontUITests/__Snapshots__/OUDSTokensFontUITests/test_InverseTheme_Dark.headingLarge.png
rename to DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensFontUITests/__Snapshots__/OUDSTokensFontUITests/test_InverseTheme_Dark.headingLarge.png
diff --git a/Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensFontUITests/__Snapshots__/OUDSTokensFontUITests/test_InverseTheme_Dark.headingMedium.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensFontUITests/__Snapshots__/OUDSTokensFontUITests/test_InverseTheme_Dark.headingMedium.png
similarity index 100%
rename from Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensFontUITests/__Snapshots__/OUDSTokensFontUITests/test_InverseTheme_Dark.headingMedium.png
rename to DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensFontUITests/__Snapshots__/OUDSTokensFontUITests/test_InverseTheme_Dark.headingMedium.png
diff --git a/Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensFontUITests/__Snapshots__/OUDSTokensFontUITests/test_InverseTheme_Dark.headingSmall.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensFontUITests/__Snapshots__/OUDSTokensFontUITests/test_InverseTheme_Dark.headingSmall.png
similarity index 100%
rename from Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensFontUITests/__Snapshots__/OUDSTokensFontUITests/test_InverseTheme_Dark.headingSmall.png
rename to DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensFontUITests/__Snapshots__/OUDSTokensFontUITests/test_InverseTheme_Dark.headingSmall.png
diff --git a/Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensFontUITests/__Snapshots__/OUDSTokensFontUITests/test_InverseTheme_Dark.headingXLarge.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensFontUITests/__Snapshots__/OUDSTokensFontUITests/test_InverseTheme_Dark.headingXLarge.png
similarity index 100%
rename from Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensFontUITests/__Snapshots__/OUDSTokensFontUITests/test_InverseTheme_Dark.headingXLarge.png
rename to DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensFontUITests/__Snapshots__/OUDSTokensFontUITests/test_InverseTheme_Dark.headingXLarge.png
diff --git a/Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensFontUITests/__Snapshots__/OUDSTokensFontUITests/test_InverseTheme_Dark.labelDefaultLarge.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensFontUITests/__Snapshots__/OUDSTokensFontUITests/test_InverseTheme_Dark.labelDefaultLarge.png
similarity index 100%
rename from Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensFontUITests/__Snapshots__/OUDSTokensFontUITests/test_InverseTheme_Dark.labelDefaultLarge.png
rename to DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensFontUITests/__Snapshots__/OUDSTokensFontUITests/test_InverseTheme_Dark.labelDefaultLarge.png
diff --git a/Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensFontUITests/__Snapshots__/OUDSTokensFontUITests/test_InverseTheme_Dark.labelDefaultMedium.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensFontUITests/__Snapshots__/OUDSTokensFontUITests/test_InverseTheme_Dark.labelDefaultMedium.png
similarity index 100%
rename from Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensFontUITests/__Snapshots__/OUDSTokensFontUITests/test_InverseTheme_Dark.labelDefaultMedium.png
rename to DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensFontUITests/__Snapshots__/OUDSTokensFontUITests/test_InverseTheme_Dark.labelDefaultMedium.png
diff --git a/Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensFontUITests/__Snapshots__/OUDSTokensFontUITests/test_InverseTheme_Dark.labelDefaultSmall.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensFontUITests/__Snapshots__/OUDSTokensFontUITests/test_InverseTheme_Dark.labelDefaultSmall.png
similarity index 100%
rename from Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensFontUITests/__Snapshots__/OUDSTokensFontUITests/test_InverseTheme_Dark.labelDefaultSmall.png
rename to DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensFontUITests/__Snapshots__/OUDSTokensFontUITests/test_InverseTheme_Dark.labelDefaultSmall.png
diff --git a/Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensFontUITests/__Snapshots__/OUDSTokensFontUITests/test_InverseTheme_Dark.labelDefaultXLarge.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensFontUITests/__Snapshots__/OUDSTokensFontUITests/test_InverseTheme_Dark.labelDefaultXLarge.png
similarity index 100%
rename from Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensFontUITests/__Snapshots__/OUDSTokensFontUITests/test_InverseTheme_Dark.labelDefaultXLarge.png
rename to DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensFontUITests/__Snapshots__/OUDSTokensFontUITests/test_InverseTheme_Dark.labelDefaultXLarge.png
diff --git a/Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensFontUITests/__Snapshots__/OUDSTokensFontUITests/test_InverseTheme_Dark.labelStrongLarge.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensFontUITests/__Snapshots__/OUDSTokensFontUITests/test_InverseTheme_Dark.labelStrongLarge.png
similarity index 100%
rename from Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensFontUITests/__Snapshots__/OUDSTokensFontUITests/test_InverseTheme_Dark.labelStrongLarge.png
rename to DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensFontUITests/__Snapshots__/OUDSTokensFontUITests/test_InverseTheme_Dark.labelStrongLarge.png
diff --git a/Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensFontUITests/__Snapshots__/OUDSTokensFontUITests/test_InverseTheme_Dark.labelStrongMedium.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensFontUITests/__Snapshots__/OUDSTokensFontUITests/test_InverseTheme_Dark.labelStrongMedium.png
similarity index 100%
rename from Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensFontUITests/__Snapshots__/OUDSTokensFontUITests/test_InverseTheme_Dark.labelStrongMedium.png
rename to DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensFontUITests/__Snapshots__/OUDSTokensFontUITests/test_InverseTheme_Dark.labelStrongMedium.png
diff --git a/Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensFontUITests/__Snapshots__/OUDSTokensFontUITests/test_InverseTheme_Dark.labelStrongSmall.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensFontUITests/__Snapshots__/OUDSTokensFontUITests/test_InverseTheme_Dark.labelStrongSmall.png
similarity index 100%
rename from Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensFontUITests/__Snapshots__/OUDSTokensFontUITests/test_InverseTheme_Dark.labelStrongSmall.png
rename to DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensFontUITests/__Snapshots__/OUDSTokensFontUITests/test_InverseTheme_Dark.labelStrongSmall.png
diff --git a/Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensFontUITests/__Snapshots__/OUDSTokensFontUITests/test_InverseTheme_Dark.labelStrongXLarge.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensFontUITests/__Snapshots__/OUDSTokensFontUITests/test_InverseTheme_Dark.labelStrongXLarge.png
similarity index 100%
rename from Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensFontUITests/__Snapshots__/OUDSTokensFontUITests/test_InverseTheme_Dark.labelStrongXLarge.png
rename to DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensFontUITests/__Snapshots__/OUDSTokensFontUITests/test_InverseTheme_Dark.labelStrongXLarge.png
diff --git a/Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensFontUITests/__Snapshots__/OUDSTokensFontUITests/test_InverseTheme_Light.bodyDefaultLarge.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensFontUITests/__Snapshots__/OUDSTokensFontUITests/test_InverseTheme_Light.bodyDefaultLarge.png
similarity index 100%
rename from Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensFontUITests/__Snapshots__/OUDSTokensFontUITests/test_InverseTheme_Light.bodyDefaultLarge.png
rename to DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensFontUITests/__Snapshots__/OUDSTokensFontUITests/test_InverseTheme_Light.bodyDefaultLarge.png
diff --git a/Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensFontUITests/__Snapshots__/OUDSTokensFontUITests/test_InverseTheme_Light.bodyDefaultMedium.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensFontUITests/__Snapshots__/OUDSTokensFontUITests/test_InverseTheme_Light.bodyDefaultMedium.png
similarity index 100%
rename from Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensFontUITests/__Snapshots__/OUDSTokensFontUITests/test_InverseTheme_Light.bodyDefaultMedium.png
rename to DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensFontUITests/__Snapshots__/OUDSTokensFontUITests/test_InverseTheme_Light.bodyDefaultMedium.png
diff --git a/Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensFontUITests/__Snapshots__/OUDSTokensFontUITests/test_InverseTheme_Light.bodyDefaultSmall.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensFontUITests/__Snapshots__/OUDSTokensFontUITests/test_InverseTheme_Light.bodyDefaultSmall.png
similarity index 100%
rename from Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensFontUITests/__Snapshots__/OUDSTokensFontUITests/test_InverseTheme_Light.bodyDefaultSmall.png
rename to DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensFontUITests/__Snapshots__/OUDSTokensFontUITests/test_InverseTheme_Light.bodyDefaultSmall.png
diff --git a/Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensFontUITests/__Snapshots__/OUDSTokensFontUITests/test_InverseTheme_Light.bodyStrongLarge.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensFontUITests/__Snapshots__/OUDSTokensFontUITests/test_InverseTheme_Light.bodyStrongLarge.png
similarity index 100%
rename from Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensFontUITests/__Snapshots__/OUDSTokensFontUITests/test_InverseTheme_Light.bodyStrongLarge.png
rename to DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensFontUITests/__Snapshots__/OUDSTokensFontUITests/test_InverseTheme_Light.bodyStrongLarge.png
diff --git a/Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensFontUITests/__Snapshots__/OUDSTokensFontUITests/test_InverseTheme_Light.bodyStrongMedium.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensFontUITests/__Snapshots__/OUDSTokensFontUITests/test_InverseTheme_Light.bodyStrongMedium.png
similarity index 100%
rename from Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensFontUITests/__Snapshots__/OUDSTokensFontUITests/test_InverseTheme_Light.bodyStrongMedium.png
rename to DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensFontUITests/__Snapshots__/OUDSTokensFontUITests/test_InverseTheme_Light.bodyStrongMedium.png
diff --git a/Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensFontUITests/__Snapshots__/OUDSTokensFontUITests/test_InverseTheme_Light.bodyStrongSmall.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensFontUITests/__Snapshots__/OUDSTokensFontUITests/test_InverseTheme_Light.bodyStrongSmall.png
similarity index 100%
rename from Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensFontUITests/__Snapshots__/OUDSTokensFontUITests/test_InverseTheme_Light.bodyStrongSmall.png
rename to DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensFontUITests/__Snapshots__/OUDSTokensFontUITests/test_InverseTheme_Light.bodyStrongSmall.png
diff --git a/Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensFontUITests/__Snapshots__/OUDSTokensFontUITests/test_InverseTheme_Light.codeMedium.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensFontUITests/__Snapshots__/OUDSTokensFontUITests/test_InverseTheme_Light.codeMedium.png
similarity index 100%
rename from Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensFontUITests/__Snapshots__/OUDSTokensFontUITests/test_InverseTheme_Light.codeMedium.png
rename to DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensFontUITests/__Snapshots__/OUDSTokensFontUITests/test_InverseTheme_Light.codeMedium.png
diff --git a/Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensFontUITests/__Snapshots__/OUDSTokensFontUITests/test_InverseTheme_Light.codeSmall.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensFontUITests/__Snapshots__/OUDSTokensFontUITests/test_InverseTheme_Light.codeSmall.png
similarity index 100%
rename from Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensFontUITests/__Snapshots__/OUDSTokensFontUITests/test_InverseTheme_Light.codeSmall.png
rename to DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensFontUITests/__Snapshots__/OUDSTokensFontUITests/test_InverseTheme_Light.codeSmall.png
diff --git a/Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensFontUITests/__Snapshots__/OUDSTokensFontUITests/test_InverseTheme_Light.displayLarge.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensFontUITests/__Snapshots__/OUDSTokensFontUITests/test_InverseTheme_Light.displayLarge.png
similarity index 100%
rename from Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensFontUITests/__Snapshots__/OUDSTokensFontUITests/test_InverseTheme_Light.displayLarge.png
rename to DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensFontUITests/__Snapshots__/OUDSTokensFontUITests/test_InverseTheme_Light.displayLarge.png
diff --git a/Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensFontUITests/__Snapshots__/OUDSTokensFontUITests/test_InverseTheme_Light.displayMedium.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensFontUITests/__Snapshots__/OUDSTokensFontUITests/test_InverseTheme_Light.displayMedium.png
similarity index 100%
rename from Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensFontUITests/__Snapshots__/OUDSTokensFontUITests/test_InverseTheme_Light.displayMedium.png
rename to DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensFontUITests/__Snapshots__/OUDSTokensFontUITests/test_InverseTheme_Light.displayMedium.png
diff --git a/Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensFontUITests/__Snapshots__/OUDSTokensFontUITests/test_InverseTheme_Light.displaySmall.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensFontUITests/__Snapshots__/OUDSTokensFontUITests/test_InverseTheme_Light.displaySmall.png
similarity index 100%
rename from Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensFontUITests/__Snapshots__/OUDSTokensFontUITests/test_InverseTheme_Light.displaySmall.png
rename to DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensFontUITests/__Snapshots__/OUDSTokensFontUITests/test_InverseTheme_Light.displaySmall.png
diff --git a/Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensFontUITests/__Snapshots__/OUDSTokensFontUITests/test_InverseTheme_Light.headingLarge.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensFontUITests/__Snapshots__/OUDSTokensFontUITests/test_InverseTheme_Light.headingLarge.png
similarity index 100%
rename from Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensFontUITests/__Snapshots__/OUDSTokensFontUITests/test_InverseTheme_Light.headingLarge.png
rename to DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensFontUITests/__Snapshots__/OUDSTokensFontUITests/test_InverseTheme_Light.headingLarge.png
diff --git a/Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensFontUITests/__Snapshots__/OUDSTokensFontUITests/test_InverseTheme_Light.headingMedium.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensFontUITests/__Snapshots__/OUDSTokensFontUITests/test_InverseTheme_Light.headingMedium.png
similarity index 100%
rename from Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensFontUITests/__Snapshots__/OUDSTokensFontUITests/test_InverseTheme_Light.headingMedium.png
rename to DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensFontUITests/__Snapshots__/OUDSTokensFontUITests/test_InverseTheme_Light.headingMedium.png
diff --git a/Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensFontUITests/__Snapshots__/OUDSTokensFontUITests/test_InverseTheme_Light.headingSmall.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensFontUITests/__Snapshots__/OUDSTokensFontUITests/test_InverseTheme_Light.headingSmall.png
similarity index 100%
rename from Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensFontUITests/__Snapshots__/OUDSTokensFontUITests/test_InverseTheme_Light.headingSmall.png
rename to DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensFontUITests/__Snapshots__/OUDSTokensFontUITests/test_InverseTheme_Light.headingSmall.png
diff --git a/Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensFontUITests/__Snapshots__/OUDSTokensFontUITests/test_InverseTheme_Light.headingXLarge.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensFontUITests/__Snapshots__/OUDSTokensFontUITests/test_InverseTheme_Light.headingXLarge.png
similarity index 100%
rename from Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensFontUITests/__Snapshots__/OUDSTokensFontUITests/test_InverseTheme_Light.headingXLarge.png
rename to DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensFontUITests/__Snapshots__/OUDSTokensFontUITests/test_InverseTheme_Light.headingXLarge.png
diff --git a/Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensFontUITests/__Snapshots__/OUDSTokensFontUITests/test_InverseTheme_Light.labelDefaultLarge.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensFontUITests/__Snapshots__/OUDSTokensFontUITests/test_InverseTheme_Light.labelDefaultLarge.png
similarity index 100%
rename from Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensFontUITests/__Snapshots__/OUDSTokensFontUITests/test_InverseTheme_Light.labelDefaultLarge.png
rename to DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensFontUITests/__Snapshots__/OUDSTokensFontUITests/test_InverseTheme_Light.labelDefaultLarge.png
diff --git a/Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensFontUITests/__Snapshots__/OUDSTokensFontUITests/test_InverseTheme_Light.labelDefaultMedium.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensFontUITests/__Snapshots__/OUDSTokensFontUITests/test_InverseTheme_Light.labelDefaultMedium.png
similarity index 100%
rename from Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensFontUITests/__Snapshots__/OUDSTokensFontUITests/test_InverseTheme_Light.labelDefaultMedium.png
rename to DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensFontUITests/__Snapshots__/OUDSTokensFontUITests/test_InverseTheme_Light.labelDefaultMedium.png
diff --git a/Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensFontUITests/__Snapshots__/OUDSTokensFontUITests/test_InverseTheme_Light.labelDefaultSmall.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensFontUITests/__Snapshots__/OUDSTokensFontUITests/test_InverseTheme_Light.labelDefaultSmall.png
similarity index 100%
rename from Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensFontUITests/__Snapshots__/OUDSTokensFontUITests/test_InverseTheme_Light.labelDefaultSmall.png
rename to DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensFontUITests/__Snapshots__/OUDSTokensFontUITests/test_InverseTheme_Light.labelDefaultSmall.png
diff --git a/Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensFontUITests/__Snapshots__/OUDSTokensFontUITests/test_InverseTheme_Light.labelDefaultXLarge.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensFontUITests/__Snapshots__/OUDSTokensFontUITests/test_InverseTheme_Light.labelDefaultXLarge.png
similarity index 100%
rename from Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensFontUITests/__Snapshots__/OUDSTokensFontUITests/test_InverseTheme_Light.labelDefaultXLarge.png
rename to DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensFontUITests/__Snapshots__/OUDSTokensFontUITests/test_InverseTheme_Light.labelDefaultXLarge.png
diff --git a/Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensFontUITests/__Snapshots__/OUDSTokensFontUITests/test_InverseTheme_Light.labelStrongLarge.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensFontUITests/__Snapshots__/OUDSTokensFontUITests/test_InverseTheme_Light.labelStrongLarge.png
similarity index 100%
rename from Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensFontUITests/__Snapshots__/OUDSTokensFontUITests/test_InverseTheme_Light.labelStrongLarge.png
rename to DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensFontUITests/__Snapshots__/OUDSTokensFontUITests/test_InverseTheme_Light.labelStrongLarge.png
diff --git a/Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensFontUITests/__Snapshots__/OUDSTokensFontUITests/test_InverseTheme_Light.labelStrongMedium.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensFontUITests/__Snapshots__/OUDSTokensFontUITests/test_InverseTheme_Light.labelStrongMedium.png
similarity index 100%
rename from Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensFontUITests/__Snapshots__/OUDSTokensFontUITests/test_InverseTheme_Light.labelStrongMedium.png
rename to DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensFontUITests/__Snapshots__/OUDSTokensFontUITests/test_InverseTheme_Light.labelStrongMedium.png
diff --git a/Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensFontUITests/__Snapshots__/OUDSTokensFontUITests/test_InverseTheme_Light.labelStrongSmall.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensFontUITests/__Snapshots__/OUDSTokensFontUITests/test_InverseTheme_Light.labelStrongSmall.png
similarity index 100%
rename from Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensFontUITests/__Snapshots__/OUDSTokensFontUITests/test_InverseTheme_Light.labelStrongSmall.png
rename to DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensFontUITests/__Snapshots__/OUDSTokensFontUITests/test_InverseTheme_Light.labelStrongSmall.png
diff --git a/Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensFontUITests/__Snapshots__/OUDSTokensFontUITests/test_InverseTheme_Light.labelStrongXLarge.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensFontUITests/__Snapshots__/OUDSTokensFontUITests/test_InverseTheme_Light.labelStrongXLarge.png
similarity index 100%
rename from Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensFontUITests/__Snapshots__/OUDSTokensFontUITests/test_InverseTheme_Light.labelStrongXLarge.png
rename to DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensFontUITests/__Snapshots__/OUDSTokensFontUITests/test_InverseTheme_Light.labelStrongXLarge.png
diff --git a/Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensFontUITests/__Snapshots__/OUDSTokensFontUITests/test_OrangeTheme_Dark.bodyDefaultLarge.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensFontUITests/__Snapshots__/OUDSTokensFontUITests/test_OrangeTheme_Dark.bodyDefaultLarge.png
similarity index 100%
rename from Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensFontUITests/__Snapshots__/OUDSTokensFontUITests/test_OrangeTheme_Dark.bodyDefaultLarge.png
rename to DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensFontUITests/__Snapshots__/OUDSTokensFontUITests/test_OrangeTheme_Dark.bodyDefaultLarge.png
diff --git a/Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensFontUITests/__Snapshots__/OUDSTokensFontUITests/test_OrangeTheme_Dark.bodyDefaultMedium.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensFontUITests/__Snapshots__/OUDSTokensFontUITests/test_OrangeTheme_Dark.bodyDefaultMedium.png
similarity index 100%
rename from Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensFontUITests/__Snapshots__/OUDSTokensFontUITests/test_OrangeTheme_Dark.bodyDefaultMedium.png
rename to DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensFontUITests/__Snapshots__/OUDSTokensFontUITests/test_OrangeTheme_Dark.bodyDefaultMedium.png
diff --git a/Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensFontUITests/__Snapshots__/OUDSTokensFontUITests/test_OrangeTheme_Dark.bodyDefaultSmall.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensFontUITests/__Snapshots__/OUDSTokensFontUITests/test_OrangeTheme_Dark.bodyDefaultSmall.png
similarity index 100%
rename from Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensFontUITests/__Snapshots__/OUDSTokensFontUITests/test_OrangeTheme_Dark.bodyDefaultSmall.png
rename to DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensFontUITests/__Snapshots__/OUDSTokensFontUITests/test_OrangeTheme_Dark.bodyDefaultSmall.png
diff --git a/Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensFontUITests/__Snapshots__/OUDSTokensFontUITests/test_OrangeTheme_Dark.bodyStrongLarge.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensFontUITests/__Snapshots__/OUDSTokensFontUITests/test_OrangeTheme_Dark.bodyStrongLarge.png
similarity index 100%
rename from Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensFontUITests/__Snapshots__/OUDSTokensFontUITests/test_OrangeTheme_Dark.bodyStrongLarge.png
rename to DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensFontUITests/__Snapshots__/OUDSTokensFontUITests/test_OrangeTheme_Dark.bodyStrongLarge.png
diff --git a/Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensFontUITests/__Snapshots__/OUDSTokensFontUITests/test_OrangeTheme_Dark.bodyStrongMedium.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensFontUITests/__Snapshots__/OUDSTokensFontUITests/test_OrangeTheme_Dark.bodyStrongMedium.png
similarity index 100%
rename from Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensFontUITests/__Snapshots__/OUDSTokensFontUITests/test_OrangeTheme_Dark.bodyStrongMedium.png
rename to DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensFontUITests/__Snapshots__/OUDSTokensFontUITests/test_OrangeTheme_Dark.bodyStrongMedium.png
diff --git a/Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensFontUITests/__Snapshots__/OUDSTokensFontUITests/test_OrangeTheme_Dark.bodyStrongSmall.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensFontUITests/__Snapshots__/OUDSTokensFontUITests/test_OrangeTheme_Dark.bodyStrongSmall.png
similarity index 100%
rename from Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensFontUITests/__Snapshots__/OUDSTokensFontUITests/test_OrangeTheme_Dark.bodyStrongSmall.png
rename to DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensFontUITests/__Snapshots__/OUDSTokensFontUITests/test_OrangeTheme_Dark.bodyStrongSmall.png
diff --git a/Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensFontUITests/__Snapshots__/OUDSTokensFontUITests/test_OrangeTheme_Dark.codeMedium.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensFontUITests/__Snapshots__/OUDSTokensFontUITests/test_OrangeTheme_Dark.codeMedium.png
similarity index 100%
rename from Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensFontUITests/__Snapshots__/OUDSTokensFontUITests/test_OrangeTheme_Dark.codeMedium.png
rename to DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensFontUITests/__Snapshots__/OUDSTokensFontUITests/test_OrangeTheme_Dark.codeMedium.png
diff --git a/Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensFontUITests/__Snapshots__/OUDSTokensFontUITests/test_OrangeTheme_Dark.codeSmall.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensFontUITests/__Snapshots__/OUDSTokensFontUITests/test_OrangeTheme_Dark.codeSmall.png
similarity index 100%
rename from Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensFontUITests/__Snapshots__/OUDSTokensFontUITests/test_OrangeTheme_Dark.codeSmall.png
rename to DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensFontUITests/__Snapshots__/OUDSTokensFontUITests/test_OrangeTheme_Dark.codeSmall.png
diff --git a/Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensFontUITests/__Snapshots__/OUDSTokensFontUITests/test_OrangeTheme_Dark.displayLarge.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensFontUITests/__Snapshots__/OUDSTokensFontUITests/test_OrangeTheme_Dark.displayLarge.png
similarity index 100%
rename from Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensFontUITests/__Snapshots__/OUDSTokensFontUITests/test_OrangeTheme_Dark.displayLarge.png
rename to DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensFontUITests/__Snapshots__/OUDSTokensFontUITests/test_OrangeTheme_Dark.displayLarge.png
diff --git a/Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensFontUITests/__Snapshots__/OUDSTokensFontUITests/test_OrangeTheme_Dark.displayMedium.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensFontUITests/__Snapshots__/OUDSTokensFontUITests/test_OrangeTheme_Dark.displayMedium.png
similarity index 100%
rename from Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensFontUITests/__Snapshots__/OUDSTokensFontUITests/test_OrangeTheme_Dark.displayMedium.png
rename to DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensFontUITests/__Snapshots__/OUDSTokensFontUITests/test_OrangeTheme_Dark.displayMedium.png
diff --git a/Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensFontUITests/__Snapshots__/OUDSTokensFontUITests/test_OrangeTheme_Dark.displaySmall.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensFontUITests/__Snapshots__/OUDSTokensFontUITests/test_OrangeTheme_Dark.displaySmall.png
similarity index 100%
rename from Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensFontUITests/__Snapshots__/OUDSTokensFontUITests/test_OrangeTheme_Dark.displaySmall.png
rename to DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensFontUITests/__Snapshots__/OUDSTokensFontUITests/test_OrangeTheme_Dark.displaySmall.png
diff --git a/Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensFontUITests/__Snapshots__/OUDSTokensFontUITests/test_OrangeTheme_Dark.headingLarge.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensFontUITests/__Snapshots__/OUDSTokensFontUITests/test_OrangeTheme_Dark.headingLarge.png
similarity index 100%
rename from Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensFontUITests/__Snapshots__/OUDSTokensFontUITests/test_OrangeTheme_Dark.headingLarge.png
rename to DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensFontUITests/__Snapshots__/OUDSTokensFontUITests/test_OrangeTheme_Dark.headingLarge.png
diff --git a/Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensFontUITests/__Snapshots__/OUDSTokensFontUITests/test_OrangeTheme_Dark.headingMedium.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensFontUITests/__Snapshots__/OUDSTokensFontUITests/test_OrangeTheme_Dark.headingMedium.png
similarity index 100%
rename from Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensFontUITests/__Snapshots__/OUDSTokensFontUITests/test_OrangeTheme_Dark.headingMedium.png
rename to DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensFontUITests/__Snapshots__/OUDSTokensFontUITests/test_OrangeTheme_Dark.headingMedium.png
diff --git a/Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensFontUITests/__Snapshots__/OUDSTokensFontUITests/test_OrangeTheme_Dark.headingSmall.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensFontUITests/__Snapshots__/OUDSTokensFontUITests/test_OrangeTheme_Dark.headingSmall.png
similarity index 100%
rename from Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensFontUITests/__Snapshots__/OUDSTokensFontUITests/test_OrangeTheme_Dark.headingSmall.png
rename to DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensFontUITests/__Snapshots__/OUDSTokensFontUITests/test_OrangeTheme_Dark.headingSmall.png
diff --git a/Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensFontUITests/__Snapshots__/OUDSTokensFontUITests/test_OrangeTheme_Dark.headingXLarge.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensFontUITests/__Snapshots__/OUDSTokensFontUITests/test_OrangeTheme_Dark.headingXLarge.png
similarity index 100%
rename from Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensFontUITests/__Snapshots__/OUDSTokensFontUITests/test_OrangeTheme_Dark.headingXLarge.png
rename to DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensFontUITests/__Snapshots__/OUDSTokensFontUITests/test_OrangeTheme_Dark.headingXLarge.png
diff --git a/Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensFontUITests/__Snapshots__/OUDSTokensFontUITests/test_OrangeTheme_Dark.labelDefaultLarge.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensFontUITests/__Snapshots__/OUDSTokensFontUITests/test_OrangeTheme_Dark.labelDefaultLarge.png
similarity index 100%
rename from Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensFontUITests/__Snapshots__/OUDSTokensFontUITests/test_OrangeTheme_Dark.labelDefaultLarge.png
rename to DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensFontUITests/__Snapshots__/OUDSTokensFontUITests/test_OrangeTheme_Dark.labelDefaultLarge.png
diff --git a/Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensFontUITests/__Snapshots__/OUDSTokensFontUITests/test_OrangeTheme_Dark.labelDefaultMedium.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensFontUITests/__Snapshots__/OUDSTokensFontUITests/test_OrangeTheme_Dark.labelDefaultMedium.png
similarity index 100%
rename from Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensFontUITests/__Snapshots__/OUDSTokensFontUITests/test_OrangeTheme_Dark.labelDefaultMedium.png
rename to DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensFontUITests/__Snapshots__/OUDSTokensFontUITests/test_OrangeTheme_Dark.labelDefaultMedium.png
diff --git a/Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensFontUITests/__Snapshots__/OUDSTokensFontUITests/test_OrangeTheme_Dark.labelDefaultSmall.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensFontUITests/__Snapshots__/OUDSTokensFontUITests/test_OrangeTheme_Dark.labelDefaultSmall.png
similarity index 100%
rename from Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensFontUITests/__Snapshots__/OUDSTokensFontUITests/test_OrangeTheme_Dark.labelDefaultSmall.png
rename to DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensFontUITests/__Snapshots__/OUDSTokensFontUITests/test_OrangeTheme_Dark.labelDefaultSmall.png
diff --git a/Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensFontUITests/__Snapshots__/OUDSTokensFontUITests/test_OrangeTheme_Dark.labelDefaultXLarge.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensFontUITests/__Snapshots__/OUDSTokensFontUITests/test_OrangeTheme_Dark.labelDefaultXLarge.png
similarity index 100%
rename from Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensFontUITests/__Snapshots__/OUDSTokensFontUITests/test_OrangeTheme_Dark.labelDefaultXLarge.png
rename to DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensFontUITests/__Snapshots__/OUDSTokensFontUITests/test_OrangeTheme_Dark.labelDefaultXLarge.png
diff --git a/Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensFontUITests/__Snapshots__/OUDSTokensFontUITests/test_OrangeTheme_Dark.labelStrongLarge.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensFontUITests/__Snapshots__/OUDSTokensFontUITests/test_OrangeTheme_Dark.labelStrongLarge.png
similarity index 100%
rename from Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensFontUITests/__Snapshots__/OUDSTokensFontUITests/test_OrangeTheme_Dark.labelStrongLarge.png
rename to DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensFontUITests/__Snapshots__/OUDSTokensFontUITests/test_OrangeTheme_Dark.labelStrongLarge.png
diff --git a/Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensFontUITests/__Snapshots__/OUDSTokensFontUITests/test_OrangeTheme_Dark.labelStrongMedium.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensFontUITests/__Snapshots__/OUDSTokensFontUITests/test_OrangeTheme_Dark.labelStrongMedium.png
similarity index 100%
rename from Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensFontUITests/__Snapshots__/OUDSTokensFontUITests/test_OrangeTheme_Dark.labelStrongMedium.png
rename to DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensFontUITests/__Snapshots__/OUDSTokensFontUITests/test_OrangeTheme_Dark.labelStrongMedium.png
diff --git a/Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensFontUITests/__Snapshots__/OUDSTokensFontUITests/test_OrangeTheme_Dark.labelStrongSmall.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensFontUITests/__Snapshots__/OUDSTokensFontUITests/test_OrangeTheme_Dark.labelStrongSmall.png
similarity index 100%
rename from Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensFontUITests/__Snapshots__/OUDSTokensFontUITests/test_OrangeTheme_Dark.labelStrongSmall.png
rename to DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensFontUITests/__Snapshots__/OUDSTokensFontUITests/test_OrangeTheme_Dark.labelStrongSmall.png
diff --git a/Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensFontUITests/__Snapshots__/OUDSTokensFontUITests/test_OrangeTheme_Dark.labelStrongXLarge.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensFontUITests/__Snapshots__/OUDSTokensFontUITests/test_OrangeTheme_Dark.labelStrongXLarge.png
similarity index 100%
rename from Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensFontUITests/__Snapshots__/OUDSTokensFontUITests/test_OrangeTheme_Dark.labelStrongXLarge.png
rename to DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensFontUITests/__Snapshots__/OUDSTokensFontUITests/test_OrangeTheme_Dark.labelStrongXLarge.png
diff --git a/Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensFontUITests/__Snapshots__/OUDSTokensFontUITests/test_OrangeTheme_Light.bodyDefaultLarge.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensFontUITests/__Snapshots__/OUDSTokensFontUITests/test_OrangeTheme_Light.bodyDefaultLarge.png
similarity index 100%
rename from Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensFontUITests/__Snapshots__/OUDSTokensFontUITests/test_OrangeTheme_Light.bodyDefaultLarge.png
rename to DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensFontUITests/__Snapshots__/OUDSTokensFontUITests/test_OrangeTheme_Light.bodyDefaultLarge.png
diff --git a/Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensFontUITests/__Snapshots__/OUDSTokensFontUITests/test_OrangeTheme_Light.bodyDefaultMedium.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensFontUITests/__Snapshots__/OUDSTokensFontUITests/test_OrangeTheme_Light.bodyDefaultMedium.png
similarity index 100%
rename from Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensFontUITests/__Snapshots__/OUDSTokensFontUITests/test_OrangeTheme_Light.bodyDefaultMedium.png
rename to DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensFontUITests/__Snapshots__/OUDSTokensFontUITests/test_OrangeTheme_Light.bodyDefaultMedium.png
diff --git a/Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensFontUITests/__Snapshots__/OUDSTokensFontUITests/test_OrangeTheme_Light.bodyDefaultSmall.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensFontUITests/__Snapshots__/OUDSTokensFontUITests/test_OrangeTheme_Light.bodyDefaultSmall.png
similarity index 100%
rename from Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensFontUITests/__Snapshots__/OUDSTokensFontUITests/test_OrangeTheme_Light.bodyDefaultSmall.png
rename to DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensFontUITests/__Snapshots__/OUDSTokensFontUITests/test_OrangeTheme_Light.bodyDefaultSmall.png
diff --git a/Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensFontUITests/__Snapshots__/OUDSTokensFontUITests/test_OrangeTheme_Light.bodyStrongLarge.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensFontUITests/__Snapshots__/OUDSTokensFontUITests/test_OrangeTheme_Light.bodyStrongLarge.png
similarity index 100%
rename from Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensFontUITests/__Snapshots__/OUDSTokensFontUITests/test_OrangeTheme_Light.bodyStrongLarge.png
rename to DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensFontUITests/__Snapshots__/OUDSTokensFontUITests/test_OrangeTheme_Light.bodyStrongLarge.png
diff --git a/Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensFontUITests/__Snapshots__/OUDSTokensFontUITests/test_OrangeTheme_Light.bodyStrongMedium.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensFontUITests/__Snapshots__/OUDSTokensFontUITests/test_OrangeTheme_Light.bodyStrongMedium.png
similarity index 100%
rename from Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensFontUITests/__Snapshots__/OUDSTokensFontUITests/test_OrangeTheme_Light.bodyStrongMedium.png
rename to DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensFontUITests/__Snapshots__/OUDSTokensFontUITests/test_OrangeTheme_Light.bodyStrongMedium.png
diff --git a/Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensFontUITests/__Snapshots__/OUDSTokensFontUITests/test_OrangeTheme_Light.bodyStrongSmall.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensFontUITests/__Snapshots__/OUDSTokensFontUITests/test_OrangeTheme_Light.bodyStrongSmall.png
similarity index 100%
rename from Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensFontUITests/__Snapshots__/OUDSTokensFontUITests/test_OrangeTheme_Light.bodyStrongSmall.png
rename to DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensFontUITests/__Snapshots__/OUDSTokensFontUITests/test_OrangeTheme_Light.bodyStrongSmall.png
diff --git a/Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensFontUITests/__Snapshots__/OUDSTokensFontUITests/test_OrangeTheme_Light.codeMedium.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensFontUITests/__Snapshots__/OUDSTokensFontUITests/test_OrangeTheme_Light.codeMedium.png
similarity index 100%
rename from Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensFontUITests/__Snapshots__/OUDSTokensFontUITests/test_OrangeTheme_Light.codeMedium.png
rename to DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensFontUITests/__Snapshots__/OUDSTokensFontUITests/test_OrangeTheme_Light.codeMedium.png
diff --git a/Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensFontUITests/__Snapshots__/OUDSTokensFontUITests/test_OrangeTheme_Light.codeSmall.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensFontUITests/__Snapshots__/OUDSTokensFontUITests/test_OrangeTheme_Light.codeSmall.png
similarity index 100%
rename from Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensFontUITests/__Snapshots__/OUDSTokensFontUITests/test_OrangeTheme_Light.codeSmall.png
rename to DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensFontUITests/__Snapshots__/OUDSTokensFontUITests/test_OrangeTheme_Light.codeSmall.png
diff --git a/Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensFontUITests/__Snapshots__/OUDSTokensFontUITests/test_OrangeTheme_Light.displayLarge.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensFontUITests/__Snapshots__/OUDSTokensFontUITests/test_OrangeTheme_Light.displayLarge.png
similarity index 100%
rename from Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensFontUITests/__Snapshots__/OUDSTokensFontUITests/test_OrangeTheme_Light.displayLarge.png
rename to DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensFontUITests/__Snapshots__/OUDSTokensFontUITests/test_OrangeTheme_Light.displayLarge.png
diff --git a/Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensFontUITests/__Snapshots__/OUDSTokensFontUITests/test_OrangeTheme_Light.displayMedium.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensFontUITests/__Snapshots__/OUDSTokensFontUITests/test_OrangeTheme_Light.displayMedium.png
similarity index 100%
rename from Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensFontUITests/__Snapshots__/OUDSTokensFontUITests/test_OrangeTheme_Light.displayMedium.png
rename to DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensFontUITests/__Snapshots__/OUDSTokensFontUITests/test_OrangeTheme_Light.displayMedium.png
diff --git a/Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensFontUITests/__Snapshots__/OUDSTokensFontUITests/test_OrangeTheme_Light.displaySmall.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensFontUITests/__Snapshots__/OUDSTokensFontUITests/test_OrangeTheme_Light.displaySmall.png
similarity index 100%
rename from Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensFontUITests/__Snapshots__/OUDSTokensFontUITests/test_OrangeTheme_Light.displaySmall.png
rename to DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensFontUITests/__Snapshots__/OUDSTokensFontUITests/test_OrangeTheme_Light.displaySmall.png
diff --git a/Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensFontUITests/__Snapshots__/OUDSTokensFontUITests/test_OrangeTheme_Light.headingLarge.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensFontUITests/__Snapshots__/OUDSTokensFontUITests/test_OrangeTheme_Light.headingLarge.png
similarity index 100%
rename from Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensFontUITests/__Snapshots__/OUDSTokensFontUITests/test_OrangeTheme_Light.headingLarge.png
rename to DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensFontUITests/__Snapshots__/OUDSTokensFontUITests/test_OrangeTheme_Light.headingLarge.png
diff --git a/Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensFontUITests/__Snapshots__/OUDSTokensFontUITests/test_OrangeTheme_Light.headingMedium.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensFontUITests/__Snapshots__/OUDSTokensFontUITests/test_OrangeTheme_Light.headingMedium.png
similarity index 100%
rename from Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensFontUITests/__Snapshots__/OUDSTokensFontUITests/test_OrangeTheme_Light.headingMedium.png
rename to DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensFontUITests/__Snapshots__/OUDSTokensFontUITests/test_OrangeTheme_Light.headingMedium.png
diff --git a/Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensFontUITests/__Snapshots__/OUDSTokensFontUITests/test_OrangeTheme_Light.headingSmall.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensFontUITests/__Snapshots__/OUDSTokensFontUITests/test_OrangeTheme_Light.headingSmall.png
similarity index 100%
rename from Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensFontUITests/__Snapshots__/OUDSTokensFontUITests/test_OrangeTheme_Light.headingSmall.png
rename to DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensFontUITests/__Snapshots__/OUDSTokensFontUITests/test_OrangeTheme_Light.headingSmall.png
diff --git a/Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensFontUITests/__Snapshots__/OUDSTokensFontUITests/test_OrangeTheme_Light.headingXLarge.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensFontUITests/__Snapshots__/OUDSTokensFontUITests/test_OrangeTheme_Light.headingXLarge.png
similarity index 100%
rename from Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensFontUITests/__Snapshots__/OUDSTokensFontUITests/test_OrangeTheme_Light.headingXLarge.png
rename to DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensFontUITests/__Snapshots__/OUDSTokensFontUITests/test_OrangeTheme_Light.headingXLarge.png
diff --git a/Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensFontUITests/__Snapshots__/OUDSTokensFontUITests/test_OrangeTheme_Light.labelDefaultLarge.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensFontUITests/__Snapshots__/OUDSTokensFontUITests/test_OrangeTheme_Light.labelDefaultLarge.png
similarity index 100%
rename from Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensFontUITests/__Snapshots__/OUDSTokensFontUITests/test_OrangeTheme_Light.labelDefaultLarge.png
rename to DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensFontUITests/__Snapshots__/OUDSTokensFontUITests/test_OrangeTheme_Light.labelDefaultLarge.png
diff --git a/Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensFontUITests/__Snapshots__/OUDSTokensFontUITests/test_OrangeTheme_Light.labelDefaultMedium.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensFontUITests/__Snapshots__/OUDSTokensFontUITests/test_OrangeTheme_Light.labelDefaultMedium.png
similarity index 100%
rename from Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensFontUITests/__Snapshots__/OUDSTokensFontUITests/test_OrangeTheme_Light.labelDefaultMedium.png
rename to DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensFontUITests/__Snapshots__/OUDSTokensFontUITests/test_OrangeTheme_Light.labelDefaultMedium.png
diff --git a/Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensFontUITests/__Snapshots__/OUDSTokensFontUITests/test_OrangeTheme_Light.labelDefaultSmall.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensFontUITests/__Snapshots__/OUDSTokensFontUITests/test_OrangeTheme_Light.labelDefaultSmall.png
similarity index 100%
rename from Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensFontUITests/__Snapshots__/OUDSTokensFontUITests/test_OrangeTheme_Light.labelDefaultSmall.png
rename to DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensFontUITests/__Snapshots__/OUDSTokensFontUITests/test_OrangeTheme_Light.labelDefaultSmall.png
diff --git a/Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensFontUITests/__Snapshots__/OUDSTokensFontUITests/test_OrangeTheme_Light.labelDefaultXLarge.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensFontUITests/__Snapshots__/OUDSTokensFontUITests/test_OrangeTheme_Light.labelDefaultXLarge.png
similarity index 100%
rename from Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensFontUITests/__Snapshots__/OUDSTokensFontUITests/test_OrangeTheme_Light.labelDefaultXLarge.png
rename to DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensFontUITests/__Snapshots__/OUDSTokensFontUITests/test_OrangeTheme_Light.labelDefaultXLarge.png
diff --git a/Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensFontUITests/__Snapshots__/OUDSTokensFontUITests/test_OrangeTheme_Light.labelStrongLarge.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensFontUITests/__Snapshots__/OUDSTokensFontUITests/test_OrangeTheme_Light.labelStrongLarge.png
similarity index 100%
rename from Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensFontUITests/__Snapshots__/OUDSTokensFontUITests/test_OrangeTheme_Light.labelStrongLarge.png
rename to DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensFontUITests/__Snapshots__/OUDSTokensFontUITests/test_OrangeTheme_Light.labelStrongLarge.png
diff --git a/Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensFontUITests/__Snapshots__/OUDSTokensFontUITests/test_OrangeTheme_Light.labelStrongMedium.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensFontUITests/__Snapshots__/OUDSTokensFontUITests/test_OrangeTheme_Light.labelStrongMedium.png
similarity index 100%
rename from Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensFontUITests/__Snapshots__/OUDSTokensFontUITests/test_OrangeTheme_Light.labelStrongMedium.png
rename to DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensFontUITests/__Snapshots__/OUDSTokensFontUITests/test_OrangeTheme_Light.labelStrongMedium.png
diff --git a/Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensFontUITests/__Snapshots__/OUDSTokensFontUITests/test_OrangeTheme_Light.labelStrongSmall.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensFontUITests/__Snapshots__/OUDSTokensFontUITests/test_OrangeTheme_Light.labelStrongSmall.png
similarity index 100%
rename from Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensFontUITests/__Snapshots__/OUDSTokensFontUITests/test_OrangeTheme_Light.labelStrongSmall.png
rename to DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensFontUITests/__Snapshots__/OUDSTokensFontUITests/test_OrangeTheme_Light.labelStrongSmall.png
diff --git a/Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensFontUITests/__Snapshots__/OUDSTokensFontUITests/test_OrangeTheme_Light.labelStrongXLarge.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensFontUITests/__Snapshots__/OUDSTokensFontUITests/test_OrangeTheme_Light.labelStrongXLarge.png
similarity index 100%
rename from Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensFontUITests/__Snapshots__/OUDSTokensFontUITests/test_OrangeTheme_Light.labelStrongXLarge.png
rename to DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensFontUITests/__Snapshots__/OUDSTokensFontUITests/test_OrangeTheme_Light.labelStrongXLarge.png
diff --git a/Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensOpacityUITests/OUDSTokensOpacityUITests.swift b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensOpacityUITests/OUDSTokensOpacityUITests.swift
similarity index 100%
rename from Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensOpacityUITests/OUDSTokensOpacityUITests.swift
rename to DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensOpacityUITests/OUDSTokensOpacityUITests.swift
diff --git a/Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensOpacityUITests/__Snapshots__/OUDSTokensOpacityUITests/test_InverseTheme_Dark.opacityInvisible.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensOpacityUITests/__Snapshots__/OUDSTokensOpacityUITests/test_InverseTheme_Dark.opacityInvisible.png
similarity index 100%
rename from Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensOpacityUITests/__Snapshots__/OUDSTokensOpacityUITests/test_InverseTheme_Dark.opacityInvisible.png
rename to DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensOpacityUITests/__Snapshots__/OUDSTokensOpacityUITests/test_InverseTheme_Dark.opacityInvisible.png
diff --git a/Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensOpacityUITests/__Snapshots__/OUDSTokensOpacityUITests/test_InverseTheme_Dark.opacityMedium.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensOpacityUITests/__Snapshots__/OUDSTokensOpacityUITests/test_InverseTheme_Dark.opacityMedium.png
similarity index 100%
rename from Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensOpacityUITests/__Snapshots__/OUDSTokensOpacityUITests/test_InverseTheme_Dark.opacityMedium.png
rename to DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensOpacityUITests/__Snapshots__/OUDSTokensOpacityUITests/test_InverseTheme_Dark.opacityMedium.png
diff --git a/Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensOpacityUITests/__Snapshots__/OUDSTokensOpacityUITests/test_InverseTheme_Dark.opacityOpaque.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensOpacityUITests/__Snapshots__/OUDSTokensOpacityUITests/test_InverseTheme_Dark.opacityOpaque.png
similarity index 100%
rename from Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensOpacityUITests/__Snapshots__/OUDSTokensOpacityUITests/test_InverseTheme_Dark.opacityOpaque.png
rename to DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensOpacityUITests/__Snapshots__/OUDSTokensOpacityUITests/test_InverseTheme_Dark.opacityOpaque.png
diff --git a/Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensOpacityUITests/__Snapshots__/OUDSTokensOpacityUITests/test_InverseTheme_Dark.opacityStrong.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensOpacityUITests/__Snapshots__/OUDSTokensOpacityUITests/test_InverseTheme_Dark.opacityStrong.png
similarity index 100%
rename from Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensOpacityUITests/__Snapshots__/OUDSTokensOpacityUITests/test_InverseTheme_Dark.opacityStrong.png
rename to DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensOpacityUITests/__Snapshots__/OUDSTokensOpacityUITests/test_InverseTheme_Dark.opacityStrong.png
diff --git a/Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensOpacityUITests/__Snapshots__/OUDSTokensOpacityUITests/test_InverseTheme_Dark.opacityWeak.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensOpacityUITests/__Snapshots__/OUDSTokensOpacityUITests/test_InverseTheme_Dark.opacityWeak.png
similarity index 100%
rename from Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensOpacityUITests/__Snapshots__/OUDSTokensOpacityUITests/test_InverseTheme_Dark.opacityWeak.png
rename to DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensOpacityUITests/__Snapshots__/OUDSTokensOpacityUITests/test_InverseTheme_Dark.opacityWeak.png
diff --git a/Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensOpacityUITests/__Snapshots__/OUDSTokensOpacityUITests/test_InverseTheme_Dark.opacityWeaker.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensOpacityUITests/__Snapshots__/OUDSTokensOpacityUITests/test_InverseTheme_Dark.opacityWeaker.png
similarity index 100%
rename from Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensOpacityUITests/__Snapshots__/OUDSTokensOpacityUITests/test_InverseTheme_Dark.opacityWeaker.png
rename to DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensOpacityUITests/__Snapshots__/OUDSTokensOpacityUITests/test_InverseTheme_Dark.opacityWeaker.png
diff --git a/Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensOpacityUITests/__Snapshots__/OUDSTokensOpacityUITests/test_InverseTheme_Light.opacityInvisible.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensOpacityUITests/__Snapshots__/OUDSTokensOpacityUITests/test_InverseTheme_Light.opacityInvisible.png
similarity index 100%
rename from Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensOpacityUITests/__Snapshots__/OUDSTokensOpacityUITests/test_InverseTheme_Light.opacityInvisible.png
rename to DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensOpacityUITests/__Snapshots__/OUDSTokensOpacityUITests/test_InverseTheme_Light.opacityInvisible.png
diff --git a/Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensOpacityUITests/__Snapshots__/OUDSTokensOpacityUITests/test_InverseTheme_Light.opacityMedium.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensOpacityUITests/__Snapshots__/OUDSTokensOpacityUITests/test_InverseTheme_Light.opacityMedium.png
similarity index 100%
rename from Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensOpacityUITests/__Snapshots__/OUDSTokensOpacityUITests/test_InverseTheme_Light.opacityMedium.png
rename to DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensOpacityUITests/__Snapshots__/OUDSTokensOpacityUITests/test_InverseTheme_Light.opacityMedium.png
diff --git a/Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensOpacityUITests/__Snapshots__/OUDSTokensOpacityUITests/test_InverseTheme_Light.opacityOpaque.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensOpacityUITests/__Snapshots__/OUDSTokensOpacityUITests/test_InverseTheme_Light.opacityOpaque.png
similarity index 100%
rename from Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensOpacityUITests/__Snapshots__/OUDSTokensOpacityUITests/test_InverseTheme_Light.opacityOpaque.png
rename to DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensOpacityUITests/__Snapshots__/OUDSTokensOpacityUITests/test_InverseTheme_Light.opacityOpaque.png
diff --git a/Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensOpacityUITests/__Snapshots__/OUDSTokensOpacityUITests/test_InverseTheme_Light.opacityStrong.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensOpacityUITests/__Snapshots__/OUDSTokensOpacityUITests/test_InverseTheme_Light.opacityStrong.png
similarity index 100%
rename from Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensOpacityUITests/__Snapshots__/OUDSTokensOpacityUITests/test_InverseTheme_Light.opacityStrong.png
rename to DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensOpacityUITests/__Snapshots__/OUDSTokensOpacityUITests/test_InverseTheme_Light.opacityStrong.png
diff --git a/Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensOpacityUITests/__Snapshots__/OUDSTokensOpacityUITests/test_InverseTheme_Light.opacityWeak.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensOpacityUITests/__Snapshots__/OUDSTokensOpacityUITests/test_InverseTheme_Light.opacityWeak.png
similarity index 100%
rename from Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensOpacityUITests/__Snapshots__/OUDSTokensOpacityUITests/test_InverseTheme_Light.opacityWeak.png
rename to DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensOpacityUITests/__Snapshots__/OUDSTokensOpacityUITests/test_InverseTheme_Light.opacityWeak.png
diff --git a/Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensOpacityUITests/__Snapshots__/OUDSTokensOpacityUITests/test_InverseTheme_Light.opacityWeaker.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensOpacityUITests/__Snapshots__/OUDSTokensOpacityUITests/test_InverseTheme_Light.opacityWeaker.png
similarity index 100%
rename from Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensOpacityUITests/__Snapshots__/OUDSTokensOpacityUITests/test_InverseTheme_Light.opacityWeaker.png
rename to DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensOpacityUITests/__Snapshots__/OUDSTokensOpacityUITests/test_InverseTheme_Light.opacityWeaker.png
diff --git a/Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensOpacityUITests/__Snapshots__/OUDSTokensOpacityUITests/test_OrangeTheme_Dark.opacityInvisible.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensOpacityUITests/__Snapshots__/OUDSTokensOpacityUITests/test_OrangeTheme_Dark.opacityInvisible.png
similarity index 100%
rename from Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensOpacityUITests/__Snapshots__/OUDSTokensOpacityUITests/test_OrangeTheme_Dark.opacityInvisible.png
rename to DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensOpacityUITests/__Snapshots__/OUDSTokensOpacityUITests/test_OrangeTheme_Dark.opacityInvisible.png
diff --git a/Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensOpacityUITests/__Snapshots__/OUDSTokensOpacityUITests/test_OrangeTheme_Dark.opacityMedium.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensOpacityUITests/__Snapshots__/OUDSTokensOpacityUITests/test_OrangeTheme_Dark.opacityMedium.png
similarity index 100%
rename from Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensOpacityUITests/__Snapshots__/OUDSTokensOpacityUITests/test_OrangeTheme_Dark.opacityMedium.png
rename to DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensOpacityUITests/__Snapshots__/OUDSTokensOpacityUITests/test_OrangeTheme_Dark.opacityMedium.png
diff --git a/Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensOpacityUITests/__Snapshots__/OUDSTokensOpacityUITests/test_OrangeTheme_Dark.opacityOpaque.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensOpacityUITests/__Snapshots__/OUDSTokensOpacityUITests/test_OrangeTheme_Dark.opacityOpaque.png
similarity index 100%
rename from Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensOpacityUITests/__Snapshots__/OUDSTokensOpacityUITests/test_OrangeTheme_Dark.opacityOpaque.png
rename to DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensOpacityUITests/__Snapshots__/OUDSTokensOpacityUITests/test_OrangeTheme_Dark.opacityOpaque.png
diff --git a/Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensOpacityUITests/__Snapshots__/OUDSTokensOpacityUITests/test_OrangeTheme_Dark.opacityStrong.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensOpacityUITests/__Snapshots__/OUDSTokensOpacityUITests/test_OrangeTheme_Dark.opacityStrong.png
similarity index 100%
rename from Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensOpacityUITests/__Snapshots__/OUDSTokensOpacityUITests/test_OrangeTheme_Dark.opacityStrong.png
rename to DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensOpacityUITests/__Snapshots__/OUDSTokensOpacityUITests/test_OrangeTheme_Dark.opacityStrong.png
diff --git a/Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensOpacityUITests/__Snapshots__/OUDSTokensOpacityUITests/test_OrangeTheme_Dark.opacityWeak.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensOpacityUITests/__Snapshots__/OUDSTokensOpacityUITests/test_OrangeTheme_Dark.opacityWeak.png
similarity index 100%
rename from Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensOpacityUITests/__Snapshots__/OUDSTokensOpacityUITests/test_OrangeTheme_Dark.opacityWeak.png
rename to DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensOpacityUITests/__Snapshots__/OUDSTokensOpacityUITests/test_OrangeTheme_Dark.opacityWeak.png
diff --git a/Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensOpacityUITests/__Snapshots__/OUDSTokensOpacityUITests/test_OrangeTheme_Dark.opacityWeaker.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensOpacityUITests/__Snapshots__/OUDSTokensOpacityUITests/test_OrangeTheme_Dark.opacityWeaker.png
similarity index 100%
rename from Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensOpacityUITests/__Snapshots__/OUDSTokensOpacityUITests/test_OrangeTheme_Dark.opacityWeaker.png
rename to DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensOpacityUITests/__Snapshots__/OUDSTokensOpacityUITests/test_OrangeTheme_Dark.opacityWeaker.png
diff --git a/Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensOpacityUITests/__Snapshots__/OUDSTokensOpacityUITests/test_OrangeTheme_Light.opacityInvisible.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensOpacityUITests/__Snapshots__/OUDSTokensOpacityUITests/test_OrangeTheme_Light.opacityInvisible.png
similarity index 100%
rename from Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensOpacityUITests/__Snapshots__/OUDSTokensOpacityUITests/test_OrangeTheme_Light.opacityInvisible.png
rename to DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensOpacityUITests/__Snapshots__/OUDSTokensOpacityUITests/test_OrangeTheme_Light.opacityInvisible.png
diff --git a/Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensOpacityUITests/__Snapshots__/OUDSTokensOpacityUITests/test_OrangeTheme_Light.opacityMedium.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensOpacityUITests/__Snapshots__/OUDSTokensOpacityUITests/test_OrangeTheme_Light.opacityMedium.png
similarity index 100%
rename from Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensOpacityUITests/__Snapshots__/OUDSTokensOpacityUITests/test_OrangeTheme_Light.opacityMedium.png
rename to DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensOpacityUITests/__Snapshots__/OUDSTokensOpacityUITests/test_OrangeTheme_Light.opacityMedium.png
diff --git a/Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensOpacityUITests/__Snapshots__/OUDSTokensOpacityUITests/test_OrangeTheme_Light.opacityOpaque.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensOpacityUITests/__Snapshots__/OUDSTokensOpacityUITests/test_OrangeTheme_Light.opacityOpaque.png
similarity index 100%
rename from Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensOpacityUITests/__Snapshots__/OUDSTokensOpacityUITests/test_OrangeTheme_Light.opacityOpaque.png
rename to DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensOpacityUITests/__Snapshots__/OUDSTokensOpacityUITests/test_OrangeTheme_Light.opacityOpaque.png
diff --git a/Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensOpacityUITests/__Snapshots__/OUDSTokensOpacityUITests/test_OrangeTheme_Light.opacityStrong.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensOpacityUITests/__Snapshots__/OUDSTokensOpacityUITests/test_OrangeTheme_Light.opacityStrong.png
similarity index 100%
rename from Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensOpacityUITests/__Snapshots__/OUDSTokensOpacityUITests/test_OrangeTheme_Light.opacityStrong.png
rename to DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensOpacityUITests/__Snapshots__/OUDSTokensOpacityUITests/test_OrangeTheme_Light.opacityStrong.png
diff --git a/Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensOpacityUITests/__Snapshots__/OUDSTokensOpacityUITests/test_OrangeTheme_Light.opacityWeak.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensOpacityUITests/__Snapshots__/OUDSTokensOpacityUITests/test_OrangeTheme_Light.opacityWeak.png
similarity index 100%
rename from Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensOpacityUITests/__Snapshots__/OUDSTokensOpacityUITests/test_OrangeTheme_Light.opacityWeak.png
rename to DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensOpacityUITests/__Snapshots__/OUDSTokensOpacityUITests/test_OrangeTheme_Light.opacityWeak.png
diff --git a/Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensOpacityUITests/__Snapshots__/OUDSTokensOpacityUITests/test_OrangeTheme_Light.opacityWeaker.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensOpacityUITests/__Snapshots__/OUDSTokensOpacityUITests/test_OrangeTheme_Light.opacityWeaker.png
similarity index 100%
rename from Showcase/ShowcaseTests/__Snapshots__/Tokens/OUDSTokensOpacityUITests/__Snapshots__/OUDSTokensOpacityUITests/test_OrangeTheme_Light.opacityWeaker.png
rename to DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Tokens/OUDSTokensOpacityUITests/__Snapshots__/OUDSTokensOpacityUITests/test_OrangeTheme_Light.opacityWeaker.png
diff --git a/Showcase/Podfile b/DesignToolbox/Podfile
similarity index 97%
rename from Showcase/Podfile
rename to DesignToolbox/Podfile
index 40876aad64..34f333fbf8 100644
--- a/Showcase/Podfile
+++ b/DesignToolbox/Podfile
@@ -15,7 +15,7 @@ use_frameworks!
platform :ios, '15.0'
-target 'Showcase' do
+target 'DesignToolbox' do
pod 'SwiftLint', '0.57.1'
pod 'SwiftFormat/CLI', '0.55.3'
end
diff --git a/Showcase/Podfile.lock b/DesignToolbox/Podfile.lock
similarity index 84%
rename from Showcase/Podfile.lock
rename to DesignToolbox/Podfile.lock
index d2954713dc..da10318698 100644
--- a/Showcase/Podfile.lock
+++ b/DesignToolbox/Podfile.lock
@@ -15,6 +15,6 @@ SPEC CHECKSUMS:
SwiftFormat: 2f3558ca02842dcd3fd970360d2d4054bd21624a
SwiftLint: 92196976e597b9afec5dbe374810103e6c1d9d7c
-PODFILE CHECKSUM: c4ad93a479bf732e918b4e92f458ff72333a85fc
+PODFILE CHECKSUM: ed19a03169e6f54d964fe30c01756358cd74aa8d
COCOAPODS: 1.16.2
diff --git a/DesignToolbox/Pods/Manifest.lock b/DesignToolbox/Pods/Manifest.lock
new file mode 100644
index 0000000000..da10318698
--- /dev/null
+++ b/DesignToolbox/Pods/Manifest.lock
@@ -0,0 +1,20 @@
+PODS:
+ - SwiftFormat/CLI (0.55.3)
+ - SwiftLint (0.57.1)
+
+DEPENDENCIES:
+ - SwiftFormat/CLI (= 0.55.3)
+ - SwiftLint (= 0.57.1)
+
+SPEC REPOS:
+ trunk:
+ - SwiftFormat
+ - SwiftLint
+
+SPEC CHECKSUMS:
+ SwiftFormat: 2f3558ca02842dcd3fd970360d2d4054bd21624a
+ SwiftLint: 92196976e597b9afec5dbe374810103e6c1d9d7c
+
+PODFILE CHECKSUM: ed19a03169e6f54d964fe30c01756358cd74aa8d
+
+COCOAPODS: 1.16.2
diff --git a/DesignToolbox/Pods/Pods.xcodeproj/project.pbxproj b/DesignToolbox/Pods/Pods.xcodeproj/project.pbxproj
new file mode 100644
index 0000000000..97e055459d
--- /dev/null
+++ b/DesignToolbox/Pods/Pods.xcodeproj/project.pbxproj
@@ -0,0 +1,634 @@
+// !$*UTF8*$!
+{
+ archiveVersion = 1;
+ classes = {
+ };
+ objectVersion = 56;
+ objects = {
+
+/* Begin PBXAggregateTarget section */
+ 1CD0618C486973D5588EF20D2E8C0AEA /* SwiftFormat */ = {
+ isa = PBXAggregateTarget;
+ buildConfigurationList = 6B2B7DF197DF6A7CA487150557230A41 /* Build configuration list for PBXAggregateTarget "SwiftFormat" */;
+ buildPhases = (
+ );
+ dependencies = (
+ );
+ name = SwiftFormat;
+ };
+ 52B60EC2A583F24ACBB69C113F5488B9 /* SwiftLint */ = {
+ isa = PBXAggregateTarget;
+ buildConfigurationList = AE7B4FB01588B9E6DF09CB79FC7CE7BD /* Build configuration list for PBXAggregateTarget "SwiftLint" */;
+ buildPhases = (
+ );
+ dependencies = (
+ );
+ name = SwiftLint;
+ };
+/* End PBXAggregateTarget section */
+
+/* Begin PBXBuildFile section */
+ 666A9FB555CDD989E41B908AFB4502A8 /* Pods-DesignToolbox-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 0411C9024C27C4D908CCEF623032ACB5 /* Pods-DesignToolbox-dummy.m */; };
+ A082C85CFF79C5F87CCFD3D22F7C9EBB /* Pods-DesignToolbox-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = A4E5010D5339B1E25502C4319E262EBE /* Pods-DesignToolbox-umbrella.h */; settings = {ATTRIBUTES = (Public, ); }; };
+ F3E6F892D17FF6549545D951A2DD91F6 /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 384DDA2CB25005BD6479B5987C619DD4 /* Foundation.framework */; };
+/* End PBXBuildFile section */
+
+/* Begin PBXContainerItemProxy section */
+ 2532AB96B33A6440DFB7D4A74AE6403B /* PBXContainerItemProxy */ = {
+ isa = PBXContainerItemProxy;
+ containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */;
+ proxyType = 1;
+ remoteGlobalIDString = 52B60EC2A583F24ACBB69C113F5488B9;
+ remoteInfo = SwiftLint;
+ };
+ D4072449033C7C84105954FC6BDC4410 /* PBXContainerItemProxy */ = {
+ isa = PBXContainerItemProxy;
+ containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */;
+ proxyType = 1;
+ remoteGlobalIDString = 1CD0618C486973D5588EF20D2E8C0AEA;
+ remoteInfo = SwiftFormat;
+ };
+/* End PBXContainerItemProxy section */
+
+/* Begin PBXFileReference section */
+ 0411C9024C27C4D908CCEF623032ACB5 /* Pods-DesignToolbox-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "Pods-DesignToolbox-dummy.m"; sourceTree = ""; };
+ 085F1E7EC2C800801564BAC6A1CCF8E0 /* SwiftFormat.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = SwiftFormat.release.xcconfig; sourceTree = ""; };
+ 2B5810D5C227D57CF24E64C3880097BB /* SwiftLint.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = SwiftLint.release.xcconfig; sourceTree = ""; };
+ 384DDA2CB25005BD6479B5987C619DD4 /* Foundation.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = Foundation.framework; path = Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS18.0.sdk/System/Library/Frameworks/Foundation.framework; sourceTree = DEVELOPER_DIR; };
+ 562AE6C11C022323DB5690BF3656F1F8 /* Pods-DesignToolbox-acknowledgements.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = "Pods-DesignToolbox-acknowledgements.plist"; sourceTree = ""; };
+ 57BDC9D734A1086E2EDC6B6D8E557FE1 /* SwiftFormat.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = SwiftFormat.debug.xcconfig; sourceTree = ""; };
+ 6097E5DF4DB1C01513C483F8D31E2754 /* Pods-DesignToolbox */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; name = "Pods-DesignToolbox"; path = Pods_DesignToolbox.framework; sourceTree = BUILT_PRODUCTS_DIR; };
+ 76E7756E5233553E5FBBA2B27750105E /* Pods-DesignToolbox.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "Pods-DesignToolbox.release.xcconfig"; sourceTree = ""; };
+ 9D940727FF8FB9C785EB98E56350EF41 /* Podfile */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; name = Podfile; path = ../Podfile; sourceTree = SOURCE_ROOT; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; };
+ 9EE1DF0398D6E58C246751426533BCFE /* Pods-DesignToolbox-acknowledgements.markdown */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text; path = "Pods-DesignToolbox-acknowledgements.markdown"; sourceTree = ""; };
+ A4E5010D5339B1E25502C4319E262EBE /* Pods-DesignToolbox-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "Pods-DesignToolbox-umbrella.h"; sourceTree = ""; };
+ A5A49F30FA9C3A5480E0AC93CD7A12AF /* Pods-DesignToolbox-Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = "Pods-DesignToolbox-Info.plist"; sourceTree = ""; };
+ B3795ABE948D6B3B4C50C04B7DCD3DFE /* Pods-DesignToolbox.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "Pods-DesignToolbox.debug.xcconfig"; sourceTree = ""; };
+ ED482D20A3F2EF0BF6D78F3F998E5D3C /* SwiftLint.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = SwiftLint.debug.xcconfig; sourceTree = ""; };
+ F6EAEECBC1F39EAC029D2A21491B28B6 /* Pods-DesignToolbox.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.module; path = "Pods-DesignToolbox.modulemap"; sourceTree = ""; };
+/* End PBXFileReference section */
+
+/* Begin PBXFrameworksBuildPhase section */
+ 7D85AC53117F2162934CD82502F1178B /* Frameworks */ = {
+ isa = PBXFrameworksBuildPhase;
+ buildActionMask = 2147483647;
+ files = (
+ F3E6F892D17FF6549545D951A2DD91F6 /* Foundation.framework in Frameworks */,
+ );
+ runOnlyForDeploymentPostprocessing = 0;
+ };
+/* End PBXFrameworksBuildPhase section */
+
+/* Begin PBXGroup section */
+ 3CE74E18E214A3FE9C34446B045F0AD6 /* Support Files */ = {
+ isa = PBXGroup;
+ children = (
+ ED482D20A3F2EF0BF6D78F3F998E5D3C /* SwiftLint.debug.xcconfig */,
+ 2B5810D5C227D57CF24E64C3880097BB /* SwiftLint.release.xcconfig */,
+ );
+ name = "Support Files";
+ path = "../Target Support Files/SwiftLint";
+ sourceTree = "";
+ };
+ 4DDBE6707C958BE5A8A324CCEFC193EF /* SwiftLint */ = {
+ isa = PBXGroup;
+ children = (
+ 3CE74E18E214A3FE9C34446B045F0AD6 /* Support Files */,
+ );
+ name = SwiftLint;
+ path = SwiftLint;
+ sourceTree = "";
+ };
+ 8A0BDFAE11F73EFB936005F32975AE64 /* Pods */ = {
+ isa = PBXGroup;
+ children = (
+ C2ED518B232321B1FA183996AEBAC337 /* SwiftFormat */,
+ 4DDBE6707C958BE5A8A324CCEFC193EF /* SwiftLint */,
+ );
+ name = Pods;
+ sourceTree = "";
+ };
+ 943B92403193A7B920E71A6FA67A3721 /* Targets Support Files */ = {
+ isa = PBXGroup;
+ children = (
+ F81829BDD52021A4DBE4523F66ED82C3 /* Pods-DesignToolbox */,
+ );
+ name = "Targets Support Files";
+ sourceTree = "";
+ };
+ 98E83B7FDF4E04662DEA9B4E9BA3C472 /* Products */ = {
+ isa = PBXGroup;
+ children = (
+ 6097E5DF4DB1C01513C483F8D31E2754 /* Pods-DesignToolbox */,
+ );
+ name = Products;
+ sourceTree = "";
+ };
+ A69E3F1FF27C4A1CD2C303F40BF715E3 /* Support Files */ = {
+ isa = PBXGroup;
+ children = (
+ 57BDC9D734A1086E2EDC6B6D8E557FE1 /* SwiftFormat.debug.xcconfig */,
+ 085F1E7EC2C800801564BAC6A1CCF8E0 /* SwiftFormat.release.xcconfig */,
+ );
+ name = "Support Files";
+ path = "../Target Support Files/SwiftFormat";
+ sourceTree = "";
+ };
+ C2ED518B232321B1FA183996AEBAC337 /* SwiftFormat */ = {
+ isa = PBXGroup;
+ children = (
+ A69E3F1FF27C4A1CD2C303F40BF715E3 /* Support Files */,
+ );
+ name = SwiftFormat;
+ path = SwiftFormat;
+ sourceTree = "";
+ };
+ CF1408CF629C7361332E53B88F7BD30C = {
+ isa = PBXGroup;
+ children = (
+ 9D940727FF8FB9C785EB98E56350EF41 /* Podfile */,
+ D210D550F4EA176C3123ED886F8F87F5 /* Frameworks */,
+ 8A0BDFAE11F73EFB936005F32975AE64 /* Pods */,
+ 98E83B7FDF4E04662DEA9B4E9BA3C472 /* Products */,
+ 943B92403193A7B920E71A6FA67A3721 /* Targets Support Files */,
+ );
+ sourceTree = "";
+ };
+ D210D550F4EA176C3123ED886F8F87F5 /* Frameworks */ = {
+ isa = PBXGroup;
+ children = (
+ E4801F62A6B08CD9B5410329F1A18FDE /* iOS */,
+ );
+ name = Frameworks;
+ sourceTree = "";
+ };
+ E4801F62A6B08CD9B5410329F1A18FDE /* iOS */ = {
+ isa = PBXGroup;
+ children = (
+ 384DDA2CB25005BD6479B5987C619DD4 /* Foundation.framework */,
+ );
+ name = iOS;
+ sourceTree = "";
+ };
+ F81829BDD52021A4DBE4523F66ED82C3 /* Pods-DesignToolbox */ = {
+ isa = PBXGroup;
+ children = (
+ F6EAEECBC1F39EAC029D2A21491B28B6 /* Pods-DesignToolbox.modulemap */,
+ 9EE1DF0398D6E58C246751426533BCFE /* Pods-DesignToolbox-acknowledgements.markdown */,
+ 562AE6C11C022323DB5690BF3656F1F8 /* Pods-DesignToolbox-acknowledgements.plist */,
+ 0411C9024C27C4D908CCEF623032ACB5 /* Pods-DesignToolbox-dummy.m */,
+ A5A49F30FA9C3A5480E0AC93CD7A12AF /* Pods-DesignToolbox-Info.plist */,
+ A4E5010D5339B1E25502C4319E262EBE /* Pods-DesignToolbox-umbrella.h */,
+ B3795ABE948D6B3B4C50C04B7DCD3DFE /* Pods-DesignToolbox.debug.xcconfig */,
+ 76E7756E5233553E5FBBA2B27750105E /* Pods-DesignToolbox.release.xcconfig */,
+ );
+ name = "Pods-DesignToolbox";
+ path = "Target Support Files/Pods-DesignToolbox";
+ sourceTree = "";
+ };
+/* End PBXGroup section */
+
+/* Begin PBXHeadersBuildPhase section */
+ F0E5278C3F088C7B9BDE6DD3FA22267B /* Headers */ = {
+ isa = PBXHeadersBuildPhase;
+ buildActionMask = 2147483647;
+ files = (
+ A082C85CFF79C5F87CCFD3D22F7C9EBB /* Pods-DesignToolbox-umbrella.h in Headers */,
+ );
+ runOnlyForDeploymentPostprocessing = 0;
+ };
+/* End PBXHeadersBuildPhase section */
+
+/* Begin PBXNativeTarget section */
+ 8243F98C68E099B0AEB0B5E53E47624F /* Pods-DesignToolbox */ = {
+ isa = PBXNativeTarget;
+ buildConfigurationList = 0B739B5955981491ED084D8778856435 /* Build configuration list for PBXNativeTarget "Pods-DesignToolbox" */;
+ buildPhases = (
+ F0E5278C3F088C7B9BDE6DD3FA22267B /* Headers */,
+ 839049056685492D1948C4957095167D /* Sources */,
+ 7D85AC53117F2162934CD82502F1178B /* Frameworks */,
+ 3849DCEE4633AE1765C54FE401C48609 /* Resources */,
+ );
+ buildRules = (
+ );
+ dependencies = (
+ 2333482AE79E0598B541B4D4D4B41555 /* PBXTargetDependency */,
+ ECFE573338BD3CA7B7C3BA12B22633E0 /* PBXTargetDependency */,
+ );
+ name = "Pods-DesignToolbox";
+ productName = Pods_DesignToolbox;
+ productReference = 6097E5DF4DB1C01513C483F8D31E2754 /* Pods-DesignToolbox */;
+ productType = "com.apple.product-type.framework";
+ };
+/* End PBXNativeTarget section */
+
+/* Begin PBXProject section */
+ BFDFE7DC352907FC980B868725387E98 /* Project object */ = {
+ isa = PBXProject;
+ attributes = {
+ LastSwiftUpdateCheck = 1600;
+ LastUpgradeCheck = 1600;
+ };
+ buildConfigurationList = 4821239608C13582E20E6DA73FD5F1F9 /* Build configuration list for PBXProject "Pods" */;
+ compatibilityVersion = "Xcode 14.0";
+ developmentRegion = en;
+ hasScannedForEncodings = 0;
+ knownRegions = (
+ Base,
+ en,
+ );
+ mainGroup = CF1408CF629C7361332E53B88F7BD30C;
+ minimizedProjectReferenceProxies = 0;
+ preferredProjectObjectVersion = 77;
+ productRefGroup = 98E83B7FDF4E04662DEA9B4E9BA3C472 /* Products */;
+ projectDirPath = "";
+ projectRoot = "";
+ targets = (
+ 8243F98C68E099B0AEB0B5E53E47624F /* Pods-DesignToolbox */,
+ 1CD0618C486973D5588EF20D2E8C0AEA /* SwiftFormat */,
+ 52B60EC2A583F24ACBB69C113F5488B9 /* SwiftLint */,
+ );
+ };
+/* End PBXProject section */
+
+/* Begin PBXResourcesBuildPhase section */
+ 3849DCEE4633AE1765C54FE401C48609 /* Resources */ = {
+ isa = PBXResourcesBuildPhase;
+ buildActionMask = 2147483647;
+ files = (
+ );
+ runOnlyForDeploymentPostprocessing = 0;
+ };
+/* End PBXResourcesBuildPhase section */
+
+/* Begin PBXSourcesBuildPhase section */
+ 839049056685492D1948C4957095167D /* Sources */ = {
+ isa = PBXSourcesBuildPhase;
+ buildActionMask = 2147483647;
+ files = (
+ 666A9FB555CDD989E41B908AFB4502A8 /* Pods-DesignToolbox-dummy.m in Sources */,
+ );
+ runOnlyForDeploymentPostprocessing = 0;
+ };
+/* End PBXSourcesBuildPhase section */
+
+/* Begin PBXTargetDependency section */
+ 2333482AE79E0598B541B4D4D4B41555 /* PBXTargetDependency */ = {
+ isa = PBXTargetDependency;
+ name = SwiftFormat;
+ target = 1CD0618C486973D5588EF20D2E8C0AEA /* SwiftFormat */;
+ targetProxy = D4072449033C7C84105954FC6BDC4410 /* PBXContainerItemProxy */;
+ };
+ ECFE573338BD3CA7B7C3BA12B22633E0 /* PBXTargetDependency */ = {
+ isa = PBXTargetDependency;
+ name = SwiftLint;
+ target = 52B60EC2A583F24ACBB69C113F5488B9 /* SwiftLint */;
+ targetProxy = 2532AB96B33A6440DFB7D4A74AE6403B /* PBXContainerItemProxy */;
+ };
+/* End PBXTargetDependency section */
+
+/* Begin XCBuildConfiguration section */
+ 22C8D3B11C481C308D92D232C716ADCB /* Release */ = {
+ isa = XCBuildConfiguration;
+ baseConfigurationReference = 76E7756E5233553E5FBBA2B27750105E /* Pods-DesignToolbox.release.xcconfig */;
+ buildSettings = {
+ ALWAYS_EMBED_SWIFT_STANDARD_LIBRARIES = NO;
+ CLANG_ENABLE_OBJC_WEAK = NO;
+ CODE_SIGNING_ALLOWED = NO;
+ CODE_SIGNING_REQUIRED = NO;
+ "CODE_SIGN_IDENTITY[sdk=appletvos*]" = "";
+ "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "";
+ "CODE_SIGN_IDENTITY[sdk=watchos*]" = "";
+ CURRENT_PROJECT_VERSION = 1;
+ DEFINES_MODULE = YES;
+ DYLIB_COMPATIBILITY_VERSION = 1;
+ DYLIB_CURRENT_VERSION = 1;
+ DYLIB_INSTALL_NAME_BASE = "@rpath";
+ ENABLE_MODULE_VERIFIER = NO;
+ ENABLE_USER_SCRIPT_SANDBOXING = NO;
+ EXPANDED_CODE_SIGN_IDENTITY = "";
+ INFOPLIST_FILE = "Target Support Files/Pods-DesignToolbox/Pods-DesignToolbox-Info.plist";
+ INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks";
+ LD_RUNPATH_SEARCH_PATHS = (
+ "$(inherited)",
+ "@executable_path/Frameworks",
+ "@loader_path/Frameworks",
+ );
+ MACH_O_TYPE = staticlib;
+ MODULEMAP_FILE = "Target Support Files/Pods-DesignToolbox/Pods-DesignToolbox.modulemap";
+ OTHER_LDFLAGS = "";
+ OTHER_LIBTOOLFLAGS = "";
+ PODS_ROOT = "$(SRCROOT)";
+ PRODUCT_BUNDLE_IDENTIFIER = "org.cocoapods.${PRODUCT_NAME:rfc1034identifier}";
+ PRODUCT_NAME = "$(TARGET_NAME:c99extidentifier)";
+ SDKROOT = iphoneos;
+ SKIP_INSTALL = YES;
+ SWIFT_VERSION = 5;
+ TARGETED_DEVICE_FAMILY = "1,2";
+ VALIDATE_PRODUCT = YES;
+ VERSIONING_SYSTEM = "apple-generic";
+ VERSION_INFO_PREFIX = "";
+ };
+ name = Release;
+ };
+ 4E0BC5C76B43CC963A7C68BC4AE6505B /* Debug */ = {
+ isa = XCBuildConfiguration;
+ baseConfigurationReference = 57BDC9D734A1086E2EDC6B6D8E557FE1 /* SwiftFormat.debug.xcconfig */;
+ buildSettings = {
+ ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon;
+ ASSETCATALOG_COMPILER_GLOBAL_ACCENT_COLOR_NAME = AccentColor;
+ CLANG_ENABLE_OBJC_WEAK = NO;
+ CODE_SIGNING_ALLOWED = NO;
+ CODE_SIGNING_REQUIRED = NO;
+ ENABLE_USER_SCRIPT_SANDBOXING = NO;
+ EXPANDED_CODE_SIGN_IDENTITY = "";
+ LD_RUNPATH_SEARCH_PATHS = (
+ "$(inherited)",
+ "@executable_path/Frameworks",
+ );
+ SDKROOT = iphoneos;
+ SWIFT_VERSION = 5;
+ TARGETED_DEVICE_FAMILY = "1,2";
+ };
+ name = Debug;
+ };
+ 59619FF05234376C3EAC921AE49A2A96 /* Debug */ = {
+ isa = XCBuildConfiguration;
+ baseConfigurationReference = ED482D20A3F2EF0BF6D78F3F998E5D3C /* SwiftLint.debug.xcconfig */;
+ buildSettings = {
+ ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon;
+ ASSETCATALOG_COMPILER_GLOBAL_ACCENT_COLOR_NAME = AccentColor;
+ CLANG_ENABLE_OBJC_WEAK = NO;
+ CODE_SIGNING_ALLOWED = NO;
+ CODE_SIGNING_REQUIRED = NO;
+ ENABLE_USER_SCRIPT_SANDBOXING = NO;
+ EXPANDED_CODE_SIGN_IDENTITY = "";
+ LD_RUNPATH_SEARCH_PATHS = (
+ "$(inherited)",
+ "@executable_path/Frameworks",
+ );
+ SDKROOT = iphoneos;
+ SWIFT_VERSION = 5;
+ TARGETED_DEVICE_FAMILY = "1,2";
+ };
+ name = Debug;
+ };
+ 90D4D09BCB6A4660E43ACBE9ECB6FE9A /* Debug */ = {
+ isa = XCBuildConfiguration;
+ buildSettings = {
+ ALWAYS_SEARCH_USER_PATHS = NO;
+ CLANG_ANALYZER_LOCALIZABILITY_NONLOCALIZED = YES;
+ CLANG_ANALYZER_NONNULL = YES;
+ CLANG_ANALYZER_NUMBER_OBJECT_CONVERSION = YES_AGGRESSIVE;
+ CLANG_CXX_LANGUAGE_STANDARD = "gnu++14";
+ CLANG_CXX_LIBRARY = "libc++";
+ CLANG_ENABLE_MODULES = YES;
+ CLANG_ENABLE_OBJC_ARC = YES;
+ CLANG_ENABLE_OBJC_WEAK = YES;
+ CLANG_WARN_BLOCK_CAPTURE_AUTORELEASING = YES;
+ CLANG_WARN_BOOL_CONVERSION = YES;
+ CLANG_WARN_COMMA = YES;
+ CLANG_WARN_CONSTANT_CONVERSION = YES;
+ CLANG_WARN_DEPRECATED_OBJC_IMPLEMENTATIONS = YES;
+ CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR;
+ CLANG_WARN_DOCUMENTATION_COMMENTS = YES;
+ CLANG_WARN_EMPTY_BODY = YES;
+ CLANG_WARN_ENUM_CONVERSION = YES;
+ CLANG_WARN_INFINITE_RECURSION = YES;
+ CLANG_WARN_INT_CONVERSION = YES;
+ CLANG_WARN_NON_LITERAL_NULL_CONVERSION = YES;
+ CLANG_WARN_OBJC_IMPLICIT_RETAIN_SELF = YES;
+ CLANG_WARN_OBJC_LITERAL_CONVERSION = YES;
+ CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR;
+ CLANG_WARN_QUOTED_INCLUDE_IN_FRAMEWORK_HEADER = YES;
+ CLANG_WARN_RANGE_LOOP_ANALYSIS = YES;
+ CLANG_WARN_STRICT_PROTOTYPES = YES;
+ CLANG_WARN_SUSPICIOUS_MOVE = YES;
+ CLANG_WARN_UNGUARDED_AVAILABILITY = YES_AGGRESSIVE;
+ CLANG_WARN_UNREACHABLE_CODE = YES;
+ CLANG_WARN__DUPLICATE_METHOD_MATCH = YES;
+ COPY_PHASE_STRIP = NO;
+ DEAD_CODE_STRIPPING = YES;
+ DEBUG_INFORMATION_FORMAT = dwarf;
+ ENABLE_STRICT_OBJC_MSGSEND = YES;
+ ENABLE_TESTABILITY = YES;
+ GCC_C_LANGUAGE_STANDARD = gnu11;
+ GCC_DYNAMIC_NO_PIC = NO;
+ GCC_NO_COMMON_BLOCKS = YES;
+ GCC_OPTIMIZATION_LEVEL = 0;
+ GCC_PREPROCESSOR_DEFINITIONS = (
+ "POD_CONFIGURATION_DEBUG=1",
+ "DEBUG=1",
+ "$(inherited)",
+ );
+ GCC_WARN_64_TO_32_BIT_CONVERSION = YES;
+ GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR;
+ GCC_WARN_UNDECLARED_SELECTOR = YES;
+ GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE;
+ GCC_WARN_UNUSED_FUNCTION = YES;
+ GCC_WARN_UNUSED_VARIABLE = YES;
+ IPHONEOS_DEPLOYMENT_TARGET = 15.0;
+ MTL_ENABLE_DEBUG_INFO = INCLUDE_SOURCE;
+ MTL_FAST_MATH = YES;
+ ONLY_ACTIVE_ARCH = YES;
+ PRODUCT_NAME = "$(TARGET_NAME)";
+ STRIP_INSTALLED_PRODUCT = NO;
+ SWIFT_ACTIVE_COMPILATION_CONDITIONS = DEBUG;
+ SWIFT_OPTIMIZATION_LEVEL = "-Onone";
+ SWIFT_VERSION = 5.0;
+ SYMROOT = "${SRCROOT}/../build";
+ };
+ name = Debug;
+ };
+ 9553C89E183877A5CB2F3C6801BEC129 /* Release */ = {
+ isa = XCBuildConfiguration;
+ buildSettings = {
+ ALWAYS_SEARCH_USER_PATHS = NO;
+ CLANG_ANALYZER_LOCALIZABILITY_NONLOCALIZED = YES;
+ CLANG_ANALYZER_NONNULL = YES;
+ CLANG_ANALYZER_NUMBER_OBJECT_CONVERSION = YES_AGGRESSIVE;
+ CLANG_CXX_LANGUAGE_STANDARD = "gnu++14";
+ CLANG_CXX_LIBRARY = "libc++";
+ CLANG_ENABLE_MODULES = YES;
+ CLANG_ENABLE_OBJC_ARC = YES;
+ CLANG_ENABLE_OBJC_WEAK = YES;
+ CLANG_WARN_BLOCK_CAPTURE_AUTORELEASING = YES;
+ CLANG_WARN_BOOL_CONVERSION = YES;
+ CLANG_WARN_COMMA = YES;
+ CLANG_WARN_CONSTANT_CONVERSION = YES;
+ CLANG_WARN_DEPRECATED_OBJC_IMPLEMENTATIONS = YES;
+ CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR;
+ CLANG_WARN_DOCUMENTATION_COMMENTS = YES;
+ CLANG_WARN_EMPTY_BODY = YES;
+ CLANG_WARN_ENUM_CONVERSION = YES;
+ CLANG_WARN_INFINITE_RECURSION = YES;
+ CLANG_WARN_INT_CONVERSION = YES;
+ CLANG_WARN_NON_LITERAL_NULL_CONVERSION = YES;
+ CLANG_WARN_OBJC_IMPLICIT_RETAIN_SELF = YES;
+ CLANG_WARN_OBJC_LITERAL_CONVERSION = YES;
+ CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR;
+ CLANG_WARN_QUOTED_INCLUDE_IN_FRAMEWORK_HEADER = YES;
+ CLANG_WARN_RANGE_LOOP_ANALYSIS = YES;
+ CLANG_WARN_STRICT_PROTOTYPES = YES;
+ CLANG_WARN_SUSPICIOUS_MOVE = YES;
+ CLANG_WARN_UNGUARDED_AVAILABILITY = YES_AGGRESSIVE;
+ CLANG_WARN_UNREACHABLE_CODE = YES;
+ CLANG_WARN__DUPLICATE_METHOD_MATCH = YES;
+ COPY_PHASE_STRIP = NO;
+ DEAD_CODE_STRIPPING = YES;
+ DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym";
+ ENABLE_NS_ASSERTIONS = NO;
+ ENABLE_STRICT_OBJC_MSGSEND = YES;
+ GCC_C_LANGUAGE_STANDARD = gnu11;
+ GCC_NO_COMMON_BLOCKS = YES;
+ GCC_PREPROCESSOR_DEFINITIONS = (
+ "POD_CONFIGURATION_RELEASE=1",
+ "$(inherited)",
+ );
+ GCC_WARN_64_TO_32_BIT_CONVERSION = YES;
+ GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR;
+ GCC_WARN_UNDECLARED_SELECTOR = YES;
+ GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE;
+ GCC_WARN_UNUSED_FUNCTION = YES;
+ GCC_WARN_UNUSED_VARIABLE = YES;
+ IPHONEOS_DEPLOYMENT_TARGET = 15.0;
+ MTL_ENABLE_DEBUG_INFO = NO;
+ MTL_FAST_MATH = YES;
+ PRODUCT_NAME = "$(TARGET_NAME)";
+ STRIP_INSTALLED_PRODUCT = NO;
+ SWIFT_COMPILATION_MODE = wholemodule;
+ SWIFT_OPTIMIZATION_LEVEL = "-O";
+ SWIFT_VERSION = 5.0;
+ SYMROOT = "${SRCROOT}/../build";
+ };
+ name = Release;
+ };
+ B0223E6777BE4C41327BF3E6961E3AE0 /* Debug */ = {
+ isa = XCBuildConfiguration;
+ baseConfigurationReference = B3795ABE948D6B3B4C50C04B7DCD3DFE /* Pods-DesignToolbox.debug.xcconfig */;
+ buildSettings = {
+ ALWAYS_EMBED_SWIFT_STANDARD_LIBRARIES = NO;
+ CLANG_ENABLE_OBJC_WEAK = NO;
+ CODE_SIGNING_ALLOWED = NO;
+ CODE_SIGNING_REQUIRED = NO;
+ "CODE_SIGN_IDENTITY[sdk=appletvos*]" = "";
+ "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "";
+ "CODE_SIGN_IDENTITY[sdk=watchos*]" = "";
+ CURRENT_PROJECT_VERSION = 1;
+ DEFINES_MODULE = YES;
+ DYLIB_COMPATIBILITY_VERSION = 1;
+ DYLIB_CURRENT_VERSION = 1;
+ DYLIB_INSTALL_NAME_BASE = "@rpath";
+ ENABLE_MODULE_VERIFIER = NO;
+ ENABLE_USER_SCRIPT_SANDBOXING = NO;
+ EXPANDED_CODE_SIGN_IDENTITY = "";
+ INFOPLIST_FILE = "Target Support Files/Pods-DesignToolbox/Pods-DesignToolbox-Info.plist";
+ INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks";
+ LD_RUNPATH_SEARCH_PATHS = (
+ "$(inherited)",
+ "@executable_path/Frameworks",
+ "@loader_path/Frameworks",
+ );
+ MACH_O_TYPE = staticlib;
+ MODULEMAP_FILE = "Target Support Files/Pods-DesignToolbox/Pods-DesignToolbox.modulemap";
+ OTHER_LDFLAGS = "";
+ OTHER_LIBTOOLFLAGS = "";
+ PODS_ROOT = "$(SRCROOT)";
+ PRODUCT_BUNDLE_IDENTIFIER = "org.cocoapods.${PRODUCT_NAME:rfc1034identifier}";
+ PRODUCT_NAME = "$(TARGET_NAME:c99extidentifier)";
+ SDKROOT = iphoneos;
+ SKIP_INSTALL = YES;
+ SWIFT_VERSION = 5;
+ TARGETED_DEVICE_FAMILY = "1,2";
+ VERSIONING_SYSTEM = "apple-generic";
+ VERSION_INFO_PREFIX = "";
+ };
+ name = Debug;
+ };
+ B41F2061B5EE00C909CFCC336B48FC73 /* Release */ = {
+ isa = XCBuildConfiguration;
+ baseConfigurationReference = 085F1E7EC2C800801564BAC6A1CCF8E0 /* SwiftFormat.release.xcconfig */;
+ buildSettings = {
+ ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon;
+ ASSETCATALOG_COMPILER_GLOBAL_ACCENT_COLOR_NAME = AccentColor;
+ CLANG_ENABLE_OBJC_WEAK = NO;
+ CODE_SIGNING_ALLOWED = NO;
+ CODE_SIGNING_REQUIRED = NO;
+ ENABLE_USER_SCRIPT_SANDBOXING = NO;
+ EXPANDED_CODE_SIGN_IDENTITY = "";
+ LD_RUNPATH_SEARCH_PATHS = (
+ "$(inherited)",
+ "@executable_path/Frameworks",
+ );
+ SDKROOT = iphoneos;
+ SWIFT_VERSION = 5;
+ TARGETED_DEVICE_FAMILY = "1,2";
+ VALIDATE_PRODUCT = YES;
+ };
+ name = Release;
+ };
+ D834AEAA334DEA04A1BF19DFA0DD207F /* Release */ = {
+ isa = XCBuildConfiguration;
+ baseConfigurationReference = 2B5810D5C227D57CF24E64C3880097BB /* SwiftLint.release.xcconfig */;
+ buildSettings = {
+ ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon;
+ ASSETCATALOG_COMPILER_GLOBAL_ACCENT_COLOR_NAME = AccentColor;
+ CLANG_ENABLE_OBJC_WEAK = NO;
+ CODE_SIGNING_ALLOWED = NO;
+ CODE_SIGNING_REQUIRED = NO;
+ ENABLE_USER_SCRIPT_SANDBOXING = NO;
+ EXPANDED_CODE_SIGN_IDENTITY = "";
+ LD_RUNPATH_SEARCH_PATHS = (
+ "$(inherited)",
+ "@executable_path/Frameworks",
+ );
+ SDKROOT = iphoneos;
+ SWIFT_VERSION = 5;
+ TARGETED_DEVICE_FAMILY = "1,2";
+ VALIDATE_PRODUCT = YES;
+ };
+ name = Release;
+ };
+/* End XCBuildConfiguration section */
+
+/* Begin XCConfigurationList section */
+ 0B739B5955981491ED084D8778856435 /* Build configuration list for PBXNativeTarget "Pods-DesignToolbox" */ = {
+ isa = XCConfigurationList;
+ buildConfigurations = (
+ B0223E6777BE4C41327BF3E6961E3AE0 /* Debug */,
+ 22C8D3B11C481C308D92D232C716ADCB /* Release */,
+ );
+ defaultConfigurationIsVisible = 0;
+ defaultConfigurationName = Release;
+ };
+ 4821239608C13582E20E6DA73FD5F1F9 /* Build configuration list for PBXProject "Pods" */ = {
+ isa = XCConfigurationList;
+ buildConfigurations = (
+ 90D4D09BCB6A4660E43ACBE9ECB6FE9A /* Debug */,
+ 9553C89E183877A5CB2F3C6801BEC129 /* Release */,
+ );
+ defaultConfigurationIsVisible = 0;
+ defaultConfigurationName = Release;
+ };
+ 6B2B7DF197DF6A7CA487150557230A41 /* Build configuration list for PBXAggregateTarget "SwiftFormat" */ = {
+ isa = XCConfigurationList;
+ buildConfigurations = (
+ 4E0BC5C76B43CC963A7C68BC4AE6505B /* Debug */,
+ B41F2061B5EE00C909CFCC336B48FC73 /* Release */,
+ );
+ defaultConfigurationIsVisible = 0;
+ defaultConfigurationName = Release;
+ };
+ AE7B4FB01588B9E6DF09CB79FC7CE7BD /* Build configuration list for PBXAggregateTarget "SwiftLint" */ = {
+ isa = XCConfigurationList;
+ buildConfigurations = (
+ 59619FF05234376C3EAC921AE49A2A96 /* Debug */,
+ D834AEAA334DEA04A1BF19DFA0DD207F /* Release */,
+ );
+ defaultConfigurationIsVisible = 0;
+ defaultConfigurationName = Release;
+ };
+/* End XCConfigurationList section */
+ };
+ rootObject = BFDFE7DC352907FC980B868725387E98 /* Project object */;
+}
diff --git a/DesignToolbox/Pods/Pods.xcodeproj/xcuserdata/xhrs0459.xcuserdatad/xcschemes/Pods-DesignToolbox.xcscheme b/DesignToolbox/Pods/Pods.xcodeproj/xcuserdata/xhrs0459.xcuserdatad/xcschemes/Pods-DesignToolbox.xcscheme
new file mode 100644
index 0000000000..f2e1bd8f17
--- /dev/null
+++ b/DesignToolbox/Pods/Pods.xcodeproj/xcuserdata/xhrs0459.xcuserdatad/xcschemes/Pods-DesignToolbox.xcscheme
@@ -0,0 +1,58 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/DesignToolbox/Pods/Pods.xcodeproj/xcuserdata/xhrs0459.xcuserdatad/xcschemes/SwiftFormat.xcscheme b/DesignToolbox/Pods/Pods.xcodeproj/xcuserdata/xhrs0459.xcuserdatad/xcschemes/SwiftFormat.xcscheme
new file mode 100644
index 0000000000..f600915a7e
--- /dev/null
+++ b/DesignToolbox/Pods/Pods.xcodeproj/xcuserdata/xhrs0459.xcuserdatad/xcschemes/SwiftFormat.xcscheme
@@ -0,0 +1,58 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/DesignToolbox/Pods/Pods.xcodeproj/xcuserdata/xhrs0459.xcuserdatad/xcschemes/SwiftLint.xcscheme b/DesignToolbox/Pods/Pods.xcodeproj/xcuserdata/xhrs0459.xcuserdatad/xcschemes/SwiftLint.xcscheme
new file mode 100644
index 0000000000..962a10bfe5
--- /dev/null
+++ b/DesignToolbox/Pods/Pods.xcodeproj/xcuserdata/xhrs0459.xcuserdatad/xcschemes/SwiftLint.xcscheme
@@ -0,0 +1,58 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/DesignToolbox/Pods/SwiftFormat/CommandLineTool/swiftformat b/DesignToolbox/Pods/SwiftFormat/CommandLineTool/swiftformat
new file mode 100755
index 0000000000..0915e92ccc
Binary files /dev/null and b/DesignToolbox/Pods/SwiftFormat/CommandLineTool/swiftformat differ
diff --git a/DesignToolbox/Pods/SwiftFormat/LICENSE.md b/DesignToolbox/Pods/SwiftFormat/LICENSE.md
new file mode 100755
index 0000000000..6fc7a2cecb
--- /dev/null
+++ b/DesignToolbox/Pods/SwiftFormat/LICENSE.md
@@ -0,0 +1,21 @@
+MIT License
+
+Copyright (c) 2016 Nick Lockwood
+
+Permission is hereby granted, free of charge, to any person obtaining a copy
+of this software and associated documentation files (the "Software"), to deal
+in the Software without restriction, including without limitation the rights
+to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
+copies of the Software, and to permit persons to whom the Software is
+furnished to do so, subject to the following conditions:
+
+The above copyright notice and this permission notice shall be included in all
+copies or substantial portions of the Software.
+
+THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
+IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
+FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
+AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
+LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
+OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
+SOFTWARE.
diff --git a/DesignToolbox/Pods/SwiftFormat/README.md b/DesignToolbox/Pods/SwiftFormat/README.md
new file mode 100644
index 0000000000..fd0e140fdf
--- /dev/null
+++ b/DesignToolbox/Pods/SwiftFormat/README.md
@@ -0,0 +1,1012 @@
+
+
+[](https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick&hosted_button_id=9ZGWNK5FEZFF6&source=url)
+[](https://github.com/nicklockwood/SwiftFormat/actions/workflows/build.yml)
+[](https://codecov.io/gh/nicklockwood/SwiftFormat)
+[](https://developer.apple.com/swift)
+[](https://opensource.org/licenses/MIT)
+[](https://mastodon.social/@nicklockwood)
+
+Table of Contents
+-----------------
+
+- [What?](#what-is-this)
+- [Why?](#why-would-i-want-to-do-that)
+- [How?](#how-do-i-install-it)
+ - [Command-line tool](#command-line-tool)
+ - [Xcode source editor extension](#xcode-source-editor-extension)
+ - [Xcode build phase](#xcode-build-phase)
+ - [Swift Package Manager plugin](#swift-package-manager-plugin)
+ - [Via Applescript](#via-applescript)
+ - [VSCode plugin](#vscode-plugin)
+ - [Sublime Text plugin](#sublime-text-plugin)
+ - [Nova plugin](nova-plugin)
+ - [Git pre-commit hook](#git-pre-commit-hook)
+ - [GitHub Actions](#github-actions)
+ - [On CI using Danger](#on-ci-using-danger)
+ - [Bazel build](#bazel-build)
+ - [Docker](#docker)
+- [Configuration](#configuration)
+ - [Options](#options)
+ - [Rules](#rules)
+ - [Swift version](#swift-version)
+ - [Config file](#config-file)
+ - [Globs](#globs)
+ - [Linting](#linting)
+ - [Error codes](#error-codes)
+ - [Cache](#cache)
+ - [File headers](#file-headers)
+- [FAQ](#faq)
+- [Known issues](#known-issues)
+- [Tip Jar](#tip-jar)
+- [Credits](#credits)
+
+
+What is this?
+----------------
+
+SwiftFormat is a code library and command-line tool for reformatting Swift code on macOS, Linux or Windows.
+
+SwiftFormat goes above and beyond what you might expect from a code formatter. In addition to adjusting white space it can insert or remove implicit `self`, remove redundant parentheses, and correct many other deviations from the standard Swift idioms.
+
+
+Why would I want to do that?
+-----------------------------
+
+Many programmers have a preferred style for formatting their code, and others seem entirely blind to the existing formatting conventions of a project (to the enragement of their colleagues).
+
+When collaborating on a project, it can be helpful to agree on a common coding style, but enforcing that manually is tedious and error-prone, and can lead to arguments if some participants take it more seriously than others.
+
+Having a tool to automatically enforce a common style eliminates those issues, and lets you focus on the behavior of the code, not its presentation.
+
+
+How do I install it?
+---------------------
+
+That depends - There are several ways you can use SwiftFormat:
+
+1. As a command-line tool that you run manually, or as part of some other toolchain
+2. As a Source Editor Extension that you can invoke via the Editor > SwiftFormat menu within Xcode
+3. As a build phase in your Xcode project, so that it runs every time you press Cmd-R or Cmd-B, or
+4. As a Git pre-commit hook, so that it runs on any files you've changed before you check them in
+
+
+Command-line tool
+-------------------
+
+**NOTE:** if you are using any of the following methods to install SwiftFormat on macOS 10.14.3 or earlier and are experiencing a crash on launch, you may need to install the [Swift 5 Runtime Support for Command Line Tools](https://support.apple.com/kb/DL1998). See [known issues](#known-issues) for details.
+
+**Installation:**
+
+You can install the `swiftformat` command-line tool on macOS or Linux using [Homebrew](http://brew.sh/). Assuming you already have Homebrew installed, just type:
+
+```bash
+$ brew install swiftformat
+```
+
+To update to the latest version once installed:
+
+```bash
+$ brew upgrade swiftformat
+```
+
+Alternatively, you can install the tool on macOS or Linux by using [Mint](https://github.com/yonaskolb/Mint) as follows:
+
+```bash
+$ mint install nicklockwood/SwiftFormat
+```
+
+Or if you prefer, you can check out and build SwiftFormat manually on macOS, Linux or Windows as follows:
+
+```bash
+$ git clone https://github.com/nicklockwood/SwiftFormat
+$ cd SwiftFormat
+$ swift build -c release
+```
+
+If you are installing SwiftFormat into your project directory, you can use [CocoaPods](https://cocoapods.org/) on macOS to automatically install the swiftformat binary along with your other pods - see the Xcode build phase instructions below for details.
+
+Another option is to include the binary artifactbundle in your `Package.swift`:
+
+```swift
+.binaryTarget(
+ name: "swiftformat",
+ url: "https://github.com/nicklockwood/SwiftFormat/releases/download/0.55.0/swiftformat-macos.artifactbundle.zip",
+ checksum: "CHECKSUM"
+),
+```
+
+If you would prefer not to use a package manager, you can build the command-line app manually:
+
+1. open `SwiftFormat.xcodeproj` and build the `SwiftFormat (Application)` scheme.
+
+2. Drag the `swiftformat` binary into `/usr/local/bin/` (this is a hidden folder, but you can use the Finder's `Go > Go to Folder...` menu to open it).
+
+3. Open `~/.bash_profile` in your favorite text editor (this is a hidden file, but you can type `open ~/.bash_profile` in the terminal to open it).
+
+4. Add the following line to the file: `alias swiftformat="/usr/local/bin/swiftformat --indent 4"` (you can omit the `--indent 4`, or replace it with something else. Run `swiftformat --help` to see the available options).
+
+5. Save the `.bash_profile` file and run the command `source ~/.bash_profile` for the changes to take effect.
+
+**Usage:**
+
+If you followed the installation instructions above, you can now just type
+
+```bash
+$ swiftformat .
+```
+
+(that's a space and then a period after the command) in the terminal to format any Swift files in the current directory. In place of the `.`, you can instead type an absolute or relative path to the file or directory that you want to format.
+
+**WARNING:** `swiftformat .` will overwrite any Swift files it finds in the current directory, and any subfolders therein. If you run it in your home directory, it will probably reformat every Swift file on your hard drive.
+
+To use it safely, do the following:
+
+1. Choose a file or directory that you want to apply the changes to.
+
+2. Make sure that you have committed all your changes to that code safely in git (or whatever source control system you use).
+
+3. (Optional) In Terminal, type `swiftformat --inferoptions "/path/to/your/code/"`. This will suggest a set of formatting options to use that match your existing project style (but you are free to ignore these and use the defaults, or your own settings if you prefer).
+
+ The path can point to either a single Swift file or a directory of files. It can be either be absolute, or relative to the current directory. The `""` quotes around the path are optional, but if the path contains spaces then you either need to use quotes, or escape each space with `\`. You may include multiple paths separated by spaces.
+
+4. In Terminal, type `swiftformat "/path/to/your/code/"`. The same rules apply as above with respect to paths, and multiple space-delimited paths are allowed.
+
+ If you used `--inferoptions` to generate a suggested set of options in step 3, you should copy and paste them into the command, either before or after the path(s) to your source files.
+
+ If you have created a [config file](#config-file), you can specify its path using `--config "/path/to/your/config-file/"`. Alternatively, if you name the file `.swiftformat` and place it inside the project you are formatting, it will be picked up automatically.
+
+5. Press enter to begin formatting. Once the formatting is complete, use your source control system to check the changes, and verify that no undesirable changes have been introduced. If they have, revert the changes, tweak the options and try again.
+
+6. (Optional) commit the changes.
+
+Following these instructions *should* ensure that you avoid catastrophic data loss, but in the unlikely event that it wipes your hard drive, **please note that I accept no responsibility**.
+
+**Using Standard Input/Output:**
+
+If you prefer, you can use unix pipes to include SwiftFormat as part of a command chain. For example, this is an alternative way to format a file:
+
+```bash
+$ cat /path/to/file.swift | swiftformat --output /path/to/file.swift
+```
+
+Omitting the `--output /path/to/file.swift` will print the formatted file to Standard Output (stdout). You can also pass "stdout" explicitly as the output path:
+
+```bash
+$ cat /path/to/file.swift | swiftformat --output stdout
+```
+
+Or you can use `>` to specify the output path as follows:
+
+```bash
+$ cat /path/to/file.swift | swiftformat > /path/to/file.swift
+```
+
+If you do not supply an input file, SwiftFormat will automatically take its input from Standard Input (stdin), but will time-out if no input is received immediately and display the help screen. To make it explicit, pass "stdin" as the input path:
+
+```bash
+$ cat /path/to/file.swift | swiftformat stdin
+```
+
+When using stdin, SwiftFormat does not have access to the file path of the input, so features that rely on the file location (such as inserting the creation date into header comments, or detecting `.swiftformat` configuration files in the file path) will not work. To solve this, you can provide the file path using the `--stdinpath` argument:
+
+```bash
+$ cat /path/to/file.swift | swiftformat stdin --stdinpath /path/to/file.swift
+```
+
+
+Xcode source editor extension
+-----------------------------
+
+**Installation:**
+
+Like the command-line tool, you can install the SwiftFormat for Xcode extension application via [Homebrew](http://brew.sh/). Assuming you already have Homebrew installed, type:
+
+```bash
+$ brew install --cask swiftformat-for-xcode
+```
+
+This will install SwiftFormat for Xcode in your Applications folder. Double-click the app to launch it, and then follow the on-screen instructions.
+
+**NOTE:** The app should be correctly signed, but if you get a Gatekeeper warning when trying to open it you can bypass this by right-clicking (or control-clicking) the app and selecting `Open`.
+
+To update to the latest version once installed use:
+
+```bash
+$ brew upgrade --cask swiftformat-for-xcode
+```
+
+Alternatively, if you prefer not to use Homebrew, you'll find the latest version of the SwiftFormat for Xcode application on the [GitHub Releases](https://github.com/nicklockwood/SwiftFormat/releases) page. Download and unpack the zip archive, then drag `SwiftFormat for Xcode.app` into your `Applications` folder.
+
+**Usage:**
+
+Once you have launched the app and restarted Xcode, you'll find a SwiftFormat option under Xcode's Editor menu. If the SwiftFormat menu does not appear [this thread](https://github.com/nicklockwood/SwiftFormat/issues/494) may help.
+
+You can configure the formatting [rules](#rules) and [options](#options) using the SwiftFormat for Xcode host application. There is currently no way to override these per-project, however, you can import and export different configurations using the File menu. You will need to do this again each time you switch projects.
+
+The format of the configuration file is described in the [Config section](#config-file) below.
+
+**Note:** SwiftFormat for Xcode cannot automatically detect changes to an imported configuration file. If you update the `.swiftformat` file for your project, you will need to manually re-import that file into SwiftFormat for Xcode in order for the Xcode source editor extension to use the new configuration.
+
+
+Xcode build phase
+-------------------
+
+**NOTE:** Adding this script will overwrite your source files as you work on them, which has the annoying side-effect of clearing the undo history. You may wish to add the script to your test target rather than your main target, so that it is invoked only when you run the unit tests, and not every time you build the app.
+
+Alternatively, you might want to consider running SwiftFormat in [lint](#linting) mode as part of your normal build, and then running a formatting pass manually, or as part of a less-frequent build target (such as the tests).
+
+### Using Swift Package Manager
+
+To set up SwiftFormat as an Xcode build phase, do the following:
+
+#### 1) Create a BuildTools folder and Package.swift
+
+1. Create a folder called `BuildTools` in the same folder as your xcodeproj file
+2. In this folder, create a file called `Package.swift`, with the following contents:
+```swift
+// swift-tools-version:5.1
+import PackageDescription
+
+let package = Package(
+ name: "BuildTools",
+ platforms: [.macOS(.v10_11)],
+ dependencies: [
+ .package(url: "https://github.com/nicklockwood/SwiftFormat", from: "0.55.0"),
+ ],
+ targets: [.target(name: "BuildTools", path: "")]
+)
+```
+3. If you are running Xcode 11.4 or later, in the `BuildTools` folder create a file called `Empty.swift` with nothing in it. This is to satisfy a change in Swift Package Manager.
+
+#### 2) Add a Build phase to your app target
+
+1. Click on your project in the file list, choose your target under `TARGETS`, click the `Build Phases` tab
+2. Add a `New Run Script Phase` by clicking the little plus icon in the top left
+3. Uncheck the `Based on dependency analysis` checkbox
+4. Drag the new `Run Script` phase **above** the `Compile Sources` phase, expand it and paste the following script:
+
+ ```bash
+ cd BuildTools
+ SDKROOT=(xcrun --sdk macosx --show-sdk-path)
+ #swift package update #Uncomment this line temporarily to update the version used to the latest matching your BuildTools/Package.swift file
+ swift run -c release swiftformat "$SRCROOT"
+ ```
+
+You can also use `swift run -c release --package-path BuildTools swiftformat "$SRCROOT"` if you need a more complex script and `cd BuildTools` breaks stuff.
+
+**NOTE:** You may wish to check BuildTools/Package.swift into your source control so that the version used by your run-script phase is kept in version control. It is recommended to add the following to your .gitignore file: `BuildTools/.build` and `BuildTools/.swiftpm`.
+
+**NOTE (2):** If you are using Xcode 15 or later, make sure that the `ENABLE_USER_SCRIPT_SANDBOXING` (aka "User Script Sandboxing") option is set to NO, otherwise SwiftFormat won't be able to run correctly.
+
+### Using CocoaPods
+
+#### 1) Add the SwiftFormat CLI to your Podfile
+
+1. Add the `swiftformat` binary to your project directory via [CocoaPods](https://cocoapods.org/), by adding the following line to your Podfile then running `pod install`:
+
+ ```ruby
+ pod 'SwiftFormat/CLI', '~> 0.55'
+ ```
+
+**NOTE:** This will only install the pre-built command-line app, not the source code for the SwiftFormat framework.
+
+**NOTE (2):** When installing this way, GateKeeper may block swiftformat from running until you open it manually the first time by right-clicking in the Finder and selecting "Open".
+
+#### 2) Add a Build phase to your app target
+
+1. Click on your project in the file list, choose your target under `TARGETS`, click the `Build Phases` tab
+2. Add a `New Run Script Phase` by clicking the little plus icon in the top left
+3. Uncheck the `Based on dependency analysis` checkbox
+4. Drag the new `Run Script` phase **above** the `Compile Sources` phase, expand it and paste the following script:
+
+ ```bash
+ "${PODS_ROOT}/SwiftFormat/CommandLineTool/swiftformat" "$SRCROOT"
+ ```
+
+### Alternative: Locally installed SwiftFormat
+
+Alternatively, you could use a locally installed swiftformat command-line tool instead by putting the following in your Run Script build phase:
+
+```bash
+if which swiftformat >/dev/null; then
+ swiftformat .
+else
+ echo "warning: SwiftFormat not installed, download from https://github.com/nicklockwood/SwiftFormat"
+fi
+```
+
+This is not recommended for shared projects however, as different team members using different versions of SwiftFormat may result in noise in the commit history as code gets reformatted inconsistently.
+
+If you installed SwiftFormat via Homebrew on Apple Silicon, you might experience this warning:
+
+> warning: SwiftFormat not installed, download from https://github.com/nicklockwood/SwiftFormat
+
+That is because Homebrew on Apple Silicon installs the binaries into the `/opt/homebrew/bin`
+folder by default. To instruct Xcode where to find SwiftFormat, you can either add
+`/opt/homebrew/bin` to the `PATH` environment variable in your build phase
+
+```bash
+if [[ "$(uname -m)" == arm64 ]]; then
+ export PATH="/opt/homebrew/bin:$PATH"
+fi
+
+if which swiftformat > /dev/null; then
+ swiftformat .
+else
+ echo "warning: SwiftFormat not installed, download from https://github.com/nicklockwood/SwiftFormat"
+fi
+```
+
+or you can create a symbolic link in `/usr/local/bin` pointing to the actual binary:
+
+```bash
+ln -s /opt/homebrew/bin/swiftformat /usr/local/bin/swiftformat
+```
+
+Swift Package Manager plugin
+-----------------------------
+
+You can use `SwiftFormat` as a SwiftPM command plugin.
+
+**NOTE:** Swift 5.6 or higher is required. Add the package to your dependencies in your `Package.swift` file.
+
+```swift
+dependencies: [
+ // ...
+ .package(url: "https://github.com/nicklockwood/SwiftFormat", from: "0.55.0"),
+]
+```
+
+The plugin will find an existing `.swiftformat` in your package root folder and honor it automatically.
+
+### Trigger Plugin From Command-Line
+
+```bash
+swift package plugin --allow-writing-to-package-directory swiftformat
+```
+
+You can limit the formatting to a particular target with `--target` option.
+
+You can also specify `SwiftFormat` arguments, e.g. `--swiftversion`.
+
+Example
+
+```bash
+swift package plugin --allow-writing-to-package-directory swiftformat --target MyLibrary --swiftversion 5.6 --verbose
+```
+
+### Trigger Plugin From Xcode
+
+In Xcode 14 you can trigger the command plugin execution for a Swift package or an Xcode project.
+
+For an Xcode project the project's main directory will be processed and the `--target` option will be ignored.
+
+You can also specify `SwiftFormat` arguments, e.g. `--swiftversion`.
+
+
+
+Via AppleScript
+----------------
+
+To run SwiftFormat on the frontmost Xcode document (project or workspace) you can use the following AppleScript:
+
+```applescript
+tell application "Xcode"
+ set frontWindow to the first window
+ set myPath to path of document of frontWindow
+ do shell script "cd " & myPath & ";cd ..; /usr/local/bin/swiftformat ."
+end tell
+```
+
+Some Apps you can trigger this from are [BetterTouchTool](https://folivora.ai), [Alfred](https://www.alfredapp.com) or [Keyboard Maestro](https://www.keyboardmaestro.com/main/). Another option is to define a QuickAction for Xcode via Automator and then assign a keyboard shortcut for it in the System Preferences.
+
+
+VSCode plugin
+--------------
+
+If you prefer to use Microsoft's [VSCode](https://code.visualstudio.com) editor for writing Swift, [Valentin Knabel](https://github.com/vknabel) has created a [VSCode plugin](https://marketplace.visualstudio.com/items?itemName=vknabel.vscode-swiftformat) for SwiftFormat.
+
+
+Sublime Text plugin
+--------------------
+
+If you prefer to use the [Sublime Text](https://www.sublimetext.com) editor, try the [Sublime-Swift-Format plugin](https://github.com/aerobounce/Sublime-Swift-Format) by [Aerobounce](https://github.com/aerobounce).
+
+
+Nova plugin
+-----------
+
+If you prefer to use the [Nova](https://panic.com/nova) editor, try the [SwiftFormat extension](https://extensions.panic.com/extensions/org.padraig/org.padraig.SwiftFormat/) by [Pádraig Ó Cinnéide](https://mastodon.social/@PadraigOCinneide).
+
+
+Git pre-commit hook
+---------------------
+
+1. Follow the instructions for installing the SwiftFormat command-line tool.
+
+2. Install [git-format-staged](https://github.com/hallettj/git-format-staged).
+
+3. Edit or create a `.git/hooks/pre-commit` file in your project folder. The .git folder is hidden but should already exist if you are using Git with your project, so open it with the terminal, or the Finder's `Go > Go to Folder...` menu.
+
+4. Add the following line in the pre-commit file. The `{}` will be replaced automatically by the path to the Swift file being formatted:
+
+ ```bash
+ #!/bin/bash
+ git-format-staged --formatter "swiftformat stdin --stdinpath '{}'" "*.swift"
+ ```
+
+ (Note that this example uses your locally installed version of SwiftFormat, not a separate copy in your project repository. You can replace `swiftformat` with the path to a copy inside your project if you prefer.)
+
+5. enable the hook by typing `chmod +x .git/hooks/pre-commit` in the terminal.
+
+The pre-commit hook will now run whenever you run `git commit`. Running `git commit --no-verify` will skip the pre-commit hook.
+
+**NOTE:** If you are using Git via a GUI client such as [Tower](https://www.git-tower.com), [additional steps](https://www.git-tower.com/help/mac/faq-and-tips/faq/hook-scripts) may be needed.
+
+**NOTE (2):** Unlike the Xcode build phase approach, git pre-commit hook won't be checked in to source control, and there's no way to guarantee that all users of the project are using the same version of SwiftFormat. For a collaborative project, you might want to consider a *post*-commit hook instead, which would run on your continuous integration server.
+
+GitHub Actions
+---------------------
+
+1. SwiftFormat comes preinstalled on all macOS GitHub-hosted runners. If you are self hosting you will need to ensure SwiftFormat is installed on your runner.
+2. Create a GitHub Actions workflow using SwiftFormat, passing the `--reporter github-actions-log` command line option. The following example action lints pull requests using SwiftFormat, reporting warnings using the GitHub Actions log.
+```yaml
+# Lint.yml
+name: Lint
+on: pull_request
+
+jobs:
+ Lint:
+ runs-on: macos-latest
+ steps:
+ - uses: actions/checkout@v3
+ - name: SwiftFormat
+ run: swiftformat --lint . --reporter github-actions-log
+```
+
+On CI using Danger
+-------------------
+
+To setup SwiftFormat to be used by your continuous integration system using [Danger](http://danger.systems/ruby/), do the following:
+
+1. Follow the [`instructions`](http://danger.systems/guides/getting_started.html) to setup Danger.
+2. Add the [`danger-swiftformat`](https://github.com/garriguv/danger-ruby-swiftformat) plugin to your `Gemfile`.
+3. Add the following to your `Dangerfile`:
+
+ ```ruby
+ swiftformat.binary_path = "/path/to/swiftformat" # optional
+ swiftformat.additional_args = "--indent tab --self insert" # optional
+ swiftformat.check_format(fail_on_error: true)
+ ```
+
+ **NOTE:** It is recommended to add the `swiftformat` binary to your project directory to ensure the same version is used each time (see the [Xcode build phase](#xcode-build-phase) instructions above).
+
+
+Bazel Build
+-----------
+
+If you use [Bazel](https://bazel.build/) to build your Swift projects and want to ensure that only properly formatted code is merged to your main branch, try [rules_swiftformat](https://github.com/cgrindel/rules_swiftformat). The repository contains Bazel rules and macros that format Swift source files using SwiftFormat, test that the formatted files exist in the workspace directory, and copy the formatted files to the workspace directory.
+
+
+Docker
+-----------
+
+SwiftFormat publishes releases into [GitHub Packages](https://github.com/features/packages) Docker registry. To pull the image call:
+
+```bash
+$ docker pull ghcr.io/nicklockwood/swiftformat:latest
+```
+
+By default, the container runs `swiftformat .` Therefore, you need to provide a path either via an argument:
+
+```bash
+docker run --rm -v /local/source/path:/work ghcr.io/nicklockwood/swiftformat:latest /work
+```
+
+or by changing the working dir:
+
+```bash
+docker run --rm -v /local/source/path:/work -w /work ghcr.io/nicklockwood/swiftformat:latest
+```
+
+To check the installed SwiftFormat version:
+
+```bash
+docker run --rm ghcr.io/nicklockwood/swiftformat:latest --version
+```
+
+Linting example:
+
+```bash
+docker run --rm -v /local/source/path:/work ghcr.io/nicklockwood/swiftformat:latest /work --lint
+```
+
+Configuration
+-------------
+
+SwiftFormat's configuration is split between **rules** and **options**. Rules are functions in the SwiftFormat library that apply changes to the code. Options are settings that control the behavior of the rules.
+
+
+Options
+-------
+
+The options available in SwiftFormat can be displayed using the `--options` command-line argument. The default value for each option is indicated in the help text.
+
+Rules are configured by adding `--[option_name] [value]` to your command-line arguments, or by creating a `.swiftformat` [config file](#config-file) and placing it in your project directory.
+
+A given option may affect multiple rules. Use `--ruleinfo [rule_name]` command for details about which options affect a given rule, or see the [Rules.md](https://github.com/nicklockwood/SwiftFormat/blob/main/Rules.md) file.
+
+You can configure options for specific files or code ranges by using `swiftformat:options` directive in comments inside your Swift file. To temporarily set one or more options inside a source file, use:
+
+```swift
+// swiftformat:options --indent 2 --allman true
+```
+
+To apply an options override only to a particular line, use the `:next` modifier:
+
+```swift
+// swiftformat:options:next --semicolons inline
+doTheThing(); print("Did the thing")
+```
+
+
+Rules
+-----
+
+SwiftFormat includes over 50 rules, and new ones are added all the time. An up-to-date list can be found in [Rules.md](https://github.com/nicklockwood/SwiftFormat/blob/main/Rules.md) along with documentation for how they are used.
+
+The list of available rules can be displayed within the command-line app using the `--rules` argument. Rules can be either enabled or disabled. Most are enabled by default. Disabled rules are marked with "(disabled)" when displayed using `--rules`.
+
+You can use the `--ruleinfo [rule_name]` command to get information about a specific rule. Pass a comma-delimited list of rule names to get information for multiple rules at once, or use `--ruleinfo` with no argument for info on all rules.
+
+You can disable rules individually using `--disable` followed by a list of one or more comma-delimited rule names, or enable opt-in rules using `--enable` followed by the rule names:
+
+```bash
+--disable redundantSelf,trailingClosures
+--enable isEmpty
+```
+
+If you prefer, you can use multiple `--enable`/`--disable` arguments instead of using commas:
+
+```bash
+--disable indent
+--disable linebreaks
+--disable redundantSelf
+```
+
+Alternatively, you can use the line continuation character `\` to wrap a single argument over multiple line:
+
+```bash
+--disable \
+ indent, \
+ linebreaks, \
+ redundantSelf
+```
+
+To avoid automatically opting-in to new rules when SwiftFormat is updated, you can disable all rules using:
+
+```bash
+--disable all
+```
+
+And then individually enable just the rules you want. Alternatively, use the`--rules` argument to *only* enable the rules you specify:
+
+```bash
+--rules indent,linebreaks
+```
+
+As above, you may include multiple `--rules` arguments, or use the line continuation character `\` to wrap the rules onto separate lines:
+
+```bash
+--rules redundantSelf
+--rules \
+ indent, \
+ linebreaks
+```
+
+To see exactly which rules were applied to a given file, you can use the `--verbose` command-line option to force SwiftFormat to print a more detailed log as it applies the formatting. **NOTE:** running in verbose mode is slower than the default mode.
+
+You can disable rules for specific files or code ranges by using `swiftformat:` directives in comments inside your Swift file. To temporarily disable one or more rules inside a source file, use:
+
+```swift
+// swiftformat:disable [ [rule<3> ...]]
+```
+
+To enable the rule(s) again, use:
+
+```swift
+// swiftformat:enable [ [rule<3> ...]]
+```
+
+To disable all rules use:
+
+```swift
+// swiftformat:disable all
+```
+
+And to enable them all again, use:
+
+```swift
+// swiftformat:enable all
+```
+
+To temporarily prevent one or more rules being applied to just the next line, use:
+
+```swift
+// swiftformat:disable:next [ [rule<3> ...]]
+let foo = bar // rule(s) will be disabled for this line
+let bar = baz // rule(s) will be re-enabled for this line
+```
+
+There is no need to manually re-enable a rule after using the `next` directive.
+
+**NOTE:** The `swiftformat:enable` directive only serves to counter a previous `swiftformat:disable` directive in the same file. It is not possible to use `swiftformat:enable` to enable a rule that was not already enabled when formatting started.
+
+
+Swift version
+-------------
+
+Most SwiftFormat rules are version-agnostic, but some are applicable only to newer Swift versions. These rules will be disabled automatically if the Swift version is not specified, so to make sure that the full functionality is available you should specify the version of Swift that is used by your project.
+
+You can specify the Swift compiler version in one of two ways:
+
+You can specify your project's Swift compiler version using the `--swiftversion` command line argument. You can also add the `--swiftversion` option to your `.swiftformat` file.
+
+Another option is to add a `.swift-version` file to your project directory. This is a text file that should contain the minimum Swift version supported by your project, and is also supported by some other tools. The `--swiftversion` argument takes precedence over any `.swift-version` files.
+
+Both the `.swift-version` file and the `--swiftversion` option in a `.swiftformat` file are applied hierarchically; If you have submodules in your project that use a different Swift version, you can add separate swift version configurations for those directories.
+
+Swift language mode
+-------------------
+
+SwiftFormat also allows you to specify the Swift _language mode_ used by your project. This is distinct from the Swift compiler version. For example, you can use the Swift 6.0 compiler with either the Swift 5 language mode or the Swift 6 language mode. Some SwiftFormat rules will behave differently under different Swift language modes.
+
+You can specify your project's Swift language mode using the `--languagemode` command line argument. You can also add the `--languagemode` option to your `.swiftformat` file.
+
+If not specified, SwiftFormat uses the default language mode of the specified Swift compiler version. The default language mode in Swift 5.x and Swift 6.x is the Swift 5 language mode. If your project uses the Swift 6 language mode, you should specify `--languagemode 6`.
+
+
+Config file
+-----------
+
+Although it is possible to configure SwiftFormat directly by using the command-line [options](#options) and [rules](#rules) detailed above, it is sometimes more convenient to create a configuration file, which can be added to your project and shared with other developers.
+
+A SwiftFormat configuration file consists of one or more command-line options, split onto separate lines, e.g:
+
+```
+--allman true
+--indent tab
+--disable elseOnSameLine,semicolons
+```
+
+While formatting, SwiftFormat will automatically check inside each subdirectory for the presence of a `.swiftformat` file and will apply any options that it finds there to the files in that directory.
+
+This allows you to override certain rules or formatting options just for a particular directory of files. You can also specify excluded files relative to that directory using `--exclude`, which may be more convenient than specifying them at the top-level:
+
+```
+--exclude Pods,Generated
+```
+
+The `--exclude` option takes a comma-delimited list of file or directory paths to exclude from formatting. Excluded paths are relative to the config file containing the `--exclude` command. The excluded paths can include wildcards, specified using Unix "Glob" syntax, as [documented below](#globs).
+
+Config files named ".swiftformat" will be processed automatically, however, you can select an additional configuration file to use for formatting using the `--config "path/to/config/file"` command-line argument. A configuration file selected using `--config` does not need to be named ".swiftformat", and can be located outside of the project directory.
+
+The config file format is designed to be edited by hand. You may include blank lines for readability, and can also add comments using a hash prefix (#), e.g.
+
+```
+# format options
+--allman true
+--indent tab # tabs FTW!
+
+# file options
+--exclude Pods
+
+# rules
+--disable elseOnSameLine,semicolons
+```
+
+If you would prefer not to edit the configuration file by hand, you can use the [SwiftFormat for Xcode](#xcode-source-editor-extension) app to edit the configuration and export a configuration file. You can also use the swiftformat command-line-tool's `--inferoptions` command to generate a config file from your existing project, like this:
+
+```bash
+$ cd /path/to/project
+$ swiftformat --inferoptions . --output .swiftformat
+```
+
+Globs
+-----
+
+When excluding files from formatting using the `--exclude` option, you may wish to make use of wildcard paths (aka "Globs") to match all files that match a particular naming convention without having to manually list them all.
+
+SwiftFormat's glob syntax is based on Ruby's implementation, which varies slightly from the Unix standard. The following patterns are supported:
+
+* `*` - A single star matches zero or more characters in a filename, but *not* a `/`.
+
+* `**` - A double star will match anything, including one or more `/`.
+
+* `?` - A question mark will match any single character except `/`.
+
+* `[abc]` - Matches any single character inside the brackets.
+
+* `[a-z]` - Matches a single character in the specified range in the brackets.
+
+* `{foo,bar}` - Matches any one of the comma-delimited strings inside the braces.
+
+Examples:
+
+* `foo.swift` - Matches the file "foo.swift" in the same directory as the config file.
+
+* `*.swift` - Matches any Swift file in the same directory as the config file.
+
+* `foo/bar.swift` - Matches the file "bar.swift" in the directory "foo".
+
+* `**/foo.swift` - Matches any file named "foo.swift" in the project.
+
+* `**/*.swift` - Matches any Swift file in the project.
+
+* `**/Generated` - Matches any folder called `Generated` in the project.
+
+* `**/*_generated.swift` - Matches any Swift file with the suffix "_generated" in the project.
+
+
+Linting
+-------
+
+SwiftFormat is primarily designed as a formatter rather than a linter, i.e. it is designed to fix your code rather than tell you what's wrong with it. However, sometimes it can be useful to verify that code has been formatted in a context where it is not desirable to actually change it.
+
+A typical example would be as part of a CI (Continuous Integration) process, where you may wish to have an automated script that checks committed code for style violations. While you can use a separate tool such as [SwiftLint](https://github.com/realm/SwiftLint) for this, it makes sense to be able to validate the formatting against the exact same rules as you are using to apply it.
+
+In order to run SwiftFormat as a linter, you can use the `--lint` command-line option:
+
+```bash
+$ swiftformat --lint path/to/project
+```
+
+This runs the same rules as format mode, and all the same configuration options apply, however, no files will be modified. Instead, SwiftFormat will format each file in memory and then compare the result against the input and report the lines that required changes.
+
+The `--lint` option is similar to `--dryrun`, but `--lint` returns warnings for every line that required changes, and will return a nonzero error code (see [Error codes](#error-codes) below) if any changes are detected, which is useful if you want it to fail a build step on your CI server.
+
+If you would prefer `--lint` not to fail your build, you can use the `--lenient` option to force SwiftFormat to return success in `--lint` mode even when formatting issues were detected.
+
+```bash
+$ swiftformat --lint --lenient path/to/project
+```
+
+By default, `--lint` will only report lines that require formatting, but you can use the additional `--verbose` flag to display additional info about which files were checked, even if there were no changes needed.
+
+If you would prefer not to see a warning for each and every formatting change, you can use the `--quiet` flag to suppress all output except errors.
+
+Sometimes you may wish to autoformat some rules, but only lint others. To do that, use the `--lintonly` option in your config file to specify rules that should only be applied in `--lint` mode:
+
+```
+--rules braces,indent
+--lintonly trailingClosures,unusedArguments
+```
+
+
+Error codes
+-----------
+
+The swiftformat command-line tool will always exit with one of the following codes:
+
+* 0 - Success. This code will be returned in the event of a successful formatting run or if `--lint` detects no violations.
+* 1 - Lint failure. This code will be returned when running in `--lint` mode, or when autocorrecting in `--strict` mode, if the input requires formatting.
+* 70 - Program error. This code will be returned if there is a problem with the input or configuration arguments.
+
+
+Cache
+------
+
+SwiftFormat uses a cache file to avoid reformatting files that haven't changed. For a large project, this can significantly reduce processing time.
+
+By default, the cache is stored in `~/Library/Caches/com.charcoaldesign.swiftformat` on macOS, or `/var/tmp/com.charcoaldesign.swiftformat` on Linux. Use the command-line option `--cache ignore` to ignore the cached version and re-apply formatting to all files. Alternatively, you can use `--cache clear` to delete the cache (or you can just manually delete the cache file).
+
+The cache is shared between all projects. The file is fairly small, as it only stores the path and size for each file, not the contents. If you do start experiencing slowdown due to the cache growing too large, you might want to consider using a separate cache file for each project.
+
+You can specify a custom cache file location by passing a path as the `--cache` option value. For example, you might want to store the cache file inside your project directory. It is fine to check in the cache file if you want to share it between different users of your project, as the paths stored in the cache are relative to the location of the formatted files.
+
+
+File headers
+-------------
+
+SwiftFormat can be configured to strip or replace the header comments in every file with a template. The "header comment" is defined as a comment block that begins on the first nonblank line in the file, and is followed by at least one blank line. This may consist of a single comment body, or multiple comments on consecutive lines:
+
+```swift
+// This is a header comment
+```
+
+```swift
+// This is a regular comment
+func foo(bar: Int) -> Void { ... }
+```
+
+The header template is a string that you provide using the `--header` command-line option. Passing a value of `ignore` (the default) will leave the header comments unmodified. Passing `strip` or an empty string `""` will remove them. If you wish to provide a custom header template, the format is as follows:
+
+For a single-line template: `--header "Copyright (c) 2017 Foobar Industries"`
+
+For a multiline comment, mark linebreaks with `\n`: `--header "First line\nSecond line"`
+
+You can optionally include Swift comment markup in the template if you wish: `--header "/*--- Header comment ---*/"`
+
+If you do not include comment markup, each line in the template will be prepended with `//` and a single space.
+
+It is common practice to include the file name, creation date and/or the current year in a comment header copyright notice. To do that, you can use the following placeholders:
+
+* `{file}` - the name of the file
+* `{year}` - the current year
+* `{created}` - the date on which the file was created
+* `{created.year}` - the year in which the file was created
+* `{author.name}` - the name of the user who first committed the file
+* `{author.email}` - the email of the user who first committed the file
+
+For example, a header template of:
+
+```bash
+--header "{file}\nCopyright (c) {year} Foobar Industries\nCreated by John Smith on {created}."
+```
+
+Will be formatted as:
+
+```swift
+// SomeFile.swift
+// Copyright (c) 2019 Foobar Industries
+// Created by John Smith on 01/02/2016.
+```
+
+**NOTE:** the `{year}` value and `{created}` date format are determined from the current locale and timezone of the machine running the script. `{author.name}` and `{author.email}` requires the project to be version controlled by git.
+
+
+FAQ
+-----
+
+*Q. How is this different from SwiftLint?*
+
+> A. SwiftLint is primarily designed to find and report code smells and style violations in your code. SwiftFormat is designed to fix them. While SwiftLint can autocorrect some issues, and SwiftFormat has some support for [linting](#linting), their primary functions are different.
+
+
+*Q. Can SwiftFormat and SwiftLint be used together?*
+
+> A. Absolutely! The style rules encouraged by both tools are quite similar, and SwiftFormat even fixes some style violations that SwiftLint warns about but can't currently autocorrect.
+
+
+*Q. What platforms does SwiftFormat support?*
+
+> A. SwiftFormat works on macOS 10.13 (High Sierra) and above, and also runs on Ubuntu Linux and Windows.
+
+
+*Q. What versions of Swift are supported?*
+
+> A. The SwiftFormat framework and command-line tool can be compiled using Swift 5.3 and above, and can format programs written in Swift 4.x or 5. Swift 3.x is no longer actively supported. If you are still using Swift 3.x or earlier and find that SwiftFormat breaks your code, the best solution is probably to revert to an earlier SwiftFormat release, or enable only a small subset of rules. Use the `--swiftversion` argument to enable additional rules specific to later Swift versions.
+
+
+*Q. SwiftFormat made changes I didn't want it to. How can I find out which rules to disable?*
+
+> A. If you run SwiftFormat using the `--verbose` option, it will tell you which rules were applied to each file. You can then selectively disable certain rules using the `--disable` argument (see below).
+
+
+*Q. People on my team have different SwiftFormat versions installed. How can we ensure consistent formatting?
+
+> A. You can specify a `--minversion` argument in your project's .swiftformat` file to fail the build if developers attempt to use an older SwiftFormat version.
+
+
+*Q. How can I modify the formatting rules?*
+
+> A. Many configuration options are exposed in the command-line interface or `.swiftformat` configuration file. You can either set these manually, or use the `--inferoptions` argument to automatically generate the configuration from your existing project.
+
+> If there is a rule that you don't like, and which cannot be configured to your liking via the command-line options, you can disable one or more rules by using the `--disable` argument, followed by the name of the rules, separated by commas. You can display a list of all supported rules using the `--rules` argument, and their behaviors are documented above this section in the README.
+
+> If you are using the Xcode source editor extension, rules and options can be configured using the [SwiftFormat for Xcode](#xcode-source-editor-extension) host application. Unfortunately, due to limitation of the Extensions API, there is no way to configure these on a per-project basis.
+
+> If the options you want aren't exposed, and disabling the rule doesn't solve the problem, the rules are implemented in the file `Rules.swift`, so you can modify them and build a new version of the command-line tool. If you think your changes might be generally useful, make a pull request.
+
+
+Q. I don't want to be surprised by new rules added when I upgrade SwiftFormat. How can I prevent this?
+
+> A. You can use the `--rules` argument to specify an exclusive list of rules to run. If new rules are added, they won't be enabled if you have specified a `--rules` list in your SwiftFormat configuration.
+
+
+*Q. Why can't I set the indent width or choose between tabs/spaces in the [SwiftFormat for Xcode](#xcode-source-editor-extension) options?*
+
+> Indent width and tabs/spaces can be configured in Xcode on a per project-basis. You'll find the option under "Text Settings" in the Files inspector of the right-hand sidebar.
+
+
+*Q. After applying SwiftFormat, my code won't compile. Is that a bug?*
+
+> A. SwiftFormat should ideally never break your code. Check the [known issues](#known-issues), and if it's not already listed there, or the suggested workaround doesn't solve your problem, please [open an issue on GitHub](https://github.com/nicklockwood/SwiftFormat/issues).
+
+
+*Q. Can I use SwiftFormat to lint my code without changing it?*
+
+> A. Yes, see the [linting](#linting) section above for details.
+
+
+*Q. Can I use the `SwiftFormat.framework` inside another app?*
+
+> A. Yes, the SwiftFormat framework can be included in an app or test target, and used for many kinds of parsing and processing of Swift source code besides formatting. The SwiftFormat framework is available as a [CocoaPod](https://cocoapods.org/pods/SwiftFormat) for easy integration.
+
+
+Known issues
+---------------
+
+* When using the Xcode Source Editor Extension, the SwiftFormat menu sometimes disappears from Xcode. If this happens, try moving or renaming Xcode temporarily and then changing it back. Failing that, the suggestions in [this thread](https://github.com/nicklockwood/SwiftFormat/issues/494) may help.
+
+* The `enumNamespaces` rule replaces classes that have only static members with an `enum`. If the class is subclassed, or if there is code that depends on the class exposing certain runtime behaviors, this may break the program. To solve this you can either fix it on a per-case basis by adding a `// swiftformat:disable:next enumNamespaces` comment directive above the class declaration, or you can add `--enumnamespaces structs-only` to prevent the rule being applied to classes, or you can just disable the `enumNamespaces` rule completely.
+
+* The `redundantVoidReturnType` rule can inadvertently alter the type signature for closures, for example in cases where the closure calls a `@discardableResult` function. To solve this you can either fix it on a per-case basis by adding a `// swiftformat:disable:next redundantVoidReturnType` comment directive to disable the rule for a specific call site, or you can add `--closurevoid preserve` to your [configuration](#configuration) to disable the rule completely for closures (regular functions or methods aren't affected).
+
+* The `redundantType` rule can introduce ambiguous code in certain cases when using the default mode of `--redundanttype inferred`. This can be worked around by by using `--redundanttype explicit`, or by manually removing the redundant type reference on the affected line, or by using the `// swiftformat:disable:next redundantType` comment directive to disable the rule at the call site (or just disable the `redundantType` rule completely).
+
+* If a type initializer or factory method returns an implicitly unwrapped optional value then the `redundantType` rule may remove the explicit type in a situation where it's actually required. To work around this you can either use `--redundanttype explicit`, or use the `// swiftformat:disable:next redundantType` comment directive to disable the rule at the call site (or just disable the `redundantType` rule completely).
+
+* When using the `initCoderUnavailable` rule, if an `init` that is marked as unavailable is overridden elsewhere in the program then it will cause a compilation error. The recommended workaround is to remove the override (which shouldn't affect the program behavior if the init was really unused) or use the `// swiftformat:disable:next initCoderUnavailable` comment directive to disable the rule for the overridden init (or just disable the `initCoderUnavailable` rule completely).
+
+* When using the `extensionAccessControl` rule with the `--extensionacl on-extension` option, if you have public methods defined on an internal type defined in another file, the resultant public extension will no longer compile. The recommended solution is to manually remove the `public` modifier (this won't change the program behavior) or disable the `extensionAccessControl` rule.
+
+* When using the `preferKeyPath` rule, conversion of `compactMap { $0.foo }` to `compactMap(\.foo)` or `flatMap { $0.foo }` to `flatMap(\.foo)` will result in code that fails to compile if `foo` is not an `Optional` property. This is due to a difference in the way that Swift handles type inference for closures vs keyPaths, as discussed [here](https://bugs.swift.org/browse/SR-13347). The recommended workaround is to replace `compactMap()` or `flatMap()` with `map()` in these cases, which will not change the behavior of the code.
+
+* When using the `--self remove` option, the `redundantSelf` rule will remove references to `self` in autoclosure arguments, which may change the meaning of the code, or cause it not to compile. To work around this issue, use the `--selfrequired` option to provide a comma-delimited list of methods to be excluded from the rule. The `expect()` function from the popular [Nimble](https://github.com/Quick/Nimble) unit testing framework is already excluded by default. If you are using the `--self insert` option then this is not an issue.
+
+* If you assign `SomeClass.self` to a variable and then instantiate an instance of the class using that variable, Swift requires that you use an explicit `.init()`, however, the `redundantInit` rule is not currently capable of detecting this situation in all cases, and may remove the `.init`. To work around this issue, use the `// swiftformat:disable:next redundantInit` comment directive to disable the rule for any affected lines of code (or just disable the `redundantInit` rule completely).
+
+* The `--self insert` option can only recognize locally declared member variables, not ones inherited from superclasses or extensions in other files, so it cannot insert missing `self` references for those. Note that the reverse is not true: `--self remove` should remove *all* redundant `self` references.
+
+* The `trailingClosures` rule can generate ambiguous code if a function has multiple optional closure arguments, or if multiple functions have signatures differing only by the name of the closure argument. For this reason, the rule is limited to anonymous closure arguments by default. You can use the `--trailingclosures` and `--nevertrailing` arguments to explicitly opt in or out of trailing closure support for specific functions.
+
+* The `isEmpty` rule will convert `count == 0` to `isEmpty` even for types that do not have an `isEmpty` method, such as `NSArray`/`NSDictionary`/etc. Use of Foundation collections in Swift code is pretty rare, but just in case, the rule is disabled by default.
+
+* The `preferForLoop` rule will convert `foo.forEach` to `for item in foo` even for types that do not conform to the `Sequence` protocol and cannot be used with a `for ... in` loop. There are no such types built in, but custom types may have this issue.
+
+* If a file begins with a comment, the `stripHeaders` rule will remove it if it is followed by a blank line. To avoid this, make sure that the first comment is directly followed by a line of code.
+
+* When running a version of SwiftFormat built using Xcode 10.2 on macOS 10.14.3 or earlier, you may experience a crash with the error "dyld: Library not loaded: @rpath/libswiftCore.dylib". To fix this, you need to install the [Swift 5 Runtime Support for Command Line Tools](https://support.apple.com/kb/DL1998). These tools are included by default in macOS 10.14.4 and later.
+
+* If you have a generic typealias that defines a closure (e.g. `typealias ResultCompletion = (Result) -> Void`) and use this closure as an argument in a generic function (e.g. `func handle(_ completion: ResultCompletion)`), the `opaqueGenericParameters` rule may update the function definition to use `some` syntax (e.g. `func handle(_ completion: ResultCompletion)`). `some` syntax is not permitted in closure parameters, so this will no longer compile. Workarounds include spelling out the closure explicitly in the generic function (instead of using a `typealias`) or disabling the `opaqueGenericParameters` rule (e.g. with `// swiftformat:disable:next opaqueGenericParameters`).
+
+* If compiling for macOS with Xcode 14.0 and configuring SwiftFormat with `--swift-version 5.7`, the `genericExtensions` rule may cause a build failure by updating extensions of the format `extension Collection where Element == Foo` to `extension Collection`. This fails to compile for macOS in Xcode 14.0, because the macOS SDK in that version of Xcode [does not include](https://forums.swift.org/t/xcode-14-rc-cannot-specialize-protocol-type/60171) the Swift 5.7 standard library. Workarounds include using `--swift-version 5.6` instead, updating to Xcode 14.1+, or disabling the `genericExtensions` rule (e.g. with `// swiftformat:disable:next genericExtensions`).
+
+* The `propertyTypes` rule can cause a build failure in cases where there are multiple static overloads with the same name but different return types. As a workaround you can rename the overloads to no longer conflict, or exclude the property name with `--preservesymbols propertyName,otherPropertyName,etc`.
+
+* The `propertyTypes` rule can cause a build failure in cases where the property's type is a protocol / existential like `let shapeStyle: ShapeStyle = .myShapeStyle`, and the value used on the right-hand side is defined in an extension like `extension ShapeStyle where Self == MyShapeStyle { static var myShapeStyle: MyShapeStyle { ... } }`. As a workaround you can use the existential `any` syntax (`let shapeStyle: any ShapeStyle = .myShapeStyle`), which the rule will preserve as-is, or exclude the type name and/or property name with `--preservesymbols ShapeStyle,myShapeStyle,etc`.
+
+* The `propertyTypes` rule can cause a build failure in cases like `let foo = Foo.bar` where the value is a static member that doesn't return the same time. For example, `let foo: Foo = .bar` would be invalid if the `bar` property was defined as `static var bar: Bar`. As a workaround you can write the name of the type explicitly, like `let foo: Bar = Foo.bar`, or exclude the type name and/or property name with `--preservesymbols Bar,bar,etc`.
+
+
+Tip Jar
+-----------
+
+SwiftFormat is not a commercially-funded product, it's a labor of love given freely to the community. If you find it useful, please consider making a donation.
+
+[](https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick&hosted_button_id=9ZGWNK5FEZFF6&source=url)
+
+
+Credits
+------------
+
+* [Cal Stephens](https://github.com/calda) - Numerous new formatting rules, options and bug fixes
+* [Tony Arnold](https://github.com/tonyarnold) - SwiftFormat for Xcode
+* [Vincent Bernier](https://github.com/vinceburn) - SwiftFormat for Xcode settings UI
+* [Vikram Kriplaney](https://github.com/markiv) - SwiftFormat for Xcode icon and search feature
+* [Hyperphonic](https://github.com/hyperphonic0) - Xcode 12 compatibility for SwiftFormat
+* [Maxime Marinel](https://github.com/bourvill) - Git pre-commit hook script
+* [Romain Pouclet](https://github.com/palleas) - Homebrew formula
+* [Aerobounce](https://github.com/aerobounce) - Homebrew cask and Sublime Text plugin
+* [Facundo Menzella](https://github.com/facumenzella) - Several new formatting rules and options
+* [Ali Akhtarzada](https://github.com/aliak00) - Several path-related CLI enhancements
+* [Yonas Kolb](https://github.com/yonaskolb) - Swift Package Manager integration
+* [Wolfgang Lutz](https://github.com/Lutzifer) - AppleScript integration instructions
+* [Balázs Kilvády](https://github.com/balitm) - Xcode lint warning integration
+* [Anthony Miller](https://github.com/AnthonyMDev) - Improvements to wrap/indent logic
+* [Shingo Takagi](https://github.com/zizi4n5) - Several brace-related bug fixes
+* [Benedek Kozma](https://github.com/cyberbeni) - Lint-only rules option
+* [Juri Pakaste](https://github.com/juri) - Filelist feature
+* [Jim Puls](https://github.com/puls) - Big Sur icon update
+* [Daniele Formichelli](https://github.com/danyf90) - JSON reporter
+* [Jonas Boberg](https://github.com/bobergj) - Github actions log reporter
+* [Mahdi Bchatnia](https://github.com/inket) - Linux build workflow
+* [Saleem Abdulrasool](https://github.com/compnerd) - Windows build workflow
+* [Arthur Semenyutin](https://github.com/vox-humana) - Docker image
+* [Marco Eidinger](https://github.com/MarcoEidinger) - Swift Package Manager plugin
+* [Hampus Tågerud](https://github.com/hampustagerud) - Git integration for fileHeader rule
+* [Nick Lockwood](https://github.com/nicklockwood) - Everything else
+
+([Full list of contributors](https://github.com/nicklockwood/SwiftFormat/graphs/contributors))
diff --git a/DesignToolbox/Pods/SwiftLint/LICENSE b/DesignToolbox/Pods/SwiftLint/LICENSE
new file mode 100644
index 0000000000..0420376276
--- /dev/null
+++ b/DesignToolbox/Pods/SwiftLint/LICENSE
@@ -0,0 +1,21 @@
+The MIT License (MIT)
+
+Copyright (c) 2020 Realm Inc.
+
+Permission is hereby granted, free of charge, to any person obtaining a copy
+of this software and associated documentation files (the "Software"), to deal
+in the Software without restriction, including without limitation the rights
+to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
+copies of the Software, and to permit persons to whom the Software is
+furnished to do so, subject to the following conditions:
+
+The above copyright notice and this permission notice shall be included in all
+copies or substantial portions of the Software.
+
+THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
+IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
+FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
+AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
+LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
+OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
+SOFTWARE.
diff --git a/DesignToolbox/Pods/SwiftLint/swiftlint b/DesignToolbox/Pods/SwiftLint/swiftlint
new file mode 100755
index 0000000000..8cc318b0c9
Binary files /dev/null and b/DesignToolbox/Pods/SwiftLint/swiftlint differ
diff --git a/DesignToolbox/Pods/Target Support Files/Pods-DesignToolbox/Pods-DesignToolbox-Info.plist b/DesignToolbox/Pods/Target Support Files/Pods-DesignToolbox/Pods-DesignToolbox-Info.plist
new file mode 100644
index 0000000000..19cf209d21
--- /dev/null
+++ b/DesignToolbox/Pods/Target Support Files/Pods-DesignToolbox/Pods-DesignToolbox-Info.plist
@@ -0,0 +1,26 @@
+
+
+
+
+ CFBundleDevelopmentRegion
+ ${PODS_DEVELOPMENT_LANGUAGE}
+ CFBundleExecutable
+ ${EXECUTABLE_NAME}
+ CFBundleIdentifier
+ ${PRODUCT_BUNDLE_IDENTIFIER}
+ CFBundleInfoDictionaryVersion
+ 6.0
+ CFBundleName
+ ${PRODUCT_NAME}
+ CFBundlePackageType
+ FMWK
+ CFBundleShortVersionString
+ 1.0.0
+ CFBundleSignature
+ ????
+ CFBundleVersion
+ ${CURRENT_PROJECT_VERSION}
+ NSPrincipalClass
+
+
+
diff --git a/DesignToolbox/Pods/Target Support Files/Pods-DesignToolbox/Pods-DesignToolbox-acknowledgements.markdown b/DesignToolbox/Pods/Target Support Files/Pods-DesignToolbox/Pods-DesignToolbox-acknowledgements.markdown
new file mode 100644
index 0000000000..a403839026
--- /dev/null
+++ b/DesignToolbox/Pods/Target Support Files/Pods-DesignToolbox/Pods-DesignToolbox-acknowledgements.markdown
@@ -0,0 +1,53 @@
+# Acknowledgements
+This application makes use of the following third party libraries:
+
+## SwiftFormat
+
+MIT License
+
+Copyright (c) 2016 Nick Lockwood
+
+Permission is hereby granted, free of charge, to any person obtaining a copy
+of this software and associated documentation files (the "Software"), to deal
+in the Software without restriction, including without limitation the rights
+to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
+copies of the Software, and to permit persons to whom the Software is
+furnished to do so, subject to the following conditions:
+
+The above copyright notice and this permission notice shall be included in all
+copies or substantial portions of the Software.
+
+THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
+IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
+FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
+AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
+LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
+OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
+SOFTWARE.
+
+
+## SwiftLint
+
+The MIT License (MIT)
+
+Copyright (c) 2020 Realm Inc.
+
+Permission is hereby granted, free of charge, to any person obtaining a copy
+of this software and associated documentation files (the "Software"), to deal
+in the Software without restriction, including without limitation the rights
+to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
+copies of the Software, and to permit persons to whom the Software is
+furnished to do so, subject to the following conditions:
+
+The above copyright notice and this permission notice shall be included in all
+copies or substantial portions of the Software.
+
+THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
+IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
+FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
+AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
+LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
+OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
+SOFTWARE.
+
+Generated by CocoaPods - https://cocoapods.org
diff --git a/DesignToolbox/Pods/Target Support Files/Pods-DesignToolbox/Pods-DesignToolbox-acknowledgements.plist b/DesignToolbox/Pods/Target Support Files/Pods-DesignToolbox/Pods-DesignToolbox-acknowledgements.plist
new file mode 100644
index 0000000000..457d2bbd2d
--- /dev/null
+++ b/DesignToolbox/Pods/Target Support Files/Pods-DesignToolbox/Pods-DesignToolbox-acknowledgements.plist
@@ -0,0 +1,91 @@
+
+
+
+
+ PreferenceSpecifiers
+
+
+ FooterText
+ This application makes use of the following third party libraries:
+ Title
+ Acknowledgements
+ Type
+ PSGroupSpecifier
+
+
+ FooterText
+ MIT License
+
+Copyright (c) 2016 Nick Lockwood
+
+Permission is hereby granted, free of charge, to any person obtaining a copy
+of this software and associated documentation files (the "Software"), to deal
+in the Software without restriction, including without limitation the rights
+to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
+copies of the Software, and to permit persons to whom the Software is
+furnished to do so, subject to the following conditions:
+
+The above copyright notice and this permission notice shall be included in all
+copies or substantial portions of the Software.
+
+THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
+IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
+FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
+AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
+LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
+OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
+SOFTWARE.
+
+ License
+ MIT
+ Title
+ SwiftFormat
+ Type
+ PSGroupSpecifier
+
+
+ FooterText
+ The MIT License (MIT)
+
+Copyright (c) 2020 Realm Inc.
+
+Permission is hereby granted, free of charge, to any person obtaining a copy
+of this software and associated documentation files (the "Software"), to deal
+in the Software without restriction, including without limitation the rights
+to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
+copies of the Software, and to permit persons to whom the Software is
+furnished to do so, subject to the following conditions:
+
+The above copyright notice and this permission notice shall be included in all
+copies or substantial portions of the Software.
+
+THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
+IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
+FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
+AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
+LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
+OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
+SOFTWARE.
+
+ License
+ MIT
+ Title
+ SwiftLint
+ Type
+ PSGroupSpecifier
+
+
+ FooterText
+ Generated by CocoaPods - https://cocoapods.org
+ Title
+
+ Type
+ PSGroupSpecifier
+
+
+ StringsTable
+ Acknowledgements
+ Title
+ Acknowledgements
+
+
diff --git a/DesignToolbox/Pods/Target Support Files/Pods-DesignToolbox/Pods-DesignToolbox-dummy.m b/DesignToolbox/Pods/Target Support Files/Pods-DesignToolbox/Pods-DesignToolbox-dummy.m
new file mode 100644
index 0000000000..8191233962
--- /dev/null
+++ b/DesignToolbox/Pods/Target Support Files/Pods-DesignToolbox/Pods-DesignToolbox-dummy.m
@@ -0,0 +1,5 @@
+#import
+@interface PodsDummy_Pods_DesignToolbox : NSObject
+@end
+@implementation PodsDummy_Pods_DesignToolbox
+@end
diff --git a/DesignToolbox/Pods/Target Support Files/Pods-DesignToolbox/Pods-DesignToolbox-umbrella.h b/DesignToolbox/Pods/Target Support Files/Pods-DesignToolbox/Pods-DesignToolbox-umbrella.h
new file mode 100644
index 0000000000..d7740c966a
--- /dev/null
+++ b/DesignToolbox/Pods/Target Support Files/Pods-DesignToolbox/Pods-DesignToolbox-umbrella.h
@@ -0,0 +1,16 @@
+#ifdef __OBJC__
+#import
+#else
+#ifndef FOUNDATION_EXPORT
+#if defined(__cplusplus)
+#define FOUNDATION_EXPORT extern "C"
+#else
+#define FOUNDATION_EXPORT extern
+#endif
+#endif
+#endif
+
+
+FOUNDATION_EXPORT double Pods_DesignToolboxVersionNumber;
+FOUNDATION_EXPORT const unsigned char Pods_DesignToolboxVersionString[];
+
diff --git a/DesignToolbox/Pods/Target Support Files/Pods-DesignToolbox/Pods-DesignToolbox.debug.xcconfig b/DesignToolbox/Pods/Target Support Files/Pods-DesignToolbox/Pods-DesignToolbox.debug.xcconfig
new file mode 100644
index 0000000000..b148dd539b
--- /dev/null
+++ b/DesignToolbox/Pods/Target Support Files/Pods-DesignToolbox/Pods-DesignToolbox.debug.xcconfig
@@ -0,0 +1,13 @@
+ALWAYS_EMBED_SWIFT_STANDARD_LIBRARIES = YES
+CLANG_WARN_QUOTED_INCLUDE_IN_FRAMEWORK_HEADER = NO
+GCC_PREPROCESSOR_DEFINITIONS = $(inherited) COCOAPODS=1
+LD_RUNPATH_SEARCH_PATHS = $(inherited) /usr/lib/swift '@executable_path/Frameworks' '@loader_path/Frameworks'
+LIBRARY_SEARCH_PATHS = $(inherited) "${TOOLCHAIN_DIR}/usr/lib/swift/${PLATFORM_NAME}" /usr/lib/swift
+OTHER_MODULE_VERIFIER_FLAGS = $(inherited) "-F${PODS_CONFIGURATION_BUILD_DIR}/SwiftFormat" "-F${PODS_CONFIGURATION_BUILD_DIR}/SwiftLint"
+OTHER_SWIFT_FLAGS = $(inherited) -D COCOAPODS
+PODS_BUILD_DIR = ${BUILD_DIR}
+PODS_CONFIGURATION_BUILD_DIR = ${PODS_BUILD_DIR}/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME)
+PODS_PODFILE_DIR_PATH = ${SRCROOT}/.
+PODS_ROOT = ${SRCROOT}/Pods
+PODS_XCFRAMEWORKS_BUILD_DIR = $(PODS_CONFIGURATION_BUILD_DIR)/XCFrameworkIntermediates
+USE_RECURSIVE_SCRIPT_INPUTS_IN_SCRIPT_PHASES = YES
diff --git a/DesignToolbox/Pods/Target Support Files/Pods-DesignToolbox/Pods-DesignToolbox.modulemap b/DesignToolbox/Pods/Target Support Files/Pods-DesignToolbox/Pods-DesignToolbox.modulemap
new file mode 100644
index 0000000000..9e77191588
--- /dev/null
+++ b/DesignToolbox/Pods/Target Support Files/Pods-DesignToolbox/Pods-DesignToolbox.modulemap
@@ -0,0 +1,6 @@
+framework module Pods_DesignToolbox {
+ umbrella header "Pods-DesignToolbox-umbrella.h"
+
+ export *
+ module * { export * }
+}
diff --git a/DesignToolbox/Pods/Target Support Files/Pods-DesignToolbox/Pods-DesignToolbox.release.xcconfig b/DesignToolbox/Pods/Target Support Files/Pods-DesignToolbox/Pods-DesignToolbox.release.xcconfig
new file mode 100644
index 0000000000..b148dd539b
--- /dev/null
+++ b/DesignToolbox/Pods/Target Support Files/Pods-DesignToolbox/Pods-DesignToolbox.release.xcconfig
@@ -0,0 +1,13 @@
+ALWAYS_EMBED_SWIFT_STANDARD_LIBRARIES = YES
+CLANG_WARN_QUOTED_INCLUDE_IN_FRAMEWORK_HEADER = NO
+GCC_PREPROCESSOR_DEFINITIONS = $(inherited) COCOAPODS=1
+LD_RUNPATH_SEARCH_PATHS = $(inherited) /usr/lib/swift '@executable_path/Frameworks' '@loader_path/Frameworks'
+LIBRARY_SEARCH_PATHS = $(inherited) "${TOOLCHAIN_DIR}/usr/lib/swift/${PLATFORM_NAME}" /usr/lib/swift
+OTHER_MODULE_VERIFIER_FLAGS = $(inherited) "-F${PODS_CONFIGURATION_BUILD_DIR}/SwiftFormat" "-F${PODS_CONFIGURATION_BUILD_DIR}/SwiftLint"
+OTHER_SWIFT_FLAGS = $(inherited) -D COCOAPODS
+PODS_BUILD_DIR = ${BUILD_DIR}
+PODS_CONFIGURATION_BUILD_DIR = ${PODS_BUILD_DIR}/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME)
+PODS_PODFILE_DIR_PATH = ${SRCROOT}/.
+PODS_ROOT = ${SRCROOT}/Pods
+PODS_XCFRAMEWORKS_BUILD_DIR = $(PODS_CONFIGURATION_BUILD_DIR)/XCFrameworkIntermediates
+USE_RECURSIVE_SCRIPT_INPUTS_IN_SCRIPT_PHASES = YES
diff --git a/DesignToolbox/Pods/Target Support Files/SwiftFormat/SwiftFormat.debug.xcconfig b/DesignToolbox/Pods/Target Support Files/SwiftFormat/SwiftFormat.debug.xcconfig
new file mode 100644
index 0000000000..cadc60d60f
--- /dev/null
+++ b/DesignToolbox/Pods/Target Support Files/SwiftFormat/SwiftFormat.debug.xcconfig
@@ -0,0 +1,14 @@
+CLANG_WARN_QUOTED_INCLUDE_IN_FRAMEWORK_HEADER = NO
+CONFIGURATION_BUILD_DIR = ${PODS_CONFIGURATION_BUILD_DIR}/SwiftFormat
+GCC_PREPROCESSOR_DEFINITIONS = $(inherited) COCOAPODS=1
+LIBRARY_SEARCH_PATHS = $(inherited) "${TOOLCHAIN_DIR}/usr/lib/swift/${PLATFORM_NAME}" /usr/lib/swift
+OTHER_SWIFT_FLAGS = $(inherited) -D COCOAPODS
+PODS_BUILD_DIR = ${BUILD_DIR}
+PODS_CONFIGURATION_BUILD_DIR = ${PODS_BUILD_DIR}/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME)
+PODS_DEVELOPMENT_LANGUAGE = ${DEVELOPMENT_LANGUAGE}
+PODS_ROOT = ${SRCROOT}
+PODS_TARGET_SRCROOT = ${PODS_ROOT}/SwiftFormat
+PODS_XCFRAMEWORKS_BUILD_DIR = $(PODS_CONFIGURATION_BUILD_DIR)/XCFrameworkIntermediates
+PRODUCT_BUNDLE_IDENTIFIER = org.cocoapods.${PRODUCT_NAME:rfc1034identifier}
+SKIP_INSTALL = YES
+USE_RECURSIVE_SCRIPT_INPUTS_IN_SCRIPT_PHASES = YES
diff --git a/DesignToolbox/Pods/Target Support Files/SwiftFormat/SwiftFormat.release.xcconfig b/DesignToolbox/Pods/Target Support Files/SwiftFormat/SwiftFormat.release.xcconfig
new file mode 100644
index 0000000000..cadc60d60f
--- /dev/null
+++ b/DesignToolbox/Pods/Target Support Files/SwiftFormat/SwiftFormat.release.xcconfig
@@ -0,0 +1,14 @@
+CLANG_WARN_QUOTED_INCLUDE_IN_FRAMEWORK_HEADER = NO
+CONFIGURATION_BUILD_DIR = ${PODS_CONFIGURATION_BUILD_DIR}/SwiftFormat
+GCC_PREPROCESSOR_DEFINITIONS = $(inherited) COCOAPODS=1
+LIBRARY_SEARCH_PATHS = $(inherited) "${TOOLCHAIN_DIR}/usr/lib/swift/${PLATFORM_NAME}" /usr/lib/swift
+OTHER_SWIFT_FLAGS = $(inherited) -D COCOAPODS
+PODS_BUILD_DIR = ${BUILD_DIR}
+PODS_CONFIGURATION_BUILD_DIR = ${PODS_BUILD_DIR}/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME)
+PODS_DEVELOPMENT_LANGUAGE = ${DEVELOPMENT_LANGUAGE}
+PODS_ROOT = ${SRCROOT}
+PODS_TARGET_SRCROOT = ${PODS_ROOT}/SwiftFormat
+PODS_XCFRAMEWORKS_BUILD_DIR = $(PODS_CONFIGURATION_BUILD_DIR)/XCFrameworkIntermediates
+PRODUCT_BUNDLE_IDENTIFIER = org.cocoapods.${PRODUCT_NAME:rfc1034identifier}
+SKIP_INSTALL = YES
+USE_RECURSIVE_SCRIPT_INPUTS_IN_SCRIPT_PHASES = YES
diff --git a/DesignToolbox/Pods/Target Support Files/SwiftLint/SwiftLint.debug.xcconfig b/DesignToolbox/Pods/Target Support Files/SwiftLint/SwiftLint.debug.xcconfig
new file mode 100644
index 0000000000..5238df584c
--- /dev/null
+++ b/DesignToolbox/Pods/Target Support Files/SwiftLint/SwiftLint.debug.xcconfig
@@ -0,0 +1,12 @@
+CLANG_WARN_QUOTED_INCLUDE_IN_FRAMEWORK_HEADER = NO
+CONFIGURATION_BUILD_DIR = ${PODS_CONFIGURATION_BUILD_DIR}/SwiftLint
+GCC_PREPROCESSOR_DEFINITIONS = $(inherited) COCOAPODS=1
+PODS_BUILD_DIR = ${BUILD_DIR}
+PODS_CONFIGURATION_BUILD_DIR = ${PODS_BUILD_DIR}/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME)
+PODS_DEVELOPMENT_LANGUAGE = ${DEVELOPMENT_LANGUAGE}
+PODS_ROOT = ${SRCROOT}
+PODS_TARGET_SRCROOT = ${PODS_ROOT}/SwiftLint
+PODS_XCFRAMEWORKS_BUILD_DIR = $(PODS_CONFIGURATION_BUILD_DIR)/XCFrameworkIntermediates
+PRODUCT_BUNDLE_IDENTIFIER = org.cocoapods.${PRODUCT_NAME:rfc1034identifier}
+SKIP_INSTALL = YES
+USE_RECURSIVE_SCRIPT_INPUTS_IN_SCRIPT_PHASES = YES
diff --git a/DesignToolbox/Pods/Target Support Files/SwiftLint/SwiftLint.release.xcconfig b/DesignToolbox/Pods/Target Support Files/SwiftLint/SwiftLint.release.xcconfig
new file mode 100644
index 0000000000..5238df584c
--- /dev/null
+++ b/DesignToolbox/Pods/Target Support Files/SwiftLint/SwiftLint.release.xcconfig
@@ -0,0 +1,12 @@
+CLANG_WARN_QUOTED_INCLUDE_IN_FRAMEWORK_HEADER = NO
+CONFIGURATION_BUILD_DIR = ${PODS_CONFIGURATION_BUILD_DIR}/SwiftLint
+GCC_PREPROCESSOR_DEFINITIONS = $(inherited) COCOAPODS=1
+PODS_BUILD_DIR = ${BUILD_DIR}
+PODS_CONFIGURATION_BUILD_DIR = ${PODS_BUILD_DIR}/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME)
+PODS_DEVELOPMENT_LANGUAGE = ${DEVELOPMENT_LANGUAGE}
+PODS_ROOT = ${SRCROOT}
+PODS_TARGET_SRCROOT = ${PODS_ROOT}/SwiftLint
+PODS_XCFRAMEWORKS_BUILD_DIR = $(PODS_CONFIGURATION_BUILD_DIR)/XCFrameworkIntermediates
+PRODUCT_BUNDLE_IDENTIFIER = org.cocoapods.${PRODUCT_NAME:rfc1034identifier}
+SKIP_INSTALL = YES
+USE_RECURSIVE_SCRIPT_INPUTS_IN_SCRIPT_PHASES = YES
diff --git a/Showcase/fastlane/Appfile b/DesignToolbox/fastlane/Appfile
similarity index 100%
rename from Showcase/fastlane/Appfile
rename to DesignToolbox/fastlane/Appfile
diff --git a/Showcase/fastlane/Fastfile b/DesignToolbox/fastlane/Fastfile
similarity index 87%
rename from Showcase/fastlane/Fastfile
rename to DesignToolbox/fastlane/Fastfile
index c3a768a681..6eea7831b2 100644
--- a/Showcase/fastlane/Fastfile
+++ b/DesignToolbox/fastlane/Fastfile
@@ -44,6 +44,9 @@ MATTERMOST_HOOK_BOT_ICON_URL = ENV["OUDS_MATTERMOST_HOOK_BOT_ICON_URL"]
# GitHub
# ------
+# Repository of OUDS iOS
+GITHUB_ORG_REPO = "Orange-OpenSource/ouds-ios"
+
# Fine grained personal access token with enough permissions for the suitable GitHub project
GITHUB_ACCESS_TOKEN = ENV['GITHUB_ACCESS_TOKEN']
@@ -53,9 +56,13 @@ IOS_APP_COMMIT_SHA = ENV['IOS_APP_COMMIT_SHA']
# Project configuration
# ---------------------
-OUDS_WORKSPACE = "Showcase.xcworkspace"
-OUDS_PROJECT = "Showcase.xcodeproj"
-OUDS_SCHEME = "Showcase"
+OUDS_WORKSPACE = "DesignToolbox.xcworkspace"
+OUDS_PROJECT = "DesignToolbox.xcodeproj"
+OUDS_SCHEME = "DesignToolbox"
+OUDS_TEST_SCHEME = "DesignToolbox"
+OUDS_SNAPSHOTS_TEST_SCHEME = "DesignToolboxSnapshotsTests"
+OUDS_PROJECT_NAME = "DesignToolBox" # Root for Info.plist, etc.
+OUDS_APP_DISPLAY_NAME = "Design System Toolbox"
# Lanes
# ------
@@ -99,7 +106,7 @@ platform :ios do
# Add new environments using `xcodebuild -downloadPlatform iOS`
begin
device = "iPhone 14"
- scan(scheme: "Showcase",
+ scan(scheme: OUDS_TEST_SCHEME,
device: device,
skip_build: true)
@@ -130,7 +137,7 @@ platform :ios do
# Add new environments using `xcodebuild -downloadPlatform iOS`
begin
device = "iPhone 16 Pro"
- scan(scheme: "ShowcaseTests",
+ scan(scheme: OUDS_SNAPSHOTS_TEST_SCHEME,
device: device,
skip_build: true
)
@@ -180,7 +187,7 @@ platform :ios do
clean_install: true
)
- Dir.chdir "../Showcase/Resources/Assets.xcassets" do
+ Dir.chdir "../#{OUDS_PROJECT_NAME}/Resources/Assets.xcassets" do
sh "rm -Rf AppIconRelease.appiconset"
sh "cp -R AppIconDebug.appiconset AppIconRelease.appiconset"
end
@@ -211,23 +218,23 @@ platform :ios do
raise "Bad prerequisites error - missing pipeline variable"
end
- Dir.chdir "../Showcase/Resources/Assets.xcassets" do
+ Dir.chdir "../#{OUDS_PROJECT_NAME}/Resources/Assets.xcassets" do
sh "rm -Rf AppIconRelease.appiconset"
sh "cp -R AppIconAlpha.appiconset AppIconRelease.appiconset"
end
# CFBundleVersion and CFBundleShortVersionString must follow rules with integers and periods, should not change them
# But still possible to change CFBundleDisplayName
- new_display_name = "OUDS Showcase ALPHA (#{issues_numbers})"
+ new_display_name = "#{OUDS_APP_DISPLAY_NAME} ALPHA (#{issues_numbers})"
puts "ℹ️ New display name version will be: '#{new_display_name}'"
- set_info_plist_value(path: "#{Dir.pwd}/../Showcase/Info.plist", key: "CFBundleDisplayName", value: new_display_name)
+ set_info_plist_value(path: "#{Dir.pwd}/../#{OUDS_PROJECT_NAME}/Info.plist", key: "CFBundleDisplayName", value: new_display_name)
# Details for the GUI in the app
- set_info_plist_value(path: "#{Dir.pwd}/../Showcase/Info.plist", key: "OUDSBuildType", value: "ALPHA")
- set_info_plist_value(path: "#{Dir.pwd}/../Showcase/Info.plist", key: "OUDSBuildTag", value: "#{params[:commitHash][0,7]}".strip)
- set_info_plist_value(path: "#{Dir.pwd}/../Showcase/Info.plist", key: "OUDSBuildDetails", value: "#{issues_numbers}")
+ set_info_plist_value(path: "#{Dir.pwd}/../#{OUDS_PROJECT_NAME}/Info.plist", key: "OUDSBuildType", value: "ALPHA")
+ set_info_plist_value(path: "#{Dir.pwd}/../#{OUDS_PROJECT_NAME}/Info.plist", key: "OUDSBuildTag", value: "#{params[:commitHash][0,7]}".strip)
+ set_info_plist_value(path: "#{Dir.pwd}/../#{OUDS_PROJECT_NAME}/Info.plist", key: "OUDSBuildDetails", value: "#{issues_numbers}")
- build_and_upload(isAlpha: true, upload: true)
+ build_and_upload(isAlpha: true, upload: true, issues: issues_numbers)
end
# ------------------------------------------------------------
@@ -236,18 +243,18 @@ platform :ios do
desc "BUILD & UPLOAD TO TESTFLIGHT BETA APP"
lane :beta do |params|
puts "👉 Beta (commit hash = '#{params[:commitHash]}')"
- Dir.chdir "../Showcase/Resources/Assets.xcassets" do
+ Dir.chdir "../#{OUDS_PROJECT_NAME}/Resources/Assets.xcassets" do
sh "rm -Rf AppIconRelease.appiconset"
sh "cp -R AppIconBeta.appiconset AppIconRelease.appiconset"
end
- new_display_name = "OUDS Showcase (BETA)"
+ new_display_name = "#{OUDS_APP_DISPLAY_NAME} (BETA)"
puts "ℹ️ New display name version will be: '#{new_display_name}'"
- set_info_plist_value(path: "#{Dir.pwd}/../Showcase/Info.plist", key: "CFBundleDisplayName", value: new_display_name)
+ set_info_plist_value(path: "#{Dir.pwd}/../#{OUDS_PROJECT_NAME}/Info.plist", key: "CFBundleDisplayName", value: new_display_name)
# Details for the GUI in the app
- set_info_plist_value(path: "#{Dir.pwd}/../Showcase/Info.plist", key: "OUDSBuildType", value: "BETA")
- set_info_plist_value(path: "#{Dir.pwd}/../Showcase/Info.plist", key: "OUDSBuildTag", value: "#{params[:commitHash][0,7]}".strip)
+ set_info_plist_value(path: "#{Dir.pwd}/../#{OUDS_PROJECT_NAME}/Info.plist", key: "OUDSBuildType", value: "BETA")
+ set_info_plist_value(path: "#{Dir.pwd}/../#{OUDS_PROJECT_NAME}/Info.plist", key: "OUDSBuildTag", value: "#{params[:commitHash][0,7]}".strip)
build_and_upload(isAlpha: false, upload: true, detailSymbol: params[:commitHash])
end
@@ -260,12 +267,12 @@ platform :ios do
puts "👉 Prod"
update_build_number
- new_display_name = "OUDS Showcase"
+ new_display_name = "#{OUDS_APP_DISPLAY_NAME}"
puts "ℹ️ New display name version will be: '#{new_display_name}'"
- set_info_plist_value(path: "#{Dir.pwd}/../Showcase/Info.plist", key: "CFBundleDisplayName", value: new_display_name)
+ set_info_plist_value(path: "#{Dir.pwd}/../#{OUDS_PROJECT_NAME}/Info.plist", key: "CFBundleDisplayName", value: new_display_name)
# Details for the GUI in the app
- set_info_plist_value(path: "#{Dir.pwd}/../Showcase/Info.plist", key: "OUDSBuildType", value: "PROD")
+ set_info_plist_value(path: "#{Dir.pwd}/../#{OUDS_PROJECT_NAME}/Info.plist", key: "OUDSBuildType", value: "PROD")
build
if params[:upload]
@@ -286,7 +293,7 @@ platform :ios do
puts "👉 Build and upload (alpha)"
update_build_number
build
- upload(type: "alpha")
+ upload(type: "alpha", issues_numbers: params[:issues_numbers])
public_github_notifications_build_details
else # Beta case (not production too), detailSymbol should be here commit hash
@@ -331,7 +338,7 @@ platform :ios do
begin
update_app_identifier(
xcodeproj: "#{OUDS_PROJECT}",
- plist_path: "Showcase/Info.plist",
+ plist_path: "#{OUDS_PROJECT_NAME}/Info.plist",
app_identifier: CredentialsManager::AppfileConfig.try_fetch_value(:app_identifier)
)
@@ -399,8 +406,13 @@ platform :ios do
uploadType = params[:type]
if uploadType != nil && uploadType.to_s.empty? == false
+ issues_numbers = params[:issues_numbers]
puts "ℹ️ Upload type: '#{uploadType}'"
- news = "Warning: this is #{uploadType} build\n\n" + read_current_release_notes # Add details about build type in changelog for TestFlight
+ if uploadType == "alpha"
+ news = "Warning: this is alpha build for issues #{issues_numbers}\n\n" + read_current_release_notes # Add details about build type in changelog for TestFlight
+ else
+ news = "Warning: this is #{uploadType} build\n\n" + read_current_release_notes # Add details about build type in changelog for TestFlight
+ end
else
puts "ℹ️ Upload type seems to be production"
news = read_current_release_notes
@@ -489,7 +501,7 @@ platform :ios do
# Check if given tag exists yet
puts "ℹ️ Check if '#{tag}' exists yet"
- uri = URI("https://api.github.com/repos/Orange-OpenSource/ouds-ios/tags")
+ uri = URI("https://api.github.com/repos/#{GITHUB_ORG_REPO}/tags")
response = Net::HTTP.get(uri)
tags = JSON.parse(response)
@@ -499,7 +511,7 @@ platform :ios do
else
puts "ℹ️ Commit SHA to tag is '#{IOS_APP_COMMIT_SHA}'"
- uri = URI("https://api.github.com/repos/Orange-OpenSource/ouds-ios/git/refs")
+ uri = URI("https://api.github.com/repos/#{GITHUB_ORG_REPO}/git/refs")
http = Net::HTTP.new(uri.host, uri.port)
http.use_ssl = true
@@ -536,15 +548,15 @@ platform :ios do
def public_github_notifications_build_details
build_version = get_app_version
build_number = get_build_number(xcodeproj: OUDS_PROJECT)
- build_display_name = get_info_plist_value(path: "#{Dir.pwd}/../Showcase/Info.plist", key: "CFBundleDisplayName")
- build_type = get_info_plist_value(path: "#{Dir.pwd}/../Showcase/Info.plist", key: "OUDSBuildType")
- build_tag = get_info_plist_value(path: "#{Dir.pwd}/../Showcase/Info.plist", key: "OUDSBuildTag")
- build_details = get_info_plist_value(path: "#{Dir.pwd}/../Showcase/Info.plist", key: "OUDSBuildDetails")
+ build_display_name = get_info_plist_value(path: "#{Dir.pwd}/../#{OUDS_PROJECT_NAME}/Info.plist", key: "CFBundleDisplayName")
+ build_type = get_info_plist_value(path: "#{Dir.pwd}/../#{OUDS_PROJECT_NAME}/Info.plist", key: "OUDSBuildType")
+ build_tag = get_info_plist_value(path: "#{Dir.pwd}/../#{OUDS_PROJECT_NAME}/Info.plist", key: "OUDSBuildTag")
+ build_details = get_info_plist_value(path: "#{Dir.pwd}/../#{OUDS_PROJECT_NAME}/Info.plist", key: "OUDSBuildDetails")
build_issues_numbers = build_details.scan(/\d+/).map(&:to_i)
build_issues_numbers.each do |issue_number|
- uri = URI("https://api.github.com/repos/Orange-OpenSource/ouds-ios/issues/#{issue_number}")
+ uri = URI("https://api.github.com/repos/#{GITHUB_ORG_REPO}/issues/#{issue_number}")
response = Net::HTTP.get(uri)
issue = JSON.parse(response)
@@ -580,7 +592,7 @@ cc @MaximeTonnerre @mccart77 @iassab @TonyAntonyHello (design team)
_This is an automated message sent with love thanks to *Fastlane* from our CI/CD pipeline 🤘_
EOF
- uri = URI("https://api.github.com/repos/Orange-OpenSource/ouds-ios/issues/#{issue_number}/comments")
+ uri = URI("https://api.github.com/repos/#{GITHUB_ORG_REPO}/issues/#{issue_number}/comments")
http = Net::HTTP.new(uri.host, uri.port)
http.use_ssl = true
diff --git a/Showcase/fastlane/README.md b/DesignToolbox/fastlane/README.md
similarity index 100%
rename from Showcase/fastlane/README.md
rename to DesignToolbox/fastlane/README.md
diff --git a/Gemfile b/Gemfile
index 06927c6f4d..9cc53f53ee 100644
--- a/Gemfile
+++ b/Gemfile
@@ -21,5 +21,5 @@ gem 'json', '2.9.0'
gem 'net-http', '0.6.0'
gem 'xcode-install', '2.8.1'
-plugins_path = File.join(File.dirname(__FILE__), 'Showcase/fastlane', 'Pluginfile')
+plugins_path = File.join(File.dirname(__FILE__), 'DesignToolbox/fastlane', 'Pluginfile')
eval_gemfile(plugins_path) if File.exist?(plugins_path)
diff --git a/NOTICE.txt b/NOTICE.txt
index 9e7cc2038f..818be8749d 100644
--- a/NOTICE.txt
+++ b/NOTICE.txt
@@ -13,40 +13,40 @@ Any use or displaying shall constitute an infringement under intellectual proper
./docs_release/docs_assets/favicon-32x32.png
./docs_release/docs_assets/favicon.ico
-./Showcase/Showcase/Resources/accessibilityStatement/favicon.ico
-./Showcase/Showcase/Resources/accessibilityStatement/orange-logo.svg
-
-./Showcase/Showcase/Resources/Assets.xcassets/AppIconDebug.appiconset/UDSDemo-DEBUG_SQR.png
-./Showcase/Showcase/Resources/Assets.xcassets/AppIconAlpha.appiconset/UDSDemo-A_SQR.png
-./Showcase/Showcase/Resources/Assets.xcassets/AppIconBeta.appiconset/UDSDemo-B_SQR.png
-./Showcase/Showcase/Resources/Assets.xcassets/AppIconRelease.appiconset/Unified_App_IOS_SQR.png
-
-./Showcase/Showcase/Resources/Assets.xcassets/ic_token.imageset/ic_token.svg
-./Showcase/Showcase/Resources/Assets.xcassets/ic_component_atom.imageset/ic_component_atom.svg
-./Showcase/Showcase/Resources/Assets.xcassets/ic_info.imageset/ic_info.svg
-./Showcase/Showcase/Resources/Assets.xcassets/ic_heart.imageset/ic_heart.svg
-
-./Showcase/Showcase/Resources/Assets.xcassets/Components/il_component_button.imageset/il_component_button_dark.svg
-./Showcase/Showcase/Resources/Assets.xcassets/Components/il_component_button.imageset/il_component_button_light.svg
-
-./Showcase/Showcase/Resources/Assets.xcassets/Illustrations/il_empty_screen.imageset/il_empty_screen.svg
-./Showcase/Showcase/Resources/Assets.xcassets/Illustrations/il_tokens_grid_column_margin.imageset/il_tokens_grid_column_margin.png
-./Showcase/Showcase/Resources/Assets.xcassets/Illustrations/il_tokens_grid_column_margin.imageset/il_tokens_grid_column_margin_dark.png
-./Showcase/Showcase/Resources/Assets.xcassets/Illustrations/il_tokens_grid_max_width.imageset/il_tokens_grid_max_width.png
-./Showcase/Showcase/Resources/Assets.xcassets/Illustrations/il_tokens_grid_max_width.imageset/il_tokens_grid_max_width_dark.png
-./Showcase/Showcase/Resources/Assets.xcassets/Illustrations/il_tokens_grid_min_width.imageset/il_tokens_grid_min_width.png
-./Showcase/Showcase/Resources/Assets.xcassets/Illustrations/il_tokens_grid_min_width.imageset/il_tokens_grid_min_width_dark.png
-./Showcase/Showcase/Resources/Assets.xcassets/Tokens/ic_chevron-down.imageset/ic_chevron-down.png
-./Showcase/Showcase/Resources/Assets.xcassets/Tokens/ic_chevron-up.imageset/ic_chevron-up.png
-./Showcase/Showcase/Resources/Assets.xcassets/Tokens/ic_copy.imageset/ic_copy.png
-./Showcase/Showcase/Resources/Assets.xcassets/Tokens/ic_border.imageset/ic_border.svg
-./Showcase/Showcase/Resources/Assets.xcassets/Tokens/ic_dimension.imageset/ic_dimension.svg
-./Showcase/Showcase/Resources/Assets.xcassets/Tokens/ic_filter_effects.imageset/ic_filter_effects.svg
-./Showcase/Showcase/Resources/Assets.xcassets/Tokens/ic_grid.imageset/ic_grid.svg
-./Showcase/Showcase/Resources/Assets.xcassets/Tokens/ic_layers.imageset/ic_layers.svg
-./Showcase/Showcase/Resources/Assets.xcassets/Tokens/ic_palette.imageset/ic_palette.svg
-./Showcase/Showcase/Resources/Assets.xcassets/Tokens/ic_vector.imageset/ic_vector.svg
-./Showcase/Showcase/Resources/Assets.xcassets/Tokens/ic_typography.imageset/ic_typography.svg
-./Showcase/Showcase/Resources/Assets.xcassets/Tokens/ic_union.imageset/ic_union.svg
+./DesignToolbox/DesignToolbox/Resources/accessibilityStatement/favicon.ico
+./DesignToolbox/DesignToolbox/Resources/accessibilityStatement/orange-logo.svg
+
+./DesignToolbox/DesignToolbox/Resources/Assets.xcassets/AppIconDebug.appiconset/UDSDemo-DEBUG_SQR.png
+./DesignToolbox/DesignToolbox/Resources/Assets.xcassets/AppIconAlpha.appiconset/UDSDemo-A_SQR.png
+./DesignToolbox/DesignToolbox/Resources/Assets.xcassets/AppIconBeta.appiconset/UDSDemo-B_SQR.png
+./DesignToolbox/DesignToolbox/Resources/Assets.xcassets/AppIconRelease.appiconset/Unified_App_IOS_SQR.png
+
+./DesignToolbox/DesignToolbox/Resources/Assets.xcassets/ic_token.imageset/ic_token.svg
+./DesignToolbox/DesignToolbox/Resources/Assets.xcassets/ic_component_atom.imageset/ic_component_atom.svg
+./DesignToolbox/DesignToolbox/Resources/Assets.xcassets/ic_info.imageset/ic_info.svg
+./DesignToolbox/DesignToolbox/Resources/Assets.xcassets/ic_heart.imageset/ic_heart.svg
+
+./DesignToolbox/DesignToolbox/Resources/Assets.xcassets/Components/il_component_button.imageset/il_component_button_dark.svg
+./DesignToolbox/DesignToolbox/Resources/Assets.xcassets/Components/il_component_button.imageset/il_component_button_light.svg
+
+./DesignToolbox/DesignToolbox/Resources/Assets.xcassets/Illustrations/il_empty_screen.imageset/il_empty_screen.svg
+./DesignToolbox/DesignToolbox/Resources/Assets.xcassets/Illustrations/il_tokens_grid_column_margin.imageset/il_tokens_grid_column_margin.png
+./DesignToolbox/DesignToolbox/Resources/Assets.xcassets/Illustrations/il_tokens_grid_column_margin.imageset/il_tokens_grid_column_margin_dark.png
+./DesignToolbox/DesignToolbox/Resources/Assets.xcassets/Illustrations/il_tokens_grid_max_width.imageset/il_tokens_grid_max_width.png
+./DesignToolbox/DesignToolbox/Resources/Assets.xcassets/Illustrations/il_tokens_grid_max_width.imageset/il_tokens_grid_max_width_dark.png
+./DesignToolbox/DesignToolbox/Resources/Assets.xcassets/Illustrations/il_tokens_grid_min_width.imageset/il_tokens_grid_min_width.png
+./DesignToolbox/DesignToolbox/Resources/Assets.xcassets/Illustrations/il_tokens_grid_min_width.imageset/il_tokens_grid_min_width_dark.png
+./DesignToolbox/DesignToolbox/Resources/Assets.xcassets/Tokens/ic_chevron-down.imageset/ic_chevron-down.png
+./DesignToolbox/DesignToolbox/Resources/Assets.xcassets/Tokens/ic_chevron-up.imageset/ic_chevron-up.png
+./DesignToolbox/DesignToolbox/Resources/Assets.xcassets/Tokens/ic_copy.imageset/ic_copy.png
+./DesignToolbox/DesignToolbox/Resources/Assets.xcassets/Tokens/ic_border.imageset/ic_border.svg
+./DesignToolbox/DesignToolbox/Resources/Assets.xcassets/Tokens/ic_dimension.imageset/ic_dimension.svg
+./DesignToolbox/DesignToolbox/Resources/Assets.xcassets/Tokens/ic_filter_effects.imageset/ic_filter_effects.svg
+./DesignToolbox/DesignToolbox/Resources/Assets.xcassets/Tokens/ic_grid.imageset/ic_grid.svg
+./DesignToolbox/DesignToolbox/Resources/Assets.xcassets/Tokens/ic_layers.imageset/ic_layers.svg
+./DesignToolbox/DesignToolbox/Resources/Assets.xcassets/Tokens/ic_palette.imageset/ic_palette.svg
+./DesignToolbox/DesignToolbox/Resources/Assets.xcassets/Tokens/ic_vector.imageset/ic_vector.svg
+./DesignToolbox/DesignToolbox/Resources/Assets.xcassets/Tokens/ic_typography.imageset/ic_typography.svg
+./DesignToolbox/DesignToolbox/Resources/Assets.xcassets/Tokens/ic_union.imageset/ic_union.svg
End of the parts list under Orange SA Copyright
diff --git a/OUDS/OUDS Library TestPlan.xctestplan b/OUDS Library.xctestplan
similarity index 90%
rename from OUDS/OUDS Library TestPlan.xctestplan
rename to OUDS Library.xctestplan
index db8609539f..0a012e30a3 100644
--- a/OUDS/OUDS Library TestPlan.xctestplan
+++ b/OUDS Library.xctestplan
@@ -1,8 +1,8 @@
{
"configurations" : [
{
- "id" : "D42E26CC-AA05-4E91-9495-DDB680E99EF8",
- "name" : "OUDS Library TestPlan custom configuration",
+ "id" : "3397060C-267A-4449-B22F-DBDC24388298",
+ "name" : "Configuration 1",
"options" : {
}
@@ -15,29 +15,29 @@
{
"target" : {
"containerPath" : "container:..",
- "identifier" : "OUDSFoundations-Tests",
- "name" : "OUDSFoundations-Tests"
+ "identifier" : "OUDSThemesInverse-Tests",
+ "name" : "OUDSThemesInverse-Tests"
}
},
{
"target" : {
"containerPath" : "container:..",
- "identifier" : "OUDSThemesInverse-Tests",
- "name" : "OUDSThemesInverse-Tests"
+ "identifier" : "OUDSFoundations-Tests",
+ "name" : "OUDSFoundations-Tests"
}
},
{
"target" : {
"containerPath" : "container:..",
- "identifier" : "OUDSThemesOrange-Tests",
- "name" : "OUDSThemesOrange-Tests"
+ "identifier" : "OUDSTokensRaw-Tests",
+ "name" : "OUDSTokensRaw-Tests"
}
},
{
"target" : {
"containerPath" : "container:..",
- "identifier" : "OUDSTokensRaw-Tests",
- "name" : "OUDSTokensRaw-Tests"
+ "identifier" : "OUDSThemesOrange-Tests",
+ "name" : "OUDSThemesOrange-Tests"
}
},
{
diff --git a/OUDS/Core/OUDS/Sources/_OUDS.docc/_OUDS.md b/OUDS/Core/OUDS/Sources/_OUDS.docc/_OUDS.md
index a7986e0d36..dee9c0afe4 100644
--- a/OUDS/Core/OUDS/Sources/_OUDS.docc/_OUDS.md
+++ b/OUDS/Core/OUDS/Sources/_OUDS.docc/_OUDS.md
@@ -14,7 +14,7 @@ Orange is providing a full design system to build Orange mobile aplications. The
*Orange Unified Design System* has been implemented in a code library exposed as a _Swift Package_ that provides:
- a SwiftUI code library
-- a showcase application that can be launched to show the guidelines, components and modules (which will move outside the project in the future)
+- a demo application named *Desgin System Toolbox* that can be launched to show the guidelines, components and modules (which will move outside the project in the future)
This demo app also shows how to use the library or to style existing components.
Using these resources will allow you to create Orange branded applications faster and will inherit all the work that was done to make sure that all presented codes are fully tested regarding the brand, the ecodesign, the open source and the accessibility compliances.
diff --git a/OUDS/Core/Tokens/ComponentTokens/Sources/_OUDSTokensComponent.docc/OUDSTokensComponent.md b/OUDS/Core/Tokens/ComponentTokens/Sources/_OUDSTokensComponent.docc/OUDSTokensComponent.md
index 93d796d0e1..8cd7103c91 100644
--- a/OUDS/Core/Tokens/ComponentTokens/Sources/_OUDSTokensComponent.docc/OUDSTokensComponent.md
+++ b/OUDS/Core/Tokens/ComponentTokens/Sources/_OUDSTokensComponent.docc/OUDSTokensComponent.md
@@ -106,7 +106,7 @@ struct SomeView: View {
// Do not forget in your app to use the `OUDSThemeableView` for your theme, e.g. `OrangeTheme`
@main
-struct Showcase: App {
+struct DesignToolbox: App {
var body: some Scene {
WindowGroup {
diff --git a/OUDS/Core/Tokens/SemanticTokens/Sources/_OUDSTokensSemantic.docc/OUDSTokensSemantic.md b/OUDS/Core/Tokens/SemanticTokens/Sources/_OUDSTokensSemantic.docc/OUDSTokensSemantic.md
index f790e3d56c..d3fd246fb0 100644
--- a/OUDS/Core/Tokens/SemanticTokens/Sources/_OUDSTokensSemantic.docc/OUDSTokensSemantic.md
+++ b/OUDS/Core/Tokens/SemanticTokens/Sources/_OUDSTokensSemantic.docc/OUDSTokensSemantic.md
@@ -161,7 +161,7 @@ struct SomeView: View {
// Do not forget in your app to use the `OUDSThemeableView` for your theme, e.g. `OrangeTheme`
@main
-struct Showcase: App {
+struct DesignToolbox: App {
var body: some Scene {
WindowGroup {
diff --git a/OUDS/OUDS Library.xctestplan b/OUDS/OUDS Library.xctestplan
new file mode 100644
index 0000000000..63dff6baa8
--- /dev/null
+++ b/OUDS/OUDS Library.xctestplan
@@ -0,0 +1,52 @@
+{
+ "configurations" : [
+ {
+ "id" : "3397060C-267A-4449-B22F-DBDC24388298",
+ "name" : "Configuration 1",
+ "options" : {
+
+ }
+ }
+ ],
+ "defaultOptions" : {
+ "testTimeoutsEnabled" : true
+ },
+ "testTargets" : [
+ {
+ "target" : {
+ "containerPath" : "container:..",
+ "identifier" : "OUDSThemesInverse-Tests",
+ "name" : "OUDSThemesInverse-Tests"
+ }
+ },
+ {
+ "target" : {
+ "containerPath" : "container:..",
+ "identifier" : "OUDSFoundations-Tests",
+ "name" : "OUDSFoundations-Tests"
+ }
+ },
+ {
+ "target" : {
+ "containerPath" : "container:..",
+ "identifier" : "OUDSTokensRaw-Tests",
+ "name" : "OUDSTokensRaw-Tests"
+ }
+ },
+ {
+ "target" : {
+ "containerPath" : "container:..",
+ "identifier" : "OUDSTokensSemantic-Tests",
+ "name" : "OUDSTokensSemantic-Tests"
+ }
+ },
+ {
+ "target" : {
+ "containerPath" : "container:..",
+ "identifier" : "OUDSThemesOrange-Tests",
+ "name" : "OUDSThemesOrange-Tests"
+ }
+ }
+ ],
+ "version" : 1
+}
diff --git a/Showcase/Showcase/Resources/Assets.xcassets/Components/il_component_button.imageset/Contents.json b/Showcase/Showcase/Resources/Assets.xcassets/Components/il_component_button.imageset/Contents.json
deleted file mode 100644
index a38cb94970..0000000000
--- a/Showcase/Showcase/Resources/Assets.xcassets/Components/il_component_button.imageset/Contents.json
+++ /dev/null
@@ -1,22 +0,0 @@
-{
- "images" : [
- {
- "filename" : "il_component_button_light.svg",
- "idiom" : "universal"
- },
- {
- "appearances" : [
- {
- "appearance" : "luminosity",
- "value" : "dark"
- }
- ],
- "filename" : "il_component_button_dark.svg",
- "idiom" : "universal"
- }
- ],
- "info" : {
- "author" : "xcode",
- "version" : 1
- }
-}
diff --git a/Showcase/Showcase/Resources/Assets.xcassets/Components/il_component_button.imageset/il_component_button_dark.svg b/Showcase/Showcase/Resources/Assets.xcassets/Components/il_component_button.imageset/il_component_button_dark.svg
deleted file mode 100644
index 8d06a9fb5e..0000000000
--- a/Showcase/Showcase/Resources/Assets.xcassets/Components/il_component_button.imageset/il_component_button_dark.svg
+++ /dev/null
@@ -1,7 +0,0 @@
-
diff --git a/Showcase/Showcase/Resources/Assets.xcassets/Components/il_component_button.imageset/il_component_button_light.svg b/Showcase/Showcase/Resources/Assets.xcassets/Components/il_component_button.imageset/il_component_button_light.svg
deleted file mode 100644
index 1f8bf175df..0000000000
--- a/Showcase/Showcase/Resources/Assets.xcassets/Components/il_component_button.imageset/il_component_button_light.svg
+++ /dev/null
@@ -1,7 +0,0 @@
-
diff --git a/Showcase/Showcase/Resources/Assets.xcassets/ic_heart.imageset/Contents.json b/Showcase/Showcase/Resources/Assets.xcassets/ic_heart.imageset/Contents.json
deleted file mode 100644
index 594598bd78..0000000000
--- a/Showcase/Showcase/Resources/Assets.xcassets/ic_heart.imageset/Contents.json
+++ /dev/null
@@ -1,12 +0,0 @@
-{
- "images" : [
- {
- "filename" : "ic_heart.svg",
- "idiom" : "universal"
- }
- ],
- "info" : {
- "author" : "xcode",
- "version" : 1
- }
-}
diff --git a/Showcase/Showcase/Resources/Assets.xcassets/ic_heart.imageset/ic_heart.svg b/Showcase/Showcase/Resources/Assets.xcassets/ic_heart.imageset/ic_heart.svg
deleted file mode 100644
index 424f6f23e6..0000000000
--- a/Showcase/Showcase/Resources/Assets.xcassets/ic_heart.imageset/ic_heart.svg
+++ /dev/null
@@ -1,3 +0,0 @@
-
diff --git a/Showcase/Showcase/Resources/Colors.xcassets/Contents.json b/Showcase/Showcase/Resources/Colors.xcassets/Contents.json
deleted file mode 100644
index 73c00596a7..0000000000
--- a/Showcase/Showcase/Resources/Colors.xcassets/Contents.json
+++ /dev/null
@@ -1,6 +0,0 @@
-{
- "info" : {
- "author" : "xcode",
- "version" : 1
- }
-}
diff --git a/Showcase/ShowcaseTests/__Snapshots__/Components/OUDSComponentButtonUITests/__Snapshots__/OUDSComponentButtonUITests/test_InverseTheme_Dark.ColoredSurface_Icon_Default_Default.png b/Showcase/ShowcaseTests/__Snapshots__/Components/OUDSComponentButtonUITests/__Snapshots__/OUDSComponentButtonUITests/test_InverseTheme_Dark.ColoredSurface_Icon_Default_Default.png
deleted file mode 100644
index e4da1bbcd0..0000000000
Binary files a/Showcase/ShowcaseTests/__Snapshots__/Components/OUDSComponentButtonUITests/__Snapshots__/OUDSComponentButtonUITests/test_InverseTheme_Dark.ColoredSurface_Icon_Default_Default.png and /dev/null differ
diff --git a/Showcase/ShowcaseTests/__Snapshots__/Components/OUDSComponentButtonUITests/__Snapshots__/OUDSComponentButtonUITests/test_InverseTheme_Dark.ColoredSurface_Icon_Default_Default_Disabled.png b/Showcase/ShowcaseTests/__Snapshots__/Components/OUDSComponentButtonUITests/__Snapshots__/OUDSComponentButtonUITests/test_InverseTheme_Dark.ColoredSurface_Icon_Default_Default_Disabled.png
deleted file mode 100644
index 97babcf5b0..0000000000
Binary files a/Showcase/ShowcaseTests/__Snapshots__/Components/OUDSComponentButtonUITests/__Snapshots__/OUDSComponentButtonUITests/test_InverseTheme_Dark.ColoredSurface_Icon_Default_Default_Disabled.png and /dev/null differ
diff --git a/Showcase/ShowcaseTests/__Snapshots__/Components/OUDSComponentButtonUITests/__Snapshots__/OUDSComponentButtonUITests/test_InverseTheme_Dark.ColoredSurface_Icon_Minimal_Default.png b/Showcase/ShowcaseTests/__Snapshots__/Components/OUDSComponentButtonUITests/__Snapshots__/OUDSComponentButtonUITests/test_InverseTheme_Dark.ColoredSurface_Icon_Minimal_Default.png
deleted file mode 100644
index 1a350e449b..0000000000
Binary files a/Showcase/ShowcaseTests/__Snapshots__/Components/OUDSComponentButtonUITests/__Snapshots__/OUDSComponentButtonUITests/test_InverseTheme_Dark.ColoredSurface_Icon_Minimal_Default.png and /dev/null differ
diff --git a/Showcase/ShowcaseTests/__Snapshots__/Components/OUDSComponentButtonUITests/__Snapshots__/OUDSComponentButtonUITests/test_InverseTheme_Dark.ColoredSurface_Icon_Minimal_Default_Disabled.png b/Showcase/ShowcaseTests/__Snapshots__/Components/OUDSComponentButtonUITests/__Snapshots__/OUDSComponentButtonUITests/test_InverseTheme_Dark.ColoredSurface_Icon_Minimal_Default_Disabled.png
deleted file mode 100644
index 38ecaee20c..0000000000
Binary files a/Showcase/ShowcaseTests/__Snapshots__/Components/OUDSComponentButtonUITests/__Snapshots__/OUDSComponentButtonUITests/test_InverseTheme_Dark.ColoredSurface_Icon_Minimal_Default_Disabled.png and /dev/null differ
diff --git a/Showcase/ShowcaseTests/__Snapshots__/Components/OUDSComponentButtonUITests/__Snapshots__/OUDSComponentButtonUITests/test_InverseTheme_Dark.ColoredSurface_Icon_Strong_Default.png b/Showcase/ShowcaseTests/__Snapshots__/Components/OUDSComponentButtonUITests/__Snapshots__/OUDSComponentButtonUITests/test_InverseTheme_Dark.ColoredSurface_Icon_Strong_Default.png
deleted file mode 100644
index 32071398d1..0000000000
Binary files a/Showcase/ShowcaseTests/__Snapshots__/Components/OUDSComponentButtonUITests/__Snapshots__/OUDSComponentButtonUITests/test_InverseTheme_Dark.ColoredSurface_Icon_Strong_Default.png and /dev/null differ
diff --git a/Showcase/ShowcaseTests/__Snapshots__/Components/OUDSComponentButtonUITests/__Snapshots__/OUDSComponentButtonUITests/test_InverseTheme_Dark.ColoredSurface_Icon_Strong_Default_Disabled.png b/Showcase/ShowcaseTests/__Snapshots__/Components/OUDSComponentButtonUITests/__Snapshots__/OUDSComponentButtonUITests/test_InverseTheme_Dark.ColoredSurface_Icon_Strong_Default_Disabled.png
deleted file mode 100644
index ee637fad93..0000000000
Binary files a/Showcase/ShowcaseTests/__Snapshots__/Components/OUDSComponentButtonUITests/__Snapshots__/OUDSComponentButtonUITests/test_InverseTheme_Dark.ColoredSurface_Icon_Strong_Default_Disabled.png and /dev/null differ
diff --git a/Showcase/ShowcaseTests/__Snapshots__/Components/OUDSComponentButtonUITests/__Snapshots__/OUDSComponentButtonUITests/test_InverseTheme_Dark.ColoredSurface_TextAndIcon_Default_Default.png b/Showcase/ShowcaseTests/__Snapshots__/Components/OUDSComponentButtonUITests/__Snapshots__/OUDSComponentButtonUITests/test_InverseTheme_Dark.ColoredSurface_TextAndIcon_Default_Default.png
deleted file mode 100644
index aa9273773a..0000000000
Binary files a/Showcase/ShowcaseTests/__Snapshots__/Components/OUDSComponentButtonUITests/__Snapshots__/OUDSComponentButtonUITests/test_InverseTheme_Dark.ColoredSurface_TextAndIcon_Default_Default.png and /dev/null differ
diff --git a/Showcase/ShowcaseTests/__Snapshots__/Components/OUDSComponentButtonUITests/__Snapshots__/OUDSComponentButtonUITests/test_InverseTheme_Dark.ColoredSurface_TextAndIcon_Default_Default_Disabled.png b/Showcase/ShowcaseTests/__Snapshots__/Components/OUDSComponentButtonUITests/__Snapshots__/OUDSComponentButtonUITests/test_InverseTheme_Dark.ColoredSurface_TextAndIcon_Default_Default_Disabled.png
deleted file mode 100644
index 729efce7f4..0000000000
Binary files a/Showcase/ShowcaseTests/__Snapshots__/Components/OUDSComponentButtonUITests/__Snapshots__/OUDSComponentButtonUITests/test_InverseTheme_Dark.ColoredSurface_TextAndIcon_Default_Default_Disabled.png and /dev/null differ
diff --git a/Showcase/ShowcaseTests/__Snapshots__/Components/OUDSComponentButtonUITests/__Snapshots__/OUDSComponentButtonUITests/test_InverseTheme_Dark.ColoredSurface_TextAndIcon_Minimal_Default.png b/Showcase/ShowcaseTests/__Snapshots__/Components/OUDSComponentButtonUITests/__Snapshots__/OUDSComponentButtonUITests/test_InverseTheme_Dark.ColoredSurface_TextAndIcon_Minimal_Default.png
deleted file mode 100644
index c179ce466a..0000000000
Binary files a/Showcase/ShowcaseTests/__Snapshots__/Components/OUDSComponentButtonUITests/__Snapshots__/OUDSComponentButtonUITests/test_InverseTheme_Dark.ColoredSurface_TextAndIcon_Minimal_Default.png and /dev/null differ
diff --git a/Showcase/ShowcaseTests/__Snapshots__/Components/OUDSComponentButtonUITests/__Snapshots__/OUDSComponentButtonUITests/test_InverseTheme_Dark.ColoredSurface_TextAndIcon_Minimal_Default_Disabled.png b/Showcase/ShowcaseTests/__Snapshots__/Components/OUDSComponentButtonUITests/__Snapshots__/OUDSComponentButtonUITests/test_InverseTheme_Dark.ColoredSurface_TextAndIcon_Minimal_Default_Disabled.png
deleted file mode 100644
index 43f27df49d..0000000000
Binary files a/Showcase/ShowcaseTests/__Snapshots__/Components/OUDSComponentButtonUITests/__Snapshots__/OUDSComponentButtonUITests/test_InverseTheme_Dark.ColoredSurface_TextAndIcon_Minimal_Default_Disabled.png and /dev/null differ
diff --git a/Showcase/ShowcaseTests/__Snapshots__/Components/OUDSComponentButtonUITests/__Snapshots__/OUDSComponentButtonUITests/test_InverseTheme_Dark.ColoredSurface_TextAndIcon_Strong_Default.png b/Showcase/ShowcaseTests/__Snapshots__/Components/OUDSComponentButtonUITests/__Snapshots__/OUDSComponentButtonUITests/test_InverseTheme_Dark.ColoredSurface_TextAndIcon_Strong_Default.png
deleted file mode 100644
index f08dda7b80..0000000000
Binary files a/Showcase/ShowcaseTests/__Snapshots__/Components/OUDSComponentButtonUITests/__Snapshots__/OUDSComponentButtonUITests/test_InverseTheme_Dark.ColoredSurface_TextAndIcon_Strong_Default.png and /dev/null differ
diff --git a/Showcase/ShowcaseTests/__Snapshots__/Components/OUDSComponentButtonUITests/__Snapshots__/OUDSComponentButtonUITests/test_InverseTheme_Dark.ColoredSurface_TextAndIcon_Strong_Default_Disabled.png b/Showcase/ShowcaseTests/__Snapshots__/Components/OUDSComponentButtonUITests/__Snapshots__/OUDSComponentButtonUITests/test_InverseTheme_Dark.ColoredSurface_TextAndIcon_Strong_Default_Disabled.png
deleted file mode 100644
index 625373b2aa..0000000000
Binary files a/Showcase/ShowcaseTests/__Snapshots__/Components/OUDSComponentButtonUITests/__Snapshots__/OUDSComponentButtonUITests/test_InverseTheme_Dark.ColoredSurface_TextAndIcon_Strong_Default_Disabled.png and /dev/null differ
diff --git a/Showcase/ShowcaseTests/__Snapshots__/Components/OUDSComponentButtonUITests/__Snapshots__/OUDSComponentButtonUITests/test_InverseTheme_Dark.Icon_Default_Default.png b/Showcase/ShowcaseTests/__Snapshots__/Components/OUDSComponentButtonUITests/__Snapshots__/OUDSComponentButtonUITests/test_InverseTheme_Dark.Icon_Default_Default.png
deleted file mode 100644
index 11d22c65fb..0000000000
Binary files a/Showcase/ShowcaseTests/__Snapshots__/Components/OUDSComponentButtonUITests/__Snapshots__/OUDSComponentButtonUITests/test_InverseTheme_Dark.Icon_Default_Default.png and /dev/null differ
diff --git a/Showcase/ShowcaseTests/__Snapshots__/Components/OUDSComponentButtonUITests/__Snapshots__/OUDSComponentButtonUITests/test_InverseTheme_Dark.Icon_Default_Default_Disabled.png b/Showcase/ShowcaseTests/__Snapshots__/Components/OUDSComponentButtonUITests/__Snapshots__/OUDSComponentButtonUITests/test_InverseTheme_Dark.Icon_Default_Default_Disabled.png
deleted file mode 100644
index d9f8525b25..0000000000
Binary files a/Showcase/ShowcaseTests/__Snapshots__/Components/OUDSComponentButtonUITests/__Snapshots__/OUDSComponentButtonUITests/test_InverseTheme_Dark.Icon_Default_Default_Disabled.png and /dev/null differ
diff --git a/Showcase/ShowcaseTests/__Snapshots__/Components/OUDSComponentButtonUITests/__Snapshots__/OUDSComponentButtonUITests/test_InverseTheme_Dark.Icon_Minimal_Default.png b/Showcase/ShowcaseTests/__Snapshots__/Components/OUDSComponentButtonUITests/__Snapshots__/OUDSComponentButtonUITests/test_InverseTheme_Dark.Icon_Minimal_Default.png
deleted file mode 100644
index ee2263be02..0000000000
Binary files a/Showcase/ShowcaseTests/__Snapshots__/Components/OUDSComponentButtonUITests/__Snapshots__/OUDSComponentButtonUITests/test_InverseTheme_Dark.Icon_Minimal_Default.png and /dev/null differ
diff --git a/Showcase/ShowcaseTests/__Snapshots__/Components/OUDSComponentButtonUITests/__Snapshots__/OUDSComponentButtonUITests/test_InverseTheme_Dark.Icon_Minimal_Default_Disabled.png b/Showcase/ShowcaseTests/__Snapshots__/Components/OUDSComponentButtonUITests/__Snapshots__/OUDSComponentButtonUITests/test_InverseTheme_Dark.Icon_Minimal_Default_Disabled.png
deleted file mode 100644
index 11da186260..0000000000
Binary files a/Showcase/ShowcaseTests/__Snapshots__/Components/OUDSComponentButtonUITests/__Snapshots__/OUDSComponentButtonUITests/test_InverseTheme_Dark.Icon_Minimal_Default_Disabled.png and /dev/null differ
diff --git a/Showcase/ShowcaseTests/__Snapshots__/Components/OUDSComponentButtonUITests/__Snapshots__/OUDSComponentButtonUITests/test_InverseTheme_Dark.Icon_Negative_Default.png b/Showcase/ShowcaseTests/__Snapshots__/Components/OUDSComponentButtonUITests/__Snapshots__/OUDSComponentButtonUITests/test_InverseTheme_Dark.Icon_Negative_Default.png
deleted file mode 100644
index 71e7832740..0000000000
Binary files a/Showcase/ShowcaseTests/__Snapshots__/Components/OUDSComponentButtonUITests/__Snapshots__/OUDSComponentButtonUITests/test_InverseTheme_Dark.Icon_Negative_Default.png and /dev/null differ
diff --git a/Showcase/ShowcaseTests/__Snapshots__/Components/OUDSComponentButtonUITests/__Snapshots__/OUDSComponentButtonUITests/test_InverseTheme_Dark.Icon_Negative_Default_Disabled.png b/Showcase/ShowcaseTests/__Snapshots__/Components/OUDSComponentButtonUITests/__Snapshots__/OUDSComponentButtonUITests/test_InverseTheme_Dark.Icon_Negative_Default_Disabled.png
deleted file mode 100644
index a16771f5b0..0000000000
Binary files a/Showcase/ShowcaseTests/__Snapshots__/Components/OUDSComponentButtonUITests/__Snapshots__/OUDSComponentButtonUITests/test_InverseTheme_Dark.Icon_Negative_Default_Disabled.png and /dev/null differ
diff --git a/Showcase/ShowcaseTests/__Snapshots__/Components/OUDSComponentButtonUITests/__Snapshots__/OUDSComponentButtonUITests/test_InverseTheme_Dark.Icon_Strong_Default.png b/Showcase/ShowcaseTests/__Snapshots__/Components/OUDSComponentButtonUITests/__Snapshots__/OUDSComponentButtonUITests/test_InverseTheme_Dark.Icon_Strong_Default.png
deleted file mode 100644
index 5b206cd1e4..0000000000
Binary files a/Showcase/ShowcaseTests/__Snapshots__/Components/OUDSComponentButtonUITests/__Snapshots__/OUDSComponentButtonUITests/test_InverseTheme_Dark.Icon_Strong_Default.png and /dev/null differ
diff --git a/Showcase/ShowcaseTests/__Snapshots__/Components/OUDSComponentButtonUITests/__Snapshots__/OUDSComponentButtonUITests/test_InverseTheme_Dark.Icon_Strong_Default_Disabled.png b/Showcase/ShowcaseTests/__Snapshots__/Components/OUDSComponentButtonUITests/__Snapshots__/OUDSComponentButtonUITests/test_InverseTheme_Dark.Icon_Strong_Default_Disabled.png
deleted file mode 100644
index a16771f5b0..0000000000
Binary files a/Showcase/ShowcaseTests/__Snapshots__/Components/OUDSComponentButtonUITests/__Snapshots__/OUDSComponentButtonUITests/test_InverseTheme_Dark.Icon_Strong_Default_Disabled.png and /dev/null differ
diff --git a/Showcase/ShowcaseTests/__Snapshots__/Components/OUDSComponentButtonUITests/__Snapshots__/OUDSComponentButtonUITests/test_InverseTheme_Dark.TextAndIcon_Default_Default.png b/Showcase/ShowcaseTests/__Snapshots__/Components/OUDSComponentButtonUITests/__Snapshots__/OUDSComponentButtonUITests/test_InverseTheme_Dark.TextAndIcon_Default_Default.png
deleted file mode 100644
index 5b35b45da5..0000000000
Binary files a/Showcase/ShowcaseTests/__Snapshots__/Components/OUDSComponentButtonUITests/__Snapshots__/OUDSComponentButtonUITests/test_InverseTheme_Dark.TextAndIcon_Default_Default.png and /dev/null differ
diff --git a/Showcase/ShowcaseTests/__Snapshots__/Components/OUDSComponentButtonUITests/__Snapshots__/OUDSComponentButtonUITests/test_InverseTheme_Dark.TextAndIcon_Default_Default_Disabled.png b/Showcase/ShowcaseTests/__Snapshots__/Components/OUDSComponentButtonUITests/__Snapshots__/OUDSComponentButtonUITests/test_InverseTheme_Dark.TextAndIcon_Default_Default_Disabled.png
deleted file mode 100644
index 58aa52c842..0000000000
Binary files a/Showcase/ShowcaseTests/__Snapshots__/Components/OUDSComponentButtonUITests/__Snapshots__/OUDSComponentButtonUITests/test_InverseTheme_Dark.TextAndIcon_Default_Default_Disabled.png and /dev/null differ
diff --git a/Showcase/ShowcaseTests/__Snapshots__/Components/OUDSComponentButtonUITests/__Snapshots__/OUDSComponentButtonUITests/test_InverseTheme_Dark.TextAndIcon_Minimal_Default.png b/Showcase/ShowcaseTests/__Snapshots__/Components/OUDSComponentButtonUITests/__Snapshots__/OUDSComponentButtonUITests/test_InverseTheme_Dark.TextAndIcon_Minimal_Default.png
deleted file mode 100644
index 856d6467b3..0000000000
Binary files a/Showcase/ShowcaseTests/__Snapshots__/Components/OUDSComponentButtonUITests/__Snapshots__/OUDSComponentButtonUITests/test_InverseTheme_Dark.TextAndIcon_Minimal_Default.png and /dev/null differ
diff --git a/Showcase/ShowcaseTests/__Snapshots__/Components/OUDSComponentButtonUITests/__Snapshots__/OUDSComponentButtonUITests/test_InverseTheme_Dark.TextAndIcon_Minimal_Default_Disabled.png b/Showcase/ShowcaseTests/__Snapshots__/Components/OUDSComponentButtonUITests/__Snapshots__/OUDSComponentButtonUITests/test_InverseTheme_Dark.TextAndIcon_Minimal_Default_Disabled.png
deleted file mode 100644
index a5e58ae6a4..0000000000
Binary files a/Showcase/ShowcaseTests/__Snapshots__/Components/OUDSComponentButtonUITests/__Snapshots__/OUDSComponentButtonUITests/test_InverseTheme_Dark.TextAndIcon_Minimal_Default_Disabled.png and /dev/null differ
diff --git a/Showcase/ShowcaseTests/__Snapshots__/Components/OUDSComponentButtonUITests/__Snapshots__/OUDSComponentButtonUITests/test_InverseTheme_Dark.TextAndIcon_Negative_Default.png b/Showcase/ShowcaseTests/__Snapshots__/Components/OUDSComponentButtonUITests/__Snapshots__/OUDSComponentButtonUITests/test_InverseTheme_Dark.TextAndIcon_Negative_Default.png
deleted file mode 100644
index 89ec8f3ef8..0000000000
Binary files a/Showcase/ShowcaseTests/__Snapshots__/Components/OUDSComponentButtonUITests/__Snapshots__/OUDSComponentButtonUITests/test_InverseTheme_Dark.TextAndIcon_Negative_Default.png and /dev/null differ
diff --git a/Showcase/ShowcaseTests/__Snapshots__/Components/OUDSComponentButtonUITests/__Snapshots__/OUDSComponentButtonUITests/test_InverseTheme_Dark.TextAndIcon_Negative_Default_Disabled.png b/Showcase/ShowcaseTests/__Snapshots__/Components/OUDSComponentButtonUITests/__Snapshots__/OUDSComponentButtonUITests/test_InverseTheme_Dark.TextAndIcon_Negative_Default_Disabled.png
deleted file mode 100644
index 58878bf328..0000000000
Binary files a/Showcase/ShowcaseTests/__Snapshots__/Components/OUDSComponentButtonUITests/__Snapshots__/OUDSComponentButtonUITests/test_InverseTheme_Dark.TextAndIcon_Negative_Default_Disabled.png and /dev/null differ
diff --git a/Showcase/ShowcaseTests/__Snapshots__/Components/OUDSComponentButtonUITests/__Snapshots__/OUDSComponentButtonUITests/test_InverseTheme_Dark.TextAndIcon_Strong_Default.png b/Showcase/ShowcaseTests/__Snapshots__/Components/OUDSComponentButtonUITests/__Snapshots__/OUDSComponentButtonUITests/test_InverseTheme_Dark.TextAndIcon_Strong_Default.png
deleted file mode 100644
index 50a09eb72a..0000000000
Binary files a/Showcase/ShowcaseTests/__Snapshots__/Components/OUDSComponentButtonUITests/__Snapshots__/OUDSComponentButtonUITests/test_InverseTheme_Dark.TextAndIcon_Strong_Default.png and /dev/null differ
diff --git a/Showcase/ShowcaseTests/__Snapshots__/Components/OUDSComponentButtonUITests/__Snapshots__/OUDSComponentButtonUITests/test_InverseTheme_Dark.TextAndIcon_Strong_Default_Disabled.png b/Showcase/ShowcaseTests/__Snapshots__/Components/OUDSComponentButtonUITests/__Snapshots__/OUDSComponentButtonUITests/test_InverseTheme_Dark.TextAndIcon_Strong_Default_Disabled.png
deleted file mode 100644
index 58878bf328..0000000000
Binary files a/Showcase/ShowcaseTests/__Snapshots__/Components/OUDSComponentButtonUITests/__Snapshots__/OUDSComponentButtonUITests/test_InverseTheme_Dark.TextAndIcon_Strong_Default_Disabled.png and /dev/null differ
diff --git a/Showcase/ShowcaseTests/__Snapshots__/Components/OUDSComponentButtonUITests/__Snapshots__/OUDSComponentButtonUITests/test_InverseTheme_Light.ColoredSurface_Icon_Default_Default.png b/Showcase/ShowcaseTests/__Snapshots__/Components/OUDSComponentButtonUITests/__Snapshots__/OUDSComponentButtonUITests/test_InverseTheme_Light.ColoredSurface_Icon_Default_Default.png
deleted file mode 100644
index 80237dc97a..0000000000
Binary files a/Showcase/ShowcaseTests/__Snapshots__/Components/OUDSComponentButtonUITests/__Snapshots__/OUDSComponentButtonUITests/test_InverseTheme_Light.ColoredSurface_Icon_Default_Default.png and /dev/null differ
diff --git a/Showcase/ShowcaseTests/__Snapshots__/Components/OUDSComponentButtonUITests/__Snapshots__/OUDSComponentButtonUITests/test_InverseTheme_Light.ColoredSurface_Icon_Default_Default_Disabled.png b/Showcase/ShowcaseTests/__Snapshots__/Components/OUDSComponentButtonUITests/__Snapshots__/OUDSComponentButtonUITests/test_InverseTheme_Light.ColoredSurface_Icon_Default_Default_Disabled.png
deleted file mode 100644
index 05a9f36741..0000000000
Binary files a/Showcase/ShowcaseTests/__Snapshots__/Components/OUDSComponentButtonUITests/__Snapshots__/OUDSComponentButtonUITests/test_InverseTheme_Light.ColoredSurface_Icon_Default_Default_Disabled.png and /dev/null differ
diff --git a/Showcase/ShowcaseTests/__Snapshots__/Components/OUDSComponentButtonUITests/__Snapshots__/OUDSComponentButtonUITests/test_InverseTheme_Light.ColoredSurface_Icon_Minimal_Default.png b/Showcase/ShowcaseTests/__Snapshots__/Components/OUDSComponentButtonUITests/__Snapshots__/OUDSComponentButtonUITests/test_InverseTheme_Light.ColoredSurface_Icon_Minimal_Default.png
deleted file mode 100644
index d7d6483197..0000000000
Binary files a/Showcase/ShowcaseTests/__Snapshots__/Components/OUDSComponentButtonUITests/__Snapshots__/OUDSComponentButtonUITests/test_InverseTheme_Light.ColoredSurface_Icon_Minimal_Default.png and /dev/null differ
diff --git a/Showcase/ShowcaseTests/__Snapshots__/Components/OUDSComponentButtonUITests/__Snapshots__/OUDSComponentButtonUITests/test_InverseTheme_Light.ColoredSurface_Icon_Minimal_Default_Disabled.png b/Showcase/ShowcaseTests/__Snapshots__/Components/OUDSComponentButtonUITests/__Snapshots__/OUDSComponentButtonUITests/test_InverseTheme_Light.ColoredSurface_Icon_Minimal_Default_Disabled.png
deleted file mode 100644
index 0935ca693e..0000000000
Binary files a/Showcase/ShowcaseTests/__Snapshots__/Components/OUDSComponentButtonUITests/__Snapshots__/OUDSComponentButtonUITests/test_InverseTheme_Light.ColoredSurface_Icon_Minimal_Default_Disabled.png and /dev/null differ
diff --git a/Showcase/ShowcaseTests/__Snapshots__/Components/OUDSComponentButtonUITests/__Snapshots__/OUDSComponentButtonUITests/test_InverseTheme_Light.ColoredSurface_Icon_Strong_Default.png b/Showcase/ShowcaseTests/__Snapshots__/Components/OUDSComponentButtonUITests/__Snapshots__/OUDSComponentButtonUITests/test_InverseTheme_Light.ColoredSurface_Icon_Strong_Default.png
deleted file mode 100644
index 3bf34240c3..0000000000
Binary files a/Showcase/ShowcaseTests/__Snapshots__/Components/OUDSComponentButtonUITests/__Snapshots__/OUDSComponentButtonUITests/test_InverseTheme_Light.ColoredSurface_Icon_Strong_Default.png and /dev/null differ
diff --git a/Showcase/ShowcaseTests/__Snapshots__/Components/OUDSComponentButtonUITests/__Snapshots__/OUDSComponentButtonUITests/test_InverseTheme_Light.ColoredSurface_Icon_Strong_Default_Disabled.png b/Showcase/ShowcaseTests/__Snapshots__/Components/OUDSComponentButtonUITests/__Snapshots__/OUDSComponentButtonUITests/test_InverseTheme_Light.ColoredSurface_Icon_Strong_Default_Disabled.png
deleted file mode 100644
index 673593b837..0000000000
Binary files a/Showcase/ShowcaseTests/__Snapshots__/Components/OUDSComponentButtonUITests/__Snapshots__/OUDSComponentButtonUITests/test_InverseTheme_Light.ColoredSurface_Icon_Strong_Default_Disabled.png and /dev/null differ
diff --git a/Showcase/ShowcaseTests/__Snapshots__/Components/OUDSComponentButtonUITests/__Snapshots__/OUDSComponentButtonUITests/test_InverseTheme_Light.ColoredSurface_TextAndIcon_Default_Default.png b/Showcase/ShowcaseTests/__Snapshots__/Components/OUDSComponentButtonUITests/__Snapshots__/OUDSComponentButtonUITests/test_InverseTheme_Light.ColoredSurface_TextAndIcon_Default_Default.png
deleted file mode 100644
index c89d61275f..0000000000
Binary files a/Showcase/ShowcaseTests/__Snapshots__/Components/OUDSComponentButtonUITests/__Snapshots__/OUDSComponentButtonUITests/test_InverseTheme_Light.ColoredSurface_TextAndIcon_Default_Default.png and /dev/null differ
diff --git a/Showcase/ShowcaseTests/__Snapshots__/Components/OUDSComponentButtonUITests/__Snapshots__/OUDSComponentButtonUITests/test_InverseTheme_Light.ColoredSurface_TextAndIcon_Default_Default_Disabled.png b/Showcase/ShowcaseTests/__Snapshots__/Components/OUDSComponentButtonUITests/__Snapshots__/OUDSComponentButtonUITests/test_InverseTheme_Light.ColoredSurface_TextAndIcon_Default_Default_Disabled.png
deleted file mode 100644
index ba9de74b06..0000000000
Binary files a/Showcase/ShowcaseTests/__Snapshots__/Components/OUDSComponentButtonUITests/__Snapshots__/OUDSComponentButtonUITests/test_InverseTheme_Light.ColoredSurface_TextAndIcon_Default_Default_Disabled.png and /dev/null differ
diff --git a/Showcase/ShowcaseTests/__Snapshots__/Components/OUDSComponentButtonUITests/__Snapshots__/OUDSComponentButtonUITests/test_InverseTheme_Light.ColoredSurface_TextAndIcon_Minimal_Default.png b/Showcase/ShowcaseTests/__Snapshots__/Components/OUDSComponentButtonUITests/__Snapshots__/OUDSComponentButtonUITests/test_InverseTheme_Light.ColoredSurface_TextAndIcon_Minimal_Default.png
deleted file mode 100644
index 69886e510f..0000000000
Binary files a/Showcase/ShowcaseTests/__Snapshots__/Components/OUDSComponentButtonUITests/__Snapshots__/OUDSComponentButtonUITests/test_InverseTheme_Light.ColoredSurface_TextAndIcon_Minimal_Default.png and /dev/null differ
diff --git a/Showcase/ShowcaseTests/__Snapshots__/Components/OUDSComponentButtonUITests/__Snapshots__/OUDSComponentButtonUITests/test_InverseTheme_Light.ColoredSurface_TextAndIcon_Minimal_Default_Disabled.png b/Showcase/ShowcaseTests/__Snapshots__/Components/OUDSComponentButtonUITests/__Snapshots__/OUDSComponentButtonUITests/test_InverseTheme_Light.ColoredSurface_TextAndIcon_Minimal_Default_Disabled.png
deleted file mode 100644
index 2f4d988435..0000000000
Binary files a/Showcase/ShowcaseTests/__Snapshots__/Components/OUDSComponentButtonUITests/__Snapshots__/OUDSComponentButtonUITests/test_InverseTheme_Light.ColoredSurface_TextAndIcon_Minimal_Default_Disabled.png and /dev/null differ
diff --git a/Showcase/ShowcaseTests/__Snapshots__/Components/OUDSComponentButtonUITests/__Snapshots__/OUDSComponentButtonUITests/test_InverseTheme_Light.ColoredSurface_TextAndIcon_Strong_Default.png b/Showcase/ShowcaseTests/__Snapshots__/Components/OUDSComponentButtonUITests/__Snapshots__/OUDSComponentButtonUITests/test_InverseTheme_Light.ColoredSurface_TextAndIcon_Strong_Default.png
deleted file mode 100644
index c25d557674..0000000000
Binary files a/Showcase/ShowcaseTests/__Snapshots__/Components/OUDSComponentButtonUITests/__Snapshots__/OUDSComponentButtonUITests/test_InverseTheme_Light.ColoredSurface_TextAndIcon_Strong_Default.png and /dev/null differ
diff --git a/Showcase/ShowcaseTests/__Snapshots__/Components/OUDSComponentButtonUITests/__Snapshots__/OUDSComponentButtonUITests/test_InverseTheme_Light.ColoredSurface_TextAndIcon_Strong_Default_Disabled.png b/Showcase/ShowcaseTests/__Snapshots__/Components/OUDSComponentButtonUITests/__Snapshots__/OUDSComponentButtonUITests/test_InverseTheme_Light.ColoredSurface_TextAndIcon_Strong_Default_Disabled.png
deleted file mode 100644
index a30c738325..0000000000
Binary files a/Showcase/ShowcaseTests/__Snapshots__/Components/OUDSComponentButtonUITests/__Snapshots__/OUDSComponentButtonUITests/test_InverseTheme_Light.ColoredSurface_TextAndIcon_Strong_Default_Disabled.png and /dev/null differ
diff --git a/Showcase/ShowcaseTests/__Snapshots__/Components/OUDSComponentButtonUITests/__Snapshots__/OUDSComponentButtonUITests/test_InverseTheme_Light.Icon_Default_Default.png b/Showcase/ShowcaseTests/__Snapshots__/Components/OUDSComponentButtonUITests/__Snapshots__/OUDSComponentButtonUITests/test_InverseTheme_Light.Icon_Default_Default.png
deleted file mode 100644
index 7d8b6a6f60..0000000000
Binary files a/Showcase/ShowcaseTests/__Snapshots__/Components/OUDSComponentButtonUITests/__Snapshots__/OUDSComponentButtonUITests/test_InverseTheme_Light.Icon_Default_Default.png and /dev/null differ
diff --git a/Showcase/ShowcaseTests/__Snapshots__/Components/OUDSComponentButtonUITests/__Snapshots__/OUDSComponentButtonUITests/test_InverseTheme_Light.Icon_Default_Default_Disabled.png b/Showcase/ShowcaseTests/__Snapshots__/Components/OUDSComponentButtonUITests/__Snapshots__/OUDSComponentButtonUITests/test_InverseTheme_Light.Icon_Default_Default_Disabled.png
deleted file mode 100644
index 5b0050d54a..0000000000
Binary files a/Showcase/ShowcaseTests/__Snapshots__/Components/OUDSComponentButtonUITests/__Snapshots__/OUDSComponentButtonUITests/test_InverseTheme_Light.Icon_Default_Default_Disabled.png and /dev/null differ
diff --git a/Showcase/ShowcaseTests/__Snapshots__/Components/OUDSComponentButtonUITests/__Snapshots__/OUDSComponentButtonUITests/test_InverseTheme_Light.Icon_Minimal_Default.png b/Showcase/ShowcaseTests/__Snapshots__/Components/OUDSComponentButtonUITests/__Snapshots__/OUDSComponentButtonUITests/test_InverseTheme_Light.Icon_Minimal_Default.png
deleted file mode 100644
index e6bc610a23..0000000000
Binary files a/Showcase/ShowcaseTests/__Snapshots__/Components/OUDSComponentButtonUITests/__Snapshots__/OUDSComponentButtonUITests/test_InverseTheme_Light.Icon_Minimal_Default.png and /dev/null differ
diff --git a/Showcase/ShowcaseTests/__Snapshots__/Components/OUDSComponentButtonUITests/__Snapshots__/OUDSComponentButtonUITests/test_InverseTheme_Light.Icon_Minimal_Default_Disabled.png b/Showcase/ShowcaseTests/__Snapshots__/Components/OUDSComponentButtonUITests/__Snapshots__/OUDSComponentButtonUITests/test_InverseTheme_Light.Icon_Minimal_Default_Disabled.png
deleted file mode 100644
index 93acf326e2..0000000000
Binary files a/Showcase/ShowcaseTests/__Snapshots__/Components/OUDSComponentButtonUITests/__Snapshots__/OUDSComponentButtonUITests/test_InverseTheme_Light.Icon_Minimal_Default_Disabled.png and /dev/null differ
diff --git a/Showcase/ShowcaseTests/__Snapshots__/Components/OUDSComponentButtonUITests/__Snapshots__/OUDSComponentButtonUITests/test_InverseTheme_Light.Icon_Negative_Default.png b/Showcase/ShowcaseTests/__Snapshots__/Components/OUDSComponentButtonUITests/__Snapshots__/OUDSComponentButtonUITests/test_InverseTheme_Light.Icon_Negative_Default.png
deleted file mode 100644
index d55bdaac2d..0000000000
Binary files a/Showcase/ShowcaseTests/__Snapshots__/Components/OUDSComponentButtonUITests/__Snapshots__/OUDSComponentButtonUITests/test_InverseTheme_Light.Icon_Negative_Default.png and /dev/null differ
diff --git a/Showcase/ShowcaseTests/__Snapshots__/Components/OUDSComponentButtonUITests/__Snapshots__/OUDSComponentButtonUITests/test_InverseTheme_Light.Icon_Negative_Default_Disabled.png b/Showcase/ShowcaseTests/__Snapshots__/Components/OUDSComponentButtonUITests/__Snapshots__/OUDSComponentButtonUITests/test_InverseTheme_Light.Icon_Negative_Default_Disabled.png
deleted file mode 100644
index 39c7e09bfb..0000000000
Binary files a/Showcase/ShowcaseTests/__Snapshots__/Components/OUDSComponentButtonUITests/__Snapshots__/OUDSComponentButtonUITests/test_InverseTheme_Light.Icon_Negative_Default_Disabled.png and /dev/null differ
diff --git a/Showcase/ShowcaseTests/__Snapshots__/Components/OUDSComponentButtonUITests/__Snapshots__/OUDSComponentButtonUITests/test_InverseTheme_Light.Icon_Strong_Default.png b/Showcase/ShowcaseTests/__Snapshots__/Components/OUDSComponentButtonUITests/__Snapshots__/OUDSComponentButtonUITests/test_InverseTheme_Light.Icon_Strong_Default.png
deleted file mode 100644
index 1750676728..0000000000
Binary files a/Showcase/ShowcaseTests/__Snapshots__/Components/OUDSComponentButtonUITests/__Snapshots__/OUDSComponentButtonUITests/test_InverseTheme_Light.Icon_Strong_Default.png and /dev/null differ
diff --git a/Showcase/ShowcaseTests/__Snapshots__/Components/OUDSComponentButtonUITests/__Snapshots__/OUDSComponentButtonUITests/test_InverseTheme_Light.Icon_Strong_Default_Disabled.png b/Showcase/ShowcaseTests/__Snapshots__/Components/OUDSComponentButtonUITests/__Snapshots__/OUDSComponentButtonUITests/test_InverseTheme_Light.Icon_Strong_Default_Disabled.png
deleted file mode 100644
index 39c7e09bfb..0000000000
Binary files a/Showcase/ShowcaseTests/__Snapshots__/Components/OUDSComponentButtonUITests/__Snapshots__/OUDSComponentButtonUITests/test_InverseTheme_Light.Icon_Strong_Default_Disabled.png and /dev/null differ
diff --git a/Showcase/ShowcaseTests/__Snapshots__/Components/OUDSComponentButtonUITests/__Snapshots__/OUDSComponentButtonUITests/test_InverseTheme_Light.TextAndIcon_Default_Default.png b/Showcase/ShowcaseTests/__Snapshots__/Components/OUDSComponentButtonUITests/__Snapshots__/OUDSComponentButtonUITests/test_InverseTheme_Light.TextAndIcon_Default_Default.png
deleted file mode 100644
index ac02d3a199..0000000000
Binary files a/Showcase/ShowcaseTests/__Snapshots__/Components/OUDSComponentButtonUITests/__Snapshots__/OUDSComponentButtonUITests/test_InverseTheme_Light.TextAndIcon_Default_Default.png and /dev/null differ
diff --git a/Showcase/ShowcaseTests/__Snapshots__/Components/OUDSComponentButtonUITests/__Snapshots__/OUDSComponentButtonUITests/test_InverseTheme_Light.TextAndIcon_Default_Default_Disabled.png b/Showcase/ShowcaseTests/__Snapshots__/Components/OUDSComponentButtonUITests/__Snapshots__/OUDSComponentButtonUITests/test_InverseTheme_Light.TextAndIcon_Default_Default_Disabled.png
deleted file mode 100644
index c19fcfd442..0000000000
Binary files a/Showcase/ShowcaseTests/__Snapshots__/Components/OUDSComponentButtonUITests/__Snapshots__/OUDSComponentButtonUITests/test_InverseTheme_Light.TextAndIcon_Default_Default_Disabled.png and /dev/null differ
diff --git a/Showcase/ShowcaseTests/__Snapshots__/Components/OUDSComponentButtonUITests/__Snapshots__/OUDSComponentButtonUITests/test_InverseTheme_Light.TextAndIcon_Minimal_Default.png b/Showcase/ShowcaseTests/__Snapshots__/Components/OUDSComponentButtonUITests/__Snapshots__/OUDSComponentButtonUITests/test_InverseTheme_Light.TextAndIcon_Minimal_Default.png
deleted file mode 100644
index 63ec0e4133..0000000000
Binary files a/Showcase/ShowcaseTests/__Snapshots__/Components/OUDSComponentButtonUITests/__Snapshots__/OUDSComponentButtonUITests/test_InverseTheme_Light.TextAndIcon_Minimal_Default.png and /dev/null differ
diff --git a/Showcase/ShowcaseTests/__Snapshots__/Components/OUDSComponentButtonUITests/__Snapshots__/OUDSComponentButtonUITests/test_InverseTheme_Light.TextAndIcon_Minimal_Default_Disabled.png b/Showcase/ShowcaseTests/__Snapshots__/Components/OUDSComponentButtonUITests/__Snapshots__/OUDSComponentButtonUITests/test_InverseTheme_Light.TextAndIcon_Minimal_Default_Disabled.png
deleted file mode 100644
index 47d6f1e4f9..0000000000
Binary files a/Showcase/ShowcaseTests/__Snapshots__/Components/OUDSComponentButtonUITests/__Snapshots__/OUDSComponentButtonUITests/test_InverseTheme_Light.TextAndIcon_Minimal_Default_Disabled.png and /dev/null differ
diff --git a/Showcase/ShowcaseTests/__Snapshots__/Components/OUDSComponentButtonUITests/__Snapshots__/OUDSComponentButtonUITests/test_InverseTheme_Light.TextAndIcon_Negative_Default.png b/Showcase/ShowcaseTests/__Snapshots__/Components/OUDSComponentButtonUITests/__Snapshots__/OUDSComponentButtonUITests/test_InverseTheme_Light.TextAndIcon_Negative_Default.png
deleted file mode 100644
index c4ac913ad1..0000000000
Binary files a/Showcase/ShowcaseTests/__Snapshots__/Components/OUDSComponentButtonUITests/__Snapshots__/OUDSComponentButtonUITests/test_InverseTheme_Light.TextAndIcon_Negative_Default.png and /dev/null differ
diff --git a/Showcase/ShowcaseTests/__Snapshots__/Components/OUDSComponentButtonUITests/__Snapshots__/OUDSComponentButtonUITests/test_InverseTheme_Light.TextAndIcon_Negative_Default_Disabled.png b/Showcase/ShowcaseTests/__Snapshots__/Components/OUDSComponentButtonUITests/__Snapshots__/OUDSComponentButtonUITests/test_InverseTheme_Light.TextAndIcon_Negative_Default_Disabled.png
deleted file mode 100644
index 2eb4444242..0000000000
Binary files a/Showcase/ShowcaseTests/__Snapshots__/Components/OUDSComponentButtonUITests/__Snapshots__/OUDSComponentButtonUITests/test_InverseTheme_Light.TextAndIcon_Negative_Default_Disabled.png and /dev/null differ
diff --git a/Showcase/ShowcaseTests/__Snapshots__/Components/OUDSComponentButtonUITests/__Snapshots__/OUDSComponentButtonUITests/test_InverseTheme_Light.TextAndIcon_Strong_Default.png b/Showcase/ShowcaseTests/__Snapshots__/Components/OUDSComponentButtonUITests/__Snapshots__/OUDSComponentButtonUITests/test_InverseTheme_Light.TextAndIcon_Strong_Default.png
deleted file mode 100644
index 33c2413b97..0000000000
Binary files a/Showcase/ShowcaseTests/__Snapshots__/Components/OUDSComponentButtonUITests/__Snapshots__/OUDSComponentButtonUITests/test_InverseTheme_Light.TextAndIcon_Strong_Default.png and /dev/null differ
diff --git a/Showcase/ShowcaseTests/__Snapshots__/Components/OUDSComponentButtonUITests/__Snapshots__/OUDSComponentButtonUITests/test_InverseTheme_Light.TextAndIcon_Strong_Default_Disabled.png b/Showcase/ShowcaseTests/__Snapshots__/Components/OUDSComponentButtonUITests/__Snapshots__/OUDSComponentButtonUITests/test_InverseTheme_Light.TextAndIcon_Strong_Default_Disabled.png
deleted file mode 100644
index 2eb4444242..0000000000
Binary files a/Showcase/ShowcaseTests/__Snapshots__/Components/OUDSComponentButtonUITests/__Snapshots__/OUDSComponentButtonUITests/test_InverseTheme_Light.TextAndIcon_Strong_Default_Disabled.png and /dev/null differ
diff --git a/Showcase/ShowcaseTests/__Snapshots__/Components/OUDSComponentButtonUITests/__Snapshots__/OUDSComponentButtonUITests/test_OrangeTheme_Dark.ColoredSurface_Icon_Default_Default.png b/Showcase/ShowcaseTests/__Snapshots__/Components/OUDSComponentButtonUITests/__Snapshots__/OUDSComponentButtonUITests/test_OrangeTheme_Dark.ColoredSurface_Icon_Default_Default.png
deleted file mode 100644
index e4da1bbcd0..0000000000
Binary files a/Showcase/ShowcaseTests/__Snapshots__/Components/OUDSComponentButtonUITests/__Snapshots__/OUDSComponentButtonUITests/test_OrangeTheme_Dark.ColoredSurface_Icon_Default_Default.png and /dev/null differ
diff --git a/Showcase/ShowcaseTests/__Snapshots__/Components/OUDSComponentButtonUITests/__Snapshots__/OUDSComponentButtonUITests/test_OrangeTheme_Dark.ColoredSurface_Icon_Default_Default_Disabled.png b/Showcase/ShowcaseTests/__Snapshots__/Components/OUDSComponentButtonUITests/__Snapshots__/OUDSComponentButtonUITests/test_OrangeTheme_Dark.ColoredSurface_Icon_Default_Default_Disabled.png
deleted file mode 100644
index 97babcf5b0..0000000000
Binary files a/Showcase/ShowcaseTests/__Snapshots__/Components/OUDSComponentButtonUITests/__Snapshots__/OUDSComponentButtonUITests/test_OrangeTheme_Dark.ColoredSurface_Icon_Default_Default_Disabled.png and /dev/null differ
diff --git a/Showcase/ShowcaseTests/__Snapshots__/Components/OUDSComponentButtonUITests/__Snapshots__/OUDSComponentButtonUITests/test_OrangeTheme_Dark.ColoredSurface_Icon_Minimal_Default.png b/Showcase/ShowcaseTests/__Snapshots__/Components/OUDSComponentButtonUITests/__Snapshots__/OUDSComponentButtonUITests/test_OrangeTheme_Dark.ColoredSurface_Icon_Minimal_Default.png
deleted file mode 100644
index 1a350e449b..0000000000
Binary files a/Showcase/ShowcaseTests/__Snapshots__/Components/OUDSComponentButtonUITests/__Snapshots__/OUDSComponentButtonUITests/test_OrangeTheme_Dark.ColoredSurface_Icon_Minimal_Default.png and /dev/null differ
diff --git a/Showcase/ShowcaseTests/__Snapshots__/Components/OUDSComponentButtonUITests/__Snapshots__/OUDSComponentButtonUITests/test_OrangeTheme_Dark.ColoredSurface_Icon_Minimal_Default_Disabled.png b/Showcase/ShowcaseTests/__Snapshots__/Components/OUDSComponentButtonUITests/__Snapshots__/OUDSComponentButtonUITests/test_OrangeTheme_Dark.ColoredSurface_Icon_Minimal_Default_Disabled.png
deleted file mode 100644
index 38ecaee20c..0000000000
Binary files a/Showcase/ShowcaseTests/__Snapshots__/Components/OUDSComponentButtonUITests/__Snapshots__/OUDSComponentButtonUITests/test_OrangeTheme_Dark.ColoredSurface_Icon_Minimal_Default_Disabled.png and /dev/null differ
diff --git a/Showcase/ShowcaseTests/__Snapshots__/Components/OUDSComponentButtonUITests/__Snapshots__/OUDSComponentButtonUITests/test_OrangeTheme_Dark.ColoredSurface_Icon_Strong_Default.png b/Showcase/ShowcaseTests/__Snapshots__/Components/OUDSComponentButtonUITests/__Snapshots__/OUDSComponentButtonUITests/test_OrangeTheme_Dark.ColoredSurface_Icon_Strong_Default.png
deleted file mode 100644
index 32071398d1..0000000000
Binary files a/Showcase/ShowcaseTests/__Snapshots__/Components/OUDSComponentButtonUITests/__Snapshots__/OUDSComponentButtonUITests/test_OrangeTheme_Dark.ColoredSurface_Icon_Strong_Default.png and /dev/null differ
diff --git a/Showcase/ShowcaseTests/__Snapshots__/Components/OUDSComponentButtonUITests/__Snapshots__/OUDSComponentButtonUITests/test_OrangeTheme_Dark.ColoredSurface_Icon_Strong_Default_Disabled.png b/Showcase/ShowcaseTests/__Snapshots__/Components/OUDSComponentButtonUITests/__Snapshots__/OUDSComponentButtonUITests/test_OrangeTheme_Dark.ColoredSurface_Icon_Strong_Default_Disabled.png
deleted file mode 100644
index ee637fad93..0000000000
Binary files a/Showcase/ShowcaseTests/__Snapshots__/Components/OUDSComponentButtonUITests/__Snapshots__/OUDSComponentButtonUITests/test_OrangeTheme_Dark.ColoredSurface_Icon_Strong_Default_Disabled.png and /dev/null differ
diff --git a/Showcase/ShowcaseTests/__Snapshots__/Components/OUDSComponentButtonUITests/__Snapshots__/OUDSComponentButtonUITests/test_OrangeTheme_Dark.ColoredSurface_TextAndIcon_Default_Default.png b/Showcase/ShowcaseTests/__Snapshots__/Components/OUDSComponentButtonUITests/__Snapshots__/OUDSComponentButtonUITests/test_OrangeTheme_Dark.ColoredSurface_TextAndIcon_Default_Default.png
deleted file mode 100644
index aa9273773a..0000000000
Binary files a/Showcase/ShowcaseTests/__Snapshots__/Components/OUDSComponentButtonUITests/__Snapshots__/OUDSComponentButtonUITests/test_OrangeTheme_Dark.ColoredSurface_TextAndIcon_Default_Default.png and /dev/null differ
diff --git a/Showcase/ShowcaseTests/__Snapshots__/Components/OUDSComponentButtonUITests/__Snapshots__/OUDSComponentButtonUITests/test_OrangeTheme_Dark.ColoredSurface_TextAndIcon_Default_Default_Disabled.png b/Showcase/ShowcaseTests/__Snapshots__/Components/OUDSComponentButtonUITests/__Snapshots__/OUDSComponentButtonUITests/test_OrangeTheme_Dark.ColoredSurface_TextAndIcon_Default_Default_Disabled.png
deleted file mode 100644
index 729efce7f4..0000000000
Binary files a/Showcase/ShowcaseTests/__Snapshots__/Components/OUDSComponentButtonUITests/__Snapshots__/OUDSComponentButtonUITests/test_OrangeTheme_Dark.ColoredSurface_TextAndIcon_Default_Default_Disabled.png and /dev/null differ
diff --git a/Showcase/ShowcaseTests/__Snapshots__/Components/OUDSComponentButtonUITests/__Snapshots__/OUDSComponentButtonUITests/test_OrangeTheme_Dark.ColoredSurface_TextAndIcon_Minimal_Default.png b/Showcase/ShowcaseTests/__Snapshots__/Components/OUDSComponentButtonUITests/__Snapshots__/OUDSComponentButtonUITests/test_OrangeTheme_Dark.ColoredSurface_TextAndIcon_Minimal_Default.png
deleted file mode 100644
index c179ce466a..0000000000
Binary files a/Showcase/ShowcaseTests/__Snapshots__/Components/OUDSComponentButtonUITests/__Snapshots__/OUDSComponentButtonUITests/test_OrangeTheme_Dark.ColoredSurface_TextAndIcon_Minimal_Default.png and /dev/null differ
diff --git a/Showcase/ShowcaseTests/__Snapshots__/Components/OUDSComponentButtonUITests/__Snapshots__/OUDSComponentButtonUITests/test_OrangeTheme_Dark.ColoredSurface_TextAndIcon_Minimal_Default_Disabled.png b/Showcase/ShowcaseTests/__Snapshots__/Components/OUDSComponentButtonUITests/__Snapshots__/OUDSComponentButtonUITests/test_OrangeTheme_Dark.ColoredSurface_TextAndIcon_Minimal_Default_Disabled.png
deleted file mode 100644
index 43f27df49d..0000000000
Binary files a/Showcase/ShowcaseTests/__Snapshots__/Components/OUDSComponentButtonUITests/__Snapshots__/OUDSComponentButtonUITests/test_OrangeTheme_Dark.ColoredSurface_TextAndIcon_Minimal_Default_Disabled.png and /dev/null differ
diff --git a/Showcase/ShowcaseTests/__Snapshots__/Components/OUDSComponentButtonUITests/__Snapshots__/OUDSComponentButtonUITests/test_OrangeTheme_Dark.ColoredSurface_TextAndIcon_Strong_Default.png b/Showcase/ShowcaseTests/__Snapshots__/Components/OUDSComponentButtonUITests/__Snapshots__/OUDSComponentButtonUITests/test_OrangeTheme_Dark.ColoredSurface_TextAndIcon_Strong_Default.png
deleted file mode 100644
index f08dda7b80..0000000000
Binary files a/Showcase/ShowcaseTests/__Snapshots__/Components/OUDSComponentButtonUITests/__Snapshots__/OUDSComponentButtonUITests/test_OrangeTheme_Dark.ColoredSurface_TextAndIcon_Strong_Default.png and /dev/null differ
diff --git a/Showcase/ShowcaseTests/__Snapshots__/Components/OUDSComponentButtonUITests/__Snapshots__/OUDSComponentButtonUITests/test_OrangeTheme_Dark.ColoredSurface_TextAndIcon_Strong_Default_Disabled.png b/Showcase/ShowcaseTests/__Snapshots__/Components/OUDSComponentButtonUITests/__Snapshots__/OUDSComponentButtonUITests/test_OrangeTheme_Dark.ColoredSurface_TextAndIcon_Strong_Default_Disabled.png
deleted file mode 100644
index 625373b2aa..0000000000
Binary files a/Showcase/ShowcaseTests/__Snapshots__/Components/OUDSComponentButtonUITests/__Snapshots__/OUDSComponentButtonUITests/test_OrangeTheme_Dark.ColoredSurface_TextAndIcon_Strong_Default_Disabled.png and /dev/null differ
diff --git a/Showcase/ShowcaseTests/__Snapshots__/Components/OUDSComponentButtonUITests/__Snapshots__/OUDSComponentButtonUITests/test_OrangeTheme_Dark.Icon_Default_Default.png b/Showcase/ShowcaseTests/__Snapshots__/Components/OUDSComponentButtonUITests/__Snapshots__/OUDSComponentButtonUITests/test_OrangeTheme_Dark.Icon_Default_Default.png
deleted file mode 100644
index 11d22c65fb..0000000000
Binary files a/Showcase/ShowcaseTests/__Snapshots__/Components/OUDSComponentButtonUITests/__Snapshots__/OUDSComponentButtonUITests/test_OrangeTheme_Dark.Icon_Default_Default.png and /dev/null differ
diff --git a/Showcase/ShowcaseTests/__Snapshots__/Components/OUDSComponentButtonUITests/__Snapshots__/OUDSComponentButtonUITests/test_OrangeTheme_Dark.Icon_Default_Default_Disabled.png b/Showcase/ShowcaseTests/__Snapshots__/Components/OUDSComponentButtonUITests/__Snapshots__/OUDSComponentButtonUITests/test_OrangeTheme_Dark.Icon_Default_Default_Disabled.png
deleted file mode 100644
index d9f8525b25..0000000000
Binary files a/Showcase/ShowcaseTests/__Snapshots__/Components/OUDSComponentButtonUITests/__Snapshots__/OUDSComponentButtonUITests/test_OrangeTheme_Dark.Icon_Default_Default_Disabled.png and /dev/null differ
diff --git a/Showcase/ShowcaseTests/__Snapshots__/Components/OUDSComponentButtonUITests/__Snapshots__/OUDSComponentButtonUITests/test_OrangeTheme_Dark.Icon_Minimal_Default.png b/Showcase/ShowcaseTests/__Snapshots__/Components/OUDSComponentButtonUITests/__Snapshots__/OUDSComponentButtonUITests/test_OrangeTheme_Dark.Icon_Minimal_Default.png
deleted file mode 100644
index ee2263be02..0000000000
Binary files a/Showcase/ShowcaseTests/__Snapshots__/Components/OUDSComponentButtonUITests/__Snapshots__/OUDSComponentButtonUITests/test_OrangeTheme_Dark.Icon_Minimal_Default.png and /dev/null differ
diff --git a/Showcase/ShowcaseTests/__Snapshots__/Components/OUDSComponentButtonUITests/__Snapshots__/OUDSComponentButtonUITests/test_OrangeTheme_Dark.Icon_Minimal_Default_Disabled.png b/Showcase/ShowcaseTests/__Snapshots__/Components/OUDSComponentButtonUITests/__Snapshots__/OUDSComponentButtonUITests/test_OrangeTheme_Dark.Icon_Minimal_Default_Disabled.png
deleted file mode 100644
index 11da186260..0000000000
Binary files a/Showcase/ShowcaseTests/__Snapshots__/Components/OUDSComponentButtonUITests/__Snapshots__/OUDSComponentButtonUITests/test_OrangeTheme_Dark.Icon_Minimal_Default_Disabled.png and /dev/null differ
diff --git a/Showcase/ShowcaseTests/__Snapshots__/Components/OUDSComponentButtonUITests/__Snapshots__/OUDSComponentButtonUITests/test_OrangeTheme_Dark.Icon_Negative_Default.png b/Showcase/ShowcaseTests/__Snapshots__/Components/OUDSComponentButtonUITests/__Snapshots__/OUDSComponentButtonUITests/test_OrangeTheme_Dark.Icon_Negative_Default.png
deleted file mode 100644
index 71e7832740..0000000000
Binary files a/Showcase/ShowcaseTests/__Snapshots__/Components/OUDSComponentButtonUITests/__Snapshots__/OUDSComponentButtonUITests/test_OrangeTheme_Dark.Icon_Negative_Default.png and /dev/null differ
diff --git a/Showcase/ShowcaseTests/__Snapshots__/Components/OUDSComponentButtonUITests/__Snapshots__/OUDSComponentButtonUITests/test_OrangeTheme_Dark.Icon_Negative_Default_Disabled.png b/Showcase/ShowcaseTests/__Snapshots__/Components/OUDSComponentButtonUITests/__Snapshots__/OUDSComponentButtonUITests/test_OrangeTheme_Dark.Icon_Negative_Default_Disabled.png
deleted file mode 100644
index a16771f5b0..0000000000
Binary files a/Showcase/ShowcaseTests/__Snapshots__/Components/OUDSComponentButtonUITests/__Snapshots__/OUDSComponentButtonUITests/test_OrangeTheme_Dark.Icon_Negative_Default_Disabled.png and /dev/null differ
diff --git a/Showcase/ShowcaseTests/__Snapshots__/Components/OUDSComponentButtonUITests/__Snapshots__/OUDSComponentButtonUITests/test_OrangeTheme_Dark.Icon_Strong_Default.png b/Showcase/ShowcaseTests/__Snapshots__/Components/OUDSComponentButtonUITests/__Snapshots__/OUDSComponentButtonUITests/test_OrangeTheme_Dark.Icon_Strong_Default.png
deleted file mode 100644
index 5b206cd1e4..0000000000
Binary files a/Showcase/ShowcaseTests/__Snapshots__/Components/OUDSComponentButtonUITests/__Snapshots__/OUDSComponentButtonUITests/test_OrangeTheme_Dark.Icon_Strong_Default.png and /dev/null differ
diff --git a/Showcase/ShowcaseTests/__Snapshots__/Components/OUDSComponentButtonUITests/__Snapshots__/OUDSComponentButtonUITests/test_OrangeTheme_Dark.Icon_Strong_Default_Disabled.png b/Showcase/ShowcaseTests/__Snapshots__/Components/OUDSComponentButtonUITests/__Snapshots__/OUDSComponentButtonUITests/test_OrangeTheme_Dark.Icon_Strong_Default_Disabled.png
deleted file mode 100644
index a16771f5b0..0000000000
Binary files a/Showcase/ShowcaseTests/__Snapshots__/Components/OUDSComponentButtonUITests/__Snapshots__/OUDSComponentButtonUITests/test_OrangeTheme_Dark.Icon_Strong_Default_Disabled.png and /dev/null differ
diff --git a/Showcase/ShowcaseTests/__Snapshots__/Components/OUDSComponentButtonUITests/__Snapshots__/OUDSComponentButtonUITests/test_OrangeTheme_Dark.TextAndIcon_Default_Default.png b/Showcase/ShowcaseTests/__Snapshots__/Components/OUDSComponentButtonUITests/__Snapshots__/OUDSComponentButtonUITests/test_OrangeTheme_Dark.TextAndIcon_Default_Default.png
deleted file mode 100644
index 5b35b45da5..0000000000
Binary files a/Showcase/ShowcaseTests/__Snapshots__/Components/OUDSComponentButtonUITests/__Snapshots__/OUDSComponentButtonUITests/test_OrangeTheme_Dark.TextAndIcon_Default_Default.png and /dev/null differ
diff --git a/Showcase/ShowcaseTests/__Snapshots__/Components/OUDSComponentButtonUITests/__Snapshots__/OUDSComponentButtonUITests/test_OrangeTheme_Dark.TextAndIcon_Default_Default_Disabled.png b/Showcase/ShowcaseTests/__Snapshots__/Components/OUDSComponentButtonUITests/__Snapshots__/OUDSComponentButtonUITests/test_OrangeTheme_Dark.TextAndIcon_Default_Default_Disabled.png
deleted file mode 100644
index 58aa52c842..0000000000
Binary files a/Showcase/ShowcaseTests/__Snapshots__/Components/OUDSComponentButtonUITests/__Snapshots__/OUDSComponentButtonUITests/test_OrangeTheme_Dark.TextAndIcon_Default_Default_Disabled.png and /dev/null differ
diff --git a/Showcase/ShowcaseTests/__Snapshots__/Components/OUDSComponentButtonUITests/__Snapshots__/OUDSComponentButtonUITests/test_OrangeTheme_Dark.TextAndIcon_Minimal_Default.png b/Showcase/ShowcaseTests/__Snapshots__/Components/OUDSComponentButtonUITests/__Snapshots__/OUDSComponentButtonUITests/test_OrangeTheme_Dark.TextAndIcon_Minimal_Default.png
deleted file mode 100644
index 856d6467b3..0000000000
Binary files a/Showcase/ShowcaseTests/__Snapshots__/Components/OUDSComponentButtonUITests/__Snapshots__/OUDSComponentButtonUITests/test_OrangeTheme_Dark.TextAndIcon_Minimal_Default.png and /dev/null differ
diff --git a/Showcase/ShowcaseTests/__Snapshots__/Components/OUDSComponentButtonUITests/__Snapshots__/OUDSComponentButtonUITests/test_OrangeTheme_Dark.TextAndIcon_Minimal_Default_Disabled.png b/Showcase/ShowcaseTests/__Snapshots__/Components/OUDSComponentButtonUITests/__Snapshots__/OUDSComponentButtonUITests/test_OrangeTheme_Dark.TextAndIcon_Minimal_Default_Disabled.png
deleted file mode 100644
index a5e58ae6a4..0000000000
Binary files a/Showcase/ShowcaseTests/__Snapshots__/Components/OUDSComponentButtonUITests/__Snapshots__/OUDSComponentButtonUITests/test_OrangeTheme_Dark.TextAndIcon_Minimal_Default_Disabled.png and /dev/null differ
diff --git a/Showcase/ShowcaseTests/__Snapshots__/Components/OUDSComponentButtonUITests/__Snapshots__/OUDSComponentButtonUITests/test_OrangeTheme_Dark.TextAndIcon_Negative_Default.png b/Showcase/ShowcaseTests/__Snapshots__/Components/OUDSComponentButtonUITests/__Snapshots__/OUDSComponentButtonUITests/test_OrangeTheme_Dark.TextAndIcon_Negative_Default.png
deleted file mode 100644
index 89ec8f3ef8..0000000000
Binary files a/Showcase/ShowcaseTests/__Snapshots__/Components/OUDSComponentButtonUITests/__Snapshots__/OUDSComponentButtonUITests/test_OrangeTheme_Dark.TextAndIcon_Negative_Default.png and /dev/null differ
diff --git a/Showcase/ShowcaseTests/__Snapshots__/Components/OUDSComponentButtonUITests/__Snapshots__/OUDSComponentButtonUITests/test_OrangeTheme_Dark.TextAndIcon_Negative_Default_Disabled.png b/Showcase/ShowcaseTests/__Snapshots__/Components/OUDSComponentButtonUITests/__Snapshots__/OUDSComponentButtonUITests/test_OrangeTheme_Dark.TextAndIcon_Negative_Default_Disabled.png
deleted file mode 100644
index 58878bf328..0000000000
Binary files a/Showcase/ShowcaseTests/__Snapshots__/Components/OUDSComponentButtonUITests/__Snapshots__/OUDSComponentButtonUITests/test_OrangeTheme_Dark.TextAndIcon_Negative_Default_Disabled.png and /dev/null differ
diff --git a/Showcase/ShowcaseTests/__Snapshots__/Components/OUDSComponentButtonUITests/__Snapshots__/OUDSComponentButtonUITests/test_OrangeTheme_Dark.TextAndIcon_Strong_Default.png b/Showcase/ShowcaseTests/__Snapshots__/Components/OUDSComponentButtonUITests/__Snapshots__/OUDSComponentButtonUITests/test_OrangeTheme_Dark.TextAndIcon_Strong_Default.png
deleted file mode 100644
index 50a09eb72a..0000000000
Binary files a/Showcase/ShowcaseTests/__Snapshots__/Components/OUDSComponentButtonUITests/__Snapshots__/OUDSComponentButtonUITests/test_OrangeTheme_Dark.TextAndIcon_Strong_Default.png and /dev/null differ
diff --git a/Showcase/ShowcaseTests/__Snapshots__/Components/OUDSComponentButtonUITests/__Snapshots__/OUDSComponentButtonUITests/test_OrangeTheme_Dark.TextAndIcon_Strong_Default_Disabled.png b/Showcase/ShowcaseTests/__Snapshots__/Components/OUDSComponentButtonUITests/__Snapshots__/OUDSComponentButtonUITests/test_OrangeTheme_Dark.TextAndIcon_Strong_Default_Disabled.png
deleted file mode 100644
index 58878bf328..0000000000
Binary files a/Showcase/ShowcaseTests/__Snapshots__/Components/OUDSComponentButtonUITests/__Snapshots__/OUDSComponentButtonUITests/test_OrangeTheme_Dark.TextAndIcon_Strong_Default_Disabled.png and /dev/null differ
diff --git a/Showcase/ShowcaseTests/__Snapshots__/Components/OUDSComponentButtonUITests/__Snapshots__/OUDSComponentButtonUITests/test_OrangeTheme_Light.ColoredSurface_Icon_Default_Default.png b/Showcase/ShowcaseTests/__Snapshots__/Components/OUDSComponentButtonUITests/__Snapshots__/OUDSComponentButtonUITests/test_OrangeTheme_Light.ColoredSurface_Icon_Default_Default.png
deleted file mode 100644
index 80237dc97a..0000000000
Binary files a/Showcase/ShowcaseTests/__Snapshots__/Components/OUDSComponentButtonUITests/__Snapshots__/OUDSComponentButtonUITests/test_OrangeTheme_Light.ColoredSurface_Icon_Default_Default.png and /dev/null differ
diff --git a/Showcase/ShowcaseTests/__Snapshots__/Components/OUDSComponentButtonUITests/__Snapshots__/OUDSComponentButtonUITests/test_OrangeTheme_Light.ColoredSurface_Icon_Default_Default_Disabled.png b/Showcase/ShowcaseTests/__Snapshots__/Components/OUDSComponentButtonUITests/__Snapshots__/OUDSComponentButtonUITests/test_OrangeTheme_Light.ColoredSurface_Icon_Default_Default_Disabled.png
deleted file mode 100644
index 05a9f36741..0000000000
Binary files a/Showcase/ShowcaseTests/__Snapshots__/Components/OUDSComponentButtonUITests/__Snapshots__/OUDSComponentButtonUITests/test_OrangeTheme_Light.ColoredSurface_Icon_Default_Default_Disabled.png and /dev/null differ
diff --git a/Showcase/ShowcaseTests/__Snapshots__/Components/OUDSComponentButtonUITests/__Snapshots__/OUDSComponentButtonUITests/test_OrangeTheme_Light.ColoredSurface_Icon_Minimal_Default.png b/Showcase/ShowcaseTests/__Snapshots__/Components/OUDSComponentButtonUITests/__Snapshots__/OUDSComponentButtonUITests/test_OrangeTheme_Light.ColoredSurface_Icon_Minimal_Default.png
deleted file mode 100644
index d7d6483197..0000000000
Binary files a/Showcase/ShowcaseTests/__Snapshots__/Components/OUDSComponentButtonUITests/__Snapshots__/OUDSComponentButtonUITests/test_OrangeTheme_Light.ColoredSurface_Icon_Minimal_Default.png and /dev/null differ
diff --git a/Showcase/ShowcaseTests/__Snapshots__/Components/OUDSComponentButtonUITests/__Snapshots__/OUDSComponentButtonUITests/test_OrangeTheme_Light.ColoredSurface_Icon_Minimal_Default_Disabled.png b/Showcase/ShowcaseTests/__Snapshots__/Components/OUDSComponentButtonUITests/__Snapshots__/OUDSComponentButtonUITests/test_OrangeTheme_Light.ColoredSurface_Icon_Minimal_Default_Disabled.png
deleted file mode 100644
index 0935ca693e..0000000000
Binary files a/Showcase/ShowcaseTests/__Snapshots__/Components/OUDSComponentButtonUITests/__Snapshots__/OUDSComponentButtonUITests/test_OrangeTheme_Light.ColoredSurface_Icon_Minimal_Default_Disabled.png and /dev/null differ
diff --git a/Showcase/ShowcaseTests/__Snapshots__/Components/OUDSComponentButtonUITests/__Snapshots__/OUDSComponentButtonUITests/test_OrangeTheme_Light.ColoredSurface_Icon_Strong_Default.png b/Showcase/ShowcaseTests/__Snapshots__/Components/OUDSComponentButtonUITests/__Snapshots__/OUDSComponentButtonUITests/test_OrangeTheme_Light.ColoredSurface_Icon_Strong_Default.png
deleted file mode 100644
index 3bf34240c3..0000000000
Binary files a/Showcase/ShowcaseTests/__Snapshots__/Components/OUDSComponentButtonUITests/__Snapshots__/OUDSComponentButtonUITests/test_OrangeTheme_Light.ColoredSurface_Icon_Strong_Default.png and /dev/null differ
diff --git a/Showcase/ShowcaseTests/__Snapshots__/Components/OUDSComponentButtonUITests/__Snapshots__/OUDSComponentButtonUITests/test_OrangeTheme_Light.ColoredSurface_Icon_Strong_Default_Disabled.png b/Showcase/ShowcaseTests/__Snapshots__/Components/OUDSComponentButtonUITests/__Snapshots__/OUDSComponentButtonUITests/test_OrangeTheme_Light.ColoredSurface_Icon_Strong_Default_Disabled.png
deleted file mode 100644
index 673593b837..0000000000
Binary files a/Showcase/ShowcaseTests/__Snapshots__/Components/OUDSComponentButtonUITests/__Snapshots__/OUDSComponentButtonUITests/test_OrangeTheme_Light.ColoredSurface_Icon_Strong_Default_Disabled.png and /dev/null differ
diff --git a/Showcase/ShowcaseTests/__Snapshots__/Components/OUDSComponentButtonUITests/__Snapshots__/OUDSComponentButtonUITests/test_OrangeTheme_Light.ColoredSurface_TextAndIcon_Default_Default.png b/Showcase/ShowcaseTests/__Snapshots__/Components/OUDSComponentButtonUITests/__Snapshots__/OUDSComponentButtonUITests/test_OrangeTheme_Light.ColoredSurface_TextAndIcon_Default_Default.png
deleted file mode 100644
index c89d61275f..0000000000
Binary files a/Showcase/ShowcaseTests/__Snapshots__/Components/OUDSComponentButtonUITests/__Snapshots__/OUDSComponentButtonUITests/test_OrangeTheme_Light.ColoredSurface_TextAndIcon_Default_Default.png and /dev/null differ
diff --git a/Showcase/ShowcaseTests/__Snapshots__/Components/OUDSComponentButtonUITests/__Snapshots__/OUDSComponentButtonUITests/test_OrangeTheme_Light.ColoredSurface_TextAndIcon_Default_Default_Disabled.png b/Showcase/ShowcaseTests/__Snapshots__/Components/OUDSComponentButtonUITests/__Snapshots__/OUDSComponentButtonUITests/test_OrangeTheme_Light.ColoredSurface_TextAndIcon_Default_Default_Disabled.png
deleted file mode 100644
index ba9de74b06..0000000000
Binary files a/Showcase/ShowcaseTests/__Snapshots__/Components/OUDSComponentButtonUITests/__Snapshots__/OUDSComponentButtonUITests/test_OrangeTheme_Light.ColoredSurface_TextAndIcon_Default_Default_Disabled.png and /dev/null differ
diff --git a/Showcase/ShowcaseTests/__Snapshots__/Components/OUDSComponentButtonUITests/__Snapshots__/OUDSComponentButtonUITests/test_OrangeTheme_Light.ColoredSurface_TextAndIcon_Minimal_Default.png b/Showcase/ShowcaseTests/__Snapshots__/Components/OUDSComponentButtonUITests/__Snapshots__/OUDSComponentButtonUITests/test_OrangeTheme_Light.ColoredSurface_TextAndIcon_Minimal_Default.png
deleted file mode 100644
index 69886e510f..0000000000
Binary files a/Showcase/ShowcaseTests/__Snapshots__/Components/OUDSComponentButtonUITests/__Snapshots__/OUDSComponentButtonUITests/test_OrangeTheme_Light.ColoredSurface_TextAndIcon_Minimal_Default.png and /dev/null differ
diff --git a/Showcase/ShowcaseTests/__Snapshots__/Components/OUDSComponentButtonUITests/__Snapshots__/OUDSComponentButtonUITests/test_OrangeTheme_Light.ColoredSurface_TextAndIcon_Minimal_Default_Disabled.png b/Showcase/ShowcaseTests/__Snapshots__/Components/OUDSComponentButtonUITests/__Snapshots__/OUDSComponentButtonUITests/test_OrangeTheme_Light.ColoredSurface_TextAndIcon_Minimal_Default_Disabled.png
deleted file mode 100644
index 2f4d988435..0000000000
Binary files a/Showcase/ShowcaseTests/__Snapshots__/Components/OUDSComponentButtonUITests/__Snapshots__/OUDSComponentButtonUITests/test_OrangeTheme_Light.ColoredSurface_TextAndIcon_Minimal_Default_Disabled.png and /dev/null differ
diff --git a/Showcase/ShowcaseTests/__Snapshots__/Components/OUDSComponentButtonUITests/__Snapshots__/OUDSComponentButtonUITests/test_OrangeTheme_Light.ColoredSurface_TextAndIcon_Strong_Default.png b/Showcase/ShowcaseTests/__Snapshots__/Components/OUDSComponentButtonUITests/__Snapshots__/OUDSComponentButtonUITests/test_OrangeTheme_Light.ColoredSurface_TextAndIcon_Strong_Default.png
deleted file mode 100644
index c25d557674..0000000000
Binary files a/Showcase/ShowcaseTests/__Snapshots__/Components/OUDSComponentButtonUITests/__Snapshots__/OUDSComponentButtonUITests/test_OrangeTheme_Light.ColoredSurface_TextAndIcon_Strong_Default.png and /dev/null differ
diff --git a/Showcase/ShowcaseTests/__Snapshots__/Components/OUDSComponentButtonUITests/__Snapshots__/OUDSComponentButtonUITests/test_OrangeTheme_Light.ColoredSurface_TextAndIcon_Strong_Default_Disabled.png b/Showcase/ShowcaseTests/__Snapshots__/Components/OUDSComponentButtonUITests/__Snapshots__/OUDSComponentButtonUITests/test_OrangeTheme_Light.ColoredSurface_TextAndIcon_Strong_Default_Disabled.png
deleted file mode 100644
index a30c738325..0000000000
Binary files a/Showcase/ShowcaseTests/__Snapshots__/Components/OUDSComponentButtonUITests/__Snapshots__/OUDSComponentButtonUITests/test_OrangeTheme_Light.ColoredSurface_TextAndIcon_Strong_Default_Disabled.png and /dev/null differ
diff --git a/Showcase/ShowcaseTests/__Snapshots__/Components/OUDSComponentButtonUITests/__Snapshots__/OUDSComponentButtonUITests/test_OrangeTheme_Light.Icon_Default_Default.png b/Showcase/ShowcaseTests/__Snapshots__/Components/OUDSComponentButtonUITests/__Snapshots__/OUDSComponentButtonUITests/test_OrangeTheme_Light.Icon_Default_Default.png
deleted file mode 100644
index f60259428d..0000000000
Binary files a/Showcase/ShowcaseTests/__Snapshots__/Components/OUDSComponentButtonUITests/__Snapshots__/OUDSComponentButtonUITests/test_OrangeTheme_Light.Icon_Default_Default.png and /dev/null differ
diff --git a/Showcase/ShowcaseTests/__Snapshots__/Components/OUDSComponentButtonUITests/__Snapshots__/OUDSComponentButtonUITests/test_OrangeTheme_Light.Icon_Default_Default_Disabled.png b/Showcase/ShowcaseTests/__Snapshots__/Components/OUDSComponentButtonUITests/__Snapshots__/OUDSComponentButtonUITests/test_OrangeTheme_Light.Icon_Default_Default_Disabled.png
deleted file mode 100644
index 8b96f7c115..0000000000
Binary files a/Showcase/ShowcaseTests/__Snapshots__/Components/OUDSComponentButtonUITests/__Snapshots__/OUDSComponentButtonUITests/test_OrangeTheme_Light.Icon_Default_Default_Disabled.png and /dev/null differ
diff --git a/Showcase/ShowcaseTests/__Snapshots__/Components/OUDSComponentButtonUITests/__Snapshots__/OUDSComponentButtonUITests/test_OrangeTheme_Light.Icon_Minimal_Default.png b/Showcase/ShowcaseTests/__Snapshots__/Components/OUDSComponentButtonUITests/__Snapshots__/OUDSComponentButtonUITests/test_OrangeTheme_Light.Icon_Minimal_Default.png
deleted file mode 100644
index 0b035057aa..0000000000
Binary files a/Showcase/ShowcaseTests/__Snapshots__/Components/OUDSComponentButtonUITests/__Snapshots__/OUDSComponentButtonUITests/test_OrangeTheme_Light.Icon_Minimal_Default.png and /dev/null differ
diff --git a/Showcase/ShowcaseTests/__Snapshots__/Components/OUDSComponentButtonUITests/__Snapshots__/OUDSComponentButtonUITests/test_OrangeTheme_Light.Icon_Minimal_Default_Disabled.png b/Showcase/ShowcaseTests/__Snapshots__/Components/OUDSComponentButtonUITests/__Snapshots__/OUDSComponentButtonUITests/test_OrangeTheme_Light.Icon_Minimal_Default_Disabled.png
deleted file mode 100644
index 350fc2bf14..0000000000
Binary files a/Showcase/ShowcaseTests/__Snapshots__/Components/OUDSComponentButtonUITests/__Snapshots__/OUDSComponentButtonUITests/test_OrangeTheme_Light.Icon_Minimal_Default_Disabled.png and /dev/null differ
diff --git a/Showcase/ShowcaseTests/__Snapshots__/Components/OUDSComponentButtonUITests/__Snapshots__/OUDSComponentButtonUITests/test_OrangeTheme_Light.Icon_Negative_Default.png b/Showcase/ShowcaseTests/__Snapshots__/Components/OUDSComponentButtonUITests/__Snapshots__/OUDSComponentButtonUITests/test_OrangeTheme_Light.Icon_Negative_Default.png
deleted file mode 100644
index 972543628d..0000000000
Binary files a/Showcase/ShowcaseTests/__Snapshots__/Components/OUDSComponentButtonUITests/__Snapshots__/OUDSComponentButtonUITests/test_OrangeTheme_Light.Icon_Negative_Default.png and /dev/null differ
diff --git a/Showcase/ShowcaseTests/__Snapshots__/Components/OUDSComponentButtonUITests/__Snapshots__/OUDSComponentButtonUITests/test_OrangeTheme_Light.Icon_Negative_Default_Disabled.png b/Showcase/ShowcaseTests/__Snapshots__/Components/OUDSComponentButtonUITests/__Snapshots__/OUDSComponentButtonUITests/test_OrangeTheme_Light.Icon_Negative_Default_Disabled.png
deleted file mode 100644
index 2ee18baff7..0000000000
Binary files a/Showcase/ShowcaseTests/__Snapshots__/Components/OUDSComponentButtonUITests/__Snapshots__/OUDSComponentButtonUITests/test_OrangeTheme_Light.Icon_Negative_Default_Disabled.png and /dev/null differ
diff --git a/Showcase/ShowcaseTests/__Snapshots__/Components/OUDSComponentButtonUITests/__Snapshots__/OUDSComponentButtonUITests/test_OrangeTheme_Light.Icon_Strong_Default.png b/Showcase/ShowcaseTests/__Snapshots__/Components/OUDSComponentButtonUITests/__Snapshots__/OUDSComponentButtonUITests/test_OrangeTheme_Light.Icon_Strong_Default.png
deleted file mode 100644
index 3bf34240c3..0000000000
Binary files a/Showcase/ShowcaseTests/__Snapshots__/Components/OUDSComponentButtonUITests/__Snapshots__/OUDSComponentButtonUITests/test_OrangeTheme_Light.Icon_Strong_Default.png and /dev/null differ
diff --git a/Showcase/ShowcaseTests/__Snapshots__/Components/OUDSComponentButtonUITests/__Snapshots__/OUDSComponentButtonUITests/test_OrangeTheme_Light.Icon_Strong_Default_Disabled.png b/Showcase/ShowcaseTests/__Snapshots__/Components/OUDSComponentButtonUITests/__Snapshots__/OUDSComponentButtonUITests/test_OrangeTheme_Light.Icon_Strong_Default_Disabled.png
deleted file mode 100644
index 2ee18baff7..0000000000
Binary files a/Showcase/ShowcaseTests/__Snapshots__/Components/OUDSComponentButtonUITests/__Snapshots__/OUDSComponentButtonUITests/test_OrangeTheme_Light.Icon_Strong_Default_Disabled.png and /dev/null differ
diff --git a/Showcase/ShowcaseTests/__Snapshots__/Components/OUDSComponentButtonUITests/__Snapshots__/OUDSComponentButtonUITests/test_OrangeTheme_Light.TextAndIcon_Default_Default.png b/Showcase/ShowcaseTests/__Snapshots__/Components/OUDSComponentButtonUITests/__Snapshots__/OUDSComponentButtonUITests/test_OrangeTheme_Light.TextAndIcon_Default_Default.png
deleted file mode 100644
index a644b8c649..0000000000
Binary files a/Showcase/ShowcaseTests/__Snapshots__/Components/OUDSComponentButtonUITests/__Snapshots__/OUDSComponentButtonUITests/test_OrangeTheme_Light.TextAndIcon_Default_Default.png and /dev/null differ
diff --git a/Showcase/ShowcaseTests/__Snapshots__/Components/OUDSComponentButtonUITests/__Snapshots__/OUDSComponentButtonUITests/test_OrangeTheme_Light.TextAndIcon_Default_Default_Disabled.png b/Showcase/ShowcaseTests/__Snapshots__/Components/OUDSComponentButtonUITests/__Snapshots__/OUDSComponentButtonUITests/test_OrangeTheme_Light.TextAndIcon_Default_Default_Disabled.png
deleted file mode 100644
index 1ec60a5aa6..0000000000
Binary files a/Showcase/ShowcaseTests/__Snapshots__/Components/OUDSComponentButtonUITests/__Snapshots__/OUDSComponentButtonUITests/test_OrangeTheme_Light.TextAndIcon_Default_Default_Disabled.png and /dev/null differ
diff --git a/Showcase/ShowcaseTests/__Snapshots__/Components/OUDSComponentButtonUITests/__Snapshots__/OUDSComponentButtonUITests/test_OrangeTheme_Light.TextAndIcon_Minimal_Default.png b/Showcase/ShowcaseTests/__Snapshots__/Components/OUDSComponentButtonUITests/__Snapshots__/OUDSComponentButtonUITests/test_OrangeTheme_Light.TextAndIcon_Minimal_Default.png
deleted file mode 100644
index 4017c817fb..0000000000
Binary files a/Showcase/ShowcaseTests/__Snapshots__/Components/OUDSComponentButtonUITests/__Snapshots__/OUDSComponentButtonUITests/test_OrangeTheme_Light.TextAndIcon_Minimal_Default.png and /dev/null differ
diff --git a/Showcase/ShowcaseTests/__Snapshots__/Components/OUDSComponentButtonUITests/__Snapshots__/OUDSComponentButtonUITests/test_OrangeTheme_Light.TextAndIcon_Minimal_Default_Disabled.png b/Showcase/ShowcaseTests/__Snapshots__/Components/OUDSComponentButtonUITests/__Snapshots__/OUDSComponentButtonUITests/test_OrangeTheme_Light.TextAndIcon_Minimal_Default_Disabled.png
deleted file mode 100644
index 3eac6ac866..0000000000
Binary files a/Showcase/ShowcaseTests/__Snapshots__/Components/OUDSComponentButtonUITests/__Snapshots__/OUDSComponentButtonUITests/test_OrangeTheme_Light.TextAndIcon_Minimal_Default_Disabled.png and /dev/null differ
diff --git a/Showcase/ShowcaseTests/__Snapshots__/Components/OUDSComponentButtonUITests/__Snapshots__/OUDSComponentButtonUITests/test_OrangeTheme_Light.TextAndIcon_Negative_Default.png b/Showcase/ShowcaseTests/__Snapshots__/Components/OUDSComponentButtonUITests/__Snapshots__/OUDSComponentButtonUITests/test_OrangeTheme_Light.TextAndIcon_Negative_Default.png
deleted file mode 100644
index af993fe926..0000000000
Binary files a/Showcase/ShowcaseTests/__Snapshots__/Components/OUDSComponentButtonUITests/__Snapshots__/OUDSComponentButtonUITests/test_OrangeTheme_Light.TextAndIcon_Negative_Default.png and /dev/null differ
diff --git a/Showcase/ShowcaseTests/__Snapshots__/Components/OUDSComponentButtonUITests/__Snapshots__/OUDSComponentButtonUITests/test_OrangeTheme_Light.TextAndIcon_Negative_Default_Disabled.png b/Showcase/ShowcaseTests/__Snapshots__/Components/OUDSComponentButtonUITests/__Snapshots__/OUDSComponentButtonUITests/test_OrangeTheme_Light.TextAndIcon_Negative_Default_Disabled.png
deleted file mode 100644
index 9459cc4666..0000000000
Binary files a/Showcase/ShowcaseTests/__Snapshots__/Components/OUDSComponentButtonUITests/__Snapshots__/OUDSComponentButtonUITests/test_OrangeTheme_Light.TextAndIcon_Negative_Default_Disabled.png and /dev/null differ
diff --git a/Showcase/ShowcaseTests/__Snapshots__/Components/OUDSComponentButtonUITests/__Snapshots__/OUDSComponentButtonUITests/test_OrangeTheme_Light.TextAndIcon_Strong_Default.png b/Showcase/ShowcaseTests/__Snapshots__/Components/OUDSComponentButtonUITests/__Snapshots__/OUDSComponentButtonUITests/test_OrangeTheme_Light.TextAndIcon_Strong_Default.png
deleted file mode 100644
index c25d557674..0000000000
Binary files a/Showcase/ShowcaseTests/__Snapshots__/Components/OUDSComponentButtonUITests/__Snapshots__/OUDSComponentButtonUITests/test_OrangeTheme_Light.TextAndIcon_Strong_Default.png and /dev/null differ
diff --git a/Showcase/ShowcaseTests/__Snapshots__/Components/OUDSComponentButtonUITests/__Snapshots__/OUDSComponentButtonUITests/test_OrangeTheme_Light.TextAndIcon_Strong_Default_Disabled.png b/Showcase/ShowcaseTests/__Snapshots__/Components/OUDSComponentButtonUITests/__Snapshots__/OUDSComponentButtonUITests/test_OrangeTheme_Light.TextAndIcon_Strong_Default_Disabled.png
deleted file mode 100644
index 9459cc4666..0000000000
Binary files a/Showcase/ShowcaseTests/__Snapshots__/Components/OUDSComponentButtonUITests/__Snapshots__/OUDSComponentButtonUITests/test_OrangeTheme_Light.TextAndIcon_Strong_Default_Disabled.png and /dev/null differ
diff --git a/Showcase/ShowcaseUITestPlan.xctestplan b/Showcase/ShowcaseUITestPlan.xctestplan
deleted file mode 100644
index eb7b9d5717..0000000000
--- a/Showcase/ShowcaseUITestPlan.xctestplan
+++ /dev/null
@@ -1,19 +0,0 @@
-{
- "configurations" : [
-
- ],
- "defaultOptions" : {
- "language" : "en",
- "testTimeoutsEnabled" : true
- },
- "testTargets" : [
- {
- "target" : {
- "containerPath" : "container:Showcase.xcodeproj",
- "identifier" : "0740A98E2C9873500069D24A",
- "name" : "ShowcaseTests"
- }
- }
- ],
- "version" : 1
-}
diff --git a/THIRD_PARTY.md b/THIRD_PARTY.md
index c3be189aa1..1970996ed5 100644
--- a/THIRD_PARTY.md
+++ b/THIRD_PARTY.md
@@ -9,7 +9,7 @@ For further details about versions, please refer to *Gemfile*, *Gemfile.lock*, *
## In OUDS library
-## In Showcase demo app
+## In Design System Toolbox
#### DeclarationAccessibility
diff --git a/docs_release/README.md b/docs_release/README.md
index 1bff76f2ed..ba53342ccb 100644
--- a/docs_release/README.md
+++ b/docs_release/README.md
@@ -73,11 +73,11 @@ See below the full CHANGELOG details.
// And copy/paste changelog without #
Added:
- [Tests] Add UI regression tests using snapshot comparisons with *swift-snapshot-testing* tool ([#78](#78))
-- [DemoApp] Display fake components for elevation rendering tests
+- [DesignToolbox] Display fake components for elevation rendering tests
Changed:
- [Library] Split raws, semantics and components tokens definitions and also values, composites and type aliases
-- [Showcase] Improve Fastlane alpha build notifications
+- [DesignToolbox] Improve Fastlane alpha build notifications
Removed:
- [Library] Remove Z Index tokens for elevations ([#109](#109))
@@ -160,7 +160,7 @@ You can also [look inside this commit](https://github.com/Orange-OpenSource/ouds
\## [Unreleased]\(https://github.com/Orange-OpenSource/ouds-ios/compare/X.Y.Z...develop)
```
- - Update in Xcode the version of Showcase target to U.V.W (the new version you suppose it will be) and increment build number
+ - Update in Xcode the version of DesignToolbox target to U.V.W (the new version you suppose it will be) and increment build number
- Commit your modifications
- Push them to the repository
- Create a new pull request named `Update release U.V.W` on GitHub to merge your branch into `develop`