diff --git a/CHANGELOG.md b/CHANGELOG.md index 9800b5811..c502d1f86 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -8,19 +8,23 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ### Added +- [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)) ### Changed -- [Library] Update `SpaceSemanticTokens` tokens (tokenator *20241127074206*)) -- [Library] Update `SizeSemanticTokens` with rename of tokens (tokenator *20241126134156*)) +- [DemoApp] Update color page +- [Library] Update `ColorSemanticTokens` tokens (tokenator *20241127112301*) +- [Library] Update `SpaceSemanticTokens` tokens (tokenator *20241127074206*) +- [Library] Update `SizeSemanticTokens` with rename of tokens (tokenator *20241126134156*) - [Library] Update `ElevationSemanticTokens` (tokenator *20241126120657*) -- [Library] Improve Multiple-based objects for tokenator values integration ([#279](https://github.com/Orange-OpenSource/ouds-ios/issues/279)) +- [Library] Improve Multiple-based objects for tokenator values integration ([#279](https://github.com/Orange-OpenSource/ouds-ios/issues/279)) - [Tool] Use `macos-15` runner for GitHub Actions builds ([#296](https://github.com/Orange-OpenSource/ouds-ios/issues/296)) ### Removed +- [Library] Color semantic tokens `colorContentOnBg*`, `colorBorderOnBg*`, `colorBorderStatus*`, some `colorAction*OnBg*`, `colorDecorative{Primary,Secondary,Tertiary}`, `colorAlwaysOnBg*`, `colorBgBrand{Secondary,Tertiary}`, `colorContentBrand{Secondary,Tertiary}`, `colorBorderBrand{Secondary,Tertiary}`, `colorContentStatusAccent`, ... - [Library] Some space semantic tokens type aliases to help tokenator job (`SpacePaddingInlineSemanticToken`, `SpacePaddingBlockSemanticToken`, `SpaceGapInlineSemanticToken`, `SpaceGapStackSemanticToken`) - [Library] All dimension semantic tokens ([#308](https://github.com/Orange-OpenSource/ouds-ios/issues/308)) diff --git a/OUDS/Core/OUDS/Sources/OUDSTheme/OUDSTheme+SemanticTokens/OUDSTheme+ColorMultipleSemanticTokens.swift b/OUDS/Core/OUDS/Sources/OUDSTheme/OUDSTheme+SemanticTokens/OUDSTheme+ColorMultipleSemanticTokens.swift index 509953e44..6c4ddfe06 100644 --- a/OUDS/Core/OUDS/Sources/OUDSTheme/OUDSTheme+SemanticTokens/OUDSTheme+ColorMultipleSemanticTokens.swift +++ b/OUDS/Core/OUDS/Sources/OUDSTheme/OUDSTheme+SemanticTokens/OUDSTheme+ColorMultipleSemanticTokens.swift @@ -27,6 +27,7 @@ import OUDSTokensSemantic /// These values can be overriden inside `OUDSTheme` subclasses (in extensions or not, in the same module or not) thanks to the `@objc open` combination. /// Some tokens do not have values assigned in the design system, and must be overriden. /// Some tokens must be overiden in `OrangeTheme` side because they rely on Orange brand colors. +/// Helps to expose color semantic tokens with two values to use depending to the color scheme (*Figma* cannot manage such tokens and generate them). extension OUDSTheme: ColorMultipleSemanticTokens { // MARK: Semantic token - Colors - Background @@ -35,17 +36,11 @@ extension OUDSTheme: ColorMultipleSemanticTokens { @objc open var colorBgSecondary: MultipleColorSemanticTokens { MultipleColorSemanticTokens(light: colorBgSecondaryLight, dark: colorBgSecondaryDark) } - // WARNING: #124 - Colors to use are part of Orange Theme so are not reachable at this level, as a workaround add raw values - @objc open var colorBgTertiary: MultipleColorSemanticTokens { fatalError("🤖 Raw token unavailable for colorBgTertiary!") } + @objc open var colorBgTertiary: MultipleColorSemanticTokens { MultipleColorSemanticTokens(light: colorBgTertiaryLight, dark: colorBgTertiaryDark) } @objc open var colorBgEmphasized: MultipleColorSemanticTokens { MultipleColorSemanticTokens(light: colorBgEmphasizedLight, dark: colorBgEmphasizedDark) } - // WARNING: #124 - Colors to use are part of Orange Theme so are not reachable at this level, as a workaround add raw values - @objc open var colorBgBrandPrimary: MultipleColorSemanticTokens { fatalError("🤖 Raw token unavailable for colorBgBrandPrimary!") } - - @objc open var colorBgBrandSecondary: MultipleColorSemanticTokens { fatalError("🤖 No value defined for colorBgBrandSecondary!") } - - @objc open var colorBgBrandTertiary: MultipleColorSemanticTokens { fatalError("🤖 No value defined for colorBgBrandTertiary!") } + @objc open var colorBgBrandPrimary: MultipleColorSemanticTokens { MultipleColorSemanticTokens(light: colorBgBrandPrimaryLight, dark: colorBgBrandPrimaryDark) } @objc open var colorBgStatusNeutral: MultipleColorSemanticTokens { MultipleColorSemanticTokens(light: colorBgStatusNeutralLight, dark: colorBgStatusNeutralDark) } @@ -75,11 +70,9 @@ extension OUDSTheme: ColorMultipleSemanticTokens { @objc open var colorBgStatusNegativeEmphasized: MultipleColorSemanticTokens { MultipleColorSemanticTokens(light: colorBgStatusNegativeEmphasizedLight, dark: colorBgStatusNegativeEmphasizedDark) } - // WARNING: #124 - Colors to use are part of Orange Theme so are not reachable at this level, as a workaround add raw values - @objc open var colorBgStatusAccentMuted: MultipleColorSemanticTokens { fatalError("🤖 Raw token unavailable for colorBgStatusAccentMuted!") } + @objc open var colorBgStatusAccentMuted: MultipleColorSemanticTokens { MultipleColorSemanticTokens(light: colorBgStatusAccentMutedLight, dark: colorBgStatusAccentMutedDark) } - // WARNING: #124 - Colors to use are part of Orange Theme so are not reachable at this level, as a workaround add raw values - @objc open var colorBgStatusAccentMutedOnBgEmphasized: MultipleColorSemanticTokens { fatalError("🤖 Raw token unavailable for colorBgStatusAccentMutedOnBgEmphasized!") } + @objc open var colorBgStatusAccentMutedOnBgEmphasized: MultipleColorSemanticTokens { MultipleColorSemanticTokens(light: colorBgStatusAccentMutedOnBgEmphasizedLight, dark: colorBgStatusAccentMutedOnBgEmphasizedDark) } @objc open var colorBgStatusAccentEmphasized: MultipleColorSemanticTokens { MultipleColorSemanticTokens(light: colorBgStatusAccentEmphasizedLight, dark: colorBgStatusAccentEmphasizedDark) } @@ -87,22 +80,19 @@ extension OUDSTheme: ColorMultipleSemanticTokens { @objc open var colorContentDefault: MultipleColorSemanticTokens { MultipleColorSemanticTokens(light: colorContentDefaultLight, dark: colorContentDefaultDark) } - @objc open var colorContentContentDefaultOnBgEmphasized: MultipleColorSemanticTokens { MultipleColorSemanticTokens(light: colorContentContentDefaultOnBgEmphasizedLight, dark: colorContentContentDefaultOnBgEmphasizedDark) } + @objc open var colorContentDefaultOnBgEmphasized: MultipleColorSemanticTokens { MultipleColorSemanticTokens(light: colorContentDefaultOnBgEmphasizedLight, dark: colorContentDefaultOnBgEmphasizedDark) } @objc open var colorContentMuted: MultipleColorSemanticTokens { MultipleColorSemanticTokens(light: colorContentMutedLight, dark: colorContentMutedDark) } - @objc open var colorContentContentMutedOnBgEmphasized: MultipleColorSemanticTokens { MultipleColorSemanticTokens(light: colorContentContentMutedOnBgEmphasizedLight, dark: colorContentContentMutedOnBgEmphasizedDark) } + @objc open var colorContentMutedOnBgEmphasized: MultipleColorSemanticTokens { MultipleColorSemanticTokens(light: colorContentMutedOnBgEmphasizedLight, dark: colorContentMutedOnBgEmphasizedDark) } @objc open var colorContentDisabled: MultipleColorSemanticTokens { MultipleColorSemanticTokens(light: colorContentDisabledLight, dark: colorContentDisabledDark) } - @objc open var colorContentContentDisabledOnBgEmphasized: MultipleColorSemanticTokens { MultipleColorSemanticTokens(light: colorContentContentDisabledOnBgEmphasizedLight, dark: colorContentContentDisabledOnBgEmphasizedDark) } - - // WARNING: #124 - Colors to use are part of Orange Theme so are not reachable at this level, as a workaround add raw values - @objc open var colorContentBrandPrimary: MultipleColorSemanticTokens { fatalError("🤖 Raw token unavailable for colorContentBrandPrimary!") } + @objc open var colorContentDisabledOnBgEmphasized: MultipleColorSemanticTokens { MultipleColorSemanticTokens(light: colorContentDisabledOnBgEmphasizedLight, dark: colorContentDisabledOnBgEmphasizedDark) } - @objc open var colorContentBrandSecondary: MultipleColorSemanticTokens { fatalError("🤖 No value defined for colorContentBrandSecondary!") } + @objc open var colorContentBrandPrimary: MultipleColorSemanticTokens { MultipleColorSemanticTokens(light: colorContentBrandPrimaryLight, dark: colorContentBrandPrimaryDark) } - @objc open var colorContentBrandTertiary: MultipleColorSemanticTokens { fatalError("🤖 No value defined for colorContentBrandTertiary!") } + @objc open var colorContentBrandPrimaryOnBgEmphasized: MultipleColorSemanticTokens { MultipleColorSemanticTokens(light: colorContentBrandPrimaryOnBgEmphasizedLight, dark: colorContentBrandPrimaryOnBgEmphasizedDark) } @objc open var colorContentStatusPositive: MultipleColorSemanticTokens { MultipleColorSemanticTokens(light: colorContentStatusPositiveLight, dark: colorContentStatusPositiveDark) } @@ -112,91 +102,93 @@ extension OUDSTheme: ColorMultipleSemanticTokens { @objc open var colorContentStatusNegative: MultipleColorSemanticTokens { MultipleColorSemanticTokens(light: colorContentStatusNegativeLight, dark: colorContentStatusNegativeDark) } - @objc open var colorContentStatusAccent: MultipleColorSemanticTokens { fatalError("🤖 No value defined for colorContentStatusAccent!") } + @objc open var colorContentOnActionDisabled: MultipleColorSemanticTokens { MultipleColorSemanticTokens(light: colorContentOnActionDisabledLight, dark: colorContentOnActionDisabledDark) } - // MARK: Semantic token - Colors - Content - On Background + @objc open var colorContentOnActionDisabledOnBgEmphasized: MultipleColorSemanticTokens { MultipleColorSemanticTokens(light: colorContentOnActionDisabledOnBgEmphasizedLight, dark: colorContentOnActionDisabledOnBgEmphasizedDark) } - @objc open var colorContentOnBgPrimary: MultipleColorSemanticTokens { MultipleColorSemanticTokens(light: colorContentOnBgPrimaryLight, dark: colorContentOnBgPrimaryDark) } + @objc open var colorContentOnActionNegative: MultipleColorSemanticTokens { MultipleColorSemanticTokens(light: colorContentOnActionNegativeLight, dark: colorContentOnActionNegativeDark) } - @objc open var colorContentOnBgSecondary: MultipleColorSemanticTokens { fatalError("🤖 No value defined for colorContentOnBgSecondary!") } + @objc open var colorContentOnActionPrimaryEnabled: MultipleColorSemanticTokens { MultipleColorSemanticTokens(light: colorContentOnActionPrimaryEnabledLight, dark: colorContentOnActionPrimaryEnabledDark) } - @objc open var colorContentOnBgTertiary: MultipleColorSemanticTokens { fatalError("🤖 No value defined for colorContentOnBgTertiary!") } + @objc open var colorContentOnActionPrimaryEnabledOnBgEmphasized: MultipleColorSemanticTokens { MultipleColorSemanticTokens(light: colorContentOnActionPrimaryEnabledOnBgEmphasizedLight, dark: colorContentOnActionPrimaryEnabledOnBgEmphasizedDark) } - @objc open var colorContentOnBgStatusPositiveMuted: MultipleColorSemanticTokens { MultipleColorSemanticTokens(light: colorContentOnBgStatusPositiveMutedLight, dark: colorContentOnBgStatusPositiveMutedDark) } + @objc open var colorContentOnActionPrimaryFocus: MultipleColorSemanticTokens { MultipleColorSemanticTokens(light: colorContentOnActionPrimaryFocusLight, dark: colorContentOnActionPrimaryFocusDark) } - @objc open var colorContentOnBgStatusPositiveMutedOnBgEmphasized: MultipleColorSemanticTokens { MultipleColorSemanticTokens(light: colorContentOnBgStatusPositiveMutedOnBgEmphasizedLight, dark: colorContentOnBgStatusPositiveMutedOnBgEmphasizedDark) } + @objc open var colorContentOnActionPrimaryFocusOnBgEmphasized: MultipleColorSemanticTokens { MultipleColorSemanticTokens(light: colorContentOnActionPrimaryFocusOnBgEmphasizedLight, dark: colorContentOnActionPrimaryFocusOnBgEmphasizedDark) } - @objc open var colorContentOnBgStatusPositiveEmphasized: MultipleColorSemanticTokens { MultipleColorSemanticTokens(light: colorContentOnBgStatusPositiveEmphasizedLight, dark: colorContentOnBgStatusPositiveEmphasizedDark) } + @objc open var colorContentOnActionPrimaryHover: MultipleColorSemanticTokens { MultipleColorSemanticTokens(light: colorContentOnActionPrimaryHoverLight, dark: colorContentOnActionPrimaryHoverDark) } - @objc open var colorContentOnBgStatusInfoMuted: MultipleColorSemanticTokens { MultipleColorSemanticTokens(light: colorContentOnBgStatusInfoMutedLight, dark: colorContentOnBgStatusInfoMutedDark) } + @objc open var colorContentOnActionPrimaryHoverOnBgEmphasized: MultipleColorSemanticTokens { MultipleColorSemanticTokens(light: colorContentOnActionPrimaryHoverOnBgEmphasizedLight, dark: colorContentOnActionPrimaryHoverOnBgEmphasizedDark) } - @objc open var colorContentOnBgStatusInfoMutedOnBgEmphasized: MultipleColorSemanticTokens { MultipleColorSemanticTokens(light: colorContentOnBgStatusInfoMutedOnBgEmphasizedLight, dark: colorContentOnBgStatusInfoMutedOnBgEmphasizedDark) } + @objc open var colorContentOnActionPrimaryLoading: MultipleColorSemanticTokens { MultipleColorSemanticTokens(light: colorContentOnActionPrimaryLoadingLight, dark: colorContentOnActionPrimaryLoadingDark) } - @objc open var colorContentOnBgStatusInfoEmphasized: MultipleColorSemanticTokens { MultipleColorSemanticTokens(light: colorContentOnBgStatusInfoEmphasizedLight, dark: colorContentOnBgStatusInfoEmphasizedDark) } + @objc open var colorContentOnActionPrimaryLoadingOnBgEmphasized: MultipleColorSemanticTokens { MultipleColorSemanticTokens(light: colorContentOnActionPrimaryLoadingOnBgEmphasizedLight, dark: colorContentOnActionPrimaryLoadingOnBgEmphasizedDark) } - @objc open var colorContentOnBgStatusWarningMuted: MultipleColorSemanticTokens { MultipleColorSemanticTokens(light: colorContentOnBgStatusWarningMutedLight, dark: colorContentOnBgStatusWarningMutedDark) } + @objc open var colorContentOnActionPrimaryPressed: MultipleColorSemanticTokens { MultipleColorSemanticTokens(light: colorContentOnActionPrimaryPressedLight, dark: colorContentOnActionPrimaryPressedDark) } - @objc open var colorContentOnBgStatusWarningMutedOnBgEmphasized: MultipleColorSemanticTokens { MultipleColorSemanticTokens(light: colorContentOnBgStatusWarningMutedOnBgEmphasizedLight, dark: colorContentOnBgStatusWarningMutedOnBgEmphasizedDark) } + @objc open var colorContentOnActionPrimaryPressedOnBgEmphasized: MultipleColorSemanticTokens { MultipleColorSemanticTokens(light: colorContentOnActionPrimaryPressedOnBgEmphasizedLight, dark: colorContentOnActionPrimaryPressedOnBgEmphasizedDark) } - @objc open var colorContentOnBgStatusWarningEmphasized: MultipleColorSemanticTokens { MultipleColorSemanticTokens(light: colorContentOnBgStatusWarningEmphasizedLight, dark: colorContentOnBgStatusWarningEmphasizedDark) } + @objc open var colorContentOnBrandPrimary: MultipleColorSemanticTokens { MultipleColorSemanticTokens(light: colorContentOnBrandPrimaryLight, dark: colorContentOnBrandPrimaryDark) } - @objc open var colorContentOnBgStatusNegativeMuted: MultipleColorSemanticTokens { MultipleColorSemanticTokens(light: colorContentOnBgStatusNegativeMutedLight, dark: colorContentOnBgStatusNegativeMutedDark) } + @objc open var colorContentOnStatusAccentEmphasized: MultipleColorSemanticTokens { MultipleColorSemanticTokens(light: colorContentOnStatusAccentEmphasizedLight, dark: colorContentOnStatusAccentEmphasizedDark) } - @objc open var colorContentOnBgStatusNegativeMutedOnBgEmphasized: MultipleColorSemanticTokens { MultipleColorSemanticTokens(light: colorContentOnBgStatusNegativeMutedOnBgEmphasizedLight, dark: colorContentOnBgStatusNegativeMutedOnBgEmphasizedDark) } + @objc open var colorContentOnStatusAccentMuted: MultipleColorSemanticTokens { MultipleColorSemanticTokens(light: colorContentOnStatusAccentMutedLight, dark: colorContentOnStatusAccentMutedDark) } - @objc open var colorContentOnBgStatusNegativeEmphasized: MultipleColorSemanticTokens { MultipleColorSemanticTokens(light: colorContentOnBgStatusNegativeEmphasizedLight, dark: colorContentOnBgStatusNegativeEmphasizedDark) } + @objc open var colorContentOnStatusAccentMutedOnBgEmphasized: MultipleColorSemanticTokens { MultipleColorSemanticTokens(light: colorContentOnStatusAccentMutedOnBgEmphasizedLight, dark: colorContentOnStatusAccentMutedOnBgEmphasizedDark) } - @objc open var colorContentOnBgStatusAccentMuted: MultipleColorSemanticTokens { MultipleColorSemanticTokens(light: colorContentOnBgStatusAccentMutedLight, dark: colorContentOnBgStatusAccentMutedDark) } + @objc open var colorContentOnStatusInfoEmphasized: MultipleColorSemanticTokens { MultipleColorSemanticTokens(light: colorContentOnStatusInfoEmphasizedLight, dark: colorContentOnStatusInfoEmphasizedDark) } - @objc open var colorContentOnBgStatusAccentMutedOnBgEmphasized: MultipleColorSemanticTokens { MultipleColorSemanticTokens(light: colorContentOnBgStatusAccentMutedOnBgEmphasizedLight, dark: colorContentOnBgStatusAccentMutedOnBgEmphasizedDark) } + @objc open var colorContentOnStatusInfoMuted: MultipleColorSemanticTokens { MultipleColorSemanticTokens(light: colorContentOnStatusInfoMutedLight, dark: colorContentOnStatusInfoMutedDark) } - @objc open var colorContentOnBgStatusAccentedEmphasized: MultipleColorSemanticTokens { MultipleColorSemanticTokens(light: colorContentOnBgStatusAccentedEmphasizedLight, dark: colorContentOnBgStatusAccentedEmphasizedDark) } + @objc open var colorContentOnStatusInfoMutedOnBgEmphasized: MultipleColorSemanticTokens { MultipleColorSemanticTokens(light: colorContentOnStatusInfoMutedOnBgEmphasizedLight, dark: colorContentOnStatusInfoMutedOnBgEmphasizedDark) } - // MARK: Semantic token - Colors - Border + @objc open var colorContentOnStatusNegativeEmphasized: MultipleColorSemanticTokens { MultipleColorSemanticTokens(light: colorContentOnStatusNegativeEmphasizedLight, dark: colorContentOnStatusNegativeEmphasizedDark) } - @objc open var colorBorderDefault: MultipleColorSemanticTokens { MultipleColorSemanticTokens(light: colorBorderDefaultLight, dark: colorBorderDefaultDark) } + @objc open var colorContentOnStatusNegativeMuted: MultipleColorSemanticTokens { MultipleColorSemanticTokens(light: colorContentOnStatusNegativeMutedLight, dark: colorContentOnStatusNegativeMutedDark) } - @objc open var colorBorderDefaultOnBgEmphasized: MultipleColorSemanticTokens { MultipleColorSemanticTokens(light: colorBorderDefaultOnBgEmphasizedLight, dark: colorBorderDefaultOnBgEmphasizedDark) } + @objc open var colorContentOnStatusNegativeMutedOnBgEmphasized: MultipleColorSemanticTokens { MultipleColorSemanticTokens(light: colorContentOnStatusNegativeMutedOnBgEmphasizedLight, dark: colorContentOnStatusNegativeMutedOnBgEmphasizedDark) } - @objc open var colorBorderEmphasized: MultipleColorSemanticTokens { MultipleColorSemanticTokens(light: colorBorderEmphasizedLight, dark: colorBorderEmphasizedDark) } + @objc open var colorContentOnStatusPositiveEmphasized: MultipleColorSemanticTokens { MultipleColorSemanticTokens(light: colorContentOnStatusPositiveEmphasizedLight, dark: colorContentOnStatusPositiveEmphasizedDark) } - @objc open var colorBorderEmphasizedOnBgEmphasized: MultipleColorSemanticTokens { MultipleColorSemanticTokens(light: colorBorderEmphasizedOnBgEmphasizedLight, dark: colorBorderEmphasizedOnBgEmphasizedDark) } + @objc open var colorContentOnStatusPositiveMuted: MultipleColorSemanticTokens { MultipleColorSemanticTokens(light: colorContentOnStatusPositiveMutedLight, dark: colorContentOnStatusPositiveMutedDark) } - @objc open var colorBorderFocus: MultipleColorSemanticTokens { MultipleColorSemanticTokens(light: colorBorderFocusLight, dark: colorBorderFocusDark) } + @objc open var colorContentOnStatusPositiveMutedOnBgEmphasized: MultipleColorSemanticTokens { MultipleColorSemanticTokens(light: colorContentOnStatusPositiveMutedOnBgEmphasizedLight, dark: colorContentOnStatusPositiveMutedOnBgEmphasizedDark) } - // WARNING: #124 - Colors to use are part of Orange Theme so are not reachable at this level, as a workaround add raw values - @objc open var colorBorderBrandPrimaryOnBgEmphasized: MultipleColorSemanticTokens { fatalError("🤖 Raw token unavailable for colorBorderBrandPrimaryOnBgEmphasized!") } + @objc open var colorContentOnStatusWarningEmphasized: MultipleColorSemanticTokens { MultipleColorSemanticTokens(light: colorContentOnStatusWarningEmphasizedLight, dark: colorContentOnStatusWarningEmphasizedDark) } - // WARNING: #124 - Colors to use sont part of Orange Theme so sont not reachable at this level, as un workaround add raw values - @objc open var colorBorderBrandPrimary: MultipleColorSemanticTokens { fatalError("🤖 Raw token unavailable for colorBorderBrandPrimary!") } + @objc open var colorContentOnStatusWarningMuted: MultipleColorSemanticTokens { MultipleColorSemanticTokens(light: colorContentOnStatusWarningMutedLight, dark: colorContentOnStatusWarningMutedDark) } - @objc open var colorBorderBrandSecondary: MultipleColorSemanticTokens { fatalError("🤖 No value defined for colorBorderBrandSecondary!") } + @objc open var colorContentOnStatusWarningMutedOnBgEmphasized: MultipleColorSemanticTokens { MultipleColorSemanticTokens(light: colorContentOnStatusWarningMutedOnBgEmphasizedLight, dark: colorContentOnStatusWarningMutedOnBgEmphasizedDark) } - @objc open var colorBorderBrandTertiary: MultipleColorSemanticTokens { fatalError("🤖 No value defined for colorBorderBrandTertiary!") } + // MARK: Semantic token - Colors - Border - @objc open var colorBorderStatusPositive: MultipleColorSemanticTokens { fatalError("🤖 No value defined for colorBorderStatusPositive!") } + @objc open var colorBorderDefault: MultipleColorSemanticTokens { MultipleColorSemanticTokens(light: colorBorderDefaultLight, dark: colorBorderDefaultDark) } - @objc open var colorBorderStatusInfo: MultipleColorSemanticTokens { fatalError("🤖 No value defined for colorBorderStatusInfo!") } + @objc open var colorBorderDefaultOnBgEmphasized: MultipleColorSemanticTokens { MultipleColorSemanticTokens(light: colorBorderDefaultOnBgEmphasizedLight, dark: colorBorderDefaultOnBgEmphasizedDark) } - @objc open var colorBorderStatusWarning: MultipleColorSemanticTokens { fatalError("🤖 No value defined for colorBorderStatusWarning!") } + @objc open var colorBorderEmphasized: MultipleColorSemanticTokens { MultipleColorSemanticTokens(light: colorBorderEmphasizedLight, dark: colorBorderEmphasizedDark) } + + @objc open var colorBorderEmphasizedOnBgEmphasized: MultipleColorSemanticTokens { MultipleColorSemanticTokens(light: colorBorderEmphasizedOnBgEmphasizedLight, dark: colorBorderEmphasizedOnBgEmphasizedDark) } + + @objc open var colorBorderFocus: MultipleColorSemanticTokens { MultipleColorSemanticTokens(light: colorBorderFocusLight, dark: colorBorderFocusDark) } + + @objc open var colorBorderFocusInset: MultipleColorSemanticTokens { MultipleColorSemanticTokens(light: colorBorderFocusInsetLight, dark: colorBorderFocusInsetDark) } - @objc open var colorBorderStatusNegative: MultipleColorSemanticTokens { fatalError("🤖 No value defined for colorBorderStatusNegative!") } + @objc open var colorBorderFocusInsetOnBgEmphasized: MultipleColorSemanticTokens { MultipleColorSemanticTokens(light: colorBorderFocusInsetOnBgEmphasizedLight, dark: colorBorderFocusInsetOnBgEmphasizedDark) } - @objc open var colorBorderStatusAccent: MultipleColorSemanticTokens { fatalError("🤖 No value defined for colorBorderStatusAccent!") } + @objc open var colorBorderFocusOnBgEmphasized: MultipleColorSemanticTokens { MultipleColorSemanticTokens(light: colorBorderFocusOnBgEmphasizedLight, dark: colorBorderFocusOnBgEmphasizedDark) } - @objc open var colorBorderOnBgBrandPrimary: MultipleColorSemanticTokens { MultipleColorSemanticTokens(light: colorBorderOnBgBrandPrimaryLight, dark: colorBorderOnBgBrandPrimaryDark) } + @objc open var colorBorderBrandPrimaryOnBgEmphasized: MultipleColorSemanticTokens { MultipleColorSemanticTokens(light: colorBorderBrandPrimaryOnBgEmphasizedLight, dark: colorBorderBrandPrimaryOnBgEmphasizedDark) } - @objc open var colorBorderOnBgBrandSecondary: MultipleColorSemanticTokens { fatalError("🤖 No value defined for colorBorderOnBgBrandSecondary!") } + @objc open var colorBorderBrandPrimary: MultipleColorSemanticTokens { MultipleColorSemanticTokens(light: colorBorderBrandPrimaryLight, dark: colorBorderBrandPrimaryDark) } - @objc open var colorBorderOnBgBrandTertiary: MultipleColorSemanticTokens { fatalError("🤖 No value defined for colorBorderOnBgBrandTertiary!") } + @objc open var colorBorderOnBrandPrimary: MultipleColorSemanticTokens { MultipleColorSemanticTokens(light: colorBorderOnBrandPrimaryLight, dark: colorBorderOnBrandPrimaryDark) } // MARK: Semantic token - Colors - Action - // WARNING: #124 - Colors to use sont part of Orange Theme so sont not reachable at this level, as un workaround add raw values - @objc open var colorActionSelected: MultipleColorSemanticTokens { fatalError("🤖 Raw token unavailable for colorActionSelected!") } + @objc open var colorActionSelected: MultipleColorSemanticTokens { MultipleColorSemanticTokens(light: colorActionSelectedLight, dark: colorActionSelectedDark) } - // WARNING: #124 - Colors to use sont part of Orange Theme so sont not reachable at this level, as un workaround add raw values - @objc open var colorActionSelectedOnBgEmphasized: MultipleColorSemanticTokens { fatalError("🤖 Raw token unavailable for colorActionSelectedOnBgEmphasized!") } + @objc open var colorActionSelectedOnBgEmphasized: MultipleColorSemanticTokens { MultipleColorSemanticTokens(light: colorActionSelectedOnBgEmphasizedLight, dark: colorActionSelectedOnBgEmphasizedDark) } @objc open var colorActionDisabled: MultipleColorSemanticTokens { MultipleColorSemanticTokens(light: colorActionDisabledLight, dark: colorActionDisabledDark) } @@ -204,7 +196,7 @@ extension OUDSTheme: ColorMultipleSemanticTokens { @objc open var colorActionVisited: MultipleColorSemanticTokens { MultipleColorSemanticTokens(light: colorActionVisitedLight, dark: colorActionVisitedDark) } - @objc open var colorActionVistedOnBgEmphasized: MultipleColorSemanticTokens { MultipleColorSemanticTokens(light: colorActionVistedOnBgEmphasizedLight, dark: colorActionVistedOnBgEmphasizedDark) } + @objc open var colorActionVisitedOnBgEmphasized: MultipleColorSemanticTokens { MultipleColorSemanticTokens(light: colorActionVisitedOnBgEmphasizedLight, dark: colorActionVisitedOnBgEmphasizedLight) } @objc open var colorActionPrimaryEnabled: MultipleColorSemanticTokens { MultipleColorSemanticTokens(light: colorActionPrimaryEnabledLight, dark: colorActionPrimaryEnabledDark) } @@ -214,17 +206,13 @@ extension OUDSTheme: ColorMultipleSemanticTokens { @objc open var colorActionPrimaryHoverOnBgEmphasized: MultipleColorSemanticTokens { MultipleColorSemanticTokens(light: colorActionPrimaryHoverOnBgEmphasizedLight, dark: colorActionPrimaryHoverOnBgEmphasizedDark) } - // WARNING: #124 - Colors to use sont part of Orange Theme so sont not reachable at this level, as un workaround add raw values - @objc open var colorActionPrimaryPressed: MultipleColorSemanticTokens { fatalError("🤖 Raw token unavailable for colorActionPrimaryPressed!") } + @objc open var colorActionPrimaryPressed: MultipleColorSemanticTokens { MultipleColorSemanticTokens(light: colorActionPrimaryPressedLight, dark: colorActionPrimaryPressedDark) } - // WARNING: #124 - Colors to use sont part of Orange Theme so sont not reachable at this level, as un workaround add raw values - @objc open var colorActionPrimaryPressedOnBgEmphasized: MultipleColorSemanticTokens { fatalError("🤖 Raw token unavailable for colorActionPrimaryPressedOnBgEmphasized!") } + @objc open var colorActionPrimaryPressedOnBgEmphasized: MultipleColorSemanticTokens { MultipleColorSemanticTokens(light: colorActionPrimaryPressedOnBgEmphasizedLight, dark: colorActionPrimaryPressedOnBgEmphasizedDark) } - // WARNING: #124 - Colors to use sont part of Orange Theme so sont not reachable à ce niveau, as un workaround add raw values - @objc open var colorActionPrimaryLoading: MultipleColorSemanticTokens { fatalError("🤖 Raw token unavailable for colorActionPrimaryLoading!") } + @objc open var colorActionPrimaryLoading: MultipleColorSemanticTokens { MultipleColorSemanticTokens(light: colorActionPrimaryLoadingLight, dark: colorActionPrimaryLoadingDark) } - // WARNING: #124 - Colors to use sont part of Orange Theme so sont not reachable à ce niveau, as un workaround add raw values - @objc open var colorActionPrimaryLoadingOnBgEmphasized: MultipleColorSemanticTokens { fatalError("🤖 Raw token unavailable for colorActionPrimaryLoadingOnBgEmphasized!") } + @objc open var colorActionPrimaryLoadingOnBgEmphasized: MultipleColorSemanticTokens { MultipleColorSemanticTokens(light: colorActionPrimaryLoadingOnBgEmphasizedLight, dark: colorActionPrimaryLoadingOnBgEmphasizedDark) } @objc open var colorActionPrimaryFocus: MultipleColorSemanticTokens { MultipleColorSemanticTokens(light: colorActionPrimaryFocusLight, dark: colorActionPrimaryFocusDark) } @@ -260,81 +248,35 @@ extension OUDSTheme: ColorMultipleSemanticTokens { @objc open var colorActionNegativeFocus: MultipleColorSemanticTokens { MultipleColorSemanticTokens(light: colorActionNegativeFocusLight, dark: colorActionNegativeFocusDark) } - @objc open var colorActionOnBgActionDisabled: MultipleColorSemanticTokens { MultipleColorSemanticTokens(light: colorActionOnBgActionDisabledLight, dark: colorActionOnBgActionDisabledDark) } - - @objc open var colorActionOnBgActionDisabledOnBgEmphasized: MultipleColorSemanticTokens { MultipleColorSemanticTokens(light: colorActionOnBgActionDisabledOnBgEmphasizedLight, dark: colorActionOnBgActionDisabledOnBgEmphasizedDark) } - - @objc open var colorActionOnBgActionNegative: MultipleColorSemanticTokens { MultipleColorSemanticTokens(light: colorActionOnBgActionNegativeLight, dark: colorActionOnBgActionNegativeDark) } - - @objc open var colorActionOnBgActionPrimaryEnabled: MultipleColorSemanticTokens { MultipleColorSemanticTokens(light: colorActionOnBgActionPrimaryEnabledLight, dark: colorActionOnBgActionPrimaryEnabledDark) } - - @objc open var colorActionOnBgActionPrimaryEnabledOnBgEmphasized: MultipleColorSemanticTokens { MultipleColorSemanticTokens(light: colorActionOnBgActionPrimaryEnabledOnBgEmphasizedLight, dark: colorActionOnBgActionPrimaryEnabledOnBgEmphasizedDark) } - - @objc open var colorActionOnBgActionPrimaryHover: MultipleColorSemanticTokens { MultipleColorSemanticTokens(light: colorActionOnBgActionPrimaryHoverLight, dark: colorActionOnBgActionPrimaryHoverDark) } - - @objc open var colorActionOnBgActionPrimaryHoverOnBgEmphasized: MultipleColorSemanticTokens { MultipleColorSemanticTokens(light: colorActionOnBgActionPrimaryHoverOnBgEmphasizedLight, dark: colorActionOnBgActionPrimaryHoverOnBgEmphasizedDark) } - - @objc open var colorActionOnBgActionPrimaryPressed: MultipleColorSemanticTokens { MultipleColorSemanticTokens(light: colorActionOnBgActionPrimaryPressedLight, dark: colorActionOnBgActionPrimaryPressedDark) } - - @objc open var colorActionOnBgActionPrimaryPressedOnBgEmphasized: MultipleColorSemanticTokens { MultipleColorSemanticTokens(light: colorActionOnBgActionPrimaryPressedOnBgEmphasizedLight, dark: colorActionOnBgActionPrimaryPressedOnBgEmphasizedDark) } - - @objc open var colorActionOnBgActionPrimaryLoading: MultipleColorSemanticTokens { MultipleColorSemanticTokens(light: colorActionOnBgActionPrimaryLoadingLight, dark: colorActionOnBgActionPrimaryLoadingDark) } - - @objc open var colorActionOnBgActionPrimaryLoadingOnBgEmphasized: MultipleColorSemanticTokens { MultipleColorSemanticTokens(light: colorActionOnBgActionPrimaryLoadingOnBgEmphasizedLight, dark: colorActionOnBgActionPrimaryLoadingOnBgEmphasizedDark) } - - @objc open var colorActionOnBgActionPrimaryFocus: MultipleColorSemanticTokens { MultipleColorSemanticTokens(light: colorActionOnBgActionPrimaryFocusLight, dark: colorActionOnBgActionPrimaryFocusDark) } - - @objc open var colorActionOnBgActionPrimaryFocusOnBgEmphasized: MultipleColorSemanticTokens { MultipleColorSemanticTokens(light: colorActionOnBgActionPrimaryFocusOnBgEmphasizedLight, dark: colorActionOnBgActionPrimaryFocusOnBgEmphasizedDark) } - - @objc open var colorActionOnBgActionSecondaryEnabled: MultipleColorSemanticTokens { fatalError("🤖 No value defined for colorActionOnBgActionSecondaryEnabled!") } - - @objc open var colorActionOnBgActionSecondaryEnabledOnBgEmphasized: MultipleColorSemanticTokens { fatalError("🤖 No value defined for colorActionOnBgActionSecondaryEnabledOnBgEmphasized!") } - - @objc open var colorActionOnBgActionSecondaryHover: MultipleColorSemanticTokens { fatalError("🤖 No value defined for colorActionOnBgActionSecondaryHover!") } - - @objc open var colorActionOnBgActionSecondaryHoverOnBgEmphasized: MultipleColorSemanticTokens { fatalError("🤖 No value defined for colorActionOnBgActionSecondaryHoverOnBgEmphasized!") } - - @objc open var colorActionOnBgActionSecondaryPressed: MultipleColorSemanticTokens { fatalError("🤖 No value defined for colorActionOnBgActionSecondaryPressed!") } - - @objc open var colorActionOnBgActionSecondaryPressedOnBgEmphasized: MultipleColorSemanticTokens { fatalError("🤖 No value defined for colorActionOnBgActionSecondaryPressedOnBgEmphasized!") } - - @objc open var colorActionOnBgActionSecondaryLoading: MultipleColorSemanticTokens { fatalError("🤖 No value defined for colorActionOnBgActionSecondaryLoading!") } - - @objc open var colorActionOnBgActionSecondaryLoadingOnBgEmphasized: MultipleColorSemanticTokens { fatalError("🤖 No value defined for colorActionOnBgActionSecondaryLoadingOnBgEmphasized!") } - - @objc open var colorActionOnBgActionSecondaryFocus: MultipleColorSemanticTokens { fatalError("🤖 No value defined for colorActionOnBgActionSecondaryFocus!") } - - @objc open var colorActionOnBgActionSecondaryFocusOnBgEmphasized: MultipleColorSemanticTokens { fatalError("🤖 No value defined for colorActionOnBgActionSecondaryFocusOnBgEmphasized!") } - // MARK: Semantic token - Colors - Always - @objc open var colorAlwaysBlack: MultipleColorSemanticTokens { MultipleColorSemanticTokens(ColorRawTokens.colorFunctionalBlack) } + @objc open var colorAlwaysBlack: MultipleColorSemanticTokens { MultipleColorSemanticTokens(light: colorAlwaysBlackLight, dark: colorAlwaysBlackDark) } - @objc open var colorAlwaysWhite: MultipleColorSemanticTokens { MultipleColorSemanticTokens(ColorRawTokens.colorFunctionalWhite) } + @objc open var colorAlwaysWhite: MultipleColorSemanticTokens { MultipleColorSemanticTokens(light: colorAlwaysWhiteLight, dark: colorAlwaysWhiteDark) } - @objc open var colorAlwaysWarning: MultipleColorSemanticTokens { MultipleColorSemanticTokens(ColorRawTokens.colorFunctionalSun500) } + @objc open var colorAlwaysWarning: MultipleColorSemanticTokens { MultipleColorSemanticTokens(light: colorAlwaysWarningLight, dark: colorAlwaysWarningDark) } - @objc open var colorAlwaysNegative: MultipleColorSemanticTokens { MultipleColorSemanticTokens(ColorRawTokens.colorFunctionalScarlet600) } + @objc open var colorAlwaysNegative: MultipleColorSemanticTokens { MultipleColorSemanticTokens(light: colorAlwaysNegativeLight, dark: colorAlwaysNegativeDark) } - @objc open var colorAlwaysPositive: MultipleColorSemanticTokens { MultipleColorSemanticTokens(ColorRawTokens.colorFunctionalMalachite500) } + @objc open var colorAlwaysPositive: MultipleColorSemanticTokens { MultipleColorSemanticTokens(light: colorAlwaysPositiveLight, dark: colorAlwaysPositiveDark) } - @objc open var colorAlwaysInfo: MultipleColorSemanticTokens { MultipleColorSemanticTokens(ColorRawTokens.colorFunctionalDodgerBlue500) } + @objc open var colorAlwaysInfo: MultipleColorSemanticTokens { MultipleColorSemanticTokens(light: colorAlwaysInfoLight, dark: colorAlwaysInfoDark) } - @objc open var colorAlwaysAccent: MultipleColorSemanticTokens { MultipleColorSemanticTokens(ColorRawTokens.colorFunctionalSun500) } + @objc open var colorAlwaysAccent: MultipleColorSemanticTokens { MultipleColorSemanticTokens(light: colorAlwaysAccentLight, dark: colorAlwaysAccentDark) } - @objc open var colorAlwaysOnBgBlack: MultipleColorSemanticTokens { MultipleColorSemanticTokens(ColorRawTokens.colorFunctionalWhite) } + @objc open var colorAlwaysOnAccent: MultipleColorSemanticTokens { MultipleColorSemanticTokens(light: colorAlwaysOnAccentLight, dark: colorAlwaysOnAccentDark) } - @objc open var colorAlwaysOnBgWhite: MultipleColorSemanticTokens { MultipleColorSemanticTokens(ColorRawTokens.colorFunctionalBlack) } + @objc open var colorAlwaysOnBlack: MultipleColorSemanticTokens { MultipleColorSemanticTokens(light: colorAlwaysOnBlackLight, dark: colorAlwaysOnBlackDark) } - @objc open var colorAlwaysOnBgWarning: MultipleColorSemanticTokens { MultipleColorSemanticTokens(ColorRawTokens.colorFunctionalBlack) } + @objc open var colorAlwaysOnInfo: MultipleColorSemanticTokens { MultipleColorSemanticTokens(light: colorAlwaysOnInfoLight, dark: colorAlwaysOnInfoDark) } - @objc open var colorAlwaysOnBgNegative: MultipleColorSemanticTokens { MultipleColorSemanticTokens(ColorRawTokens.colorFunctionalWhite) } + @objc open var colorAlwaysOnNegative: MultipleColorSemanticTokens { MultipleColorSemanticTokens(light: colorAlwaysOnNegativeLight, dark: colorAlwaysOnNegativeDark) } - @objc open var colorAlwaysOnBgPositive: MultipleColorSemanticTokens { MultipleColorSemanticTokens(ColorRawTokens.colorFunctionalBlack) } + @objc open var colorAlwaysOnPositive: MultipleColorSemanticTokens { MultipleColorSemanticTokens(light: colorAlwaysOnPositiveLight, dark: colorAlwaysOnPositiveDark) } - @objc open var colorAlwaysOnBgInfo: MultipleColorSemanticTokens { MultipleColorSemanticTokens(ColorRawTokens.colorFunctionalBlack) } + @objc open var colorAlwaysOnWarning: MultipleColorSemanticTokens { MultipleColorSemanticTokens(light: colorAlwaysOnWarningLight, dark: colorAlwaysOnWarningDark) } - @objc open var colorAlwaysOnBgAccent: MultipleColorSemanticTokens { MultipleColorSemanticTokens(ColorRawTokens.colorFunctionalBlack) } + @objc open var colorAlwaysOnWhite: MultipleColorSemanticTokens { MultipleColorSemanticTokens(light: colorAlwaysOnWhiteLight, dark: colorAlwaysOnWhiteDark) } // MARK: Semantic token - Colors - Transparent @@ -370,12 +312,11 @@ extension OUDSTheme: ColorMultipleSemanticTokens { // MARK: Semantic token - Colors - Decorative - // WARNING: #124 - Colors to use sont part of Orange Theme so sont not reachable at this level, as un workaround add raw values - @objc open var colorDecorativePrimary: MultipleColorSemanticTokens { fatalError("🤖 Raw token unavailable for colorDecorativePrimary!") } + @objc open var colorDecorativeBrandPrimary: MultipleColorSemanticTokens { MultipleColorSemanticTokens(light: colorDecorativeBrandPrimaryLight, dark: colorDecorativeBrandPrimaryDark) } - @objc open var colorDecorativeSecondary: MultipleColorSemanticTokens { MultipleColorSemanticTokens(light: colorDecorativeSecondaryLight, dark: colorDecorativeSecondaryDark) } + @objc open var colorDecorativeBrandSecondary: MultipleColorSemanticTokens { MultipleColorSemanticTokens(light: colorDecorativeBrandSecondaryLight, dark: colorDecorativeBrandSecondaryDark) } - @objc open var colorDecorativeTertiary: MultipleColorSemanticTokens { MultipleColorSemanticTokens(light: colorDecorativeTertiaryLight, dark: colorDecorativeTertiaryDark) } + @objc open var colorDecorativeBrandTertiary: MultipleColorSemanticTokens { MultipleColorSemanticTokens(light: colorDecorativeBrandTertiaryLight, dark: colorDecorativeBrandTertiaryDark) } @objc open var colorDecorativeNeutralMuted: MultipleColorSemanticTokens { MultipleColorSemanticTokens(light: colorDecorativeNeutralMutedLight, dark: colorDecorativeNeutralMutedDark) } @@ -435,8 +376,7 @@ extension OUDSTheme: ColorMultipleSemanticTokens { @objc open var colorChartCategoricalNeutral: MultipleColorSemanticTokens { MultipleColorSemanticTokens(light: colorChartCategoricalNeutralLight, dark: colorChartCategoricalNeutralDark) } - // WARNING: #124 - Colors to use sont part of Orange Theme so sont not reachable at this level, as un workaround add raw values - @objc open var colorChartCategoricalBrand: MultipleColorSemanticTokens { fatalError("🤖 Raw token unavailable for colorChartCategoricalBrand!") } + @objc open var colorChartCategoricalBrand: MultipleColorSemanticTokens { MultipleColorSemanticTokens(light: colorChartCategoricalBrandLight, dark: colorChartCategoricalBrandDark) } @objc open var colorChartCategoricalPositive: MultipleColorSemanticTokens { MultipleColorSemanticTokens(colorChartCategoricalPositiveLight) } @@ -551,8 +491,17 @@ extension OUDSTheme: ColorMultipleSemanticTokens { @objc open var colorChartSequentialAccent5Tint800: MultipleColorSemanticTokens { MultipleColorSemanticTokens(light: colorChartSequentialAccent5Tint800Light, dark: colorChartSequentialAccent5Tint800Dark) } @objc open var colorChartSequentialAccent5Tint900: MultipleColorSemanticTokens { MultipleColorSemanticTokens(light: colorChartSequentialAccent5Tint900Light, dark: colorChartSequentialAccent5Tint900Dark) } + + // MARK: - Semantic token - Colors - Gradient + + @objc open var colorGradientSkeletonMiddle: MultipleColorSemanticTokens { MultipleColorSemanticTokens(light: colorGradientSkeletonMiddleLight, dark: colorGradientSkeletonMiddleDark) } + + @objc open var colorGradientSkeletonMiddleOnBgEmphasized: MultipleColorSemanticTokens { MultipleColorSemanticTokens(light: colorGradientSkeletonMiddleOnBgEmphasizedLight, dark: colorGradientSkeletonMiddleOnBgEmphasizedDark) } + + @objc open var colorGradientSkeletonStartEnd: MultipleColorSemanticTokens { MultipleColorSemanticTokens(light: colorGradientSkeletonMiddleOnBgEmphasizedLight, dark: colorGradientSkeletonMiddleOnBgEmphasizedDark) } + + @objc open var colorGradientSkeletonStartEndOnBgEmphasized: MultipleColorSemanticTokens { MultipleColorSemanticTokens(light: colorGradientSkeletonStartEndOnBgEmphasizedLight, dark: colorGradientSkeletonStartEndOnBgEmphasizedDark) } } // swiftlint:enable line_length // swiftlint:enable identifier_name -// swiftlint:enable file_length diff --git a/OUDS/Core/OUDS/Sources/OUDSTheme/OUDSTheme+SemanticTokens/OUDSTheme+ColorSemanticTokens.swift b/OUDS/Core/OUDS/Sources/OUDSTheme/OUDSTheme+SemanticTokens/OUDSTheme+ColorSemanticTokens.swift index 83098f39c..47d08e72f 100644 --- a/OUDS/Core/OUDS/Sources/OUDSTheme/OUDSTheme+SemanticTokens/OUDSTheme+ColorSemanticTokens.swift +++ b/OUDS/Core/OUDS/Sources/OUDSTheme/OUDSTheme+SemanticTokens/OUDSTheme+ColorSemanticTokens.swift @@ -2,13 +2,13 @@ // 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 Foundation @@ -16,783 +16,463 @@ import OUDSTokensRaw import OUDSTokensSemantic // ଘ( ・ω・)_/゚・:*:・。☆ -// [File to generate by the tokenator] -// WARNING: Not synchronized anymore with the Figjam / Figma by developers team -// Create an issue for update https://github.com/Orange-OpenSource/ouds-ios/issues/new?template=token_update.yml +// [File generated by the tokenator and manually updated] -// swiftlint:disable line_length // swiftlint:disable identifier_name -// swiftlint:disable file_length -/// Defines basic values common to all themes for `ColorSemanticTokens`. -/// These values can be overriden inside `OUDSTheme` subclasses (in extensions or not, in the same module or not) thanks to the `@objc open` combination. -/// Some tokens do not have values assigned in the design system, and must be overriden. -/// Some tokens must be overiden in `OrangeTheme` side because they rely on Oange brand colors. extension OUDSTheme: ColorSemanticTokens { - - // MARK: Semantic token - Colors - Background - - @objc open var colorBgPrimaryLight: ColorSemanticToken { ColorRawTokens.colorFunctionalWhite } - @objc open var colorBgPrimaryDark: ColorSemanticToken { ColorRawTokens.colorFunctionalDarkGray880 } - - @objc open var colorBgSecondaryLight: ColorSemanticToken { ColorRawTokens.colorFunctionalLightGray80 } - @objc open var colorBgSecondaryDark: ColorSemanticToken { ColorRawTokens.colorFunctionalDarkGray800 } - - @objc open var colorBgTertiaryLight: ColorSemanticToken { fatalError("🤖 Raw token unavailable for colorBgTertiaryLight!") } - @objc open var colorBgTertiaryDark: ColorSemanticToken { fatalError("🤖 Raw token unavailable for colorBgTertiaryDark!") } - - @objc open var colorBgEmphasizedLight: ColorSemanticToken { ColorRawTokens.colorFunctionalDarkGray880 } - @objc open var colorBgEmphasizedDark: ColorSemanticToken { ColorRawTokens.colorFunctionalDarkGray640 } - - @objc open var colorBgBrandPrimaryLight: ColorSemanticToken { fatalError("🤖 Raw token unavailable for colorBgBrandPrimaryLight!") } - @objc open var colorBgBrandPrimaryDark: ColorSemanticToken { fatalError("🤖 Raw token unavailable for colorBgBrandPrimaryDark!") } - - @objc open var colorBgBrandSecondaryLight: ColorSemanticToken { fatalError("🤖 No value defined for colorBgBrandSecondaryLight!") } - @objc open var colorBgBrandSecondaryDark: ColorSemanticToken { fatalError("🤖 No value defined for colorBgBrandSecondaryDark!") } - - @objc open var colorBgBrandTertiaryLight: ColorSemanticToken { fatalError("🤖 No value defined for colorBgBrandTertiaryLight!") } - @objc open var colorBgBrandTertiaryDark: ColorSemanticToken { fatalError("🤖 No value defined for colorBgBrandTertiaryDark!") } - - @objc open var colorBgStatusNeutralLight: ColorSemanticToken { ColorRawTokens.colorFunctionalLightGray80 } - @objc open var colorBgStatusNeutralDark: ColorSemanticToken { ColorRawTokens.colorFunctionalDarkGray720 } - - @objc open var colorBgStatusNeutralOnBgEmphasizedLight: ColorSemanticToken { ColorRawTokens.colorFunctionalDarkGray720 } - @objc open var colorBgStatusNeutralOnBgEmphasizedDark: ColorSemanticToken { ColorRawTokens.colorFunctionalDarkGray720 } - - @objc open var colorBgStatusPositiveMutedLight: ColorSemanticToken { ColorRawTokens.colorFunctionalMalachite100 } - @objc open var colorBgStatusPositiveMutedDark: ColorSemanticToken { ColorRawTokens.colorFunctionalMalachite900 } - - @objc open var colorBgStatusPositiveMutedOnBgEmphasizedLight: ColorSemanticToken { ColorRawTokens.colorFunctionalMalachite900 } - @objc open var colorBgStatusPositiveMutedOnBgEmphasizedDark: ColorSemanticToken { ColorRawTokens.colorFunctionalMalachite900 } - - @objc open var colorBgStatusPositiveEmphasizedLight: ColorSemanticToken { ColorRawTokens.colorFunctionalMalachite500 } - @objc open var colorBgStatusPositiveEmphasizedDark: ColorSemanticToken { ColorRawTokens.colorFunctionalMalachite500 } - - @objc open var colorBgStatusInfoMutedLight: ColorSemanticToken { ColorRawTokens.colorFunctionalDodgerBlue100 } - @objc open var colorBgStatusInfoMutedDark: ColorSemanticToken { ColorRawTokens.colorFunctionalDodgerBlue900 } - - @objc open var colorBgStatusInfoMutedOnBgEmphasizedLight: ColorSemanticToken { ColorRawTokens.colorFunctionalDodgerBlue900 } - @objc open var colorBgStatusInfoMutedOnBgEmphasizedDark: ColorSemanticToken { ColorRawTokens.colorFunctionalDodgerBlue900 } - - @objc open var colorBgStatusInfoEmphasizedLight: ColorSemanticToken { ColorRawTokens.colorFunctionalDodgerBlue500 } - @objc open var colorBgStatusInfoEmphasizedDark: ColorSemanticToken { ColorRawTokens.colorFunctionalDodgerBlue500 } - - @objc open var colorBgStatusWarningMutedLight: ColorSemanticToken { ColorRawTokens.colorFunctionalSun100 } - @objc open var colorBgStatusWarningMutedDark: ColorSemanticToken { ColorRawTokens.colorFunctionalSun900 } - - @objc open var colorBgStatusWarningMutedOnBgEmphasizedLight: ColorSemanticToken { ColorRawTokens.colorFunctionalSun900 } - @objc open var colorBgStatusWarningMutedOnBgEmphasizedDark: ColorSemanticToken { ColorRawTokens.colorFunctionalSun900 } - - @objc open var colorBgStatusWarningEmphasizedLight: ColorSemanticToken { ColorRawTokens.colorFunctionalSun500 } - @objc open var colorBgStatusWarningEmphasizedDark: ColorSemanticToken { ColorRawTokens.colorFunctionalSun500 } - - @objc open var colorBgStatusNegativeMutedLight: ColorSemanticToken { ColorRawTokens.colorFunctionalScarlet100 } - @objc open var colorBgStatusNegativeMutedDark: ColorSemanticToken { ColorRawTokens.colorFunctionalScarlet900 } - - @objc open var colorBgStatusNegativeMutedOnBgEmphasizedLight: ColorSemanticToken { ColorRawTokens.colorFunctionalScarlet900 } - @objc open var colorBgStatusNegativeMutedOnBgEmphasizedDark: ColorSemanticToken { ColorRawTokens.colorFunctionalScarlet900 } - - @objc open var colorBgStatusNegativeEmphasizedLight: ColorSemanticToken { ColorRawTokens.colorFunctionalScarlet600 } - @objc open var colorBgStatusNegativeEmphasizedDark: ColorSemanticToken { ColorRawTokens.colorFunctionalScarlet600 } - - @objc open var colorBgStatusAccentMutedLight: ColorSemanticToken { fatalError("🤖 Raw token unavailable for colorBgStatusAccentMutedLight!") } - @objc open var colorBgStatusAccentMutedDark: ColorSemanticToken { fatalError("🤖 Raw token unavailable for colorBgStatusAccentMutedDark!") } - - @objc open var colorBgStatusAccentEmphasizedLight: ColorSemanticToken { ColorRawTokens.colorFunctionalSun500 } - @objc open var colorBgStatusAccentEmphasizedDark: ColorSemanticToken { ColorRawTokens.colorFunctionalSun500 } - - @objc open var colorBgStatusAccentMutedOnBgEmphasizedLight: ColorSemanticToken { fatalError("🤖 Raw token unavailable for colorBgStatusAccentMutedLight!") } - @objc open var colorBgStatusAccentMutedOnBgEmphasizedDark: ColorSemanticToken { fatalError("🤖 Raw token unavailable for colorBgStatusAccentMutedOnBgEmphasizedDark!") } - - // MARK: Semantic token - Colors - Content - - @objc open var colorContentDefaultLight: ColorSemanticToken { ColorRawTokens.colorFunctionalBlack } - @objc open var colorContentDefaultDark: ColorSemanticToken { ColorRawTokens.colorFunctionalLightGray160 } - - @objc open var colorContentContentDefaultOnBgEmphasizedLight: ColorSemanticToken { ColorRawTokens.colorFunctionalLightGray160 } - @objc open var colorContentContentDefaultOnBgEmphasizedDark: ColorSemanticToken { ColorRawTokens.colorFunctionalLightGray160 } - - @objc open var colorContentMutedLight: ColorSemanticToken { ColorRawTokens.colorFunctionalDarkGray400 } - @objc open var colorContentMutedDark: ColorSemanticToken { ColorRawTokens.colorFunctionalLightGray400 } - - @objc open var colorContentContentMutedOnBgEmphasizedLight: ColorSemanticToken { ColorRawTokens.colorFunctionalLightGray400 } - @objc open var colorContentContentMutedOnBgEmphasizedDark: ColorSemanticToken { ColorRawTokens.colorFunctionalLightGray400 } - - @objc open var colorContentDisabledLight: ColorSemanticToken { ColorRawTokens.colorFunctionalLightGray400 } - @objc open var colorContentDisabledDark: ColorSemanticToken { ColorRawTokens.colorFunctionalDarkGray400 } - - @objc open var colorContentContentDisabledOnBgEmphasizedLight: ColorSemanticToken { ColorRawTokens.colorFunctionalDarkGray400 } - @objc open var colorContentContentDisabledOnBgEmphasizedDark: ColorSemanticToken { ColorRawTokens.colorFunctionalDarkGray400 } - - @objc open var colorContentBrandPrimaryLight: ColorSemanticToken { fatalError("🤖 Raw token unavailable for colorContentBrandPrimaryLight!") } - @objc open var colorContentBrandPrimaryDark: ColorSemanticToken { fatalError("🤖 Raw token unavailable for colorContentBrandPrimaryDark!") } - - @objc open var colorContentBrandSecondaryLight: ColorSemanticToken { fatalError("🤖 No value defined for colorContentBrandSecondaryLight!") } - @objc open var colorContentBrandSecondaryDark: ColorSemanticToken { fatalError("🤖 No value defined for colorContentBrandSecondaryDark!") } - - @objc open var colorContentBrandTertiaryLight: ColorSemanticToken { fatalError("🤖 No value defined for colorContentBrandTertiaryLight!") } - @objc open var colorContentBrandTertiaryDark: ColorSemanticToken { fatalError("🤖 No value defined for colorContentBrandTertiaryDark!") } - - @objc open var colorContentStatusPositiveLight: ColorSemanticToken { ColorRawTokens.colorFunctionalMalachite500 } - @objc open var colorContentStatusPositiveDark: ColorSemanticToken { ColorRawTokens.colorFunctionalMalachite500 } - - @objc open var colorContentStatusInfoLight: ColorSemanticToken { ColorRawTokens.colorFunctionalDodgerBlue500 } - @objc open var colorContentStatusInfoDark: ColorSemanticToken { ColorRawTokens.colorFunctionalDodgerBlue500 } - - @objc open var colorContentStatusWarningLight: ColorSemanticToken { ColorRawTokens.colorFunctionalSun500 } - @objc open var colorContentStatusWarningDark: ColorSemanticToken { ColorRawTokens.colorFunctionalSun500 } - - @objc open var colorContentStatusNegativeLight: ColorSemanticToken { ColorRawTokens.colorFunctionalScarlet600 } - @objc open var colorContentStatusNegativeDark: ColorSemanticToken { ColorRawTokens.colorFunctionalScarlet600 } - - @objc open var colorContentStatusAccentLight: ColorSemanticToken { fatalError("🤖 No value defined for colorContentStatusAccentLight!") } - @objc open var colorContentStatusAccentDark: ColorSemanticToken { fatalError("🤖 No value defined for colorContentStatusAccentDark!") } - - // MARK: Semantic token - Colors - Content - On Background - - @objc open var colorContentOnBgPrimaryLight: ColorSemanticToken { ColorRawTokens.colorFunctionalWhite } - @objc open var colorContentOnBgPrimaryDark: ColorSemanticToken { ColorRawTokens.colorFunctionalBlack } - - @objc open var colorContentOnBgSecondaryLight: ColorSemanticToken { fatalError("🤖 No value defined for colorContentOnBgSecondaryLight!") } - @objc open var colorContentOnBgSecondaryDark: ColorSemanticToken { fatalError("🤖 No value defined for colorContentOnBgSecondaryDark!") } - - @objc open var colorContentOnBgTertiaryLight: ColorSemanticToken { fatalError("🤖 No value defined for colorContentOnBgTertiaryLight!") } - @objc open var colorContentOnBgTertiaryDark: ColorSemanticToken { fatalError("🤖 No value defined for colorContentOnBgTertiaryDark!") } - - @objc open var colorContentOnBgStatusPositiveMutedLight: ColorSemanticToken { ColorRawTokens.colorFunctionalBlack } - @objc open var colorContentOnBgStatusPositiveMutedDark: ColorSemanticToken { ColorRawTokens.colorFunctionalLightGray160 } - - @objc open var colorContentOnBgStatusPositiveMutedOnBgEmphasizedLight: ColorSemanticToken { ColorRawTokens.colorFunctionalLightGray160 } - @objc open var colorContentOnBgStatusPositiveMutedOnBgEmphasizedDark: ColorSemanticToken { ColorRawTokens.colorFunctionalLightGray160 } - - @objc open var colorContentOnBgStatusPositiveEmphasizedLight: ColorSemanticToken { ColorRawTokens.colorFunctionalBlack } - @objc open var colorContentOnBgStatusPositiveEmphasizedDark: ColorSemanticToken { ColorRawTokens.colorFunctionalBlack } - - @objc open var colorContentOnBgStatusInfoMutedLight: ColorSemanticToken { ColorRawTokens.colorFunctionalBlack } - @objc open var colorContentOnBgStatusInfoMutedDark: ColorSemanticToken { ColorRawTokens.colorFunctionalLightGray160 } - - @objc open var colorContentOnBgStatusInfoMutedOnBgEmphasizedLight: ColorSemanticToken { ColorRawTokens.colorFunctionalLightGray160 } - @objc open var colorContentOnBgStatusInfoMutedOnBgEmphasizedDark: ColorSemanticToken { ColorRawTokens.colorFunctionalLightGray160 } - - @objc open var colorContentOnBgStatusInfoEmphasizedLight: ColorSemanticToken { ColorRawTokens.colorFunctionalBlack } - @objc open var colorContentOnBgStatusInfoEmphasizedDark: ColorSemanticToken { ColorRawTokens.colorFunctionalBlack } - - @objc open var colorContentOnBgStatusWarningMutedLight: ColorSemanticToken { ColorRawTokens.colorFunctionalBlack } - @objc open var colorContentOnBgStatusWarningMutedDark: ColorSemanticToken { ColorRawTokens.colorFunctionalLightGray160 } - - @objc open var colorContentOnBgStatusWarningMutedOnBgEmphasizedLight: ColorSemanticToken { ColorRawTokens.colorFunctionalLightGray160 } - @objc open var colorContentOnBgStatusWarningMutedOnBgEmphasizedDark: ColorSemanticToken { ColorRawTokens.colorFunctionalLightGray160 } - - @objc open var colorContentOnBgStatusWarningEmphasizedLight: ColorSemanticToken { ColorRawTokens.colorFunctionalBlack } - @objc open var colorContentOnBgStatusWarningEmphasizedDark: ColorSemanticToken { ColorRawTokens.colorFunctionalBlack } - - @objc open var colorContentOnBgStatusNegativeMutedLight: ColorSemanticToken { ColorRawTokens.colorFunctionalBlack } - @objc open var colorContentOnBgStatusNegativeMutedDark: ColorSemanticToken { ColorRawTokens.colorFunctionalLightGray160 } - - @objc open var colorContentOnBgStatusNegativeMutedOnBgEmphasizedLight: ColorSemanticToken { ColorRawTokens.colorFunctionalLightGray160 } - @objc open var colorContentOnBgStatusNegativeMutedOnBgEmphasizedDark: ColorSemanticToken { ColorRawTokens.colorFunctionalLightGray160 } - - @objc open var colorContentOnBgStatusNegativeEmphasizedLight: ColorSemanticToken { ColorRawTokens.colorFunctionalWhite } - @objc open var colorContentOnBgStatusNegativeEmphasizedDark: ColorSemanticToken { ColorRawTokens.colorFunctionalWhite } - - @objc open var colorContentOnBgStatusAccentMutedLight: ColorSemanticToken { ColorRawTokens.colorFunctionalBlack } - @objc open var colorContentOnBgStatusAccentMutedDark: ColorSemanticToken { ColorRawTokens.colorFunctionalLightGray160 } - - @objc open var colorContentOnBgStatusAccentMutedOnBgEmphasizedLight: ColorSemanticToken { ColorRawTokens.colorFunctionalLightGray160 } - @objc open var colorContentOnBgStatusAccentMutedOnBgEmphasizedDark: ColorSemanticToken { ColorRawTokens.colorFunctionalLightGray160 } - - @objc open var colorContentOnBgStatusAccentedEmphasizedLight: ColorSemanticToken { ColorRawTokens.colorFunctionalBlack } - @objc open var colorContentOnBgStatusAccentedEmphasizedDark: ColorSemanticToken { ColorRawTokens.colorFunctionalBlack } - - // MARK: Semantic token - Colors - Border - - @objc open var colorBorderDefaultLight: ColorSemanticToken { ColorRawTokens.colorFunctionalLightGray400 } - @objc open var colorBorderDefaultDark: ColorSemanticToken { ColorRawTokens.colorFunctionalDarkGray400 } - - @objc open var colorBorderDefaultOnBgEmphasizedLight: ColorSemanticToken { ColorRawTokens.colorFunctionalDarkGray400 } - @objc open var colorBorderDefaultOnBgEmphasizedDark: ColorSemanticToken { ColorRawTokens.colorFunctionalDarkGray400 } - - @objc open var colorBorderEmphasizedLight: ColorSemanticToken { ColorRawTokens.colorFunctionalBlack } - @objc open var colorBorderEmphasizedDark: ColorSemanticToken { ColorRawTokens.colorFunctionalLightGray160 } - - @objc open var colorBorderEmphasizedOnBgEmphasizedLight: ColorSemanticToken { ColorRawTokens.colorFunctionalLightGray160 } - @objc open var colorBorderEmphasizedOnBgEmphasizedDark: ColorSemanticToken { ColorRawTokens.colorFunctionalLightGray160 } - - @objc open var colorBorderFocusLight: ColorSemanticToken { ColorRawTokens.colorFunctionalWhite } - @objc open var colorBorderFocusDark: ColorSemanticToken { ColorRawTokens.colorFunctionalDarkGray880 } - - // WARNING: #124 - Colors to use are part of Orange Theme so are not reachable at this level, as a workaround add raw values - @objc open var colorBorderBrandPrimaryOnBgEmphasizedLight: ColorSemanticToken { fatalError("🤖 Raw token unavailable for colorBorderBrandPrimaryOnBgEmphasizedLight!") } - @objc open var colorBorderBrandPrimaryOnBgEmphasizedDark: ColorSemanticToken { fatalError("🤖 Raw token unavailable for colorBorderBrandPrimaryOnBgEmphasizedDark!") } - - // WARNING: #124 - Colors to use are part of Orange Theme so are not reachable at this level, as a workaround add raw values - @objc open var colorBorderBrandPrimaryLight: ColorSemanticToken { fatalError("🤖 Raw token unavailable for colorBorderBrandPrimaryLight!") } - @objc open var colorBorderBrandPrimaryDark: ColorSemanticToken { fatalError("🤖 Raw token unavailable for colorBorderBrandPrimaryDark!") } - - @objc open var colorBorderBrandSecondaryLight: ColorSemanticToken { fatalError("🤖 No value defined for colorBorderBrandSecondaryLight!") } - @objc open var colorBorderBrandSecondaryDark: ColorSemanticToken { fatalError("🤖 No value defined for colorBorderBrandSecondaryDark!") } - - @objc open var colorBorderBrandTertiaryLight: ColorSemanticToken { fatalError("🤖 No value defined for colorBorderBrandTertiaryLight!") } - @objc open var colorBorderBrandTertiaryDark: ColorSemanticToken { fatalError("🤖 No value defined for colorBorderBrandTertiaryDark!") } - - @objc open var colorBorderStatusPositiveLight: ColorSemanticToken { fatalError("🤖 No value defined for colorBorderStatusPositiveLight!") } - @objc open var colorBorderStatusPositiveDark: ColorSemanticToken { fatalError("🤖 No value defined for colorBorderStatusPositiveDark!") } - - @objc open var colorBorderStatusInfoLight: ColorSemanticToken { fatalError("🤖 No value defined for colorBorderStatusInfoLight!") } - @objc open var colorBorderStatusInfoDark: ColorSemanticToken { fatalError("🤖 No value defined for colorBorderStatusInfoDark!") } - - @objc open var colorBorderStatusWarningLight: ColorSemanticToken { fatalError("🤖 No value defined for colorBorderStatusWarningLight!") } - @objc open var colorBorderStatusWarningDark: ColorSemanticToken { fatalError("🤖 No value defined for colorBorderStatusWarningDark!") } - - @objc open var colorBorderStatusNegativeLight: ColorSemanticToken { fatalError("🤖 No value defined for colorBorderStatusNegativeLight!") } - @objc open var colorBorderStatusNegativeDark: ColorSemanticToken { fatalError("🤖 No value defined for colorBorderStatusNegativeDark!") } - - @objc open var colorBorderStatusAccentLight: ColorSemanticToken { fatalError("🤖 No value defined for colorBorderStatusAccentLight!") } - @objc open var colorBorderStatusAccentDark: ColorSemanticToken { fatalError("🤖 No value defined for colorBorderStatusAccentDark!") } - - @objc open var colorBorderOnBgBrandPrimaryLight: ColorSemanticToken { ColorRawTokens.colorFunctionalWhite } - @objc open var colorBorderOnBgBrandPrimaryDark: ColorSemanticToken { ColorRawTokens.colorFunctionalBlack } - - @objc open var colorBorderOnBgBrandSecondaryLight: ColorSemanticToken { fatalError("🤖 No value defined for colorBorderOnBgBrandSecondaryLight!") } - @objc open var colorBorderOnBgBrandSecondaryDark: ColorSemanticToken { fatalError("🤖 No value defined for colorBorderOnBgBrandSecondaryDark!") } - - @objc open var colorBorderOnBgBrandTertiaryLight: ColorSemanticToken { fatalError("🤖 No value defined for colorBorderOnBgBrandTertiaryLight!") } - @objc open var colorBorderOnBgBrandTertiaryDark: ColorSemanticToken { fatalError("🤖 No value defined for colorBorderOnBgBrandTertiaryDark!") } - - // MARK: Semantic token - Colors - Action - - // WARNING: #124 - Colors to use are part of Orange Theme so are not reachable at this level, as a workaround add raw values - @objc open var colorActionSelectedLight: ColorSemanticToken { fatalError("🤖 Raw token unavailable for colorActionSelectedLight!") } - @objc open var colorActionSelectedDark: ColorSemanticToken { fatalError("🤖 Raw token unavailable for colorActionSelectedDark!") } - - // WARNING: #124 - Colors to use sont part of Orange Theme so are not reachable at this level, as un workaround add raw values - @objc open var colorActionSelectedOnBgEmphasizedLight: ColorSemanticToken { fatalError("🤖 Raw token unavailable for colorActionSelectedOnBgEmphasizedLight!") } - @objc open var colorActionSelectedOnBgEmphasizedDark: ColorSemanticToken { fatalError("🤖 Raw token unavailable for colorActionSelectedOnBgEmphasizedDark!") } - + @objc open var colorTransparentDefaultLight: ColorSemanticToken { ColorRawTokens.colorTransparentBlack0 } + @objc open var colorTransparentDefaultDark: ColorSemanticToken { ColorRawTokens.colorTransparentBlack0 } @objc open var colorActionDisabledLight: ColorSemanticToken { ColorRawTokens.colorFunctionalLightGray400 } - @objc open var colorActionDisabledDark: ColorSemanticToken { ColorRawTokens.colorFunctionalDarkGray400 } - @objc open var colorActionDisabledOnBgEmphasizedLight: ColorSemanticToken { ColorRawTokens.colorFunctionalDarkGray400 } - @objc open var colorActionDisabledOnBgEmphasizedDark: ColorSemanticToken { ColorRawTokens.colorFunctionalDarkGray400 } - - @objc open var colorActionVisitedLight: ColorSemanticToken { ColorRawTokens.colorDecorativeAmethyst600 } - @objc open var colorActionVisitedDark: ColorSemanticToken { ColorRawTokens.colorDecorativeAmethyst400 } - - @objc open var colorActionVistedOnBgEmphasizedLight: ColorSemanticToken { ColorRawTokens.colorDecorativeAmethyst400 } - @objc open var colorActionVistedOnBgEmphasizedDark: ColorSemanticToken { ColorRawTokens.colorDecorativeAmethyst400 } - + @objc open var colorActionNegativeEnabledLight: ColorSemanticToken { ColorRawTokens.colorFunctionalScarlet600 } + @objc open var colorActionNegativeFocusLight: ColorSemanticToken { ColorRawTokens.colorFunctionalScarlet700 } + @objc open var colorActionNegativeHoverLight: ColorSemanticToken { ColorRawTokens.colorFunctionalScarlet700 } + @objc open var colorActionNegativeLoadingLight: ColorSemanticToken { ColorRawTokens.colorFunctionalScarlet800 } + @objc open var colorActionNegativePressedLight: ColorSemanticToken { ColorRawTokens.colorFunctionalScarlet800 } + @objc open var colorActionNegativeEnabledDark: ColorSemanticToken { ColorRawTokens.colorFunctionalScarlet600 } + @objc open var colorActionNegativeFocusDark: ColorSemanticToken { ColorRawTokens.colorFunctionalScarlet700 } + @objc open var colorActionNegativeHoverDark: ColorSemanticToken { ColorRawTokens.colorFunctionalScarlet700 } + @objc open var colorActionNegativeLoadingDark: ColorSemanticToken { ColorRawTokens.colorFunctionalScarlet800 } + @objc open var colorActionNegativePressedDark: ColorSemanticToken { ColorRawTokens.colorFunctionalScarlet800 } @objc open var colorActionPrimaryEnabledLight: ColorSemanticToken { ColorRawTokens.colorFunctionalBlack } - @objc open var colorActionPrimaryEnabledDark: ColorSemanticToken { ColorRawTokens.colorFunctionalLightGray160 } - @objc open var colorActionPrimaryEnabledOnBgEmphasizedLight: ColorSemanticToken { ColorRawTokens.colorFunctionalLightGray160 } - @objc open var colorActionPrimaryEnabledOnBgEmphasizedDark: ColorSemanticToken { ColorRawTokens.colorFunctionalLightGray160 } - + @objc open var colorActionPrimaryFocusLight: ColorSemanticToken { ColorRawTokens.colorFunctionalDarkGray400 } + @objc open var colorActionPrimaryFocusOnBgEmphasizedLight: ColorSemanticToken { ColorRawTokens.colorFunctionalLightGray560 } @objc open var colorActionPrimaryHoverLight: ColorSemanticToken { ColorRawTokens.colorFunctionalDarkGray400 } - @objc open var colorActionPrimaryHoverDark: ColorSemanticToken { ColorRawTokens.colorFunctionalLightGray400 } - - @objc open var colorActionPrimaryHoverOnBgEmphasizedLight: ColorSemanticToken { ColorRawTokens.colorFunctionalLightGray400 } - @objc open var colorActionPrimaryHoverOnBgEmphasizedDark: ColorSemanticToken { ColorRawTokens.colorFunctionalLightGray400 } - - // WARNING: #124 - Colors to use sont part of Orange Theme so are not reachable at this level, as un workaround add raw values + @objc open var colorActionPrimaryHoverOnBgEmphasizedLight: ColorSemanticToken { ColorRawTokens.colorFunctionalLightGray560 } + @objc open var colorActionPrimaryLoadingLight: ColorSemanticToken { fatalError("🤖 Raw token unavailable for colorActionPrimaryLoadingLight!") } + @objc open var colorActionPrimaryLoadingOnBgEmphasizedLight: ColorSemanticToken { fatalError("🤖 Raw token unavailable for colorActionPrimaryLoadingOnBgEmphasizedLight!")} @objc open var colorActionPrimaryPressedLight: ColorSemanticToken { fatalError("🤖 Raw token unavailable for colorActionPrimaryPressedLight!") } - @objc open var colorActionPrimaryPressedDark: ColorSemanticToken { fatalError("🤖 Raw token unavailable for colorActionPrimaryPressedDark!") } - - // WARNING: #124 - Colors to use sont part of Orange Theme so sont not reachable at this level, as un workaround add raw values @objc open var colorActionPrimaryPressedOnBgEmphasizedLight: ColorSemanticToken { fatalError("🤖 Raw token unavailable for colorActionPrimaryPressedOnBgEmphasizedLight!") } - @objc open var colorActionPrimaryPressedOnBgEmphasizedDark: ColorSemanticToken { fatalError("🤖 Raw token unavailable for colorActionPrimaryPressedOnBgEmphasizedDark!") } - - // WARNING: #124 - Colors to use sont part of Orange Theme so sont not reachable at ce niveau, as un workaround add raw values - @objc open var colorActionPrimaryLoadingLight: ColorSemanticToken { fatalError("🤖 Raw token unavailable for colorActionPrimaryLoadingLight!") } - @objc open var colorActionPrimaryLoadingDark: ColorSemanticToken { fatalError("🤖 Raw token unavailable for colorActionPrimaryLoadingDark!") } - - // WARNING: #124 - Colors to use sont part of Orange Theme so sont not reachable at ce niveau, as un workaround add raw values - @objc open var colorActionPrimaryLoadingOnBgEmphasizedLight: ColorSemanticToken { fatalError("🤖 Raw token unavailable for colorActionPrimaryLoadingOnBgEmphasizedLight!") } + @objc open var colorActionPrimaryEnabledDark: ColorSemanticToken { ColorRawTokens.colorFunctionalLightGray160 } + @objc open var colorActionPrimaryEnabledOnBgEmphasizedDark: ColorSemanticToken { ColorRawTokens.colorFunctionalLightGray160 } + @objc open var colorActionPrimaryFocusDark: ColorSemanticToken { ColorRawTokens.colorFunctionalLightGray560 } + @objc open var colorActionPrimaryFocusOnBgEmphasizedDark: ColorSemanticToken { ColorRawTokens.colorFunctionalLightGray560 } + @objc open var colorActionPrimaryHoverDark: ColorSemanticToken { ColorRawTokens.colorFunctionalLightGray560 } + @objc open var colorActionPrimaryHoverOnBgEmphasizedDark: ColorSemanticToken { ColorRawTokens.colorFunctionalLightGray560 } + @objc open var colorActionPrimaryLoadingDark: ColorSemanticToken { fatalError("🤖 Raw token unavailable for colorActionPrimaryLoadingDark!") } @objc open var colorActionPrimaryLoadingOnBgEmphasizedDark: ColorSemanticToken { fatalError("🤖 Raw token unavailable for colorActionPrimaryLoadingOnBgEmphasizedDark!") } - - @objc open var colorActionPrimaryFocusLight: ColorSemanticToken { ColorRawTokens.colorFunctionalDarkGray400 } - @objc open var colorActionPrimaryFocusDark: ColorSemanticToken { ColorRawTokens.colorFunctionalLightGray400 } - - @objc open var colorActionPrimaryFocusOnBgEmphasizedLight: ColorSemanticToken { ColorRawTokens.colorFunctionalLightGray400 } - @objc open var colorActionPrimaryFocusOnBgEmphasizedDark: ColorSemanticToken { ColorRawTokens.colorFunctionalLightGray400 } - + @objc open var colorActionPrimaryPressedDark: ColorSemanticToken { fatalError("🤖 Raw token unavailable for colorActionPrimaryPressedDark!") } + @objc open var colorActionPrimaryPressedOnBgEmphasizedDark: ColorSemanticToken { fatalError("🤖 Raw token unavailable for colorActionPrimaryPressedOnBgEmphasizedDark!") } @objc open var colorActionSecondaryEnabledLight: ColorSemanticToken { ColorRawTokens.colorFunctionalLightGray80 } - @objc open var colorActionSecondaryEnabledDark: ColorSemanticToken { ColorRawTokens.colorFunctionalLightGray160 } - @objc open var colorActionSecondaryEnabledOnBgEmphasizedLight: ColorSemanticToken { ColorRawTokens.colorFunctionalDarkGray720 } - @objc open var colorActionSecondaryEnabledOnBgEmphasizedDark: ColorSemanticToken { ColorRawTokens.colorFunctionalDarkGray720 } - + @objc open var colorActionSecondaryFocusLight: ColorSemanticToken { ColorRawTokens.colorFunctionalLightGray160 } + @objc open var colorActionSecondaryFocusOnBgEmphasizedLight: ColorSemanticToken { ColorRawTokens.colorFunctionalDarkGray640 } @objc open var colorActionSecondaryHoverLight: ColorSemanticToken { ColorRawTokens.colorFunctionalLightGray160 } - @objc open var colorActionSecondaryHoverDark: ColorSemanticToken { ColorRawTokens.colorFunctionalDarkGray640 } - - @objc open var colorActionSecondaryHoverOnBgEmphasizedLight: ColorSemanticToken { ColorRawTokens.colorFunctionalLightGray160 } - @objc open var colorActionSecondaryHoverOnBgEmphasizedDark: ColorSemanticToken { ColorRawTokens.colorFunctionalLightGray160 } - - @objc open var colorActionSecondaryPressedLight: ColorSemanticToken { ColorRawTokens.colorFunctionalLightGray160 } - @objc open var colorActionSecondaryPressedDark: ColorSemanticToken { ColorRawTokens.colorFunctionalDarkGray640 } - - @objc open var colorActionSecondaryPressedOnBgEmphasizedLight: ColorSemanticToken { ColorRawTokens.colorFunctionalDarkGray640 } - @objc open var colorActionSecondaryPressedOnBgEmphasizedDark: ColorSemanticToken { ColorRawTokens.colorFunctionalDarkGray640 } - + @objc open var colorActionSecondaryHoverOnBgEmphasizedLight: ColorSemanticToken { ColorRawTokens.colorFunctionalDarkGray640 } @objc open var colorActionSecondaryLoadingLight: ColorSemanticToken { ColorRawTokens.colorFunctionalLightGray160 } - @objc open var colorActionSecondaryLoadingDark: ColorSemanticToken { ColorRawTokens.colorFunctionalDarkGray640 } - @objc open var colorActionSecondaryLoadingOnBgEmphasizedLight: ColorSemanticToken { ColorRawTokens.colorFunctionalDarkGray640 } - @objc open var colorActionSecondaryLoadingOnBgEmphasizedDark: ColorSemanticToken { ColorRawTokens.colorFunctionalDarkGray640 } - - @objc open var colorActionSecondaryFocusLight: ColorSemanticToken { ColorRawTokens.colorFunctionalLightGray160 } + @objc open var colorActionSecondaryPressedLight: ColorSemanticToken { ColorRawTokens.colorFunctionalLightGray160 } + @objc open var colorActionSecondaryPressedOnBgEmphasizedLight: ColorSemanticToken { ColorRawTokens.colorFunctionalDarkGray640 } + @objc open var colorActionSecondaryEnabledDark: ColorSemanticToken { ColorRawTokens.colorFunctionalDarkGray720 } + @objc open var colorActionSecondaryEnabledOnBgEmphasizedDark: ColorSemanticToken { ColorRawTokens.colorFunctionalDarkGray720 } @objc open var colorActionSecondaryFocusDark: ColorSemanticToken { ColorRawTokens.colorFunctionalDarkGray640 } - - @objc open var colorActionSecondaryFocusOnBgEmphasizedLight: ColorSemanticToken { ColorRawTokens.colorFunctionalDarkGray640 } @objc open var colorActionSecondaryFocusOnBgEmphasizedDark: ColorSemanticToken { ColorRawTokens.colorFunctionalDarkGray640 } - - @objc open var colorActionNegativeEnabledLight: ColorSemanticToken { ColorRawTokens.colorFunctionalScarlet600 } - @objc open var colorActionNegativeEnabledDark: ColorSemanticToken { ColorRawTokens.colorFunctionalScarlet600 } - - @objc open var colorActionNegativeHoverLight: ColorSemanticToken { ColorRawTokens.colorFunctionalScarlet700 } - @objc open var colorActionNegativeHoverDark: ColorSemanticToken { ColorRawTokens.colorFunctionalScarlet700 } - - @objc open var colorActionNegativePressedLight: ColorSemanticToken { ColorRawTokens.colorFunctionalScarlet800 } - @objc open var colorActionNegativePressedDark: ColorSemanticToken { ColorRawTokens.colorFunctionalScarlet800 } - - @objc open var colorActionNegativeLoadingLight: ColorSemanticToken { ColorRawTokens.colorFunctionalScarlet800 } - @objc open var colorActionNegativeLoadingDark: ColorSemanticToken { ColorRawTokens.colorFunctionalScarlet800 } - - @objc open var colorActionNegativeFocusLight: ColorSemanticToken { ColorRawTokens.colorFunctionalScarlet700 } - @objc open var colorActionNegativeFocusDark: ColorSemanticToken { ColorRawTokens.colorFunctionalScarlet700 } - - @objc open var colorActionOnBgActionDisabledLight: ColorSemanticToken { ColorRawTokens.colorFunctionalWhite } - @objc open var colorActionOnBgActionDisabledDark: ColorSemanticToken { ColorRawTokens.colorFunctionalBlack } - - @objc open var colorActionOnBgActionDisabledOnBgEmphasizedLight: ColorSemanticToken { ColorRawTokens.colorFunctionalBlack } - @objc open var colorActionOnBgActionDisabledOnBgEmphasizedDark: ColorSemanticToken { ColorRawTokens.colorFunctionalBlack } - - @objc open var colorActionOnBgActionNegativeLight: ColorSemanticToken { ColorRawTokens.colorFunctionalWhite } - @objc open var colorActionOnBgActionNegativeDark: ColorSemanticToken { ColorRawTokens.colorFunctionalWhite } - - @objc open var colorActionOnBgActionPrimaryEnabledLight: ColorSemanticToken { ColorRawTokens.colorFunctionalWhite } - @objc open var colorActionOnBgActionPrimaryEnabledDark: ColorSemanticToken { ColorRawTokens.colorFunctionalBlack } - - @objc open var colorActionOnBgActionPrimaryEnabledOnBgEmphasizedLight: ColorSemanticToken { ColorRawTokens.colorFunctionalBlack } - @objc open var colorActionOnBgActionPrimaryEnabledOnBgEmphasizedDark: ColorSemanticToken { ColorRawTokens.colorFunctionalBlack } - - @objc open var colorActionOnBgActionPrimaryHoverLight: ColorSemanticToken { ColorRawTokens.colorFunctionalWhite } - @objc open var colorActionOnBgActionPrimaryHoverDark: ColorSemanticToken { ColorRawTokens.colorFunctionalBlack } - - @objc open var colorActionOnBgActionPrimaryHoverOnBgEmphasizedLight: ColorSemanticToken { ColorRawTokens.colorFunctionalBlack } - @objc open var colorActionOnBgActionPrimaryHoverOnBgEmphasizedDark: ColorSemanticToken { ColorRawTokens.colorFunctionalBlack } - - @objc open var colorActionOnBgActionPrimaryPressedLight: ColorSemanticToken { ColorRawTokens.colorFunctionalWhite } - @objc open var colorActionOnBgActionPrimaryPressedDark: ColorSemanticToken { ColorRawTokens.colorFunctionalBlack } - - @objc open var colorActionOnBgActionPrimaryPressedOnBgEmphasizedLight: ColorSemanticToken { ColorRawTokens.colorFunctionalBlack } - @objc open var colorActionOnBgActionPrimaryPressedOnBgEmphasizedDark: ColorSemanticToken { ColorRawTokens.colorFunctionalBlack } - - @objc open var colorActionOnBgActionPrimaryLoadingLight: ColorSemanticToken { ColorRawTokens.colorFunctionalWhite } - @objc open var colorActionOnBgActionPrimaryLoadingDark: ColorSemanticToken { ColorRawTokens.colorFunctionalBlack } - - @objc open var colorActionOnBgActionPrimaryLoadingOnBgEmphasizedLight: ColorSemanticToken { ColorRawTokens.colorFunctionalBlack } - @objc open var colorActionOnBgActionPrimaryLoadingOnBgEmphasizedDark: ColorSemanticToken { ColorRawTokens.colorFunctionalBlack } - - @objc open var colorActionOnBgActionPrimaryFocusLight: ColorSemanticToken { ColorRawTokens.colorFunctionalWhite } - @objc open var colorActionOnBgActionPrimaryFocusDark: ColorSemanticToken { ColorRawTokens.colorFunctionalBlack } - - @objc open var colorActionOnBgActionPrimaryFocusOnBgEmphasizedLight: ColorSemanticToken { ColorRawTokens.colorFunctionalBlack } - @objc open var colorActionOnBgActionPrimaryFocusOnBgEmphasizedDark: ColorSemanticToken { ColorRawTokens.colorFunctionalBlack } - - @objc open var colorActionOnBgActionSecondaryEnabledLight: ColorSemanticToken { fatalError("🤖 No value defined for colorActionOnBgActionSecondaryEnabledLight!") } - @objc open var colorActionOnBgActionSecondaryEnabledDark: ColorSemanticToken { fatalError("🤖 No value defined for colorActionOnBgActionSecondaryEnabledDark!") } - - @objc open var colorActionOnBgActionSecondaryEnabledOnBgEmphasizedLight: ColorSemanticToken { fatalError("🤖 No value defined for colorActionOnBgActionSecondaryEnabledOnBgEmphasizedLight!") } - @objc open var colorActionOnBgActionSecondaryEnabledOnBgEmphasizedDark: ColorSemanticToken { fatalError("🤖 No value defined for colorActionOnBgActionSecondaryEnabledOnBgEmphasizedDark!") } - - @objc open var colorActionOnBgActionSecondaryHoverLight: ColorSemanticToken { fatalError("🤖 No value defined for colorActionOnBgActionSecondaryHoverLight!") } - @objc open var colorActionOnBgActionSecondaryHoverDark: ColorSemanticToken { fatalError("🤖 No value defined for colorActionOnBgActionSecondaryHoverDark!") } - - @objc open var colorActionOnBgActionSecondaryHoverOnBgEmphasizedLight: ColorSemanticToken { fatalError("🤖 No value defined for colorActionOnBgActionSecondaryHoverOnBgEmphasizedLight!") } - @objc open var colorActionOnBgActionSecondaryHoverOnBgEmphasizedDark: ColorSemanticToken { fatalError("🤖 No value defined for colorActionOnBgActionSecondaryHoverOnBgEmphasizedDark!") } - - @objc open var colorActionOnBgActionSecondaryPressedLight: ColorSemanticToken { fatalError("🤖 No value defined for colorActionOnBgActionSecondaryPressedLight!") } - @objc open var colorActionOnBgActionSecondaryPressedDark: ColorSemanticToken { fatalError("🤖 No value defined for colorActionOnBgActionSecondaryPressedDark!") } - - @objc open var colorActionOnBgActionSecondaryPressedOnBgEmphasizedLight: ColorSemanticToken { fatalError("🤖 No value defined for colorActionOnBgActionSecondaryPressedOnBgEmphasizedLight!") } - @objc open var colorActionOnBgActionSecondaryPressedOnBgEmphasizedDark: ColorSemanticToken { fatalError("🤖 No value defined for colorActionOnBgActionSecondaryPressedOnBgEmphasizedDark!") } - - @objc open var colorActionOnBgActionSecondaryLoadingLight: ColorSemanticToken { fatalError("🤖 No value defined for colorActionOnBgActionSecondaryLoadingLight!") } - @objc open var colorActionOnBgActionSecondaryLoadingDark: ColorSemanticToken { fatalError("🤖 No value defined for colorActionOnBgActionSecondaryLoadingDark!") } - - @objc open var colorActionOnBgActionSecondaryLoadingOnBgEmphasizedLight: ColorSemanticToken { fatalError("🤖 No value defined for colorActionOnBgActionSecondaryLoadingOnBgEmphasizedLight!") } - @objc open var colorActionOnBgActionSecondaryLoadingOnBgEmphasizedDark: ColorSemanticToken { fatalError("🤖 No value defined for colorActionOnBgActionSecondaryLoadingOnBgEmphasizedDark!") } - - @objc open var colorActionOnBgActionSecondaryFocusLight: ColorSemanticToken { fatalError("🤖 No value defined for colorActionOnBgActionSecondaryFocusLight!") } - @objc open var colorActionOnBgActionSecondaryFocusDark: ColorSemanticToken { fatalError("🤖 No value defined for colorActionOnBgActionSecondaryFocusDark!") } - - @objc open var colorActionOnBgActionSecondaryFocusOnBgEmphasizedLight: ColorSemanticToken { fatalError("🤖 No value defined for colorActionOnBgActionSecondaryFocusOnBgEmphasizedLight!") } - @objc open var colorActionOnBgActionSecondaryFocusOnBgEmphasizedDark: ColorSemanticToken { fatalError("🤖 No value defined for colorActionOnBgActionSecondaryFocusOnBgEmphasizedDark!") } - - // MARK: Semantic token - Colors - Always - + @objc open var colorActionSecondaryHoverDark: ColorSemanticToken { ColorRawTokens.colorFunctionalDarkGray640 } + @objc open var colorActionSecondaryHoverOnBgEmphasizedDark: ColorSemanticToken { ColorRawTokens.colorFunctionalDarkGray640 } + @objc open var colorActionSecondaryLoadingDark: ColorSemanticToken { ColorRawTokens.colorFunctionalDarkGray640 } + @objc open var colorActionSecondaryLoadingOnBgEmphasizedDark: ColorSemanticToken { ColorRawTokens.colorFunctionalDarkGray640 } + @objc open var colorActionSecondaryPressedDark: ColorSemanticToken { ColorRawTokens.colorFunctionalDarkGray640 } + @objc open var colorActionSecondaryPressedOnBgEmphasizedDark: ColorSemanticToken { ColorRawTokens.colorFunctionalDarkGray640 } + @objc open var colorActionSelectedLight: ColorSemanticToken { fatalError("🤖 Raw token unavailable for colorActionSelectedLight!") } + @objc open var colorActionSelectedOnBgEmphasizedLight: ColorSemanticToken { fatalError("🤖 Raw token unavailable for colorActionSelectedOnBgEmphasizedLight!") } + @objc open var colorActionVisitedLight: ColorSemanticToken { ColorRawTokens.colorDecorativeAmethyst600 } + @objc open var colorActionVisitedOnBgEmphasizedLight: ColorSemanticToken { ColorRawTokens.colorDecorativeAmethyst400 } + @objc open var colorActionDisabledDark: ColorSemanticToken { ColorRawTokens.colorFunctionalDarkGray400 } + @objc open var colorActionDisabledOnBgEmphasizedDark: ColorSemanticToken { ColorRawTokens.colorFunctionalDarkGray400 } + @objc open var colorActionSelectedDark: ColorSemanticToken { fatalError("🤖 Raw token unavailable for colorActionSelectedDark!") } + @objc open var colorActionSelectedOnBgEmphasizedDark: ColorSemanticToken { fatalError("🤖 Raw token unavailable for colorActionSelectedOnBgEmphasizedDark!") } + @objc open var colorActionVisitedDark: ColorSemanticToken { ColorRawTokens.colorDecorativeAmethyst400 } + @objc open var colorActionVisitedOnBgEmphasizedDark: ColorSemanticToken { ColorRawTokens.colorDecorativeAmethyst400 } + @objc open var colorAlwaysAccentLight: ColorSemanticToken { ColorRawTokens.colorFunctionalSun500 } @objc open var colorAlwaysBlackLight: ColorSemanticToken { ColorRawTokens.colorFunctionalBlack } - @objc open var colorAlwaysBlackDark: ColorSemanticToken { ColorRawTokens.colorFunctionalBlack } - - @objc open var colorAlwaysWhiteLight: ColorSemanticToken { ColorRawTokens.colorFunctionalWhite } - @objc open var colorAlwaysWhiteDark: ColorSemanticToken { ColorRawTokens.colorFunctionalWhite } - - @objc open var colorAlwaysWarningLight: ColorSemanticToken { ColorRawTokens.colorFunctionalSun500 } - @objc open var colorAlwaysWarningDark: ColorSemanticToken { ColorRawTokens.colorFunctionalSun500 } - + @objc open var colorAlwaysInfoLight: ColorSemanticToken { ColorRawTokens.colorFunctionalDodgerBlue500 } @objc open var colorAlwaysNegativeLight: ColorSemanticToken { ColorRawTokens.colorFunctionalScarlet600 } - @objc open var colorAlwaysNegativeDark: ColorSemanticToken { ColorRawTokens.colorFunctionalScarlet600 } - + @objc open var colorAlwaysOnAccentLight: ColorSemanticToken { ColorRawTokens.colorFunctionalBlack } + @objc open var colorAlwaysOnBlackLight: ColorSemanticToken { ColorRawTokens.colorFunctionalWhite } + @objc open var colorAlwaysOnInfoLight: ColorSemanticToken { ColorRawTokens.colorFunctionalBlack } + @objc open var colorAlwaysOnNegativeLight: ColorSemanticToken { ColorRawTokens.colorFunctionalWhite } + @objc open var colorAlwaysOnPositiveLight: ColorSemanticToken { ColorRawTokens.colorFunctionalBlack } + @objc open var colorAlwaysOnWarningLight: ColorSemanticToken { ColorRawTokens.colorFunctionalBlack } + @objc open var colorAlwaysOnWhiteLight: ColorSemanticToken { ColorRawTokens.colorFunctionalBlack } @objc open var colorAlwaysPositiveLight: ColorSemanticToken { ColorRawTokens.colorFunctionalMalachite500 } - @objc open var colorAlwaysPositiveDark: ColorSemanticToken { ColorRawTokens.colorFunctionalMalachite500 } - - @objc open var colorAlwaysInfoLight: ColorSemanticToken { ColorRawTokens.colorFunctionalDodgerBlue500 } - @objc open var colorAlwaysInfoDark: ColorSemanticToken { ColorRawTokens.colorFunctionalDodgerBlue500 } - - @objc open var colorAlwaysAccentLight: ColorSemanticToken { ColorRawTokens.colorFunctionalSun500 } + @objc open var colorAlwaysWarningLight: ColorSemanticToken { ColorRawTokens.colorFunctionalSun500 } + @objc open var colorAlwaysWhiteLight: ColorSemanticToken { ColorRawTokens.colorFunctionalWhite } @objc open var colorAlwaysAccentDark: ColorSemanticToken { ColorRawTokens.colorFunctionalSun500 } - - @objc open var colorAlwaysOnBgBlackLight: ColorSemanticToken { ColorRawTokens.colorFunctionalWhite } - @objc open var colorAlwaysOnBgBlackDark: ColorSemanticToken { ColorRawTokens.colorFunctionalWhite } - - @objc open var colorAlwaysOnBgWhiteLight: ColorSemanticToken { ColorRawTokens.colorFunctionalBlack } - @objc open var colorAlwaysOnBgWhiteDark: ColorSemanticToken { ColorRawTokens.colorFunctionalBlack } - - @objc open var colorAlwaysOnBgWarningLight: ColorSemanticToken { ColorRawTokens.colorFunctionalBlack } - @objc open var colorAlwaysOnBgWarningDark: ColorSemanticToken { ColorRawTokens.colorFunctionalBlack } - - @objc open var colorAlwaysOnBgNegativeLight: ColorSemanticToken { ColorRawTokens.colorFunctionalWhite } - @objc open var colorAlwaysOnBgNegativeDark: ColorSemanticToken { ColorRawTokens.colorFunctionalWhite } - - @objc open var colorAlwaysOnBgPositiveLight: ColorSemanticToken { ColorRawTokens.colorFunctionalBlack } - @objc open var colorAlwaysOnBgPositiveDark: ColorSemanticToken { ColorRawTokens.colorFunctionalBlack } - - @objc open var colorAlwaysOnBgInfoLight: ColorSemanticToken { ColorRawTokens.colorFunctionalBlack } - @objc open var colorAlwaysOnBgInfoDark: ColorSemanticToken { ColorRawTokens.colorFunctionalBlack } - - @objc open var colorAlwaysOnBgAccentLight: ColorSemanticToken { ColorRawTokens.colorFunctionalBlack } - @objc open var colorAlwaysOnBgAccentDark: ColorSemanticToken { ColorRawTokens.colorFunctionalBlack } - - // MARK: Semantic token - Colors - Transparent - - @objc open var colorTransparentDefaultLight: ColorSemanticToken { ColorRawTokens.colorTransparentBlack0 } - @objc open var colorTransparentDefaultDark: ColorSemanticToken { ColorRawTokens.colorTransparentBlack0 } - - // MARK: Semantic token - Colors - Elevation - - @objc open var colorElevationRaisedLight: ColorSemanticToken { ColorRawTokens.colorFunctionalWhite } - @objc open var colorElevationRaisedDark: ColorSemanticToken { ColorRawTokens.colorFunctionalDarkGray800 } - - @objc open var colorElevationRaisedOnBgSecondaryLight: ColorSemanticToken { ColorRawTokens.colorFunctionalWhite } - @objc open var colorElevationRaisedOnBgSecondaryDark: ColorSemanticToken { ColorRawTokens.colorFunctionalDarkGray720 } - - @objc open var colorElevationRaisedOnBgEmphasizedLight: ColorSemanticToken { ColorRawTokens.colorFunctionalDarkGray800 } - @objc open var colorElevationRaisedOnBgEmphasizedDark: ColorSemanticToken { ColorRawTokens.colorFunctionalDarkGray560 } - - @objc open var colorElevationDragLight: ColorSemanticToken { ColorRawTokens.colorFunctionalLightGray80 } - @objc open var colorElevationDragDark: ColorSemanticToken { ColorRawTokens.colorFunctionalDarkGray720 } - - @objc open var colorElevationDragOnBgSecondaryLight: ColorSemanticToken { ColorRawTokens.colorFunctionalLightGray80 } - @objc open var colorElevationDragOnBgSecondaryDark: ColorSemanticToken { ColorRawTokens.colorFunctionalDarkGray640 } - - @objc open var colorElevationDragOnBgEmphasizedLight: ColorSemanticToken { ColorRawTokens.colorFunctionalDarkGray720 } - @objc open var colorElevationDragOnBgEmphasizedDark: ColorSemanticToken { ColorRawTokens.colorFunctionalDarkGray480 } - - @objc open var colorElevationOverlayDefaultLight: ColorSemanticToken { ColorRawTokens.colorFunctionalWhite } - @objc open var colorElevationOverlayDefaultDark: ColorSemanticToken { ColorRawTokens.colorFunctionalDarkGray720 } - - @objc open var colorElevationOverlayDefaultOnBgSecondaryLight: ColorSemanticToken { ColorRawTokens.colorFunctionalWhite } - @objc open var colorElevationOverlayDefaultOnBgSecondaryDark: ColorSemanticToken { ColorRawTokens.colorFunctionalDarkGray640 } - - @objc open var colorElevationOverlayDefaultOnBgEmphasizedLight: ColorSemanticToken { ColorRawTokens.colorFunctionalDarkGray720 } - @objc open var colorElevationOverlayDefaultOnBgEmphasizedDark: ColorSemanticToken { ColorRawTokens.colorFunctionalDarkGray480 } - - @objc open var colorElevationOverlayEmphasizedLight: ColorSemanticToken { ColorRawTokens.colorFunctionalDarkGray640 } - @objc open var colorElevationOverlayEmphasizedDark: ColorSemanticToken { ColorRawTokens.colorFunctionalDarkGray480 } - - @objc open var colorElevationOverlayEmphasizedOnBgSecondaryLight: ColorSemanticToken { ColorRawTokens.colorFunctionalDarkGray640 } - @objc open var colorElevationOverlayEmphasizedOnBgSecondaryDark: ColorSemanticToken { ColorRawTokens.colorFunctionalDarkGray480 } - - @objc open var colorElevationOverlayEmphasizedOnBgEmphasizedLight: ColorSemanticToken { ColorRawTokens.colorFunctionalLightGray80 } - @objc open var colorElevationOverlayEmphasizedOnBgEmphasizedDark: ColorSemanticToken { ColorRawTokens.colorFunctionalDarkGray480 } - - @objc open var colorElevationModalLight: ColorSemanticToken { ColorRawTokens.colorFunctionalWhite } - @objc open var colorElevationModalDark: ColorSemanticToken { ColorRawTokens.colorFunctionalDarkGray640 } - - // MARK: Semantic token - Colors - Decorative - - // WARNING: #124 - Colors to use sont part of Orange Theme so sont not reachable at this level, as un workaround add raw values - @objc open var colorDecorativePrimaryLight: ColorSemanticToken { fatalError("🤖 Raw token unavailable for colorDecorativePrimaryLight!") } - @objc open var colorDecorativePrimaryDark: ColorSemanticToken { fatalError("🤖 Raw token unavailable for colorDecorativePrimaryDark!") } - - @objc open var colorDecorativeSecondaryLight: ColorSemanticToken { ColorRawTokens.colorFunctionalBlack } - @objc open var colorDecorativeSecondaryDark: ColorSemanticToken { ColorRawTokens.colorFunctionalLightGray160 } - - @objc open var colorDecorativeTertiaryLight: ColorSemanticToken { ColorRawTokens.colorFunctionalBlack } - @objc open var colorDecorativeTertiaryDark: ColorSemanticToken { ColorRawTokens.colorFunctionalDarkGray880 } - - @objc open var colorDecorativeNeutralMutedLight: ColorSemanticToken { ColorRawTokens.colorFunctionalLightGray160 } - @objc open var colorDecorativeNeutralMutedDark: ColorSemanticToken { ColorRawTokens.colorFunctionalDarkGray560 } - - @objc open var colorDecorativeNeutralDefaultLight: ColorSemanticToken { ColorRawTokens.colorFunctionalLightGray400 } - @objc open var colorDecorativeNeutralDefaultDark: ColorSemanticToken { ColorRawTokens.colorFunctionalLightGray560 } - - @objc open var colorDecorativeNeutralEmphasizedLight: ColorSemanticToken { ColorRawTokens.colorFunctionalDarkGray640 } - @objc open var colorDecorativeNeutralEmphasizedDark: ColorSemanticToken { ColorRawTokens.colorFunctionalLightGray160 } - - @objc open var colorDecorativeAccent1MutedLight: ColorSemanticToken { ColorRawTokens.colorDecorativeEmerald200 } - @objc open var colorDecorativeAccent1MutedDark: ColorSemanticToken { ColorRawTokens.colorDecorativeEmerald200 } - - @objc open var colorDecorativeAccent1DefaultLight: ColorSemanticToken { ColorRawTokens.colorDecorativeEmerald500 } - @objc open var colorDecorativeAccent1DefaultDark: ColorSemanticToken { ColorRawTokens.colorDecorativeEmerald500 } - - @objc open var colorDecorativeAccent1EmphasizedLight: ColorSemanticToken { ColorRawTokens.colorDecorativeEmerald700 } - @objc open var colorDecorativeAccent1EmphasizedDark: ColorSemanticToken { ColorRawTokens.colorDecorativeEmerald700 } - - @objc open var colorDecorativeAccent2MutedLight: ColorSemanticToken { ColorRawTokens.colorDecorativeSky200 } - @objc open var colorDecorativeAccent2MutedDark: ColorSemanticToken { ColorRawTokens.colorDecorativeSky200 } - - @objc open var colorDecorativeAccent2DefaultLight: ColorSemanticToken { ColorRawTokens.colorDecorativeSky400 } - @objc open var colorDecorativeAccent2DefaultDark: ColorSemanticToken { ColorRawTokens.colorDecorativeSky400 } - - @objc open var colorDecorativeAccent2EmphasizedLight: ColorSemanticToken { ColorRawTokens.colorDecorativeSky700 } - @objc open var colorDecorativeAccent2EmphasizedDark: ColorSemanticToken { ColorRawTokens.colorDecorativeSky700 } - - @objc open var colorDecorativeAccent3MutedLight: ColorSemanticToken { ColorRawTokens.colorFunctionalSun200 } - @objc open var colorDecorativeAccent3MutedDark: ColorSemanticToken { ColorRawTokens.colorFunctionalSun200 } - - @objc open var colorDecorativeAccent3DefaultLight: ColorSemanticToken { ColorRawTokens.colorFunctionalSun500 } - @objc open var colorDecorativeAccent3DefaultDark: ColorSemanticToken { ColorRawTokens.colorFunctionalSun500 } - - @objc open var colorDecorativeAccent3EmphasizedLight: ColorSemanticToken { ColorRawTokens.colorDecorativeAmber500 } - @objc open var colorDecorativeAccent3EmphasizedDark: ColorSemanticToken { ColorRawTokens.colorDecorativeAmber500 } - - @objc open var colorDecorativeAccent4MutedLight: ColorSemanticToken { ColorRawTokens.colorDecorativeAmethyst200 } - @objc open var colorDecorativeAccent4MutedDark: ColorSemanticToken { ColorRawTokens.colorDecorativeAmethyst200 } - - @objc open var colorDecorativeAccent4DefaultLight: ColorSemanticToken { ColorRawTokens.colorDecorativeAmethyst400 } - @objc open var colorDecorativeAccent4DefaultDark: ColorSemanticToken { ColorRawTokens.colorDecorativeAmethyst400 } - - @objc open var colorDecorativeAccent4EmphasizedLight: ColorSemanticToken { ColorRawTokens.colorDecorativeAmethyst800 } - @objc open var colorDecorativeAccent4EmphasizedDark: ColorSemanticToken { ColorRawTokens.colorDecorativeAmethyst800 } - - @objc open var colorDecorativeAccent5MutedLight: ColorSemanticToken { ColorRawTokens.colorDecorativeShockingPink100 } - @objc open var colorDecorativeAccent5MutedDark: ColorSemanticToken { ColorRawTokens.colorDecorativeShockingPink100 } - - @objc open var colorDecorativeAccent5DefaultLight: ColorSemanticToken { ColorRawTokens.colorDecorativeShockingPink200 } - @objc open var colorDecorativeAccent5DefaultDark: ColorSemanticToken { ColorRawTokens.colorDecorativeShockingPink200 } - - @objc open var colorDecorativeAccent5EmphasizedLight: ColorSemanticToken { ColorRawTokens.colorDecorativeShockingPink300 } - @objc open var colorDecorativeAccent5EmphasizedDark: ColorSemanticToken { ColorRawTokens.colorDecorativeShockingPink300 } - - @objc open var colorDecorativeSkinTint100Light: ColorSemanticToken { ColorRawTokens.colorDecorativeDeepPeach100 } - @objc open var colorDecorativeSkinTint100Dark: ColorSemanticToken { ColorRawTokens.colorDecorativeDeepPeach100 } - - @objc open var colorDecorativeSkinTint200Light: ColorSemanticToken { ColorRawTokens.colorDecorativeDeepPeach200 } - @objc open var colorDecorativeSkinTint200Dark: ColorSemanticToken { ColorRawTokens.colorDecorativeDeepPeach200 } - - @objc open var colorDecorativeSkinTint300Light: ColorSemanticToken { ColorRawTokens.colorDecorativeDeepPeach300 } - @objc open var colorDecorativeSkinTint300Dark: ColorSemanticToken { ColorRawTokens.colorDecorativeDeepPeach300 } - - @objc open var colorDecorativeSkinTint400Light: ColorSemanticToken { ColorRawTokens.colorDecorativeDeepPeach400 } - @objc open var colorDecorativeSkinTint400Dark: ColorSemanticToken { ColorRawTokens.colorDecorativeDeepPeach400 } - - @objc open var colorDecorativeSkinTint500Light: ColorSemanticToken { ColorRawTokens.colorDecorativeDeepPeach500 } - @objc open var colorDecorativeSkinTint500Dark: ColorSemanticToken { ColorRawTokens.colorDecorativeDeepPeach500 } - - @objc open var colorDecorativeSkinTint600Light: ColorSemanticToken { ColorRawTokens.colorDecorativeDeepPeach600 } - @objc open var colorDecorativeSkinTint600Dark: ColorSemanticToken { ColorRawTokens.colorDecorativeDeepPeach600 } - - @objc open var colorDecorativeSkinTint700Light: ColorSemanticToken { ColorRawTokens.colorDecorativeDeepPeach700 } - @objc open var colorDecorativeSkinTint700Dark: ColorSemanticToken { ColorRawTokens.colorDecorativeDeepPeach700 } - - @objc open var colorDecorativeSkinTint800Light: ColorSemanticToken { ColorRawTokens.colorDecorativeDeepPeach800 } - @objc open var colorDecorativeSkinTint800Dark: ColorSemanticToken { ColorRawTokens.colorDecorativeDeepPeach800 } - - @objc open var colorDecorativeSkinTint900Light: ColorSemanticToken { ColorRawTokens.colorDecorativeDeepPeach900 } - @objc open var colorDecorativeSkinTint900Dark: ColorSemanticToken { ColorRawTokens.colorDecorativeDeepPeach900 } - - // MARK: Semantic token - Colors - Chart - - @objc open var colorChartCategoricalNeutralLight: ColorSemanticToken { ColorRawTokens.colorFunctionalLightGray160 } - @objc open var colorChartCategoricalNeutralDark: ColorSemanticToken { ColorRawTokens.colorFunctionalDarkGray720 } - - // WARNING: #124 - Colors to use sont part of Orange Theme so sont not reachable at this level, as un workaround add raw values + @objc open var colorAlwaysBlackDark: ColorSemanticToken { ColorRawTokens.colorFunctionalBlack } + @objc open var colorAlwaysInfoDark: ColorSemanticToken { ColorRawTokens.colorFunctionalDodgerBlue500 } + @objc open var colorAlwaysNegativeDark: ColorSemanticToken { ColorRawTokens.colorFunctionalScarlet600 } + @objc open var colorAlwaysOnAccentDark: ColorSemanticToken { ColorRawTokens.colorFunctionalDarkGray880 } + @objc open var colorAlwaysOnBlackDark: ColorSemanticToken { ColorRawTokens.colorFunctionalLightGray160 } + @objc open var colorAlwaysOnInfoDark: ColorSemanticToken { ColorRawTokens.colorFunctionalDarkGray880 } + @objc open var colorAlwaysOnNegativeDark: ColorSemanticToken { ColorRawTokens.colorFunctionalLightGray160 } + @objc open var colorAlwaysOnPositiveDark: ColorSemanticToken { ColorRawTokens.colorFunctionalDarkGray880 } + @objc open var colorAlwaysOnWarningDark: ColorSemanticToken { ColorRawTokens.colorFunctionalDarkGray880 } + @objc open var colorAlwaysOnWhiteDark: ColorSemanticToken { ColorRawTokens.colorFunctionalDarkGray880 } + @objc open var colorAlwaysPositiveDark: ColorSemanticToken { ColorRawTokens.colorFunctionalMalachite500 } + @objc open var colorAlwaysWarningDark: ColorSemanticToken { ColorRawTokens.colorFunctionalSun500 } + @objc open var colorAlwaysWhiteDark: ColorSemanticToken { ColorRawTokens.colorFunctionalWhite } + @objc open var colorBgBrandPrimaryLight: ColorSemanticToken { fatalError("🤖 Raw token unavailable for colorBgBrandPrimaryLight!") } + @objc open var colorBgEmphasizedLight: ColorSemanticToken { ColorRawTokens.colorFunctionalDarkGray880 } + @objc open var colorBgPrimaryLight: ColorSemanticToken { ColorRawTokens.colorFunctionalWhite } + @objc open var colorBgSecondaryLight: ColorSemanticToken { ColorRawTokens.colorFunctionalLightGray80 } + @objc open var colorBgStatusAccentEmphasizedLight: ColorSemanticToken { ColorRawTokens.colorFunctionalSun500 } + @objc open var colorBgStatusAccentMutedLight: ColorSemanticToken { fatalError("🤖 Raw token unavailable for colorBgStatusAccentMutedLight!") } + @objc open var colorBgStatusAccentMutedOnBgEmphasizedLight: ColorSemanticToken { fatalError("🤖 Raw token unavailable for colorBgStatusAccentMutedOnBgEmphasizedLight!") } + @objc open var colorBgStatusInfoEmphasizedLight: ColorSemanticToken { ColorRawTokens.colorFunctionalDodgerBlue500 } + @objc open var colorBgStatusInfoMutedLight: ColorSemanticToken { ColorRawTokens.colorFunctionalDodgerBlue100 } + @objc open var colorBgStatusInfoMutedOnBgEmphasizedLight: ColorSemanticToken { ColorRawTokens.colorFunctionalDodgerBlue900 } + @objc open var colorBgStatusNegativeEmphasizedLight: ColorSemanticToken { ColorRawTokens.colorFunctionalScarlet600 } + @objc open var colorBgStatusNegativeMutedLight: ColorSemanticToken { ColorRawTokens.colorFunctionalScarlet100 } + @objc open var colorBgStatusNegativeMutedOnBgEmphasizedLight: ColorSemanticToken { ColorRawTokens.colorFunctionalScarlet900 } + @objc open var colorBgStatusNeutralLight: ColorSemanticToken { ColorRawTokens.colorFunctionalLightGray80 } + @objc open var colorBgStatusNeutralOnBgEmphasizedLight: ColorSemanticToken { ColorRawTokens.colorFunctionalDarkGray720 } + @objc open var colorBgStatusPositiveEmphasizedLight: ColorSemanticToken { ColorRawTokens.colorFunctionalMalachite500 } + @objc open var colorBgStatusPositiveMutedLight: ColorSemanticToken { ColorRawTokens.colorFunctionalMalachite100 } + @objc open var colorBgStatusPositiveMutedOnBgEmphasizedLight: ColorSemanticToken { ColorRawTokens.colorFunctionalMalachite900 } + @objc open var colorBgStatusWarningEmphasizedLight: ColorSemanticToken { ColorRawTokens.colorFunctionalSun500 } + @objc open var colorBgStatusWarningMutedLight: ColorSemanticToken { ColorRawTokens.colorFunctionalSun100 } + @objc open var colorBgStatusWarningMutedOnBgEmphasizedLight: ColorSemanticToken { ColorRawTokens.colorFunctionalSun900 } + @objc open var colorBgStatusAccentEmphasizedDark: ColorSemanticToken { ColorRawTokens.colorFunctionalSun500 } + @objc open var colorBgStatusAccentMutedDark: ColorSemanticToken { fatalError("🤖 Raw token unavailable for colorBgStatusAccentMutedDark!") } + @objc open var colorBgStatusAccentMutedOnBgEmphasizedDark: ColorSemanticToken { fatalError("🤖 Raw token unavailable for colorBgStatusAccentMutedOnBgEmphasizedDark!") } + @objc open var colorBgStatusInfoEmphasizedDark: ColorSemanticToken { ColorRawTokens.colorFunctionalDodgerBlue500 } + @objc open var colorBgStatusInfoMutedDark: ColorSemanticToken { ColorRawTokens.colorFunctionalDodgerBlue900 } + @objc open var colorBgStatusInfoMutedOnBgEmphasizedDark: ColorSemanticToken { ColorRawTokens.colorFunctionalDodgerBlue900 } + @objc open var colorBgStatusNegativeEmphasizedDark: ColorSemanticToken { ColorRawTokens.colorFunctionalScarlet600 } + @objc open var colorBgStatusNegativeMutedDark: ColorSemanticToken { ColorRawTokens.colorFunctionalScarlet900 } + @objc open var colorBgStatusNegativeMutedOnBgEmphasizedDark: ColorSemanticToken { ColorRawTokens.colorFunctionalScarlet900 } + @objc open var colorBgStatusNeutralDark: ColorSemanticToken { ColorRawTokens.colorFunctionalDarkGray720 } + @objc open var colorBgStatusNeutralOnBgEmphasizedDark: ColorSemanticToken { ColorRawTokens.colorFunctionalDarkGray720 } + @objc open var colorBgStatusPositiveEmphasizedDark: ColorSemanticToken { ColorRawTokens.colorFunctionalMalachite500 } + @objc open var colorBgStatusPositiveMutedDark: ColorSemanticToken { ColorRawTokens.colorFunctionalMalachite900 } + @objc open var colorBgStatusPositiveMutedOnBgEmphasizedDark: ColorSemanticToken { ColorRawTokens.colorFunctionalMalachite900 } + @objc open var colorBgStatusWarningEmphasizedDark: ColorSemanticToken { ColorRawTokens.colorFunctionalSun500 } + @objc open var colorBgStatusWarningMutedDark: ColorSemanticToken { ColorRawTokens.colorFunctionalSun900 } + @objc open var colorBgStatusWarningMutedOnBgEmphasizedDark: ColorSemanticToken { ColorRawTokens.colorFunctionalSun900 } + @objc open var colorBgTertiaryLight: ColorSemanticToken { fatalError("🤖 Raw token unavailable for colorBgTertiaryLight!") } + @objc open var colorBgBrandPrimaryDark: ColorSemanticToken { fatalError("🤖 Raw token unavailable for colorBgBrandPrimaryDark!") } + @objc open var colorBgEmphasizedDark: ColorSemanticToken { ColorRawTokens.colorFunctionalDarkGray640 } + @objc open var colorBgPrimaryDark: ColorSemanticToken { ColorRawTokens.colorFunctionalDarkGray880 } + @objc open var colorBgSecondaryDark: ColorSemanticToken { ColorRawTokens.colorFunctionalDarkGray800 } + @objc open var colorBgTertiaryDark: ColorSemanticToken { fatalError("🤖 Raw token unavailable for colorBgTertiaryDark!") } + @objc open var colorBorderBrandPrimaryLight: ColorSemanticToken { fatalError("🤖 Raw token unavailable for colorBorderBrandPrimaryLight!") } + @objc open var colorBorderBrandPrimaryOnBgEmphasizedLight: ColorSemanticToken { fatalError("🤖 Raw token unavailable for colorBorderBrandPrimaryOnBgEmphasizedLight!") } + @objc open var colorBorderDefaultLight: ColorSemanticToken { ColorRawTokens.colorFunctionalLightGray400 } + @objc open var colorBorderDefaultOnBgEmphasizedLight: ColorSemanticToken { ColorRawTokens.colorFunctionalDarkGray400 } + @objc open var colorBorderEmphasizedLight: ColorSemanticToken { ColorRawTokens.colorFunctionalBlack } + @objc open var colorBorderEmphasizedOnBgEmphasizedLight: ColorSemanticToken { ColorRawTokens.colorFunctionalLightGray160 } + @objc open var colorBorderFocusLight: ColorSemanticToken { ColorRawTokens.colorFunctionalBlack } + @objc open var colorBorderFocusInsetLight: ColorSemanticToken { ColorRawTokens.colorFunctionalWhite } + @objc open var colorBorderFocusInsetOnBgEmphasizedLight: ColorSemanticToken { ColorRawTokens.colorFunctionalDarkGray880 } + @objc open var colorBorderFocusOnBgEmphasizedLight: ColorSemanticToken { ColorRawTokens.colorFunctionalLightGray160 } + @objc open var colorBorderOnBrandPrimaryLight: ColorSemanticToken { ColorRawTokens.colorFunctionalWhite } + @objc open var colorBorderOnBrandPrimaryDark: ColorSemanticToken { ColorRawTokens.colorFunctionalBlack } + @objc open var colorBorderBrandPrimaryDark: ColorSemanticToken { fatalError("🤖 Raw token unavailable for colorBorderBrandPrimaryDark!") } + @objc open var colorBorderBrandPrimaryOnBgEmphasizedDark: ColorSemanticToken { fatalError("🤖 Raw token unavailable for colorBorderBrandPrimaryOnBgEmphasizedDark!") } + @objc open var colorBorderDefaultDark: ColorSemanticToken { ColorRawTokens.colorFunctionalDarkGray400 } + @objc open var colorBorderDefaultOnBgEmphasizedDark: ColorSemanticToken { ColorRawTokens.colorFunctionalDarkGray400 } + @objc open var colorBorderEmphasizedDark: ColorSemanticToken { ColorRawTokens.colorFunctionalLightGray160 } + @objc open var colorBorderEmphasizedOnBgEmphasizedDark: ColorSemanticToken { ColorRawTokens.colorFunctionalLightGray160 } + @objc open var colorBorderFocusDark: ColorSemanticToken { ColorRawTokens.colorFunctionalLightGray160 } + @objc open var colorBorderFocusInsetDark: ColorSemanticToken { ColorRawTokens.colorFunctionalDarkGray880 } + @objc open var colorBorderFocusInsetOnBgEmphasizedDark: ColorSemanticToken { ColorRawTokens.colorFunctionalLightGray160 } + @objc open var colorBorderFocusOnBgEmphasizedDark: ColorSemanticToken { ColorRawTokens.colorFunctionalDarkGray880 } @objc open var colorChartCategoricalBrandLight: ColorSemanticToken { fatalError("🤖 Raw token unavailable for colorChartCategoricalBrandLight!") } - @objc open var colorChartCategoricalBrandDark: ColorSemanticToken { fatalError("🤖 Raw token unavailable for colorChartCategoricalBrandDark!") } - - @objc open var colorChartCategoricalPositiveLight: ColorSemanticToken { ColorRawTokens.colorFunctionalMalachite500 } - @objc open var colorChartCategoricalPositiveDark: ColorSemanticToken { ColorRawTokens.colorFunctionalMalachite500 } - @objc open var colorChartCategoricalNegativeLight: ColorSemanticToken { ColorRawTokens.colorFunctionalScarlet600 } - @objc open var colorChartCategoricalNegativeDark: ColorSemanticToken { ColorRawTokens.colorFunctionalScarlet600 } - + @objc open var colorChartCategoricalNeutralLight: ColorSemanticToken { ColorRawTokens.colorFunctionalLightGray400 } + @objc open var colorChartCategoricalPositiveLight: ColorSemanticToken { ColorRawTokens.colorFunctionalMalachite700 } @objc open var colorChartCategoricalTier1Light: ColorSemanticToken { ColorRawTokens.colorDecorativeAmethyst600 } - @objc open var colorChartCategoricalTier1Dark: ColorSemanticToken { ColorRawTokens.colorDecorativeAmethyst500 } - @objc open var colorChartCategoricalTier2Light: ColorSemanticToken { ColorRawTokens.colorDecorativeShockingPink700 } - @objc open var colorChartCategoricalTier2Dark: ColorSemanticToken { ColorRawTokens.colorDecorativeShockingPink400 } - @objc open var colorChartCategoricalTier3Light: ColorSemanticToken { ColorRawTokens.colorDecorativeEmerald700 } - @objc open var colorChartCategoricalTier3Dark: ColorSemanticToken { ColorRawTokens.colorDecorativeEmerald600 } - @objc open var colorChartCategoricalTier4Light: ColorSemanticToken { ColorRawTokens.colorDecorativeSky700 } - @objc open var colorChartCategoricalTier4Dark: ColorSemanticToken { ColorRawTokens.colorDecorativeSky200 } - @objc open var colorChartCategoricalTier5Light: ColorSemanticToken { ColorRawTokens.colorDecorativeAmber800 } - @objc open var colorChartCategoricalTier5Dark: ColorSemanticToken { ColorRawTokens.colorDecorativeAmber700 } - @objc open var colorChartCategoricalTier6Light: ColorSemanticToken { ColorRawTokens.colorDecorativeAmethyst500 } - @objc open var colorChartCategoricalTier6Dark: ColorSemanticToken { ColorRawTokens.colorDecorativeAmethyst300 } - @objc open var colorChartCategoricalTier7Light: ColorSemanticToken { ColorRawTokens.colorDecorativeShockingPink800 } - @objc open var colorChartCategoricalTier7Dark: ColorSemanticToken { ColorRawTokens.colorDecorativeShockingPink600 } - @objc open var colorChartCategoricalTier8Light: ColorSemanticToken { ColorRawTokens.colorDecorativeEmerald600 } - @objc open var colorChartCategoricalTier8Dark: ColorSemanticToken { ColorRawTokens.colorDecorativeEmerald400 } - @objc open var colorChartCategoricalTier9Light: ColorSemanticToken { ColorRawTokens.colorDecorativeSky800 } - @objc open var colorChartCategoricalTier9Dark: ColorSemanticToken { ColorRawTokens.colorDecorativeSky500 } - @objc open var colorChartCategoricalTier10Light: ColorSemanticToken { ColorRawTokens.colorDecorativeAmber700 } + @objc open var colorChartCategoricalTier1Dark: ColorSemanticToken { ColorRawTokens.colorDecorativeAmethyst500 } + @objc open var colorChartCategoricalTier2Dark: ColorSemanticToken { ColorRawTokens.colorDecorativeShockingPink400 } + @objc open var colorChartCategoricalTier3Dark: ColorSemanticToken { ColorRawTokens.colorDecorativeEmerald600 } + @objc open var colorChartCategoricalTier4Dark: ColorSemanticToken { ColorRawTokens.colorDecorativeSky200 } + @objc open var colorChartCategoricalTier5Dark: ColorSemanticToken { ColorRawTokens.colorDecorativeAmber700 } + @objc open var colorChartCategoricalTier6Dark: ColorSemanticToken { ColorRawTokens.colorDecorativeAmethyst300 } + @objc open var colorChartCategoricalTier7Dark: ColorSemanticToken { ColorRawTokens.colorDecorativeShockingPink600 } + @objc open var colorChartCategoricalTier8Dark: ColorSemanticToken { ColorRawTokens.colorDecorativeEmerald400 } + @objc open var colorChartCategoricalTier9Dark: ColorSemanticToken { ColorRawTokens.colorDecorativeSky500 } @objc open var colorChartCategoricalTier10Dark: ColorSemanticToken { ColorRawTokens.colorDecorativeAmber300 } - + @objc open var colorChartCategoricalBrandDark: ColorSemanticToken { fatalError("🤖 Raw token unavailable for colorChartCategoricalBrandDark!") } + @objc open var colorChartCategoricalNegativeDark: ColorSemanticToken { ColorRawTokens.colorFunctionalScarlet400 } + @objc open var colorChartCategoricalNeutralDark: ColorSemanticToken { ColorRawTokens.colorFunctionalDarkGray240 } + @objc open var colorChartCategoricalPositiveDark: ColorSemanticToken { ColorRawTokens.colorFunctionalMalachite600 } @objc open var colorChartSequentialAccent1Tint100Light: ColorSemanticToken { ColorRawTokens.colorDecorativeSky100 } - @objc open var colorChartSequentialAccent1Tint100Dark: ColorSemanticToken { ColorRawTokens.colorDecorativeSky900 } - @objc open var colorChartSequentialAccent1Tint200Light: ColorSemanticToken { ColorRawTokens.colorDecorativeSky200 } - @objc open var colorChartSequentialAccent1Tint200Dark: ColorSemanticToken { ColorRawTokens.colorDecorativeSky800 } - @objc open var colorChartSequentialAccent1Tint300Light: ColorSemanticToken { ColorRawTokens.colorDecorativeSky300 } - @objc open var colorChartSequentialAccent1Tint300Dark: ColorSemanticToken { ColorRawTokens.colorDecorativeSky700 } - @objc open var colorChartSequentialAccent1Tint400Light: ColorSemanticToken { ColorRawTokens.colorDecorativeSky400 } - @objc open var colorChartSequentialAccent1Tint400Dark: ColorSemanticToken { ColorRawTokens.colorDecorativeSky600 } - @objc open var colorChartSequentialAccent1Tint500Light: ColorSemanticToken { ColorRawTokens.colorDecorativeSky500 } - @objc open var colorChartSequentialAccent1Tint500Dark: ColorSemanticToken { ColorRawTokens.colorDecorativeSky500 } - @objc open var colorChartSequentialAccent1Tint600Light: ColorSemanticToken { ColorRawTokens.colorDecorativeSky600 } - @objc open var colorChartSequentialAccent1Tint600Dark: ColorSemanticToken { ColorRawTokens.colorDecorativeSky400 } - @objc open var colorChartSequentialAccent1Tint700Light: ColorSemanticToken { ColorRawTokens.colorDecorativeSky700 } - @objc open var colorChartSequentialAccent1Tint700Dark: ColorSemanticToken { ColorRawTokens.colorDecorativeSky300 } - @objc open var colorChartSequentialAccent1Tint800Light: ColorSemanticToken { ColorRawTokens.colorDecorativeSky800 } - @objc open var colorChartSequentialAccent1Tint800Dark: ColorSemanticToken { ColorRawTokens.colorDecorativeSky200 } - @objc open var colorChartSequentialAccent1Tint900Light: ColorSemanticToken { ColorRawTokens.colorDecorativeSky900 } + @objc open var colorChartSequentialAccent1Tint100Dark: ColorSemanticToken { ColorRawTokens.colorDecorativeSky900 } + @objc open var colorChartSequentialAccent1Tint200Dark: ColorSemanticToken { ColorRawTokens.colorDecorativeSky800 } + @objc open var colorChartSequentialAccent1Tint300Dark: ColorSemanticToken { ColorRawTokens.colorDecorativeSky700 } + @objc open var colorChartSequentialAccent1Tint400Dark: ColorSemanticToken { ColorRawTokens.colorDecorativeSky600 } + @objc open var colorChartSequentialAccent1Tint500Dark: ColorSemanticToken { ColorRawTokens.colorDecorativeSky500 } + @objc open var colorChartSequentialAccent1Tint600Dark: ColorSemanticToken { ColorRawTokens.colorDecorativeSky400 } + @objc open var colorChartSequentialAccent1Tint700Dark: ColorSemanticToken { ColorRawTokens.colorDecorativeSky300 } + @objc open var colorChartSequentialAccent1Tint800Dark: ColorSemanticToken { ColorRawTokens.colorDecorativeSky200 } @objc open var colorChartSequentialAccent1Tint900Dark: ColorSemanticToken { ColorRawTokens.colorDecorativeSky100 } - @objc open var colorChartSequentialAccent2Tint100Light: ColorSemanticToken { ColorRawTokens.colorDecorativeEmerald100 } - @objc open var colorChartSequentialAccent2Tint100Dark: ColorSemanticToken { ColorRawTokens.colorDecorativeEmerald900 } - @objc open var colorChartSequentialAccent2Tint200Light: ColorSemanticToken { ColorRawTokens.colorDecorativeEmerald200 } - @objc open var colorChartSequentialAccent2Tint200Dark: ColorSemanticToken { ColorRawTokens.colorDecorativeEmerald800 } - @objc open var colorChartSequentialAccent2Tint300Light: ColorSemanticToken { ColorRawTokens.colorDecorativeEmerald300 } - @objc open var colorChartSequentialAccent2Tint300Dark: ColorSemanticToken { ColorRawTokens.colorDecorativeEmerald700 } - @objc open var colorChartSequentialAccent2Tint400Light: ColorSemanticToken { ColorRawTokens.colorDecorativeEmerald400 } - @objc open var colorChartSequentialAccent2Tint400Dark: ColorSemanticToken { ColorRawTokens.colorDecorativeEmerald600 } - @objc open var colorChartSequentialAccent2Tint500Light: ColorSemanticToken { ColorRawTokens.colorDecorativeEmerald500 } - @objc open var colorChartSequentialAccent2Tint500Dark: ColorSemanticToken { ColorRawTokens.colorDecorativeEmerald500 } - @objc open var colorChartSequentialAccent2Tint600Light: ColorSemanticToken { ColorRawTokens.colorDecorativeEmerald600 } - @objc open var colorChartSequentialAccent2Tint600Dark: ColorSemanticToken { ColorRawTokens.colorDecorativeEmerald400 } - @objc open var colorChartSequentialAccent2Tint700Light: ColorSemanticToken { ColorRawTokens.colorDecorativeEmerald700 } - @objc open var colorChartSequentialAccent2Tint700Dark: ColorSemanticToken { ColorRawTokens.colorDecorativeEmerald300 } - @objc open var colorChartSequentialAccent2Tint800Light: ColorSemanticToken { ColorRawTokens.colorDecorativeEmerald800 } - @objc open var colorChartSequentialAccent2Tint800Dark: ColorSemanticToken { ColorRawTokens.colorDecorativeEmerald200 } - @objc open var colorChartSequentialAccent2Tint900Light: ColorSemanticToken { ColorRawTokens.colorDecorativeEmerald900 } + @objc open var colorChartSequentialAccent2Tint100Dark: ColorSemanticToken { ColorRawTokens.colorDecorativeEmerald900 } + @objc open var colorChartSequentialAccent2Tint200Dark: ColorSemanticToken { ColorRawTokens.colorDecorativeEmerald800 } + @objc open var colorChartSequentialAccent2Tint300Dark: ColorSemanticToken { ColorRawTokens.colorDecorativeEmerald700 } + @objc open var colorChartSequentialAccent2Tint400Dark: ColorSemanticToken { ColorRawTokens.colorDecorativeEmerald600 } + @objc open var colorChartSequentialAccent2Tint500Dark: ColorSemanticToken { ColorRawTokens.colorDecorativeEmerald500 } + @objc open var colorChartSequentialAccent2Tint600Dark: ColorSemanticToken { ColorRawTokens.colorDecorativeEmerald400 } + @objc open var colorChartSequentialAccent2Tint700Dark: ColorSemanticToken { ColorRawTokens.colorDecorativeEmerald300 } + @objc open var colorChartSequentialAccent2Tint800Dark: ColorSemanticToken { ColorRawTokens.colorDecorativeEmerald200 } @objc open var colorChartSequentialAccent2Tint900Dark: ColorSemanticToken { ColorRawTokens.colorDecorativeEmerald100 } - @objc open var colorChartSequentialAccent3Tint100Light: ColorSemanticToken { ColorRawTokens.colorDecorativeShockingPink100 } - @objc open var colorChartSequentialAccent3Tint100Dark: ColorSemanticToken { ColorRawTokens.colorDecorativeShockingPink900 } - @objc open var colorChartSequentialAccent3Tint200Light: ColorSemanticToken { ColorRawTokens.colorDecorativeShockingPink200 } - @objc open var colorChartSequentialAccent3Tint200Dark: ColorSemanticToken { ColorRawTokens.colorDecorativeShockingPink800 } - @objc open var colorChartSequentialAccent3Tint300Light: ColorSemanticToken { ColorRawTokens.colorDecorativeShockingPink300 } - @objc open var colorChartSequentialAccent3Tint300Dark: ColorSemanticToken { ColorRawTokens.colorDecorativeShockingPink700 } - @objc open var colorChartSequentialAccent3Tint400Light: ColorSemanticToken { ColorRawTokens.colorDecorativeShockingPink400 } - @objc open var colorChartSequentialAccent3Tint400Dark: ColorSemanticToken { ColorRawTokens.colorDecorativeShockingPink600 } - @objc open var colorChartSequentialAccent3Tint500Light: ColorSemanticToken { ColorRawTokens.colorDecorativeShockingPink500 } - @objc open var colorChartSequentialAccent3Tint500Dark: ColorSemanticToken { ColorRawTokens.colorDecorativeShockingPink500 } - @objc open var colorChartSequentialAccent3Tint600Light: ColorSemanticToken { ColorRawTokens.colorDecorativeShockingPink600 } - @objc open var colorChartSequentialAccent3Tint600Dark: ColorSemanticToken { ColorRawTokens.colorDecorativeShockingPink400 } - @objc open var colorChartSequentialAccent3Tint700Light: ColorSemanticToken { ColorRawTokens.colorDecorativeShockingPink700 } - @objc open var colorChartSequentialAccent3Tint700Dark: ColorSemanticToken { ColorRawTokens.colorDecorativeShockingPink300 } - @objc open var colorChartSequentialAccent3Tint800Light: ColorSemanticToken { ColorRawTokens.colorDecorativeShockingPink800 } - @objc open var colorChartSequentialAccent3Tint800Dark: ColorSemanticToken { ColorRawTokens.colorDecorativeShockingPink200 } - @objc open var colorChartSequentialAccent3Tint900Light: ColorSemanticToken { ColorRawTokens.colorDecorativeShockingPink900 } + @objc open var colorChartSequentialAccent3Tint100Dark: ColorSemanticToken { ColorRawTokens.colorDecorativeShockingPink900 } + @objc open var colorChartSequentialAccent3Tint200Dark: ColorSemanticToken { ColorRawTokens.colorDecorativeShockingPink800 } + @objc open var colorChartSequentialAccent3Tint300Dark: ColorSemanticToken { ColorRawTokens.colorDecorativeShockingPink700 } + @objc open var colorChartSequentialAccent3Tint400Dark: ColorSemanticToken { ColorRawTokens.colorDecorativeShockingPink600 } + @objc open var colorChartSequentialAccent3Tint500Dark: ColorSemanticToken { ColorRawTokens.colorDecorativeShockingPink500 } + @objc open var colorChartSequentialAccent3Tint600Dark: ColorSemanticToken { ColorRawTokens.colorDecorativeShockingPink400 } + @objc open var colorChartSequentialAccent3Tint700Dark: ColorSemanticToken { ColorRawTokens.colorDecorativeShockingPink300 } + @objc open var colorChartSequentialAccent3Tint800Dark: ColorSemanticToken { ColorRawTokens.colorDecorativeShockingPink200 } @objc open var colorChartSequentialAccent3Tint900Dark: ColorSemanticToken { ColorRawTokens.colorDecorativeShockingPink100 } - @objc open var colorChartSequentialAccent4Tint100Light: ColorSemanticToken { ColorRawTokens.colorDecorativeAmethyst100 } - @objc open var colorChartSequentialAccent4Tint100Dark: ColorSemanticToken { ColorRawTokens.colorDecorativeAmethyst900 } - @objc open var colorChartSequentialAccent4Tint200Light: ColorSemanticToken { ColorRawTokens.colorDecorativeAmethyst200 } - @objc open var colorChartSequentialAccent4Tint200Dark: ColorSemanticToken { ColorRawTokens.colorDecorativeAmethyst800 } - @objc open var colorChartSequentialAccent4Tint300Light: ColorSemanticToken { ColorRawTokens.colorDecorativeAmethyst300 } - @objc open var colorChartSequentialAccent4Tint300Dark: ColorSemanticToken { ColorRawTokens.colorDecorativeAmethyst700 } - @objc open var colorChartSequentialAccent4Tint400Light: ColorSemanticToken { ColorRawTokens.colorDecorativeAmethyst400 } - @objc open var colorChartSequentialAccent4Tint400Dark: ColorSemanticToken { ColorRawTokens.colorDecorativeAmethyst600 } - @objc open var colorChartSequentialAccent4Tint500Light: ColorSemanticToken { ColorRawTokens.colorDecorativeAmethyst500 } - @objc open var colorChartSequentialAccent4Tint500Dark: ColorSemanticToken { ColorRawTokens.colorDecorativeAmethyst500 } - @objc open var colorChartSequentialAccent4Tint600Light: ColorSemanticToken { ColorRawTokens.colorDecorativeAmethyst600 } - @objc open var colorChartSequentialAccent4Tint600Dark: ColorSemanticToken { ColorRawTokens.colorDecorativeAmethyst400 } - @objc open var colorChartSequentialAccent4Tint700Light: ColorSemanticToken { ColorRawTokens.colorDecorativeAmethyst700 } - @objc open var colorChartSequentialAccent4Tint700Dark: ColorSemanticToken { ColorRawTokens.colorDecorativeAmethyst300 } - @objc open var colorChartSequentialAccent4Tint800Light: ColorSemanticToken { ColorRawTokens.colorDecorativeAmethyst800 } - @objc open var colorChartSequentialAccent4Tint800Dark: ColorSemanticToken { ColorRawTokens.colorDecorativeAmethyst200 } - @objc open var colorChartSequentialAccent4Tint900Light: ColorSemanticToken { ColorRawTokens.colorDecorativeAmethyst900 } + @objc open var colorChartSequentialAccent4Tint100Dark: ColorSemanticToken { ColorRawTokens.colorDecorativeAmethyst900 } + @objc open var colorChartSequentialAccent4Tint200Dark: ColorSemanticToken { ColorRawTokens.colorDecorativeAmethyst800 } + @objc open var colorChartSequentialAccent4Tint300Dark: ColorSemanticToken { ColorRawTokens.colorDecorativeAmethyst700 } + @objc open var colorChartSequentialAccent4Tint400Dark: ColorSemanticToken { ColorRawTokens.colorDecorativeAmethyst600 } + @objc open var colorChartSequentialAccent4Tint500Dark: ColorSemanticToken { ColorRawTokens.colorDecorativeAmethyst500 } + @objc open var colorChartSequentialAccent4Tint600Dark: ColorSemanticToken { ColorRawTokens.colorDecorativeAmethyst400 } + @objc open var colorChartSequentialAccent4Tint700Dark: ColorSemanticToken { ColorRawTokens.colorDecorativeAmethyst300 } + @objc open var colorChartSequentialAccent4Tint800Dark: ColorSemanticToken { ColorRawTokens.colorDecorativeAmethyst200 } @objc open var colorChartSequentialAccent4Tint900Dark: ColorSemanticToken { ColorRawTokens.colorDecorativeAmethyst100 } - - @objc open var colorChartSequentialAccent5Tint100Light: ColorSemanticToken { ColorRawTokens.colorFunctionalSun100 } - @objc open var colorChartSequentialAccent5Tint100Dark: ColorSemanticToken { ColorRawTokens.colorFunctionalSun900 } - - @objc open var colorChartSequentialAccent5Tint200Light: ColorSemanticToken { ColorRawTokens.colorFunctionalSun200 } - @objc open var colorChartSequentialAccent5Tint200Dark: ColorSemanticToken { ColorRawTokens.colorFunctionalSun800 } - - @objc open var colorChartSequentialAccent5Tint300Light: ColorSemanticToken { ColorRawTokens.colorFunctionalSun300 } - @objc open var colorChartSequentialAccent5Tint300Dark: ColorSemanticToken { ColorRawTokens.colorFunctionalSun700 } - - @objc open var colorChartSequentialAccent5Tint400Light: ColorSemanticToken { ColorRawTokens.colorFunctionalSun400 } - @objc open var colorChartSequentialAccent5Tint400Dark: ColorSemanticToken { ColorRawTokens.colorFunctionalSun600 } - - @objc open var colorChartSequentialAccent5Tint500Light: ColorSemanticToken { ColorRawTokens.colorFunctionalSun500 } - @objc open var colorChartSequentialAccent5Tint500Dark: ColorSemanticToken { ColorRawTokens.colorFunctionalSun500 } - - @objc open var colorChartSequentialAccent5Tint600Light: ColorSemanticToken { ColorRawTokens.colorFunctionalSun600 } - @objc open var colorChartSequentialAccent5Tint600Dark: ColorSemanticToken { ColorRawTokens.colorFunctionalSun400 } - - @objc open var colorChartSequentialAccent5Tint700Light: ColorSemanticToken { ColorRawTokens.colorFunctionalSun700 } - @objc open var colorChartSequentialAccent5Tint700Dark: ColorSemanticToken { ColorRawTokens.colorFunctionalSun300 } - - @objc open var colorChartSequentialAccent5Tint800Light: ColorSemanticToken { ColorRawTokens.colorFunctionalSun800 } - @objc open var colorChartSequentialAccent5Tint800Dark: ColorSemanticToken { ColorRawTokens.colorFunctionalSun200 } - - @objc open var colorChartSequentialAccent5Tint900Light: ColorSemanticToken { ColorRawTokens.colorFunctionalSun900 } - @objc open var colorChartSequentialAccent5Tint900Dark: ColorSemanticToken { ColorRawTokens.colorFunctionalSun100 } + @objc open var colorChartSequentialAccent5Tint100Light: ColorSemanticToken { ColorRawTokens.colorDecorativeAmber100 } + @objc open var colorChartSequentialAccent5Tint200Light: ColorSemanticToken { ColorRawTokens.colorDecorativeAmber200 } + @objc open var colorChartSequentialAccent5Tint300Light: ColorSemanticToken { ColorRawTokens.colorDecorativeAmber300 } + @objc open var colorChartSequentialAccent5Tint400Light: ColorSemanticToken { ColorRawTokens.colorDecorativeAmber400 } + @objc open var colorChartSequentialAccent5Tint500Light: ColorSemanticToken { ColorRawTokens.colorDecorativeAmber500 } + @objc open var colorChartSequentialAccent5Tint600Light: ColorSemanticToken { ColorRawTokens.colorDecorativeAmber600 } + @objc open var colorChartSequentialAccent5Tint700Light: ColorSemanticToken { ColorRawTokens.colorDecorativeAmber700 } + @objc open var colorChartSequentialAccent5Tint800Light: ColorSemanticToken { ColorRawTokens.colorDecorativeAmber800 } + @objc open var colorChartSequentialAccent5Tint900Light: ColorSemanticToken { ColorRawTokens.colorDecorativeAmber900 } + @objc open var colorChartSequentialAccent5Tint100Dark: ColorSemanticToken { ColorRawTokens.colorDecorativeAmber900 } + @objc open var colorChartSequentialAccent5Tint200Dark: ColorSemanticToken { ColorRawTokens.colorDecorativeAmber800 } + @objc open var colorChartSequentialAccent5Tint300Dark: ColorSemanticToken { ColorRawTokens.colorDecorativeAmber700 } + @objc open var colorChartSequentialAccent5Tint400Dark: ColorSemanticToken { ColorRawTokens.colorDecorativeAmber600 } + @objc open var colorChartSequentialAccent5Tint500Dark: ColorSemanticToken { ColorRawTokens.colorDecorativeAmber500 } + @objc open var colorChartSequentialAccent5Tint600Dark: ColorSemanticToken { ColorRawTokens.colorDecorativeAmber400 } + @objc open var colorChartSequentialAccent5Tint700Dark: ColorSemanticToken { ColorRawTokens.colorDecorativeAmber300 } + @objc open var colorChartSequentialAccent5Tint800Dark: ColorSemanticToken { ColorRawTokens.colorDecorativeAmber200 } + @objc open var colorChartSequentialAccent5Tint900Dark: ColorSemanticToken { ColorRawTokens.colorDecorativeAmber100 } + @objc open var colorContentBrandPrimaryLight: ColorSemanticToken { fatalError("🤖 Raw token unavailable for ColorRawTokens!") } + @objc open var colorContentBrandPrimaryOnBgEmphasizedLight: ColorSemanticToken { fatalError("🤖 Raw token unavailable for colorContentBrandPrimaryOnBgEmphasizedLight!") } + @objc open var colorContentDefaultLight: ColorSemanticToken { ColorRawTokens.colorFunctionalBlack } + @objc open var colorContentDefaultOnBgEmphasizedLight: ColorSemanticToken { ColorRawTokens.colorFunctionalLightGray160 } + @objc open var colorContentDisabledLight: ColorSemanticToken { ColorRawTokens.colorFunctionalLightGray400 } + @objc open var colorContentDisabledOnBgEmphasizedLight: ColorSemanticToken { ColorRawTokens.colorFunctionalDarkGray400 } + @objc open var colorContentMutedLight: ColorSemanticToken { ColorRawTokens.colorFunctionalDarkGray400 } + @objc open var colorContentMutedOnBgEmphasizedLight: ColorSemanticToken { ColorRawTokens.colorFunctionalLightGray560 } + @objc open var colorContentOnActionDisabledLight: ColorSemanticToken { ColorRawTokens.colorFunctionalWhite } + @objc open var colorContentOnActionDisabledOnBgEmphasizedLight: ColorSemanticToken { ColorRawTokens.colorFunctionalBlack } + @objc open var colorContentOnActionNegativeLight: ColorSemanticToken { ColorRawTokens.colorFunctionalWhite } + @objc open var colorContentOnActionPrimaryEnabledLight: ColorSemanticToken { ColorRawTokens.colorFunctionalWhite } + @objc open var colorContentOnActionPrimaryEnabledOnBgEmphasizedLight: ColorSemanticToken { ColorRawTokens.colorFunctionalBlack } + @objc open var colorContentOnActionPrimaryFocusLight: ColorSemanticToken { ColorRawTokens.colorFunctionalWhite } + @objc open var colorContentOnActionPrimaryFocusOnBgEmphasizedLight: ColorSemanticToken { ColorRawTokens.colorFunctionalBlack } + @objc open var colorContentOnActionPrimaryHoverLight: ColorSemanticToken { ColorRawTokens.colorFunctionalWhite } + @objc open var colorContentOnActionPrimaryHoverOnBgEmphasizedLight: ColorSemanticToken { ColorRawTokens.colorFunctionalBlack } + @objc open var colorContentOnActionPrimaryLoadingLight: ColorSemanticToken { ColorRawTokens.colorFunctionalWhite } + @objc open var colorContentOnActionPrimaryLoadingOnBgEmphasizedLight: ColorSemanticToken { ColorRawTokens.colorFunctionalBlack } + @objc open var colorContentOnActionPrimaryPressedLight: ColorSemanticToken { ColorRawTokens.colorFunctionalWhite } + @objc open var colorContentOnActionPrimaryPressedOnBgEmphasizedLight: ColorSemanticToken { ColorRawTokens.colorFunctionalBlack } + @objc open var colorContentOnActionPrimaryEnabledDark: ColorSemanticToken { ColorRawTokens.colorFunctionalBlack } + @objc open var colorContentOnActionPrimaryEnabledOnBgEmphasizedDark: ColorSemanticToken { ColorRawTokens.colorFunctionalBlack } + @objc open var colorContentOnActionPrimaryFocusDark: ColorSemanticToken { ColorRawTokens.colorFunctionalBlack } + @objc open var colorContentOnActionPrimaryFocusOnBgEmphasizedDark: ColorSemanticToken { ColorRawTokens.colorFunctionalBlack } + @objc open var colorContentOnActionPrimaryHoverDark: ColorSemanticToken { ColorRawTokens.colorFunctionalBlack } + @objc open var colorContentOnActionPrimaryHoverOnBgEmphasizedDark: ColorSemanticToken { ColorRawTokens.colorFunctionalBlack } + @objc open var colorContentOnActionPrimaryLoadingDark: ColorSemanticToken { ColorRawTokens.colorFunctionalBlack } + @objc open var colorContentOnActionPrimaryLoadingOnBgEmphasizedDark: ColorSemanticToken { ColorRawTokens.colorFunctionalBlack } + @objc open var colorContentOnActionPrimaryPressedDark: ColorSemanticToken { ColorRawTokens.colorFunctionalBlack } + @objc open var colorContentOnActionPrimaryPressedOnBgEmphasizedDark: ColorSemanticToken { ColorRawTokens.colorFunctionalBlack } + @objc open var colorContentOnActionDisabledDark: ColorSemanticToken { ColorRawTokens.colorFunctionalBlack } + @objc open var colorContentOnActionDisabledOnBgEmphasizedDark: ColorSemanticToken { ColorRawTokens.colorFunctionalBlack } + @objc open var colorContentOnActionNegativeDark: ColorSemanticToken { ColorRawTokens.colorFunctionalWhite } + @objc open var colorContentOnBrandPrimaryLight: ColorSemanticToken { ColorRawTokens.colorFunctionalWhite } + @objc open var colorContentOnBrandPrimaryDark: ColorSemanticToken { ColorRawTokens.colorFunctionalBlack } + @objc open var colorContentOnStatusAccentEmphasizedLight: ColorSemanticToken { ColorRawTokens.colorFunctionalBlack } + @objc open var colorContentOnStatusAccentMutedLight: ColorSemanticToken { ColorRawTokens.colorFunctionalBlack } + @objc open var colorContentOnStatusAccentMutedOnBgEmphasizedLight: ColorSemanticToken { ColorRawTokens.colorFunctionalLightGray160 } + @objc open var colorContentOnStatusInfoEmphasizedLight: ColorSemanticToken { ColorRawTokens.colorFunctionalBlack } + @objc open var colorContentOnStatusInfoMutedLight: ColorSemanticToken { ColorRawTokens.colorFunctionalBlack } + @objc open var colorContentOnStatusInfoMutedOnBgEmphasizedLight: ColorSemanticToken { ColorRawTokens.colorFunctionalLightGray160 } + @objc open var colorContentOnStatusNegativeEmphasizedLight: ColorSemanticToken { ColorRawTokens.colorFunctionalWhite } + @objc open var colorContentOnStatusNegativeMutedLight: ColorSemanticToken { ColorRawTokens.colorFunctionalBlack } + @objc open var colorContentOnStatusNegativeMutedOnBgEmphasizedLight: ColorSemanticToken { ColorRawTokens.colorFunctionalLightGray160 } + @objc open var colorContentOnStatusPositiveEmphasizedLight: ColorSemanticToken { ColorRawTokens.colorFunctionalBlack } + @objc open var colorContentOnStatusPositiveMutedLight: ColorSemanticToken { ColorRawTokens.colorFunctionalBlack } + @objc open var colorContentOnStatusPositiveMutedOnBgEmphasizedLight: ColorSemanticToken { ColorRawTokens.colorFunctionalLightGray160 } + @objc open var colorContentOnStatusWarningEmphasizedLight: ColorSemanticToken { ColorRawTokens.colorFunctionalBlack } + @objc open var colorContentOnStatusWarningMutedLight: ColorSemanticToken { ColorRawTokens.colorFunctionalBlack } + @objc open var colorContentOnStatusWarningMutedOnBgEmphasizedLight: ColorSemanticToken { ColorRawTokens.colorFunctionalLightGray160 } + @objc open var colorContentOnStatusAccentEmphasizedDark: ColorSemanticToken { ColorRawTokens.colorFunctionalBlack } + @objc open var colorContentOnStatusAccentMutedDark: ColorSemanticToken { ColorRawTokens.colorFunctionalLightGray160 } + @objc open var colorContentOnStatusAccentMutedOnBgEmphasizedDark: ColorSemanticToken { ColorRawTokens.colorFunctionalLightGray160 } + @objc open var colorContentOnStatusInfoEmphasizedDark: ColorSemanticToken { ColorRawTokens.colorFunctionalBlack } + @objc open var colorContentOnStatusInfoMutedDark: ColorSemanticToken { ColorRawTokens.colorFunctionalLightGray160 } + @objc open var colorContentOnStatusInfoMutedOnBgEmphasizedDark: ColorSemanticToken { ColorRawTokens.colorFunctionalLightGray160 } + @objc open var colorContentOnStatusNegativeEmphasizedDark: ColorSemanticToken { ColorRawTokens.colorFunctionalWhite } + @objc open var colorContentOnStatusNegativeMutedDark: ColorSemanticToken { ColorRawTokens.colorFunctionalLightGray160 } + @objc open var colorContentOnStatusNegativeMutedOnBgEmphasizedDark: ColorSemanticToken { ColorRawTokens.colorFunctionalLightGray160 } + @objc open var colorContentOnStatusPositiveEmphasizedDark: ColorSemanticToken { ColorRawTokens.colorFunctionalBlack } + @objc open var colorContentOnStatusPositiveMutedDark: ColorSemanticToken { ColorRawTokens.colorFunctionalLightGray160 } + @objc open var colorContentOnStatusPositiveMutedOnBgEmphasizedDark: ColorSemanticToken { ColorRawTokens.colorFunctionalLightGray160 } + @objc open var colorContentOnStatusWarningEmphasizedDark: ColorSemanticToken { ColorRawTokens.colorFunctionalBlack } + @objc open var colorContentOnStatusWarningMutedDark: ColorSemanticToken { ColorRawTokens.colorFunctionalLightGray160 } + @objc open var colorContentOnStatusWarningMutedOnBgEmphasizedDark: ColorSemanticToken { ColorRawTokens.colorFunctionalLightGray160 } + @objc open var colorContentStatusInfoLight: ColorSemanticToken { ColorRawTokens.colorFunctionalDodgerBlue500 } + @objc open var colorContentStatusNegativeLight: ColorSemanticToken { ColorRawTokens.colorFunctionalScarlet600 } + @objc open var colorContentStatusPositiveLight: ColorSemanticToken { ColorRawTokens.colorFunctionalMalachite500 } + @objc open var colorContentStatusWarningLight: ColorSemanticToken { ColorRawTokens.colorFunctionalSun500 } + @objc open var colorContentStatusInfoDark: ColorSemanticToken { ColorRawTokens.colorFunctionalDodgerBlue500 } + @objc open var colorContentStatusNegativeDark: ColorSemanticToken { ColorRawTokens.colorFunctionalScarlet600 } + @objc open var colorContentStatusPositiveDark: ColorSemanticToken { ColorRawTokens.colorFunctionalMalachite500 } + @objc open var colorContentStatusWarningDark: ColorSemanticToken { ColorRawTokens.colorFunctionalSun500 } + @objc open var colorContentBrandPrimaryDark: ColorSemanticToken { fatalError("🤖 Raw token unavailable for colorContentBrandPrimaryDark!") } + @objc open var colorContentBrandPrimaryOnBgEmphasizedDark: ColorSemanticToken { fatalError("🤖 Raw token unavailable for colorContentBrandPrimaryOnBgEmphasizedDark!") } + @objc open var colorContentDefaultDark: ColorSemanticToken { ColorRawTokens.colorFunctionalLightGray160 } + @objc open var colorContentDefaultOnBgEmphasizedDark: ColorSemanticToken { ColorRawTokens.colorFunctionalLightGray160 } + @objc open var colorContentDisabledDark: ColorSemanticToken { ColorRawTokens.colorFunctionalDarkGray400 } + @objc open var colorContentDisabledOnBgEmphasizedDark: ColorSemanticToken { ColorRawTokens.colorFunctionalDarkGray400 } + @objc open var colorContentMutedDark: ColorSemanticToken { ColorRawTokens.colorFunctionalLightGray560 } + @objc open var colorContentMutedOnBgEmphasizedDark: ColorSemanticToken { ColorRawTokens.colorFunctionalLightGray560 } + @objc open var colorElevationDragLight: ColorSemanticToken { ColorRawTokens.colorFunctionalLightGray80 } + @objc open var colorElevationDragOnBgEmphasizedLight: ColorSemanticToken { ColorRawTokens.colorFunctionalDarkGray720 } + @objc open var colorElevationDragOnBgSecondaryLight: ColorSemanticToken { ColorRawTokens.colorFunctionalLightGray80 } + @objc open var colorElevationModalLight: ColorSemanticToken { ColorRawTokens.colorFunctionalWhite } + @objc open var colorElevationOverlayDefaultLight: ColorSemanticToken { ColorRawTokens.colorFunctionalWhite } + @objc open var colorElevationOverlayDefaultOnBgEmphasizedLight: ColorSemanticToken { ColorRawTokens.colorFunctionalDarkGray720 } + @objc open var colorElevationOverlayDefaultOnBgSecondaryLight: ColorSemanticToken { ColorRawTokens.colorFunctionalWhite } + @objc open var colorElevationOverlayEmphasizedLight: ColorSemanticToken { ColorRawTokens.colorFunctionalDarkGray640 } + @objc open var colorElevationOverlayEmphasizedOnBgEmphasizedLight: ColorSemanticToken { ColorRawTokens.colorFunctionalLightGray80 } + @objc open var colorElevationOverlayEmphasizedOnBgSecondaryLight: ColorSemanticToken { ColorRawTokens.colorFunctionalDarkGray640 } + @objc open var colorElevationRaisedLight: ColorSemanticToken { ColorRawTokens.colorFunctionalWhite } + @objc open var colorElevationRaisedOnBgEmphasizedLight: ColorSemanticToken { ColorRawTokens.colorFunctionalDarkGray800 } + @objc open var colorElevationRaisedOnBgSecondaryLight: ColorSemanticToken { ColorRawTokens.colorFunctionalWhite } + @objc open var colorElevationDragDark: ColorSemanticToken { ColorRawTokens.colorFunctionalDarkGray720 } + @objc open var colorElevationDragOnBgEmphasizedDark: ColorSemanticToken { ColorRawTokens.colorFunctionalDarkGray480 } + @objc open var colorElevationDragOnBgSecondaryDark: ColorSemanticToken { ColorRawTokens.colorFunctionalDarkGray640 } + @objc open var colorElevationModalDark: ColorSemanticToken { ColorRawTokens.colorFunctionalDarkGray640 } + @objc open var colorElevationOverlayDefaultDark: ColorSemanticToken { ColorRawTokens.colorFunctionalDarkGray720 } + @objc open var colorElevationOverlayDefaultOnBgEmphasizedDark: ColorSemanticToken { ColorRawTokens.colorFunctionalDarkGray480 } + @objc open var colorElevationOverlayDefaultOnBgSecondaryDark: ColorSemanticToken { ColorRawTokens.colorFunctionalDarkGray640 } + @objc open var colorElevationOverlayEmphasizedDark: ColorSemanticToken { ColorRawTokens.colorFunctionalDarkGray480 } + @objc open var colorElevationOverlayEmphasizedOnBgEmphasizedDark: ColorSemanticToken { ColorRawTokens.colorFunctionalDarkGray400 } + @objc open var colorElevationOverlayEmphasizedOnBgSecondaryDark: ColorSemanticToken { ColorRawTokens.colorFunctionalDarkGray480 } + @objc open var colorElevationRaisedDark: ColorSemanticToken { ColorRawTokens.colorFunctionalDarkGray800 } + @objc open var colorElevationRaisedOnBgEmphasizedDark: ColorSemanticToken { ColorRawTokens.colorFunctionalDarkGray560 } + @objc open var colorElevationRaisedOnBgSecondaryDark: ColorSemanticToken { ColorRawTokens.colorFunctionalDarkGray720 } + @objc open var colorGradientSkeletonMiddleLight: ColorSemanticToken { ColorRawTokens.colorFunctionalLightGray160 } + @objc open var colorGradientSkeletonMiddleOnBgEmphasizedLight: ColorSemanticToken { ColorRawTokens.colorFunctionalDarkGray640 } + @objc open var colorGradientSkeletonStartEndLight: ColorSemanticToken { ColorRawTokens.colorFunctionalLightGray80 } + @objc open var colorGradientSkeletonStartEndOnBgEmphasizedLight: ColorSemanticToken { ColorRawTokens.colorFunctionalDarkGray720 } + @objc open var colorGradientSkeletonMiddleDark: ColorSemanticToken { ColorRawTokens.colorFunctionalDarkGray720 } + @objc open var colorGradientSkeletonMiddleOnBgEmphasizedDark: ColorSemanticToken { ColorRawTokens.colorFunctionalDarkGray480 } + @objc open var colorGradientSkeletonStartEndDark: ColorSemanticToken { ColorRawTokens.colorFunctionalDarkGray800 } + @objc open var colorGradientSkeletonStartEndOnBgEmphasizedDark: ColorSemanticToken { ColorRawTokens.colorFunctionalDarkGray560 } + @objc open var colorDecorativeAccent1DefaultLight: ColorSemanticToken { ColorRawTokens.colorDecorativeEmerald500 } + @objc open var colorDecorativeAccent1EmphasizedLight: ColorSemanticToken { ColorRawTokens.colorDecorativeEmerald700 } + @objc open var colorDecorativeAccent1MutedLight: ColorSemanticToken { ColorRawTokens.colorDecorativeEmerald200 } + @objc open var colorDecorativeAccent1DefaultDark: ColorSemanticToken { ColorRawTokens.colorDecorativeEmerald500 } + @objc open var colorDecorativeAccent1EmphasizedDark: ColorSemanticToken { ColorRawTokens.colorDecorativeEmerald700 } + @objc open var colorDecorativeAccent1MutedDark: ColorSemanticToken { ColorRawTokens.colorDecorativeEmerald200 } + @objc open var colorDecorativeAccent2DefaultLight: ColorSemanticToken { ColorRawTokens.colorDecorativeSky400 } + @objc open var colorDecorativeAccent2EmphasizedLight: ColorSemanticToken { ColorRawTokens.colorDecorativeSky700 } + @objc open var colorDecorativeAccent2MutedLight: ColorSemanticToken { ColorRawTokens.colorDecorativeSky200 } + @objc open var colorDecorativeAccent2DefaultDark: ColorSemanticToken { ColorRawTokens.colorDecorativeSky400 } + @objc open var colorDecorativeAccent2EmphasizedDark: ColorSemanticToken { ColorRawTokens.colorDecorativeSky700 } + @objc open var colorDecorativeAccent2MutedDark: ColorSemanticToken { ColorRawTokens.colorDecorativeSky200 } + @objc open var colorDecorativeAccent3DefaultLight: ColorSemanticToken { ColorRawTokens.colorFunctionalSun500 } + @objc open var colorDecorativeAccent3EmphasizedLight: ColorSemanticToken { ColorRawTokens.colorDecorativeAmber500 } + @objc open var colorDecorativeAccent3MutedLight: ColorSemanticToken { ColorRawTokens.colorFunctionalSun200 } + @objc open var colorDecorativeAccent3DefaultDark: ColorSemanticToken { ColorRawTokens.colorFunctionalSun500 } + @objc open var colorDecorativeAccent3EmphasizedDark: ColorSemanticToken { ColorRawTokens.colorDecorativeAmber500 } + @objc open var colorDecorativeAccent3MutedDark: ColorSemanticToken { ColorRawTokens.colorFunctionalSun200 } + @objc open var colorDecorativeAccent4DefaultLight: ColorSemanticToken { ColorRawTokens.colorDecorativeAmethyst400 } + @objc open var colorDecorativeAccent4EmphasizedLight: ColorSemanticToken { ColorRawTokens.colorDecorativeAmethyst800 } + @objc open var colorDecorativeAccent4MutedLight: ColorSemanticToken { ColorRawTokens.colorDecorativeAmethyst200 } + @objc open var colorDecorativeAccent4DefaultDark: ColorSemanticToken { ColorRawTokens.colorDecorativeAmethyst400 } + @objc open var colorDecorativeAccent4EmphasizedDark: ColorSemanticToken { ColorRawTokens.colorDecorativeAmethyst800 } + @objc open var colorDecorativeAccent4MutedDark: ColorSemanticToken { ColorRawTokens.colorDecorativeAmethyst200 } + @objc open var colorDecorativeAccent5DefaultLight: ColorSemanticToken { ColorRawTokens.colorDecorativeShockingPink200 } + @objc open var colorDecorativeAccent5EmphasizedLight: ColorSemanticToken { ColorRawTokens.colorDecorativeShockingPink300 } + @objc open var colorDecorativeAccent5MutedLight: ColorSemanticToken { ColorRawTokens.colorDecorativeShockingPink100 } + @objc open var colorDecorativeAccent5DefaultDark: ColorSemanticToken { ColorRawTokens.colorDecorativeShockingPink200 } + @objc open var colorDecorativeAccent5EmphasizedDark: ColorSemanticToken { ColorRawTokens.colorDecorativeShockingPink300 } + @objc open var colorDecorativeAccent5MutedDark: ColorSemanticToken { ColorRawTokens.colorDecorativeShockingPink100 } + @objc open var colorDecorativeBrandPrimaryLight: ColorSemanticToken { fatalError("🤖 Raw token unavailable for colorDecorativeBrandPrimaryLight!") } + @objc open var colorDecorativeBrandSecondaryLight: ColorSemanticToken { ColorRawTokens.colorFunctionalBlack } + @objc open var colorDecorativeBrandTertiaryLight: ColorSemanticToken { ColorRawTokens.colorFunctionalWhite } + @objc open var colorDecorativeBrandPrimaryDark: ColorSemanticToken { fatalError("🤖 Raw token unavailable for colorDecorativeBrandPrimaryDark!") } + @objc open var colorDecorativeBrandSecondaryDark: ColorSemanticToken { ColorRawTokens.colorFunctionalLightGray160 } + @objc open var colorDecorativeBrandTertiaryDark: ColorSemanticToken { ColorRawTokens.colorFunctionalDarkGray880 } + @objc open var colorDecorativeNeutralDefaultLight: ColorSemanticToken { ColorRawTokens.colorFunctionalDarkGray400 } + @objc open var colorDecorativeNeutralEmphasizedLight: ColorSemanticToken { ColorRawTokens.colorFunctionalDarkGray640 } + @objc open var colorDecorativeNeutralMutedLight: ColorSemanticToken { ColorRawTokens.colorFunctionalLightGray160 } + @objc open var colorDecorativeNeutralDefaultDark: ColorSemanticToken { ColorRawTokens.colorFunctionalLightGray560 } + @objc open var colorDecorativeNeutralEmphasizedDark: ColorSemanticToken { ColorRawTokens.colorFunctionalLightGray160 } + @objc open var colorDecorativeNeutralMutedDark: ColorSemanticToken { ColorRawTokens.colorFunctionalDarkGray720 } + @objc open var colorDecorativeSkinTint100Light: ColorSemanticToken { ColorRawTokens.colorDecorativeDeepPeach100 } + @objc open var colorDecorativeSkinTint200Light: ColorSemanticToken { ColorRawTokens.colorDecorativeDeepPeach200 } + @objc open var colorDecorativeSkinTint300Light: ColorSemanticToken { ColorRawTokens.colorDecorativeDeepPeach300 } + @objc open var colorDecorativeSkinTint400Light: ColorSemanticToken { ColorRawTokens.colorDecorativeDeepPeach400 } + @objc open var colorDecorativeSkinTint500Light: ColorSemanticToken { ColorRawTokens.colorDecorativeDeepPeach500 } + @objc open var colorDecorativeSkinTint600Light: ColorSemanticToken { ColorRawTokens.colorDecorativeDeepPeach600 } + @objc open var colorDecorativeSkinTint700Light: ColorSemanticToken { ColorRawTokens.colorDecorativeDeepPeach700 } + @objc open var colorDecorativeSkinTint800Light: ColorSemanticToken { ColorRawTokens.colorDecorativeDeepPeach800 } + @objc open var colorDecorativeSkinTint900Light: ColorSemanticToken { ColorRawTokens.colorDecorativeDeepPeach900 } + @objc open var colorDecorativeSkinTint100Dark: ColorSemanticToken { ColorRawTokens.colorDecorativeDeepPeach100 } + @objc open var colorDecorativeSkinTint200Dark: ColorSemanticToken { ColorRawTokens.colorDecorativeDeepPeach200 } + @objc open var colorDecorativeSkinTint300Dark: ColorSemanticToken { ColorRawTokens.colorDecorativeDeepPeach300 } + @objc open var colorDecorativeSkinTint400Dark: ColorSemanticToken { ColorRawTokens.colorDecorativeDeepPeach400 } + @objc open var colorDecorativeSkinTint500Dark: ColorSemanticToken { ColorRawTokens.colorDecorativeDeepPeach500 } + @objc open var colorDecorativeSkinTint600Dark: ColorSemanticToken { ColorRawTokens.colorDecorativeDeepPeach600 } + @objc open var colorDecorativeSkinTint700Dark: ColorSemanticToken { ColorRawTokens.colorDecorativeDeepPeach700 } + @objc open var colorDecorativeSkinTint800Dark: ColorSemanticToken { ColorRawTokens.colorDecorativeDeepPeach800 } + @objc open var colorDecorativeSkinTint900Dark: ColorSemanticToken { ColorRawTokens.colorDecorativeDeepPeach900 } } -// swiftlint:enable line_length // swiftlint:enable identifier_name -// swiftlint:enable file_length diff --git a/OUDS/Core/OUDS/Tests/OUDSTheme/MockThemes/MockTheme+ColorSemanticTokens.swift b/OUDS/Core/OUDS/Tests/OUDSTheme/MockThemes/MockTheme+ColorSemanticTokens.swift index 0fc787b20..0f7af8d18 100644 --- a/OUDS/Core/OUDS/Tests/OUDSTheme/MockThemes/MockTheme+ColorSemanticTokens.swift +++ b/OUDS/Core/OUDS/Tests/OUDSTheme/MockThemes/MockTheme+ColorSemanticTokens.swift @@ -36,10 +36,6 @@ extension MockTheme { override open var colorBgBrandPrimary: MultipleColorSemanticTokens { Self.mockThemeMultipleColorSemanticTokens } - override open var colorBgBrandSecondary: MultipleColorSemanticTokens { Self.mockThemeMultipleColorSemanticTokens } - - override open var colorBgBrandTertiary: MultipleColorSemanticTokens { Self.mockThemeMultipleColorSemanticTokens } - override open var colorBgStatusNeutral: MultipleColorSemanticTokens { Self.mockThemeMultipleColorSemanticTokens } override open var colorBgStatusNeutralOnBgEmphasized: MultipleColorSemanticTokens { Self.mockThemeMultipleColorSemanticTokens } @@ -78,22 +74,18 @@ extension MockTheme { override open var colorContentDefault: MultipleColorSemanticTokens { Self.mockThemeMultipleColorSemanticTokens } - override open var colorContentContentDefaultOnBgEmphasized: MultipleColorSemanticTokens { Self.mockThemeMultipleColorSemanticTokens } + override open var colorContentDefaultOnBgEmphasized: MultipleColorSemanticTokens { Self.mockThemeMultipleColorSemanticTokens } override open var colorContentMuted: MultipleColorSemanticTokens { Self.mockThemeMultipleColorSemanticTokens } - override open var colorContentContentMutedOnBgEmphasized: MultipleColorSemanticTokens { Self.mockThemeMultipleColorSemanticTokens } + override open var colorContentMutedOnBgEmphasized: MultipleColorSemanticTokens { Self.mockThemeMultipleColorSemanticTokens } override open var colorContentDisabled: MultipleColorSemanticTokens { Self.mockThemeMultipleColorSemanticTokens } - override open var colorContentContentDisabledOnBgEmphasized: MultipleColorSemanticTokens { Self.mockThemeMultipleColorSemanticTokens } + override open var colorContentDisabledOnBgEmphasized: MultipleColorSemanticTokens { Self.mockThemeMultipleColorSemanticTokens } override open var colorContentBrandPrimary: MultipleColorSemanticTokens { Self.mockThemeMultipleColorSemanticTokens } - override open var colorContentBrandSecondary: MultipleColorSemanticTokens { Self.mockThemeMultipleColorSemanticTokens } - - override open var colorContentBrandTertiary: MultipleColorSemanticTokens { Self.mockThemeMultipleColorSemanticTokens } - override open var colorContentStatusPositive: MultipleColorSemanticTokens { Self.mockThemeMultipleColorSemanticTokens } override open var colorContentStatusInfo: MultipleColorSemanticTokens { Self.mockThemeMultipleColorSemanticTokens } @@ -102,81 +94,89 @@ extension MockTheme { override open var colorContentStatusNegative: MultipleColorSemanticTokens { Self.mockThemeMultipleColorSemanticTokens } - override open var colorContentStatusAccent: MultipleColorSemanticTokens { Self.mockThemeMultipleColorSemanticTokens } + override open var colorContentBrandPrimaryOnBgEmphasized: MultipleColorSemanticTokens { Self.mockThemeMultipleColorSemanticTokens } - // MARK: Semantic token - Colors - Content - On Background + override open var colorContentOnActionDisabled: MultipleColorSemanticTokens { Self.mockThemeMultipleColorSemanticTokens } - override open var colorContentOnBgPrimary: MultipleColorSemanticTokens { Self.mockThemeMultipleColorSemanticTokens } + override open var colorContentOnActionDisabledOnBgEmphasized: MultipleColorSemanticTokens { Self.mockThemeMultipleColorSemanticTokens } - override open var colorContentOnBgSecondary: MultipleColorSemanticTokens { Self.mockThemeMultipleColorSemanticTokens } + override open var colorContentOnActionNegative: MultipleColorSemanticTokens { Self.mockThemeMultipleColorSemanticTokens } - override open var colorContentOnBgTertiary: MultipleColorSemanticTokens { Self.mockThemeMultipleColorSemanticTokens } + override open var colorContentOnActionPrimaryEnabled: MultipleColorSemanticTokens { Self.mockThemeMultipleColorSemanticTokens } - override open var colorContentOnBgStatusPositiveMuted: MultipleColorSemanticTokens { Self.mockThemeMultipleColorSemanticTokens } + override open var colorContentOnActionPrimaryEnabledOnBgEmphasized: MultipleColorSemanticTokens { Self.mockThemeMultipleColorSemanticTokens } - override open var colorContentOnBgStatusPositiveMutedOnBgEmphasized: MultipleColorSemanticTokens { Self.mockThemeMultipleColorSemanticTokens } + override open var colorContentOnActionPrimaryFocus: MultipleColorSemanticTokens { Self.mockThemeMultipleColorSemanticTokens } - override open var colorContentOnBgStatusPositiveEmphasized: MultipleColorSemanticTokens { Self.mockThemeMultipleColorSemanticTokens } + override open var colorContentOnActionPrimaryFocusOnBgEmphasized: MultipleColorSemanticTokens { Self.mockThemeMultipleColorSemanticTokens } - override open var colorContentOnBgStatusInfoMuted: MultipleColorSemanticTokens { Self.mockThemeMultipleColorSemanticTokens } + override open var colorContentOnActionPrimaryHover: MultipleColorSemanticTokens { Self.mockThemeMultipleColorSemanticTokens } - override open var colorContentOnBgStatusInfoMutedOnBgEmphasized: MultipleColorSemanticTokens { Self.mockThemeMultipleColorSemanticTokens } + override open var colorContentOnActionPrimaryHoverOnBgEmphasized: MultipleColorSemanticTokens { Self.mockThemeMultipleColorSemanticTokens } - override open var colorContentOnBgStatusInfoEmphasized: MultipleColorSemanticTokens { Self.mockThemeMultipleColorSemanticTokens } + override open var colorContentOnActionPrimaryLoading: MultipleColorSemanticTokens { Self.mockThemeMultipleColorSemanticTokens } - override open var colorContentOnBgStatusWarningMuted: MultipleColorSemanticTokens { Self.mockThemeMultipleColorSemanticTokens } + override open var colorContentOnActionPrimaryLoadingOnBgEmphasized: MultipleColorSemanticTokens { Self.mockThemeMultipleColorSemanticTokens } - override open var colorContentOnBgStatusWarningMutedOnBgEmphasized: MultipleColorSemanticTokens { Self.mockThemeMultipleColorSemanticTokens } + override open var colorContentOnActionPrimaryPressed: MultipleColorSemanticTokens { Self.mockThemeMultipleColorSemanticTokens } - override open var colorContentOnBgStatusWarningEmphasized: MultipleColorSemanticTokens { Self.mockThemeMultipleColorSemanticTokens } + override open var colorContentOnActionPrimaryPressedOnBgEmphasized: MultipleColorSemanticTokens { Self.mockThemeMultipleColorSemanticTokens } - override open var colorContentOnBgStatusNegativeMuted: MultipleColorSemanticTokens { Self.mockThemeMultipleColorSemanticTokens } + override open var colorContentOnBrandPrimary: MultipleColorSemanticTokens { Self.mockThemeMultipleColorSemanticTokens } - override open var colorContentOnBgStatusNegativeMutedOnBgEmphasized: MultipleColorSemanticTokens { Self.mockThemeMultipleColorSemanticTokens } + override open var colorContentOnStatusAccentEmphasized: MultipleColorSemanticTokens { Self.mockThemeMultipleColorSemanticTokens } - override open var colorContentOnBgStatusNegativeEmphasized: MultipleColorSemanticTokens { Self.mockThemeMultipleColorSemanticTokens } + override open var colorContentOnStatusAccentMuted: MultipleColorSemanticTokens { Self.mockThemeMultipleColorSemanticTokens } - override open var colorContentOnBgStatusAccentMuted: MultipleColorSemanticTokens { Self.mockThemeMultipleColorSemanticTokens } + override open var colorContentOnStatusAccentMutedOnBgEmphasized: MultipleColorSemanticTokens { Self.mockThemeMultipleColorSemanticTokens } - override open var colorContentOnBgStatusAccentMutedOnBgEmphasized: MultipleColorSemanticTokens { Self.mockThemeMultipleColorSemanticTokens } + override open var colorContentOnStatusInfoEmphasized: MultipleColorSemanticTokens { Self.mockThemeMultipleColorSemanticTokens } - override open var colorContentOnBgStatusAccentedEmphasized: MultipleColorSemanticTokens { Self.mockThemeMultipleColorSemanticTokens } + override open var colorContentOnStatusInfoMuted: MultipleColorSemanticTokens { Self.mockThemeMultipleColorSemanticTokens } - // MARK: Semantic token - Colors - Border + override open var colorContentOnStatusInfoMutedOnBgEmphasized: MultipleColorSemanticTokens { Self.mockThemeMultipleColorSemanticTokens } - override open var colorBorderDefault: MultipleColorSemanticTokens { Self.mockThemeMultipleColorSemanticTokens } + override open var colorContentOnStatusNegativeEmphasized: MultipleColorSemanticTokens { Self.mockThemeMultipleColorSemanticTokens } - override open var colorBorderDefaultOnBgEmphasized: MultipleColorSemanticTokens { Self.mockThemeMultipleColorSemanticTokens } + override open var colorContentOnStatusNegativeMuted: MultipleColorSemanticTokens { Self.mockThemeMultipleColorSemanticTokens } - override open var colorBorderEmphasized: MultipleColorSemanticTokens { Self.mockThemeMultipleColorSemanticTokens } + override open var colorContentOnStatusNegativeMutedOnBgEmphasized: MultipleColorSemanticTokens { Self.mockThemeMultipleColorSemanticTokens } - override open var colorBorderEmphasizedOnBgEmphasized: MultipleColorSemanticTokens { Self.mockThemeMultipleColorSemanticTokens } + override open var colorContentOnStatusPositiveEmphasized: MultipleColorSemanticTokens { Self.mockThemeMultipleColorSemanticTokens } - override open var colorBorderFocus: MultipleColorSemanticTokens { Self.mockThemeMultipleColorSemanticTokens } + override open var colorContentOnStatusPositiveMuted: MultipleColorSemanticTokens { Self.mockThemeMultipleColorSemanticTokens } - override open var colorBorderBrandPrimaryOnBgEmphasized: MultipleColorSemanticTokens { Self.mockThemeMultipleColorSemanticTokens } + override open var colorContentOnStatusPositiveMutedOnBgEmphasized: MultipleColorSemanticTokens { Self.mockThemeMultipleColorSemanticTokens } - override open var colorBorderBrandPrimary: MultipleColorSemanticTokens { Self.mockThemeMultipleColorSemanticTokens } + override open var colorContentOnStatusWarningEmphasized: MultipleColorSemanticTokens { Self.mockThemeMultipleColorSemanticTokens } - override open var colorBorderBrandSecondary: MultipleColorSemanticTokens { Self.mockThemeMultipleColorSemanticTokens } + override open var colorContentOnStatusWarningMuted: MultipleColorSemanticTokens { Self.mockThemeMultipleColorSemanticTokens } - override open var colorBorderBrandTertiary: MultipleColorSemanticTokens { Self.mockThemeMultipleColorSemanticTokens } + override open var colorContentOnStatusWarningMutedOnBgEmphasized: MultipleColorSemanticTokens { Self.mockThemeMultipleColorSemanticTokens } - override open var colorBorderStatusPositive: MultipleColorSemanticTokens { Self.mockThemeMultipleColorSemanticTokens } + // MARK: Semantic token - Colors - Border - override open var colorBorderStatusInfo: MultipleColorSemanticTokens { Self.mockThemeMultipleColorSemanticTokens } + override open var colorBorderDefault: MultipleColorSemanticTokens { Self.mockThemeMultipleColorSemanticTokens } - override open var colorBorderStatusWarning: MultipleColorSemanticTokens { Self.mockThemeMultipleColorSemanticTokens } + override open var colorBorderDefaultOnBgEmphasized: MultipleColorSemanticTokens { Self.mockThemeMultipleColorSemanticTokens } - override open var colorBorderStatusNegative: MultipleColorSemanticTokens { Self.mockThemeMultipleColorSemanticTokens } + override open var colorBorderEmphasized: MultipleColorSemanticTokens { Self.mockThemeMultipleColorSemanticTokens } - override open var colorBorderStatusAccent: MultipleColorSemanticTokens { Self.mockThemeMultipleColorSemanticTokens } + override open var colorBorderEmphasizedOnBgEmphasized: MultipleColorSemanticTokens { Self.mockThemeMultipleColorSemanticTokens } - override open var colorBorderOnBgBrandPrimary: MultipleColorSemanticTokens { Self.mockThemeMultipleColorSemanticTokens } + override open var colorBorderFocus: MultipleColorSemanticTokens { Self.mockThemeMultipleColorSemanticTokens } - override open var colorBorderOnBgBrandSecondary: MultipleColorSemanticTokens { Self.mockThemeMultipleColorSemanticTokens } + override open var colorBorderFocusInset: MultipleColorSemanticTokens { Self.mockThemeMultipleColorSemanticTokens } - override open var colorBorderOnBgBrandTertiary: MultipleColorSemanticTokens { Self.mockThemeMultipleColorSemanticTokens } + override open var colorBorderFocusInsetOnBgEmphasized: MultipleColorSemanticTokens { Self.mockThemeMultipleColorSemanticTokens } + + override open var colorBorderFocusOnBgEmphasized: MultipleColorSemanticTokens { Self.mockThemeMultipleColorSemanticTokens } + + override open var colorBorderBrandPrimaryOnBgEmphasized: MultipleColorSemanticTokens { Self.mockThemeMultipleColorSemanticTokens } + + override open var colorBorderBrandPrimary: MultipleColorSemanticTokens { Self.mockThemeMultipleColorSemanticTokens } + + override open var colorBorderOnBrandPrimary: MultipleColorSemanticTokens { Self.mockThemeMultipleColorSemanticTokens } // MARK: Semantic token - Colors - Action @@ -190,8 +190,6 @@ extension MockTheme { override open var colorActionVisited: MultipleColorSemanticTokens { Self.mockThemeMultipleColorSemanticTokens } - override open var colorActionVistedOnBgEmphasized: MultipleColorSemanticTokens { Self.mockThemeMultipleColorSemanticTokens } - override open var colorActionPrimaryEnabled: MultipleColorSemanticTokens { Self.mockThemeMultipleColorSemanticTokens } override open var colorActionPrimaryEnabledOnBgEmphasized: MultipleColorSemanticTokens { Self.mockThemeMultipleColorSemanticTokens } @@ -242,52 +240,6 @@ extension MockTheme { override open var colorActionNegativeFocus: MultipleColorSemanticTokens { Self.mockThemeMultipleColorSemanticTokens } - override open var colorActionOnBgActionDisabled: MultipleColorSemanticTokens { Self.mockThemeMultipleColorSemanticTokens } - - override open var colorActionOnBgActionDisabledOnBgEmphasized: MultipleColorSemanticTokens { Self.mockThemeMultipleColorSemanticTokens } - - override open var colorActionOnBgActionNegative: MultipleColorSemanticTokens { Self.mockThemeMultipleColorSemanticTokens } - - override open var colorActionOnBgActionPrimaryEnabled: MultipleColorSemanticTokens { Self.mockThemeMultipleColorSemanticTokens } - - override open var colorActionOnBgActionPrimaryEnabledOnBgEmphasized: MultipleColorSemanticTokens { Self.mockThemeMultipleColorSemanticTokens } - - override open var colorActionOnBgActionPrimaryHover: MultipleColorSemanticTokens { Self.mockThemeMultipleColorSemanticTokens } - - override open var colorActionOnBgActionPrimaryHoverOnBgEmphasized: MultipleColorSemanticTokens { Self.mockThemeMultipleColorSemanticTokens } - - override open var colorActionOnBgActionPrimaryPressed: MultipleColorSemanticTokens { Self.mockThemeMultipleColorSemanticTokens } - - override open var colorActionOnBgActionPrimaryPressedOnBgEmphasized: MultipleColorSemanticTokens { Self.mockThemeMultipleColorSemanticTokens } - - override open var colorActionOnBgActionPrimaryLoading: MultipleColorSemanticTokens { Self.mockThemeMultipleColorSemanticTokens } - - override open var colorActionOnBgActionPrimaryLoadingOnBgEmphasized: MultipleColorSemanticTokens { Self.mockThemeMultipleColorSemanticTokens } - - override open var colorActionOnBgActionPrimaryFocus: MultipleColorSemanticTokens { Self.mockThemeMultipleColorSemanticTokens } - - override open var colorActionOnBgActionPrimaryFocusOnBgEmphasized: MultipleColorSemanticTokens { Self.mockThemeMultipleColorSemanticTokens } - - override open var colorActionOnBgActionSecondaryEnabled: MultipleColorSemanticTokens { Self.mockThemeMultipleColorSemanticTokens } - - override open var colorActionOnBgActionSecondaryEnabledOnBgEmphasized: MultipleColorSemanticTokens { Self.mockThemeMultipleColorSemanticTokens } - - override open var colorActionOnBgActionSecondaryHover: MultipleColorSemanticTokens { Self.mockThemeMultipleColorSemanticTokens } - - override open var colorActionOnBgActionSecondaryHoverOnBgEmphasized: MultipleColorSemanticTokens { Self.mockThemeMultipleColorSemanticTokens } - - override open var colorActionOnBgActionSecondaryPressed: MultipleColorSemanticTokens { Self.mockThemeMultipleColorSemanticTokens } - - override open var colorActionOnBgActionSecondaryPressedOnBgEmphasized: MultipleColorSemanticTokens { Self.mockThemeMultipleColorSemanticTokens } - - override open var colorActionOnBgActionSecondaryLoading: MultipleColorSemanticTokens { Self.mockThemeMultipleColorSemanticTokens } - - override open var colorActionOnBgActionSecondaryLoadingOnBgEmphasized: MultipleColorSemanticTokens { Self.mockThemeMultipleColorSemanticTokens } - - override open var colorActionOnBgActionSecondaryFocus: MultipleColorSemanticTokens { Self.mockThemeMultipleColorSemanticTokens } - - override open var colorActionOnBgActionSecondaryFocusOnBgEmphasized: MultipleColorSemanticTokens { Self.mockThemeMultipleColorSemanticTokens } - // MARK: Semantic token - Colors - Always override open var colorAlwaysBlack: MultipleColorSemanticTokens { Self.mockThemeMultipleColorSemanticTokens } @@ -304,19 +256,19 @@ extension MockTheme { override open var colorAlwaysAccent: MultipleColorSemanticTokens { Self.mockThemeMultipleColorSemanticTokens } - override open var colorAlwaysOnBgBlack: MultipleColorSemanticTokens { Self.mockThemeMultipleColorSemanticTokens } + override open var colorAlwaysOnAccent: MultipleColorSemanticTokens { Self.mockThemeMultipleColorSemanticTokens } - override open var colorAlwaysOnBgWhite: MultipleColorSemanticTokens { Self.mockThemeMultipleColorSemanticTokens } + override open var colorAlwaysOnBlack: MultipleColorSemanticTokens { Self.mockThemeMultipleColorSemanticTokens } - override open var colorAlwaysOnBgWarning: MultipleColorSemanticTokens { Self.mockThemeMultipleColorSemanticTokens } + override open var colorAlwaysOnInfo: MultipleColorSemanticTokens { Self.mockThemeMultipleColorSemanticTokens } - override open var colorAlwaysOnBgNegative: MultipleColorSemanticTokens { Self.mockThemeMultipleColorSemanticTokens } + override open var colorAlwaysOnNegative: MultipleColorSemanticTokens { Self.mockThemeMultipleColorSemanticTokens } - override open var colorAlwaysOnBgPositive: MultipleColorSemanticTokens { Self.mockThemeMultipleColorSemanticTokens } + override open var colorAlwaysOnPositive: MultipleColorSemanticTokens { Self.mockThemeMultipleColorSemanticTokens } - override open var colorAlwaysOnBgInfo: MultipleColorSemanticTokens { Self.mockThemeMultipleColorSemanticTokens } + override open var colorAlwaysOnWarning: MultipleColorSemanticTokens { Self.mockThemeMultipleColorSemanticTokens } - override open var colorAlwaysOnBgAccent: MultipleColorSemanticTokens { Self.mockThemeMultipleColorSemanticTokens } + override open var colorAlwaysOnWhite: MultipleColorSemanticTokens { Self.mockThemeMultipleColorSemanticTokens } // MARK: Semantic token - Colors - Transparent @@ -352,12 +304,6 @@ extension MockTheme { // MARK: Semantic token - Colors - Decorative - override open var colorDecorativePrimary: MultipleColorSemanticTokens { Self.mockThemeMultipleColorSemanticTokens } - - override open var colorDecorativeSecondary: MultipleColorSemanticTokens { Self.mockThemeMultipleColorSemanticTokens } - - override open var colorDecorativeTertiary: MultipleColorSemanticTokens { Self.mockThemeMultipleColorSemanticTokens } - override open var colorDecorativeNeutralMuted: MultipleColorSemanticTokens { Self.mockThemeMultipleColorSemanticTokens } override open var colorDecorativeNeutralDefault: MultipleColorSemanticTokens { Self.mockThemeMultipleColorSemanticTokens } @@ -532,6 +478,16 @@ extension MockTheme { override open var colorChartSequentialAccent5Tint900: MultipleColorSemanticTokens { Self.mockThemeMultipleColorSemanticTokens } + // MARK: - Semantic token - Colors - Gradient + + override open var colorGradientSkeletonMiddle: MultipleColorSemanticTokens { Self.mockThemeMultipleColorSemanticTokens } + + override open var colorGradientSkeletonMiddleOnBgEmphasized: MultipleColorSemanticTokens { Self.mockThemeMultipleColorSemanticTokens } + + override open var colorGradientSkeletonStartEnd: MultipleColorSemanticTokens { Self.mockThemeMultipleColorSemanticTokens } + + override open var colorGradientSkeletonStartEndOnBgEmphasized: MultipleColorSemanticTokens { Self.mockThemeMultipleColorSemanticTokens } + // MARK: - Color Tokens overridings // MARK: Semantic token - Colors - Background @@ -551,12 +507,6 @@ extension MockTheme { override open var colorBgBrandPrimaryLight: ColorSemanticToken { Self.mockThemeSemanticColorTokens } override open var colorBgBrandPrimaryDark: ColorSemanticToken { Self.mockThemeSemanticColorTokens } - override open var colorBgBrandSecondaryLight: ColorSemanticToken { Self.mockThemeSemanticColorTokens } - override open var colorBgBrandSecondaryDark: ColorSemanticToken { Self.mockThemeSemanticColorTokens } - - override open var colorBgBrandTertiaryLight: ColorSemanticToken { Self.mockThemeSemanticColorTokens } - override open var colorBgBrandTertiaryDark: ColorSemanticToken { Self.mockThemeSemanticColorTokens } - override open var colorBgStatusNeutralLight: ColorSemanticToken { Self.mockThemeSemanticColorTokens } override open var colorBgStatusNeutralDark: ColorSemanticToken { Self.mockThemeSemanticColorTokens } @@ -613,29 +563,26 @@ extension MockTheme { override open var colorContentDefaultLight: ColorSemanticToken { Self.mockThemeSemanticColorTokens } override open var colorContentDefaultDark: ColorSemanticToken { Self.mockThemeSemanticColorTokens } - override open var colorContentContentDefaultOnBgEmphasizedLight: ColorSemanticToken { Self.mockThemeSemanticColorTokens } - override open var colorContentContentDefaultOnBgEmphasizedDark: ColorSemanticToken { Self.mockThemeSemanticColorTokens } + override open var colorContentDefaultOnBgEmphasizedLight: ColorSemanticToken { Self.mockThemeSemanticColorTokens } + override open var colorContentDefaultOnBgEmphasizedDark: ColorSemanticToken { Self.mockThemeSemanticColorTokens } override open var colorContentMutedLight: ColorSemanticToken { Self.mockThemeSemanticColorTokens } override open var colorContentMutedDark: ColorSemanticToken { Self.mockThemeSemanticColorTokens } - override open var colorContentContentMutedOnBgEmphasizedLight: ColorSemanticToken { Self.mockThemeSemanticColorTokens } - override open var colorContentContentMutedOnBgEmphasizedDark: ColorSemanticToken { Self.mockThemeSemanticColorTokens } + override open var colorContentMutedOnBgEmphasizedLight: ColorSemanticToken { Self.mockThemeSemanticColorTokens } + override open var colorContentMutedOnBgEmphasizedDark: ColorSemanticToken { Self.mockThemeSemanticColorTokens } override open var colorContentDisabledLight: ColorSemanticToken { Self.mockThemeSemanticColorTokens } override open var colorContentDisabledDark: ColorSemanticToken { Self.mockThemeSemanticColorTokens } - override open var colorContentContentDisabledOnBgEmphasizedLight: ColorSemanticToken { Self.mockThemeSemanticColorTokens } - override open var colorContentContentDisabledOnBgEmphasizedDark: ColorSemanticToken { Self.mockThemeSemanticColorTokens } + override open var colorContentDisabledOnBgEmphasizedLight: ColorSemanticToken { Self.mockThemeSemanticColorTokens } + override open var colorContentDisabledOnBgEmphasizedDark: ColorSemanticToken { Self.mockThemeSemanticColorTokens } override open var colorContentBrandPrimaryLight: ColorSemanticToken { Self.mockThemeSemanticColorTokens } override open var colorContentBrandPrimaryDark: ColorSemanticToken { Self.mockThemeSemanticColorTokens } - override open var colorContentBrandSecondaryLight: ColorSemanticToken { Self.mockThemeSemanticColorTokens } - override open var colorContentBrandSecondaryDark: ColorSemanticToken { Self.mockThemeSemanticColorTokens } - - override open var colorContentBrandTertiaryLight: ColorSemanticToken { Self.mockThemeSemanticColorTokens } - override open var colorContentBrandTertiaryDark: ColorSemanticToken { Self.mockThemeSemanticColorTokens } + override open var colorContentBrandPrimaryOnBgEmphasizedLight: ColorSemanticToken { Self.mockThemeSemanticColorTokens } + override open var colorContentBrandPrimaryOnBgEmphasizedDark: ColorSemanticToken { Self.mockThemeSemanticColorTokens } override open var colorContentStatusPositiveLight: ColorSemanticToken { Self.mockThemeSemanticColorTokens } override open var colorContentStatusPositiveDark: ColorSemanticToken { Self.mockThemeSemanticColorTokens } @@ -649,65 +596,6 @@ extension MockTheme { override open var colorContentStatusNegativeLight: ColorSemanticToken { Self.mockThemeSemanticColorTokens } override open var colorContentStatusNegativeDark: ColorSemanticToken { Self.mockThemeSemanticColorTokens } - override open var colorContentStatusAccentLight: ColorSemanticToken { Self.mockThemeSemanticColorTokens } - override open var colorContentStatusAccentDark: ColorSemanticToken { Self.mockThemeSemanticColorTokens } - - // MARK: Semantic token - Colors - Content - On Background - - override open var colorContentOnBgPrimaryLight: ColorSemanticToken { Self.mockThemeSemanticColorTokens } - override open var colorContentOnBgPrimaryDark: ColorSemanticToken { Self.mockThemeSemanticColorTokens } - - override open var colorContentOnBgSecondaryLight: ColorSemanticToken { Self.mockThemeSemanticColorTokens } - override open var colorContentOnBgSecondaryDark: ColorSemanticToken { Self.mockThemeSemanticColorTokens } - - override open var colorContentOnBgTertiaryLight: ColorSemanticToken { Self.mockThemeSemanticColorTokens } - override open var colorContentOnBgTertiaryDark: ColorSemanticToken { Self.mockThemeSemanticColorTokens } - - override open var colorContentOnBgStatusPositiveMutedLight: ColorSemanticToken { Self.mockThemeSemanticColorTokens } - override open var colorContentOnBgStatusPositiveMutedDark: ColorSemanticToken { Self.mockThemeSemanticColorTokens } - - override open var colorContentOnBgStatusPositiveMutedOnBgEmphasizedLight: ColorSemanticToken { Self.mockThemeSemanticColorTokens } - override open var colorContentOnBgStatusPositiveMutedOnBgEmphasizedDark: ColorSemanticToken { Self.mockThemeSemanticColorTokens } - - override open var colorContentOnBgStatusPositiveEmphasizedLight: ColorSemanticToken { Self.mockThemeSemanticColorTokens } - override open var colorContentOnBgStatusPositiveEmphasizedDark: ColorSemanticToken { Self.mockThemeSemanticColorTokens } - - override open var colorContentOnBgStatusInfoMutedLight: ColorSemanticToken { Self.mockThemeSemanticColorTokens } - override open var colorContentOnBgStatusInfoMutedDark: ColorSemanticToken { Self.mockThemeSemanticColorTokens } - - override open var colorContentOnBgStatusInfoMutedOnBgEmphasizedLight: ColorSemanticToken { Self.mockThemeSemanticColorTokens } - override open var colorContentOnBgStatusInfoMutedOnBgEmphasizedDark: ColorSemanticToken { Self.mockThemeSemanticColorTokens } - - override open var colorContentOnBgStatusInfoEmphasizedLight: ColorSemanticToken { Self.mockThemeSemanticColorTokens } - override open var colorContentOnBgStatusInfoEmphasizedDark: ColorSemanticToken { Self.mockThemeSemanticColorTokens } - - override open var colorContentOnBgStatusWarningMutedLight: ColorSemanticToken { Self.mockThemeSemanticColorTokens } - override open var colorContentOnBgStatusWarningMutedDark: ColorSemanticToken { Self.mockThemeSemanticColorTokens } - - override open var colorContentOnBgStatusWarningMutedOnBgEmphasizedLight: ColorSemanticToken { Self.mockThemeSemanticColorTokens } - override open var colorContentOnBgStatusWarningMutedOnBgEmphasizedDark: ColorSemanticToken { Self.mockThemeSemanticColorTokens } - - override open var colorContentOnBgStatusWarningEmphasizedLight: ColorSemanticToken { Self.mockThemeSemanticColorTokens } - override open var colorContentOnBgStatusWarningEmphasizedDark: ColorSemanticToken { Self.mockThemeSemanticColorTokens } - - override open var colorContentOnBgStatusNegativeMutedLight: ColorSemanticToken { Self.mockThemeSemanticColorTokens } - override open var colorContentOnBgStatusNegativeMutedDark: ColorSemanticToken { Self.mockThemeSemanticColorTokens } - - override open var colorContentOnBgStatusNegativeMutedOnBgEmphasizedLight: ColorSemanticToken { Self.mockThemeSemanticColorTokens } - override open var colorContentOnBgStatusNegativeMutedOnBgEmphasizedDark: ColorSemanticToken { Self.mockThemeSemanticColorTokens } - - override open var colorContentOnBgStatusNegativeEmphasizedLight: ColorSemanticToken { Self.mockThemeSemanticColorTokens } - override open var colorContentOnBgStatusNegativeEmphasizedDark: ColorSemanticToken { Self.mockThemeSemanticColorTokens } - - override open var colorContentOnBgStatusAccentMutedLight: ColorSemanticToken { Self.mockThemeSemanticColorTokens } - override open var colorContentOnBgStatusAccentMutedDark: ColorSemanticToken { Self.mockThemeSemanticColorTokens } - - override open var colorContentOnBgStatusAccentMutedOnBgEmphasizedLight: ColorSemanticToken { Self.mockThemeSemanticColorTokens } - override open var colorContentOnBgStatusAccentMutedOnBgEmphasizedDark: ColorSemanticToken { Self.mockThemeSemanticColorTokens } - - override open var colorContentOnBgStatusAccentedEmphasizedLight: ColorSemanticToken { Self.mockThemeSemanticColorTokens } - override open var colorContentOnBgStatusAccentedEmphasizedDark: ColorSemanticToken { Self.mockThemeSemanticColorTokens } - // MARK: Semantic token - Colors - Border override open var colorBorderDefaultLight: ColorSemanticToken { Self.mockThemeSemanticColorTokens } @@ -725,41 +613,23 @@ extension MockTheme { override open var colorBorderFocusLight: ColorSemanticToken { Self.mockThemeSemanticColorTokens } override open var colorBorderFocusDark: ColorSemanticToken { Self.mockThemeSemanticColorTokens } + override open var colorBorderFocusInsetLight: ColorSemanticToken { Self.mockThemeSemanticColorTokens } + override open var colorBorderFocusInsetDark: ColorSemanticToken { Self.mockThemeSemanticColorTokens } + + override open var colorBorderFocusInsetOnBgEmphasizedLight: ColorSemanticToken { Self.mockThemeSemanticColorTokens } + override open var colorBorderFocusInsetOnBgEmphasizedDark: ColorSemanticToken { Self.mockThemeSemanticColorTokens } + + override open var colorBorderFocusOnBgEmphasizedLight: ColorSemanticToken { Self.mockThemeSemanticColorTokens } + override open var colorBorderFocusOnBgEmphasizedDark: ColorSemanticToken { Self.mockThemeSemanticColorTokens } + override open var colorBorderBrandPrimaryOnBgEmphasizedLight: ColorSemanticToken { Self.mockThemeSemanticColorTokens } override open var colorBorderBrandPrimaryOnBgEmphasizedDark: ColorSemanticToken { Self.mockThemeSemanticColorTokens } override open var colorBorderBrandPrimaryLight: ColorSemanticToken { Self.mockThemeSemanticColorTokens } override open var colorBorderBrandPrimaryDark: ColorSemanticToken { Self.mockThemeSemanticColorTokens } - override open var colorBorderBrandSecondaryLight: ColorSemanticToken { Self.mockThemeSemanticColorTokens } - override open var colorBorderBrandSecondaryDark: ColorSemanticToken { Self.mockThemeSemanticColorTokens } - - override open var colorBorderBrandTertiaryLight: ColorSemanticToken { Self.mockThemeSemanticColorTokens } - override open var colorBorderBrandTertiaryDark: ColorSemanticToken { Self.mockThemeSemanticColorTokens } - - override open var colorBorderStatusPositiveLight: ColorSemanticToken { Self.mockThemeSemanticColorTokens } - override open var colorBorderStatusPositiveDark: ColorSemanticToken { Self.mockThemeSemanticColorTokens } - - override open var colorBorderStatusInfoLight: ColorSemanticToken { Self.mockThemeSemanticColorTokens } - override open var colorBorderStatusInfoDark: ColorSemanticToken { Self.mockThemeSemanticColorTokens } - - override open var colorBorderStatusWarningLight: ColorSemanticToken { Self.mockThemeSemanticColorTokens } - override open var colorBorderStatusWarningDark: ColorSemanticToken { Self.mockThemeSemanticColorTokens } - - override open var colorBorderStatusNegativeLight: ColorSemanticToken { Self.mockThemeSemanticColorTokens } - override open var colorBorderStatusNegativeDark: ColorSemanticToken { Self.mockThemeSemanticColorTokens } - - override open var colorBorderStatusAccentLight: ColorSemanticToken { Self.mockThemeSemanticColorTokens } - override open var colorBorderStatusAccentDark: ColorSemanticToken { Self.mockThemeSemanticColorTokens } - - override open var colorBorderOnBgBrandPrimaryLight: ColorSemanticToken { Self.mockThemeSemanticColorTokens } - override open var colorBorderOnBgBrandPrimaryDark: ColorSemanticToken { Self.mockThemeSemanticColorTokens } - - override open var colorBorderOnBgBrandSecondaryLight: ColorSemanticToken { Self.mockThemeSemanticColorTokens } - override open var colorBorderOnBgBrandSecondaryDark: ColorSemanticToken { Self.mockThemeSemanticColorTokens } - - override open var colorBorderOnBgBrandTertiaryLight: ColorSemanticToken { Self.mockThemeSemanticColorTokens } - override open var colorBorderOnBgBrandTertiaryDark: ColorSemanticToken { Self.mockThemeSemanticColorTokens } + override open var colorBorderOnBrandPrimaryLight: ColorSemanticToken { Self.mockThemeSemanticColorTokens } + override open var colorBorderOnBrandPrimaryDark: ColorSemanticToken { Self.mockThemeSemanticColorTokens } // MARK: Semantic token - Colors - Action @@ -778,9 +648,6 @@ extension MockTheme { override open var colorActionVisitedLight: ColorSemanticToken { Self.mockThemeSemanticColorTokens } override open var colorActionVisitedDark: ColorSemanticToken { Self.mockThemeSemanticColorTokens } - override open var colorActionVistedOnBgEmphasizedLight: ColorSemanticToken { Self.mockThemeSemanticColorTokens } - override open var colorActionVistedOnBgEmphasizedDark: ColorSemanticToken { Self.mockThemeSemanticColorTokens } - override open var colorActionPrimaryEnabledLight: ColorSemanticToken { Self.mockThemeSemanticColorTokens } override open var colorActionPrimaryEnabledDark: ColorSemanticToken { Self.mockThemeSemanticColorTokens } @@ -864,6 +731,27 @@ extension MockTheme { override open var colorAlwaysAccentLight: ColorSemanticToken { Self.mockThemeSemanticColorTokens } override open var colorAlwaysAccentDark: ColorSemanticToken { Self.mockThemeSemanticColorTokens } + override open var colorAlwaysOnAccentLight: ColorSemanticToken { Self.mockThemeSemanticColorTokens } + override open var colorAlwaysOnAccentDark: ColorSemanticToken { Self.mockThemeSemanticColorTokens } + + override open var colorAlwaysOnBlackLight: ColorSemanticToken { Self.mockThemeSemanticColorTokens } + override open var colorAlwaysOnBlackDark: ColorSemanticToken { Self.mockThemeSemanticColorTokens } + + override open var colorAlwaysOnInfoLight: ColorSemanticToken { Self.mockThemeSemanticColorTokens } + override open var colorAlwaysOnInfoDark: ColorSemanticToken { Self.mockThemeSemanticColorTokens } + + override open var colorAlwaysOnNegativeLight: ColorSemanticToken { Self.mockThemeSemanticColorTokens } + override open var colorAlwaysOnNegativeDark: ColorSemanticToken { Self.mockThemeSemanticColorTokens } + + override open var colorAlwaysOnPositiveLight: ColorSemanticToken { Self.mockThemeSemanticColorTokens } + override open var colorAlwaysOnPositiveDark: ColorSemanticToken { Self.mockThemeSemanticColorTokens } + + override open var colorAlwaysOnWarningLight: ColorSemanticToken { Self.mockThemeSemanticColorTokens } + override open var colorAlwaysOnWarningDark: ColorSemanticToken { Self.mockThemeSemanticColorTokens } + + override open var colorAlwaysOnWhiteLight: ColorSemanticToken { Self.mockThemeSemanticColorTokens } + override open var colorAlwaysOnWhiteDark: ColorSemanticToken { Self.mockThemeSemanticColorTokens } + // MARK: Semantic token - Colors - Transparent override open var colorTransparentDefaultLight: ColorSemanticToken { Self.mockThemeSemanticColorTokens } @@ -912,15 +800,6 @@ extension MockTheme { // MARK: Semantic token - Colors - Decorative - override open var colorDecorativePrimaryLight: ColorSemanticToken { Self.mockThemeSemanticColorTokens } - override open var colorDecorativePrimaryDark: ColorSemanticToken { Self.mockThemeSemanticColorTokens } - - override open var colorDecorativeSecondaryLight: ColorSemanticToken { Self.mockThemeSemanticColorTokens } - override open var colorDecorativeSecondaryDark: ColorSemanticToken { Self.mockThemeSemanticColorTokens } - - override open var colorDecorativeTertiaryLight: ColorSemanticToken { Self.mockThemeSemanticColorTokens } - override open var colorDecorativeTertiaryDark: ColorSemanticToken { Self.mockThemeSemanticColorTokens } - override open var colorDecorativeNeutralMutedLight: ColorSemanticToken { Self.mockThemeSemanticColorTokens } override open var colorDecorativeNeutralMutedDark: ColorSemanticToken { Self.mockThemeSemanticColorTokens } @@ -1180,4 +1059,107 @@ extension MockTheme { override open var colorChartSequentialAccent5Tint900Light: ColorSemanticToken { Self.mockThemeSemanticColorTokens } override open var colorChartSequentialAccent5Tint900Dark: ColorSemanticToken { Self.mockThemeSemanticColorTokens } + + // MARK: - Semantic token - Colors - Gradient + + override open var colorGradientSkeletonMiddleLight: ColorSemanticToken { Self.mockThemeSemanticColorTokens } + override open var colorGradientSkeletonMiddleDark: ColorSemanticToken { Self.mockThemeSemanticColorTokens } + + override open var colorGradientSkeletonMiddleOnBgEmphasizedLight: ColorSemanticToken { Self.mockThemeSemanticColorTokens } + override open var colorGradientSkeletonMiddleOnBgEmphasizedDark: ColorSemanticToken { Self.mockThemeSemanticColorTokens } + + override open var colorGradientSkeletonStartEndLight: ColorSemanticToken { Self.mockThemeSemanticColorTokens } + override open var colorGradientSkeletonStartEndDark: ColorSemanticToken { Self.mockThemeSemanticColorTokens } + + override open var colorGradientSkeletonStartEndOnBgEmphasizedLight: ColorSemanticToken { Self.mockThemeSemanticColorTokens } + override open var colorGradientSkeletonStartEndOnBgEmphasizedDark: ColorSemanticToken { Self.mockThemeSemanticColorTokens } + + // MARK: Semantic token - Colors - Content - On Action + + override open var colorContentOnActionDisabledLight: ColorSemanticToken { Self.mockThemeSemanticColorTokens } + override open var colorContentOnActionDisabledDark: ColorSemanticToken { Self.mockThemeSemanticColorTokens } + + override open var colorContentOnActionDisabledOnBgEmphasizedLight: ColorSemanticToken { Self.mockThemeSemanticColorTokens } + override open var colorContentOnActionDisabledOnBgEmphasizedDark: ColorSemanticToken { Self.mockThemeSemanticColorTokens } + + override open var colorContentOnActionNegativeLight: ColorSemanticToken { Self.mockThemeSemanticColorTokens } + override open var colorContentOnActionNegativeDark: ColorSemanticToken { Self.mockThemeSemanticColorTokens } + + override open var colorContentOnActionPrimaryEnabledLight: ColorSemanticToken { Self.mockThemeSemanticColorTokens } + override open var colorContentOnActionPrimaryEnabledDark: ColorSemanticToken { Self.mockThemeSemanticColorTokens } + + override open var colorContentOnActionPrimaryEnabledOnBgEmphasizedLight: ColorSemanticToken { Self.mockThemeSemanticColorTokens } + override open var colorContentOnActionPrimaryEnabledOnBgEmphasizedDark: ColorSemanticToken { Self.mockThemeSemanticColorTokens } + + override open var colorContentOnActionPrimaryFocusLight: ColorSemanticToken { Self.mockThemeSemanticColorTokens } + override open var colorContentOnActionPrimaryFocusDark: ColorSemanticToken { Self.mockThemeSemanticColorTokens } + + override open var colorContentOnActionPrimaryFocusOnBgEmphasizedLight: ColorSemanticToken { Self.mockThemeSemanticColorTokens } + override open var colorContentOnActionPrimaryFocusOnBgEmphasizedDark: ColorSemanticToken { Self.mockThemeSemanticColorTokens } + + override open var colorContentOnActionPrimaryHoverLight: ColorSemanticToken { Self.mockThemeSemanticColorTokens } + override open var colorContentOnActionPrimaryHoverDark: ColorSemanticToken { Self.mockThemeSemanticColorTokens } + + override open var colorContentOnActionPrimaryHoverOnBgEmphasizedLight: ColorSemanticToken { Self.mockThemeSemanticColorTokens } + override open var colorContentOnActionPrimaryHoverOnBgEmphasizedDark: ColorSemanticToken { Self.mockThemeSemanticColorTokens } + + override open var colorContentOnActionPrimaryLoadingLight: ColorSemanticToken { Self.mockThemeSemanticColorTokens } + override open var colorContentOnActionPrimaryLoadingDark: ColorSemanticToken { Self.mockThemeSemanticColorTokens } + + override open var colorContentOnActionPrimaryLoadingOnBgEmphasizedLight: ColorSemanticToken { Self.mockThemeSemanticColorTokens } + override open var colorContentOnActionPrimaryLoadingOnBgEmphasizedDark: ColorSemanticToken { Self.mockThemeSemanticColorTokens } + + override open var colorContentOnActionPrimaryPressedLight: ColorSemanticToken { Self.mockThemeSemanticColorTokens } + override open var colorContentOnActionPrimaryPressedDark: ColorSemanticToken { Self.mockThemeSemanticColorTokens } + + override open var colorContentOnActionPrimaryPressedOnBgEmphasizedLight: ColorSemanticToken { Self.mockThemeSemanticColorTokens } + override open var colorContentOnActionPrimaryPressedOnBgEmphasizedDark: ColorSemanticToken { Self.mockThemeSemanticColorTokens } + + override open var colorContentOnBrandPrimaryLight: ColorSemanticToken { Self.mockThemeSemanticColorTokens } + override open var colorContentOnBrandPrimaryDark: ColorSemanticToken { Self.mockThemeSemanticColorTokens } + + override open var colorContentOnStatusAccentEmphasizedLight: ColorSemanticToken { Self.mockThemeSemanticColorTokens } + override open var colorContentOnStatusAccentEmphasizedDark: ColorSemanticToken { Self.mockThemeSemanticColorTokens } + + override open var colorContentOnStatusAccentMutedLight: ColorSemanticToken { Self.mockThemeSemanticColorTokens } + override open var colorContentOnStatusAccentMutedDark: ColorSemanticToken { Self.mockThemeSemanticColorTokens } + + override open var colorContentOnStatusAccentMutedOnBgEmphasizedLight: ColorSemanticToken { Self.mockThemeSemanticColorTokens } + override open var colorContentOnStatusAccentMutedOnBgEmphasizedDark: ColorSemanticToken { Self.mockThemeSemanticColorTokens } + + override open var colorContentOnStatusInfoEmphasizedLight: ColorSemanticToken { Self.mockThemeSemanticColorTokens } + override open var colorContentOnStatusInfoEmphasizedDark: ColorSemanticToken { Self.mockThemeSemanticColorTokens } + + override open var colorContentOnStatusInfoMutedLight: ColorSemanticToken { Self.mockThemeSemanticColorTokens } + override open var colorContentOnStatusInfoMutedDark: ColorSemanticToken { Self.mockThemeSemanticColorTokens } + + override open var colorContentOnStatusInfoMutedOnBgEmphasizedLight: ColorSemanticToken { Self.mockThemeSemanticColorTokens } + override open var colorContentOnStatusInfoMutedOnBgEmphasizedDark: ColorSemanticToken { Self.mockThemeSemanticColorTokens } + + override open var colorContentOnStatusNegativeEmphasizedLight: ColorSemanticToken { Self.mockThemeSemanticColorTokens } + override open var colorContentOnStatusNegativeEmphasizedDark: ColorSemanticToken { Self.mockThemeSemanticColorTokens } + + override open var colorContentOnStatusNegativeMutedLight: ColorSemanticToken { Self.mockThemeSemanticColorTokens } + override open var colorContentOnStatusNegativeMutedDark: ColorSemanticToken { Self.mockThemeSemanticColorTokens } + + override open var colorContentOnStatusNegativeMutedOnBgEmphasizedLight: ColorSemanticToken { Self.mockThemeSemanticColorTokens } + override open var colorContentOnStatusNegativeMutedOnBgEmphasizedDark: ColorSemanticToken { Self.mockThemeSemanticColorTokens } + + override open var colorContentOnStatusPositiveEmphasizedLight: ColorSemanticToken { Self.mockThemeSemanticColorTokens } + override open var colorContentOnStatusPositiveEmphasizedDark: ColorSemanticToken { Self.mockThemeSemanticColorTokens } + + override open var colorContentOnStatusPositiveMutedLight: ColorSemanticToken { Self.mockThemeSemanticColorTokens } + override open var colorContentOnStatusPositiveMutedDark: ColorSemanticToken { Self.mockThemeSemanticColorTokens } + + override open var colorContentOnStatusPositiveMutedOnBgEmphasizedLight: ColorSemanticToken { Self.mockThemeSemanticColorTokens } + override open var colorContentOnStatusPositiveMutedOnBgEmphasizedDark: ColorSemanticToken { Self.mockThemeSemanticColorTokens } + + override open var colorContentOnStatusWarningEmphasizedLight: ColorSemanticToken { Self.mockThemeSemanticColorTokens } + override open var colorContentOnStatusWarningEmphasizedDark: ColorSemanticToken { Self.mockThemeSemanticColorTokens } + + override open var colorContentOnStatusWarningMutedLight: ColorSemanticToken { Self.mockThemeSemanticColorTokens } + override open var colorContentOnStatusWarningMutedDark: ColorSemanticToken { Self.mockThemeSemanticColorTokens } + + override open var colorContentOnStatusWarningMutedOnBgEmphasizedLight: ColorSemanticToken { Self.mockThemeSemanticColorTokens } + override open var colorContentOnStatusWarningMutedOnBgEmphasizedDark: ColorSemanticToken { Self.mockThemeSemanticColorTokens } } diff --git a/OUDS/Core/OUDS/Tests/OUDSTheme/MockThemes/OtherMockTheme.swift b/OUDS/Core/OUDS/Tests/OUDSTheme/MockThemes/OtherMockTheme.swift index af43a936b..b33ebb1fd 100644 --- a/OUDS/Core/OUDS/Tests/OUDSTheme/MockThemes/OtherMockTheme.swift +++ b/OUDS/Core/OUDS/Tests/OUDSTheme/MockThemes/OtherMockTheme.swift @@ -40,10 +40,6 @@ final class OtherMockTheme: MockTheme, @unchecked Sendable { override var colorBgBrandPrimary: MultipleColorSemanticTokens { Self.otherMockThemeMultipleColorSemanticTokens } - override var colorBgBrandSecondary: MultipleColorSemanticTokens { Self.otherMockThemeMultipleColorSemanticTokens } - - override var colorBgBrandTertiary: MultipleColorSemanticTokens { Self.otherMockThemeMultipleColorSemanticTokens } - override var colorBgStatusNeutral: MultipleColorSemanticTokens { Self.otherMockThemeMultipleColorSemanticTokens } override var colorBgStatusNeutralOnBgEmphasized: MultipleColorSemanticTokens { Self.otherMockThemeMultipleColorSemanticTokens } @@ -82,22 +78,18 @@ final class OtherMockTheme: MockTheme, @unchecked Sendable { override var colorContentDefault: MultipleColorSemanticTokens { Self.otherMockThemeMultipleColorSemanticTokens } - override var colorContentContentDefaultOnBgEmphasized: MultipleColorSemanticTokens { Self.otherMockThemeMultipleColorSemanticTokens } + override var colorContentDefaultOnBgEmphasized: MultipleColorSemanticTokens { Self.otherMockThemeMultipleColorSemanticTokens } override var colorContentMuted: MultipleColorSemanticTokens { Self.otherMockThemeMultipleColorSemanticTokens } - override var colorContentContentMutedOnBgEmphasized: MultipleColorSemanticTokens { Self.otherMockThemeMultipleColorSemanticTokens } + override var colorContentMutedOnBgEmphasized: MultipleColorSemanticTokens { Self.otherMockThemeMultipleColorSemanticTokens } override var colorContentDisabled: MultipleColorSemanticTokens { Self.otherMockThemeMultipleColorSemanticTokens } - override var colorContentContentDisabledOnBgEmphasized: MultipleColorSemanticTokens { Self.otherMockThemeMultipleColorSemanticTokens } + override var colorContentDisabledOnBgEmphasized: MultipleColorSemanticTokens { Self.otherMockThemeMultipleColorSemanticTokens } override var colorContentBrandPrimary: MultipleColorSemanticTokens { Self.otherMockThemeMultipleColorSemanticTokens } - override var colorContentBrandSecondary: MultipleColorSemanticTokens { Self.otherMockThemeMultipleColorSemanticTokens } - - override var colorContentBrandTertiary: MultipleColorSemanticTokens { Self.otherMockThemeMultipleColorSemanticTokens } - override var colorContentStatusPositive: MultipleColorSemanticTokens { Self.otherMockThemeMultipleColorSemanticTokens } override var colorContentStatusInfo: MultipleColorSemanticTokens { Self.otherMockThemeMultipleColorSemanticTokens } @@ -106,81 +98,91 @@ final class OtherMockTheme: MockTheme, @unchecked Sendable { override var colorContentStatusNegative: MultipleColorSemanticTokens { Self.otherMockThemeMultipleColorSemanticTokens } - override var colorContentStatusAccent: MultipleColorSemanticTokens { Self.otherMockThemeMultipleColorSemanticTokens } + override var colorContentBrandPrimaryOnBgEmphasized: MultipleColorSemanticTokens { Self.otherMockThemeMultipleColorSemanticTokens } - // MARK: Semantic token - Colors - Content - On Background + // MARK: Semantic token - Colors - Content - On Action - override var colorContentOnBgPrimary: MultipleColorSemanticTokens { Self.otherMockThemeMultipleColorSemanticTokens } + override var colorContentOnActionDisabled: MultipleColorSemanticTokens { Self.otherMockThemeMultipleColorSemanticTokens } - override var colorContentOnBgSecondary: MultipleColorSemanticTokens { Self.otherMockThemeMultipleColorSemanticTokens } + override var colorContentOnActionDisabledOnBgEmphasized: MultipleColorSemanticTokens { Self.otherMockThemeMultipleColorSemanticTokens } - override var colorContentOnBgTertiary: MultipleColorSemanticTokens { Self.otherMockThemeMultipleColorSemanticTokens } + override var colorContentOnActionNegative: MultipleColorSemanticTokens { Self.otherMockThemeMultipleColorSemanticTokens } - override var colorContentOnBgStatusPositiveMuted: MultipleColorSemanticTokens { Self.otherMockThemeMultipleColorSemanticTokens } + override var colorContentOnActionPrimaryEnabled: MultipleColorSemanticTokens { Self.otherMockThemeMultipleColorSemanticTokens } - override var colorContentOnBgStatusPositiveMutedOnBgEmphasized: MultipleColorSemanticTokens { Self.otherMockThemeMultipleColorSemanticTokens } + override var colorContentOnActionPrimaryEnabledOnBgEmphasized: MultipleColorSemanticTokens { Self.otherMockThemeMultipleColorSemanticTokens } - override var colorContentOnBgStatusPositiveEmphasized: MultipleColorSemanticTokens { Self.otherMockThemeMultipleColorSemanticTokens } + override var colorContentOnActionPrimaryFocus: MultipleColorSemanticTokens { Self.otherMockThemeMultipleColorSemanticTokens } - override var colorContentOnBgStatusInfoMuted: MultipleColorSemanticTokens { Self.otherMockThemeMultipleColorSemanticTokens } + override var colorContentOnActionPrimaryFocusOnBgEmphasized: MultipleColorSemanticTokens { Self.otherMockThemeMultipleColorSemanticTokens } - override var colorContentOnBgStatusInfoMutedOnBgEmphasized: MultipleColorSemanticTokens { Self.otherMockThemeMultipleColorSemanticTokens } + override var colorContentOnActionPrimaryHover: MultipleColorSemanticTokens { Self.otherMockThemeMultipleColorSemanticTokens } - override var colorContentOnBgStatusInfoEmphasized: MultipleColorSemanticTokens { Self.otherMockThemeMultipleColorSemanticTokens } + override var colorContentOnActionPrimaryHoverOnBgEmphasized: MultipleColorSemanticTokens { Self.otherMockThemeMultipleColorSemanticTokens } - override var colorContentOnBgStatusWarningMuted: MultipleColorSemanticTokens { Self.otherMockThemeMultipleColorSemanticTokens } + override var colorContentOnActionPrimaryLoading: MultipleColorSemanticTokens { Self.otherMockThemeMultipleColorSemanticTokens } - override var colorContentOnBgStatusWarningMutedOnBgEmphasized: MultipleColorSemanticTokens { Self.otherMockThemeMultipleColorSemanticTokens } + override var colorContentOnActionPrimaryLoadingOnBgEmphasized: MultipleColorSemanticTokens { Self.otherMockThemeMultipleColorSemanticTokens } - override var colorContentOnBgStatusWarningEmphasized: MultipleColorSemanticTokens { Self.otherMockThemeMultipleColorSemanticTokens } + override var colorContentOnActionPrimaryPressed: MultipleColorSemanticTokens { Self.otherMockThemeMultipleColorSemanticTokens } - override var colorContentOnBgStatusNegativeMuted: MultipleColorSemanticTokens { Self.otherMockThemeMultipleColorSemanticTokens } + override var colorContentOnActionPrimaryPressedOnBgEmphasized: MultipleColorSemanticTokens { Self.otherMockThemeMultipleColorSemanticTokens } - override var colorContentOnBgStatusNegativeMutedOnBgEmphasized: MultipleColorSemanticTokens { Self.otherMockThemeMultipleColorSemanticTokens } + override var colorContentOnBrandPrimary: MultipleColorSemanticTokens { Self.otherMockThemeMultipleColorSemanticTokens } - override var colorContentOnBgStatusNegativeEmphasized: MultipleColorSemanticTokens { Self.otherMockThemeMultipleColorSemanticTokens } + override var colorContentOnStatusAccentEmphasized: MultipleColorSemanticTokens { Self.otherMockThemeMultipleColorSemanticTokens } - override var colorContentOnBgStatusAccentMuted: MultipleColorSemanticTokens { Self.otherMockThemeMultipleColorSemanticTokens } + override var colorContentOnStatusAccentMuted: MultipleColorSemanticTokens { Self.otherMockThemeMultipleColorSemanticTokens } - override var colorContentOnBgStatusAccentMutedOnBgEmphasized: MultipleColorSemanticTokens { Self.otherMockThemeMultipleColorSemanticTokens } + override var colorContentOnStatusAccentMutedOnBgEmphasized: MultipleColorSemanticTokens { Self.otherMockThemeMultipleColorSemanticTokens } - override var colorContentOnBgStatusAccentedEmphasized: MultipleColorSemanticTokens { Self.otherMockThemeMultipleColorSemanticTokens } + override var colorContentOnStatusInfoEmphasized: MultipleColorSemanticTokens { Self.otherMockThemeMultipleColorSemanticTokens } - // MARK: Semantic token - Colors - Border + override var colorContentOnStatusInfoMuted: MultipleColorSemanticTokens { Self.otherMockThemeMultipleColorSemanticTokens } - override var colorBorderDefault: MultipleColorSemanticTokens { Self.otherMockThemeMultipleColorSemanticTokens } + override var colorContentOnStatusInfoMutedOnBgEmphasized: MultipleColorSemanticTokens { Self.otherMockThemeMultipleColorSemanticTokens } - override var colorBorderDefaultOnBgEmphasized: MultipleColorSemanticTokens { Self.otherMockThemeMultipleColorSemanticTokens } + override var colorContentOnStatusNegativeEmphasized: MultipleColorSemanticTokens { Self.otherMockThemeMultipleColorSemanticTokens } - override var colorBorderEmphasized: MultipleColorSemanticTokens { Self.otherMockThemeMultipleColorSemanticTokens } + override var colorContentOnStatusNegativeMuted: MultipleColorSemanticTokens { Self.otherMockThemeMultipleColorSemanticTokens } - override var colorBorderEmphasizedOnBgEmphasized: MultipleColorSemanticTokens { Self.otherMockThemeMultipleColorSemanticTokens } + override var colorContentOnStatusNegativeMutedOnBgEmphasized: MultipleColorSemanticTokens { Self.otherMockThemeMultipleColorSemanticTokens } - override var colorBorderFocus: MultipleColorSemanticTokens { Self.otherMockThemeMultipleColorSemanticTokens } + override var colorContentOnStatusPositiveEmphasized: MultipleColorSemanticTokens { Self.otherMockThemeMultipleColorSemanticTokens } - override var colorBorderBrandPrimaryOnBgEmphasized: MultipleColorSemanticTokens { Self.otherMockThemeMultipleColorSemanticTokens } + override var colorContentOnStatusPositiveMuted: MultipleColorSemanticTokens { Self.otherMockThemeMultipleColorSemanticTokens } - override var colorBorderBrandPrimary: MultipleColorSemanticTokens { Self.otherMockThemeMultipleColorSemanticTokens } + override var colorContentOnStatusPositiveMutedOnBgEmphasized: MultipleColorSemanticTokens { Self.otherMockThemeMultipleColorSemanticTokens } - override var colorBorderBrandSecondary: MultipleColorSemanticTokens { Self.otherMockThemeMultipleColorSemanticTokens } + override var colorContentOnStatusWarningEmphasized: MultipleColorSemanticTokens { Self.otherMockThemeMultipleColorSemanticTokens } - override var colorBorderBrandTertiary: MultipleColorSemanticTokens { Self.otherMockThemeMultipleColorSemanticTokens } + override var colorContentOnStatusWarningMuted: MultipleColorSemanticTokens { Self.otherMockThemeMultipleColorSemanticTokens } - override var colorBorderStatusPositive: MultipleColorSemanticTokens { Self.otherMockThemeMultipleColorSemanticTokens } + override var colorContentOnStatusWarningMutedOnBgEmphasized: MultipleColorSemanticTokens { Self.otherMockThemeMultipleColorSemanticTokens } - override var colorBorderStatusInfo: MultipleColorSemanticTokens { Self.otherMockThemeMultipleColorSemanticTokens } + // MARK: Semantic token - Colors - Border - override var colorBorderStatusWarning: MultipleColorSemanticTokens { Self.otherMockThemeMultipleColorSemanticTokens } + override var colorBorderDefault: MultipleColorSemanticTokens { Self.otherMockThemeMultipleColorSemanticTokens } - override var colorBorderStatusNegative: MultipleColorSemanticTokens { Self.otherMockThemeMultipleColorSemanticTokens } + override var colorBorderDefaultOnBgEmphasized: MultipleColorSemanticTokens { Self.otherMockThemeMultipleColorSemanticTokens } - override var colorBorderStatusAccent: MultipleColorSemanticTokens { Self.otherMockThemeMultipleColorSemanticTokens } + override var colorBorderEmphasized: MultipleColorSemanticTokens { Self.otherMockThemeMultipleColorSemanticTokens } - override var colorBorderOnBgBrandPrimary: MultipleColorSemanticTokens { Self.otherMockThemeMultipleColorSemanticTokens } + override var colorBorderEmphasizedOnBgEmphasized: MultipleColorSemanticTokens { Self.otherMockThemeMultipleColorSemanticTokens } - override var colorBorderOnBgBrandSecondary: MultipleColorSemanticTokens { Self.otherMockThemeMultipleColorSemanticTokens } + override var colorBorderFocus: MultipleColorSemanticTokens { Self.otherMockThemeMultipleColorSemanticTokens } - override var colorBorderOnBgBrandTertiary: MultipleColorSemanticTokens { Self.otherMockThemeMultipleColorSemanticTokens } + override var colorBorderFocusInset: MultipleColorSemanticTokens { Self.otherMockThemeMultipleColorSemanticTokens } + + override var colorBorderFocusInsetOnBgEmphasized: MultipleColorSemanticTokens { Self.otherMockThemeMultipleColorSemanticTokens } + + override var colorBorderFocusOnBgEmphasized: MultipleColorSemanticTokens { Self.otherMockThemeMultipleColorSemanticTokens } + + override var colorBorderBrandPrimaryOnBgEmphasized: MultipleColorSemanticTokens { Self.otherMockThemeMultipleColorSemanticTokens } + + override var colorBorderBrandPrimary: MultipleColorSemanticTokens { Self.otherMockThemeMultipleColorSemanticTokens } + + override var colorBorderOnBrandPrimary: MultipleColorSemanticTokens { Self.otherMockThemeMultipleColorSemanticTokens } // MARK: Semantic token - Colors - Action @@ -194,8 +196,6 @@ final class OtherMockTheme: MockTheme, @unchecked Sendable { override var colorActionVisited: MultipleColorSemanticTokens { Self.otherMockThemeMultipleColorSemanticTokens } - override var colorActionVistedOnBgEmphasized: MultipleColorSemanticTokens { Self.otherMockThemeMultipleColorSemanticTokens } - override var colorActionPrimaryEnabled: MultipleColorSemanticTokens { Self.otherMockThemeMultipleColorSemanticTokens } override var colorActionPrimaryEnabledOnBgEmphasized: MultipleColorSemanticTokens { Self.otherMockThemeMultipleColorSemanticTokens } @@ -246,52 +246,6 @@ final class OtherMockTheme: MockTheme, @unchecked Sendable { override var colorActionNegativeFocus: MultipleColorSemanticTokens { Self.otherMockThemeMultipleColorSemanticTokens } - override var colorActionOnBgActionDisabled: MultipleColorSemanticTokens { Self.otherMockThemeMultipleColorSemanticTokens } - - override var colorActionOnBgActionDisabledOnBgEmphasized: MultipleColorSemanticTokens { Self.otherMockThemeMultipleColorSemanticTokens } - - override var colorActionOnBgActionNegative: MultipleColorSemanticTokens { Self.otherMockThemeMultipleColorSemanticTokens } - - override var colorActionOnBgActionPrimaryEnabled: MultipleColorSemanticTokens { Self.otherMockThemeMultipleColorSemanticTokens } - - override var colorActionOnBgActionPrimaryEnabledOnBgEmphasized: MultipleColorSemanticTokens { Self.otherMockThemeMultipleColorSemanticTokens } - - override var colorActionOnBgActionPrimaryHover: MultipleColorSemanticTokens { Self.otherMockThemeMultipleColorSemanticTokens } - - override var colorActionOnBgActionPrimaryHoverOnBgEmphasized: MultipleColorSemanticTokens { Self.otherMockThemeMultipleColorSemanticTokens } - - override var colorActionOnBgActionPrimaryPressed: MultipleColorSemanticTokens { Self.otherMockThemeMultipleColorSemanticTokens } - - override var colorActionOnBgActionPrimaryPressedOnBgEmphasized: MultipleColorSemanticTokens { Self.otherMockThemeMultipleColorSemanticTokens } - - override var colorActionOnBgActionPrimaryLoading: MultipleColorSemanticTokens { Self.otherMockThemeMultipleColorSemanticTokens } - - override var colorActionOnBgActionPrimaryLoadingOnBgEmphasized: MultipleColorSemanticTokens { Self.otherMockThemeMultipleColorSemanticTokens } - - override var colorActionOnBgActionPrimaryFocus: MultipleColorSemanticTokens { Self.otherMockThemeMultipleColorSemanticTokens } - - override var colorActionOnBgActionPrimaryFocusOnBgEmphasized: MultipleColorSemanticTokens { Self.otherMockThemeMultipleColorSemanticTokens } - - override var colorActionOnBgActionSecondaryEnabled: MultipleColorSemanticTokens { Self.otherMockThemeMultipleColorSemanticTokens } - - override var colorActionOnBgActionSecondaryEnabledOnBgEmphasized: MultipleColorSemanticTokens { Self.otherMockThemeMultipleColorSemanticTokens } - - override var colorActionOnBgActionSecondaryHover: MultipleColorSemanticTokens { Self.otherMockThemeMultipleColorSemanticTokens } - - override var colorActionOnBgActionSecondaryHoverOnBgEmphasized: MultipleColorSemanticTokens { Self.otherMockThemeMultipleColorSemanticTokens } - - override var colorActionOnBgActionSecondaryPressed: MultipleColorSemanticTokens { Self.otherMockThemeMultipleColorSemanticTokens } - - override var colorActionOnBgActionSecondaryPressedOnBgEmphasized: MultipleColorSemanticTokens { Self.otherMockThemeMultipleColorSemanticTokens } - - override var colorActionOnBgActionSecondaryLoading: MultipleColorSemanticTokens { Self.otherMockThemeMultipleColorSemanticTokens } - - override var colorActionOnBgActionSecondaryLoadingOnBgEmphasized: MultipleColorSemanticTokens { Self.otherMockThemeMultipleColorSemanticTokens } - - override var colorActionOnBgActionSecondaryFocus: MultipleColorSemanticTokens { Self.otherMockThemeMultipleColorSemanticTokens } - - override var colorActionOnBgActionSecondaryFocusOnBgEmphasized: MultipleColorSemanticTokens { Self.otherMockThemeMultipleColorSemanticTokens } - // MARK: Semantic token - Colors - Always override var colorAlwaysBlack: MultipleColorSemanticTokens { Self.otherMockThemeMultipleColorSemanticTokens } @@ -308,19 +262,19 @@ final class OtherMockTheme: MockTheme, @unchecked Sendable { override var colorAlwaysAccent: MultipleColorSemanticTokens { Self.otherMockThemeMultipleColorSemanticTokens } - override var colorAlwaysOnBgBlack: MultipleColorSemanticTokens { Self.otherMockThemeMultipleColorSemanticTokens } + override var colorAlwaysOnAccent: MultipleColorSemanticTokens { Self.otherMockThemeMultipleColorSemanticTokens } - override var colorAlwaysOnBgWhite: MultipleColorSemanticTokens { Self.otherMockThemeMultipleColorSemanticTokens } + override var colorAlwaysOnBlack: MultipleColorSemanticTokens { Self.otherMockThemeMultipleColorSemanticTokens } - override var colorAlwaysOnBgWarning: MultipleColorSemanticTokens { Self.otherMockThemeMultipleColorSemanticTokens } + override var colorAlwaysOnInfo: MultipleColorSemanticTokens { Self.otherMockThemeMultipleColorSemanticTokens } - override var colorAlwaysOnBgNegative: MultipleColorSemanticTokens { Self.otherMockThemeMultipleColorSemanticTokens } + override var colorAlwaysOnNegative: MultipleColorSemanticTokens { Self.otherMockThemeMultipleColorSemanticTokens } - override var colorAlwaysOnBgPositive: MultipleColorSemanticTokens { Self.otherMockThemeMultipleColorSemanticTokens } + override var colorAlwaysOnPositive: MultipleColorSemanticTokens { Self.otherMockThemeMultipleColorSemanticTokens } - override var colorAlwaysOnBgInfo: MultipleColorSemanticTokens { Self.otherMockThemeMultipleColorSemanticTokens } + override var colorAlwaysOnWarning: MultipleColorSemanticTokens { Self.otherMockThemeMultipleColorSemanticTokens } - override var colorAlwaysOnBgAccent: MultipleColorSemanticTokens { Self.otherMockThemeMultipleColorSemanticTokens } + override var colorAlwaysOnWhite: MultipleColorSemanticTokens { Self.otherMockThemeMultipleColorSemanticTokens } // MARK: Semantic token - Colors - Transparent @@ -356,12 +310,6 @@ final class OtherMockTheme: MockTheme, @unchecked Sendable { // MARK: Semantic token - Colors - Decorative - override var colorDecorativePrimary: MultipleColorSemanticTokens { Self.otherMockThemeMultipleColorSemanticTokens } - - override var colorDecorativeSecondary: MultipleColorSemanticTokens { Self.otherMockThemeMultipleColorSemanticTokens } - - override var colorDecorativeTertiary: MultipleColorSemanticTokens { Self.otherMockThemeMultipleColorSemanticTokens } - override var colorDecorativeNeutralMuted: MultipleColorSemanticTokens { Self.otherMockThemeMultipleColorSemanticTokens } override var colorDecorativeNeutralDefault: MultipleColorSemanticTokens { Self.otherMockThemeMultipleColorSemanticTokens } @@ -536,6 +484,16 @@ final class OtherMockTheme: MockTheme, @unchecked Sendable { override var colorChartSequentialAccent5Tint900: MultipleColorSemanticTokens { Self.otherMockThemeMultipleColorSemanticTokens } + // MARK: - Semantic token - Colors - Gradient + + override var colorGradientSkeletonMiddle: MultipleColorSemanticTokens { Self.otherMockThemeMultipleColorSemanticTokens } + + override var colorGradientSkeletonMiddleOnBgEmphasized: MultipleColorSemanticTokens { Self.otherMockThemeMultipleColorSemanticTokens } + + override var colorGradientSkeletonStartEnd: MultipleColorSemanticTokens { Self.otherMockThemeMultipleColorSemanticTokens } + + override var colorGradientSkeletonStartEndOnBgEmphasized: MultipleColorSemanticTokens { Self.otherMockThemeMultipleColorSemanticTokens } + // MARK: - Color Tokens overridings // MARK: Semantic token - Colors - Background @@ -555,12 +513,6 @@ final class OtherMockTheme: MockTheme, @unchecked Sendable { override var colorBgBrandPrimaryLight: ColorSemanticToken { Self.otherMockThemeSemanticColorToken } override var colorBgBrandPrimaryDark: ColorSemanticToken { Self.otherMockThemeSemanticColorToken } - override var colorBgBrandSecondaryLight: ColorSemanticToken { Self.otherMockThemeSemanticColorToken } - override var colorBgBrandSecondaryDark: ColorSemanticToken { Self.otherMockThemeSemanticColorToken } - - override var colorBgBrandTertiaryLight: ColorSemanticToken { Self.otherMockThemeSemanticColorToken } - override var colorBgBrandTertiaryDark: ColorSemanticToken { Self.otherMockThemeSemanticColorToken } - override var colorBgStatusNeutralLight: ColorSemanticToken { Self.otherMockThemeSemanticColorToken } override var colorBgStatusNeutralDark: ColorSemanticToken { Self.otherMockThemeSemanticColorToken } @@ -617,29 +569,26 @@ final class OtherMockTheme: MockTheme, @unchecked Sendable { override var colorContentDefaultLight: ColorSemanticToken { Self.otherMockThemeSemanticColorToken } override var colorContentDefaultDark: ColorSemanticToken { Self.otherMockThemeSemanticColorToken } - override var colorContentContentDefaultOnBgEmphasizedLight: ColorSemanticToken { Self.otherMockThemeSemanticColorToken } - override var colorContentContentDefaultOnBgEmphasizedDark: ColorSemanticToken { Self.otherMockThemeSemanticColorToken } + override var colorContentDefaultOnBgEmphasizedLight: ColorSemanticToken { Self.otherMockThemeSemanticColorToken } + override var colorContentDefaultOnBgEmphasizedDark: ColorSemanticToken { Self.otherMockThemeSemanticColorToken } override var colorContentMutedLight: ColorSemanticToken { Self.otherMockThemeSemanticColorToken } override var colorContentMutedDark: ColorSemanticToken { Self.otherMockThemeSemanticColorToken } - override var colorContentContentMutedOnBgEmphasizedLight: ColorSemanticToken { Self.otherMockThemeSemanticColorToken } - override var colorContentContentMutedOnBgEmphasizedDark: ColorSemanticToken { Self.otherMockThemeSemanticColorToken } + override var colorContentMutedOnBgEmphasizedLight: ColorSemanticToken { Self.otherMockThemeSemanticColorToken } + override var colorContentMutedOnBgEmphasizedDark: ColorSemanticToken { Self.otherMockThemeSemanticColorToken } override var colorContentDisabledLight: ColorSemanticToken { Self.otherMockThemeSemanticColorToken } override var colorContentDisabledDark: ColorSemanticToken { Self.otherMockThemeSemanticColorToken } - override var colorContentContentDisabledOnBgEmphasizedLight: ColorSemanticToken { Self.otherMockThemeSemanticColorToken } - override var colorContentContentDisabledOnBgEmphasizedDark: ColorSemanticToken { Self.otherMockThemeSemanticColorToken } + override var colorContentDisabledOnBgEmphasizedLight: ColorSemanticToken { Self.otherMockThemeSemanticColorToken } + override var colorContentDisabledOnBgEmphasizedDark: ColorSemanticToken { Self.otherMockThemeSemanticColorToken } override var colorContentBrandPrimaryLight: ColorSemanticToken { Self.otherMockThemeSemanticColorToken } override var colorContentBrandPrimaryDark: ColorSemanticToken { Self.otherMockThemeSemanticColorToken } - override var colorContentBrandSecondaryLight: ColorSemanticToken { Self.otherMockThemeSemanticColorToken } - override var colorContentBrandSecondaryDark: ColorSemanticToken { Self.otherMockThemeSemanticColorToken } - - override var colorContentBrandTertiaryLight: ColorSemanticToken { Self.otherMockThemeSemanticColorToken } - override var colorContentBrandTertiaryDark: ColorSemanticToken { Self.otherMockThemeSemanticColorToken } + override var colorContentBrandPrimaryOnBgEmphasizedLight: ColorSemanticToken { Self.otherMockThemeSemanticColorToken } + override var colorContentBrandPrimaryOnBgEmphasizedDark: ColorSemanticToken { Self.otherMockThemeSemanticColorToken } override var colorContentStatusPositiveLight: ColorSemanticToken { Self.otherMockThemeSemanticColorToken } override var colorContentStatusPositiveDark: ColorSemanticToken { Self.otherMockThemeSemanticColorToken } @@ -653,65 +602,6 @@ final class OtherMockTheme: MockTheme, @unchecked Sendable { override var colorContentStatusNegativeLight: ColorSemanticToken { Self.otherMockThemeSemanticColorToken } override var colorContentStatusNegativeDark: ColorSemanticToken { Self.otherMockThemeSemanticColorToken } - override var colorContentStatusAccentLight: ColorSemanticToken { Self.otherMockThemeSemanticColorToken } - override var colorContentStatusAccentDark: ColorSemanticToken { Self.otherMockThemeSemanticColorToken } - - // MARK: Semantic token - Colors - Content - On Background - - override var colorContentOnBgPrimaryLight: ColorSemanticToken { Self.otherMockThemeSemanticColorToken } - override var colorContentOnBgPrimaryDark: ColorSemanticToken { Self.otherMockThemeSemanticColorToken } - - override var colorContentOnBgSecondaryLight: ColorSemanticToken { Self.otherMockThemeSemanticColorToken } - override var colorContentOnBgSecondaryDark: ColorSemanticToken { Self.otherMockThemeSemanticColorToken } - - override var colorContentOnBgTertiaryLight: ColorSemanticToken { Self.otherMockThemeSemanticColorToken } - override var colorContentOnBgTertiaryDark: ColorSemanticToken { Self.otherMockThemeSemanticColorToken } - - override var colorContentOnBgStatusPositiveMutedLight: ColorSemanticToken { Self.otherMockThemeSemanticColorToken } - override var colorContentOnBgStatusPositiveMutedDark: ColorSemanticToken { Self.otherMockThemeSemanticColorToken } - - override var colorContentOnBgStatusPositiveMutedOnBgEmphasizedLight: ColorSemanticToken { Self.otherMockThemeSemanticColorToken } - override var colorContentOnBgStatusPositiveMutedOnBgEmphasizedDark: ColorSemanticToken { Self.otherMockThemeSemanticColorToken } - - override var colorContentOnBgStatusPositiveEmphasizedLight: ColorSemanticToken { Self.otherMockThemeSemanticColorToken } - override var colorContentOnBgStatusPositiveEmphasizedDark: ColorSemanticToken { Self.otherMockThemeSemanticColorToken } - - override var colorContentOnBgStatusInfoMutedLight: ColorSemanticToken { Self.otherMockThemeSemanticColorToken } - override var colorContentOnBgStatusInfoMutedDark: ColorSemanticToken { Self.otherMockThemeSemanticColorToken } - - override var colorContentOnBgStatusInfoMutedOnBgEmphasizedLight: ColorSemanticToken { Self.otherMockThemeSemanticColorToken } - override var colorContentOnBgStatusInfoMutedOnBgEmphasizedDark: ColorSemanticToken { Self.otherMockThemeSemanticColorToken } - - override var colorContentOnBgStatusInfoEmphasizedLight: ColorSemanticToken { Self.otherMockThemeSemanticColorToken } - override var colorContentOnBgStatusInfoEmphasizedDark: ColorSemanticToken { Self.otherMockThemeSemanticColorToken } - - override var colorContentOnBgStatusWarningMutedLight: ColorSemanticToken { Self.otherMockThemeSemanticColorToken } - override var colorContentOnBgStatusWarningMutedDark: ColorSemanticToken { Self.otherMockThemeSemanticColorToken } - - override var colorContentOnBgStatusWarningMutedOnBgEmphasizedLight: ColorSemanticToken { Self.otherMockThemeSemanticColorToken } - override var colorContentOnBgStatusWarningMutedOnBgEmphasizedDark: ColorSemanticToken { Self.otherMockThemeSemanticColorToken } - - override var colorContentOnBgStatusWarningEmphasizedLight: ColorSemanticToken { Self.otherMockThemeSemanticColorToken } - override var colorContentOnBgStatusWarningEmphasizedDark: ColorSemanticToken { Self.otherMockThemeSemanticColorToken } - - override var colorContentOnBgStatusNegativeMutedLight: ColorSemanticToken { Self.otherMockThemeSemanticColorToken } - override var colorContentOnBgStatusNegativeMutedDark: ColorSemanticToken { Self.otherMockThemeSemanticColorToken } - - override var colorContentOnBgStatusNegativeMutedOnBgEmphasizedLight: ColorSemanticToken { Self.otherMockThemeSemanticColorToken } - override var colorContentOnBgStatusNegativeMutedOnBgEmphasizedDark: ColorSemanticToken { Self.otherMockThemeSemanticColorToken } - - override var colorContentOnBgStatusNegativeEmphasizedLight: ColorSemanticToken { Self.otherMockThemeSemanticColorToken } - override var colorContentOnBgStatusNegativeEmphasizedDark: ColorSemanticToken { Self.otherMockThemeSemanticColorToken } - - override var colorContentOnBgStatusAccentMutedLight: ColorSemanticToken { Self.otherMockThemeSemanticColorToken } - override var colorContentOnBgStatusAccentMutedDark: ColorSemanticToken { Self.otherMockThemeSemanticColorToken } - - override var colorContentOnBgStatusAccentMutedOnBgEmphasizedLight: ColorSemanticToken { Self.otherMockThemeSemanticColorToken } - override var colorContentOnBgStatusAccentMutedOnBgEmphasizedDark: ColorSemanticToken { Self.otherMockThemeSemanticColorToken } - - override var colorContentOnBgStatusAccentedEmphasizedLight: ColorSemanticToken { Self.otherMockThemeSemanticColorToken } - override var colorContentOnBgStatusAccentedEmphasizedDark: ColorSemanticToken { Self.otherMockThemeSemanticColorToken } - // MARK: Semantic token - Colors - Border override var colorBorderDefaultLight: ColorSemanticToken { Self.otherMockThemeSemanticColorToken } @@ -729,41 +619,23 @@ final class OtherMockTheme: MockTheme, @unchecked Sendable { override var colorBorderFocusLight: ColorSemanticToken { Self.otherMockThemeSemanticColorToken } override var colorBorderFocusDark: ColorSemanticToken { Self.otherMockThemeSemanticColorToken } + override var colorBorderFocusInsetLight: ColorSemanticToken { Self.otherMockThemeSemanticColorToken } + override var colorBorderFocusInsetDark: ColorSemanticToken { Self.otherMockThemeSemanticColorToken } + + override var colorBorderFocusInsetOnBgEmphasizedLight: ColorSemanticToken { Self.otherMockThemeSemanticColorToken } + override var colorBorderFocusInsetOnBgEmphasizedDark: ColorSemanticToken { Self.otherMockThemeSemanticColorToken } + + override var colorBorderFocusOnBgEmphasizedLight: ColorSemanticToken { Self.otherMockThemeSemanticColorToken } + override var colorBorderFocusOnBgEmphasizedDark: ColorSemanticToken { Self.otherMockThemeSemanticColorToken } + override var colorBorderBrandPrimaryOnBgEmphasizedLight: ColorSemanticToken { Self.otherMockThemeSemanticColorToken } override var colorBorderBrandPrimaryOnBgEmphasizedDark: ColorSemanticToken { Self.otherMockThemeSemanticColorToken } override var colorBorderBrandPrimaryLight: ColorSemanticToken { Self.otherMockThemeSemanticColorToken } override var colorBorderBrandPrimaryDark: ColorSemanticToken { Self.otherMockThemeSemanticColorToken } - override var colorBorderBrandSecondaryLight: ColorSemanticToken { Self.otherMockThemeSemanticColorToken } - override var colorBorderBrandSecondaryDark: ColorSemanticToken { Self.otherMockThemeSemanticColorToken } - - override var colorBorderBrandTertiaryLight: ColorSemanticToken { Self.otherMockThemeSemanticColorToken } - override var colorBorderBrandTertiaryDark: ColorSemanticToken { Self.otherMockThemeSemanticColorToken } - - override var colorBorderStatusPositiveLight: ColorSemanticToken { Self.otherMockThemeSemanticColorToken } - override var colorBorderStatusPositiveDark: ColorSemanticToken { Self.otherMockThemeSemanticColorToken } - - override var colorBorderStatusInfoLight: ColorSemanticToken { Self.otherMockThemeSemanticColorToken } - override var colorBorderStatusInfoDark: ColorSemanticToken { Self.otherMockThemeSemanticColorToken } - - override var colorBorderStatusWarningLight: ColorSemanticToken { Self.otherMockThemeSemanticColorToken } - override var colorBorderStatusWarningDark: ColorSemanticToken { Self.otherMockThemeSemanticColorToken } - - override var colorBorderStatusNegativeLight: ColorSemanticToken { Self.otherMockThemeSemanticColorToken } - override var colorBorderStatusNegativeDark: ColorSemanticToken { Self.otherMockThemeSemanticColorToken } - - override var colorBorderStatusAccentLight: ColorSemanticToken { Self.otherMockThemeSemanticColorToken } - override var colorBorderStatusAccentDark: ColorSemanticToken { Self.otherMockThemeSemanticColorToken } - - override var colorBorderOnBgBrandPrimaryLight: ColorSemanticToken { Self.otherMockThemeSemanticColorToken } - override var colorBorderOnBgBrandPrimaryDark: ColorSemanticToken { Self.otherMockThemeSemanticColorToken } - - override var colorBorderOnBgBrandSecondaryLight: ColorSemanticToken { Self.otherMockThemeSemanticColorToken } - override var colorBorderOnBgBrandSecondaryDark: ColorSemanticToken { Self.otherMockThemeSemanticColorToken } - - override var colorBorderOnBgBrandTertiaryLight: ColorSemanticToken { Self.otherMockThemeSemanticColorToken } - override var colorBorderOnBgBrandTertiaryDark: ColorSemanticToken { Self.otherMockThemeSemanticColorToken } + override var colorBorderOnBrandPrimaryLight: ColorSemanticToken { Self.otherMockThemeSemanticColorToken } + override var colorBorderOnBrandPrimaryDark: ColorSemanticToken { Self.otherMockThemeSemanticColorToken } // MARK: Semantic token - Colors - Action @@ -782,9 +654,6 @@ final class OtherMockTheme: MockTheme, @unchecked Sendable { override var colorActionVisitedLight: ColorSemanticToken { Self.otherMockThemeSemanticColorToken } override var colorActionVisitedDark: ColorSemanticToken { Self.otherMockThemeSemanticColorToken } - override var colorActionVistedOnBgEmphasizedLight: ColorSemanticToken { Self.otherMockThemeSemanticColorToken } - override var colorActionVistedOnBgEmphasizedDark: ColorSemanticToken { Self.otherMockThemeSemanticColorToken } - override var colorActionPrimaryEnabledLight: ColorSemanticToken { Self.otherMockThemeSemanticColorToken } override var colorActionPrimaryEnabledDark: ColorSemanticToken { Self.otherMockThemeSemanticColorToken } @@ -868,6 +737,27 @@ final class OtherMockTheme: MockTheme, @unchecked Sendable { override var colorAlwaysAccentLight: ColorSemanticToken { Self.otherMockThemeSemanticColorToken } override var colorAlwaysAccentDark: ColorSemanticToken { Self.otherMockThemeSemanticColorToken } + override var colorAlwaysOnAccentLight: ColorSemanticToken { Self.otherMockThemeSemanticColorToken } + override var colorAlwaysOnAccentDark: ColorSemanticToken { Self.otherMockThemeSemanticColorToken } + + override var colorAlwaysOnBlackLight: ColorSemanticToken { Self.otherMockThemeSemanticColorToken } + override var colorAlwaysOnBlackDark: ColorSemanticToken { Self.otherMockThemeSemanticColorToken } + + override var colorAlwaysOnInfoLight: ColorSemanticToken { Self.otherMockThemeSemanticColorToken } + override var colorAlwaysOnInfoDark: ColorSemanticToken { Self.otherMockThemeSemanticColorToken } + + override var colorAlwaysOnNegativeLight: ColorSemanticToken { Self.otherMockThemeSemanticColorToken } + override var colorAlwaysOnNegativeDark: ColorSemanticToken { Self.otherMockThemeSemanticColorToken } + + override var colorAlwaysOnPositiveLight: ColorSemanticToken { Self.otherMockThemeSemanticColorToken } + override var colorAlwaysOnPositiveDark: ColorSemanticToken { Self.otherMockThemeSemanticColorToken } + + override var colorAlwaysOnWarningLight: ColorSemanticToken { Self.otherMockThemeSemanticColorToken } + override var colorAlwaysOnWarningDark: ColorSemanticToken { Self.otherMockThemeSemanticColorToken } + + override var colorAlwaysOnWhiteLight: ColorSemanticToken { Self.otherMockThemeSemanticColorToken } + override var colorAlwaysOnWhiteDark: ColorSemanticToken { Self.otherMockThemeSemanticColorToken } + // MARK: Semantic token - Colors - Transparent override var colorTransparentDefaultLight: ColorSemanticToken { Self.otherMockThemeSemanticColorToken } @@ -916,15 +806,6 @@ final class OtherMockTheme: MockTheme, @unchecked Sendable { // MARK: Semantic token - Colors - Decorative - override var colorDecorativePrimaryLight: ColorSemanticToken { Self.otherMockThemeSemanticColorToken } - override var colorDecorativePrimaryDark: ColorSemanticToken { Self.otherMockThemeSemanticColorToken } - - override var colorDecorativeSecondaryLight: ColorSemanticToken { Self.otherMockThemeSemanticColorToken } - override var colorDecorativeSecondaryDark: ColorSemanticToken { Self.otherMockThemeSemanticColorToken } - - override var colorDecorativeTertiaryLight: ColorSemanticToken { Self.otherMockThemeSemanticColorToken } - override var colorDecorativeTertiaryDark: ColorSemanticToken { Self.otherMockThemeSemanticColorToken } - override var colorDecorativeNeutralMutedLight: ColorSemanticToken { Self.otherMockThemeSemanticColorToken } override var colorDecorativeNeutralMutedDark: ColorSemanticToken { Self.otherMockThemeSemanticColorToken } @@ -1184,6 +1065,109 @@ final class OtherMockTheme: MockTheme, @unchecked Sendable { override var colorChartSequentialAccent5Tint900Light: ColorSemanticToken { Self.otherMockThemeSemanticColorToken } override var colorChartSequentialAccent5Tint900Dark: ColorSemanticToken { Self.otherMockThemeSemanticColorToken } + + // MARK: - Semantic token - Colors - Gradient + + override var colorGradientSkeletonMiddleLight: ColorSemanticToken { Self.otherMockThemeSemanticColorToken } + override var colorGradientSkeletonMiddleDark: ColorSemanticToken { Self.otherMockThemeSemanticColorToken } + + override var colorGradientSkeletonMiddleOnBgEmphasizedLight: ColorSemanticToken { Self.otherMockThemeSemanticColorToken } + override var colorGradientSkeletonMiddleOnBgEmphasizedDark: ColorSemanticToken { Self.otherMockThemeSemanticColorToken } + + override var colorGradientSkeletonStartEndLight: ColorSemanticToken { Self.otherMockThemeSemanticColorToken } + override var colorGradientSkeletonStartEndDark: ColorSemanticToken { Self.otherMockThemeSemanticColorToken } + + override var colorGradientSkeletonStartEndOnBgEmphasizedLight: ColorSemanticToken { Self.otherMockThemeSemanticColorToken } + override var colorGradientSkeletonStartEndOnBgEmphasizedDark: ColorSemanticToken { Self.otherMockThemeSemanticColorToken } + + // MARK: Semantic token - Colors - Content - On Action + + override var colorContentOnActionDisabledLight: ColorSemanticToken { Self.otherMockThemeSemanticColorToken } + override var colorContentOnActionDisabledDark: ColorSemanticToken { Self.otherMockThemeSemanticColorToken } + + override var colorContentOnActionDisabledOnBgEmphasizedLight: ColorSemanticToken { Self.otherMockThemeSemanticColorToken } + override var colorContentOnActionDisabledOnBgEmphasizedDark: ColorSemanticToken { Self.otherMockThemeSemanticColorToken } + + override var colorContentOnActionNegativeLight: ColorSemanticToken { Self.otherMockThemeSemanticColorToken } + override var colorContentOnActionNegativeDark: ColorSemanticToken { Self.otherMockThemeSemanticColorToken } + + override var colorContentOnActionPrimaryEnabledLight: ColorSemanticToken { Self.otherMockThemeSemanticColorToken } + override var colorContentOnActionPrimaryEnabledDark: ColorSemanticToken { Self.otherMockThemeSemanticColorToken } + + override var colorContentOnActionPrimaryEnabledOnBgEmphasizedLight: ColorSemanticToken { Self.otherMockThemeSemanticColorToken } + override var colorContentOnActionPrimaryEnabledOnBgEmphasizedDark: ColorSemanticToken { Self.otherMockThemeSemanticColorToken } + + override var colorContentOnActionPrimaryFocusLight: ColorSemanticToken { Self.otherMockThemeSemanticColorToken } + override var colorContentOnActionPrimaryFocusDark: ColorSemanticToken { Self.otherMockThemeSemanticColorToken } + + override var colorContentOnActionPrimaryFocusOnBgEmphasizedLight: ColorSemanticToken { Self.otherMockThemeSemanticColorToken } + override var colorContentOnActionPrimaryFocusOnBgEmphasizedDark: ColorSemanticToken { Self.otherMockThemeSemanticColorToken } + + override var colorContentOnActionPrimaryHoverLight: ColorSemanticToken { Self.otherMockThemeSemanticColorToken } + override var colorContentOnActionPrimaryHoverDark: ColorSemanticToken { Self.otherMockThemeSemanticColorToken } + + override var colorContentOnActionPrimaryHoverOnBgEmphasizedLight: ColorSemanticToken { Self.otherMockThemeSemanticColorToken } + override var colorContentOnActionPrimaryHoverOnBgEmphasizedDark: ColorSemanticToken { Self.otherMockThemeSemanticColorToken } + + override var colorContentOnActionPrimaryLoadingLight: ColorSemanticToken { Self.otherMockThemeSemanticColorToken } + override var colorContentOnActionPrimaryLoadingDark: ColorSemanticToken { Self.otherMockThemeSemanticColorToken } + + override var colorContentOnActionPrimaryLoadingOnBgEmphasizedLight: ColorSemanticToken { Self.otherMockThemeSemanticColorToken } + override var colorContentOnActionPrimaryLoadingOnBgEmphasizedDark: ColorSemanticToken { Self.otherMockThemeSemanticColorToken } + + override var colorContentOnActionPrimaryPressedLight: ColorSemanticToken { Self.otherMockThemeSemanticColorToken } + override var colorContentOnActionPrimaryPressedDark: ColorSemanticToken { Self.otherMockThemeSemanticColorToken } + + override var colorContentOnActionPrimaryPressedOnBgEmphasizedLight: ColorSemanticToken { Self.otherMockThemeSemanticColorToken } + override var colorContentOnActionPrimaryPressedOnBgEmphasizedDark: ColorSemanticToken { Self.otherMockThemeSemanticColorToken } + + override var colorContentOnBrandPrimaryLight: ColorSemanticToken { Self.otherMockThemeSemanticColorToken } + override var colorContentOnBrandPrimaryDark: ColorSemanticToken { Self.otherMockThemeSemanticColorToken } + + override var colorContentOnStatusAccentEmphasizedLight: ColorSemanticToken { Self.otherMockThemeSemanticColorToken } + override var colorContentOnStatusAccentEmphasizedDark: ColorSemanticToken { Self.otherMockThemeSemanticColorToken } + + override var colorContentOnStatusAccentMutedLight: ColorSemanticToken { Self.otherMockThemeSemanticColorToken } + override var colorContentOnStatusAccentMutedDark: ColorSemanticToken { Self.otherMockThemeSemanticColorToken } + + override var colorContentOnStatusAccentMutedOnBgEmphasizedLight: ColorSemanticToken { Self.otherMockThemeSemanticColorToken } + override var colorContentOnStatusAccentMutedOnBgEmphasizedDark: ColorSemanticToken { Self.otherMockThemeSemanticColorToken } + + override var colorContentOnStatusInfoEmphasizedLight: ColorSemanticToken { Self.otherMockThemeSemanticColorToken } + override var colorContentOnStatusInfoEmphasizedDark: ColorSemanticToken { Self.otherMockThemeSemanticColorToken } + + override var colorContentOnStatusInfoMutedLight: ColorSemanticToken { Self.otherMockThemeSemanticColorToken } + override var colorContentOnStatusInfoMutedDark: ColorSemanticToken { Self.otherMockThemeSemanticColorToken } + + override var colorContentOnStatusInfoMutedOnBgEmphasizedLight: ColorSemanticToken { Self.otherMockThemeSemanticColorToken } + override var colorContentOnStatusInfoMutedOnBgEmphasizedDark: ColorSemanticToken { Self.otherMockThemeSemanticColorToken } + + override var colorContentOnStatusNegativeEmphasizedLight: ColorSemanticToken { Self.otherMockThemeSemanticColorToken } + override var colorContentOnStatusNegativeEmphasizedDark: ColorSemanticToken { Self.otherMockThemeSemanticColorToken } + + override var colorContentOnStatusNegativeMutedLight: ColorSemanticToken { Self.otherMockThemeSemanticColorToken } + override var colorContentOnStatusNegativeMutedDark: ColorSemanticToken { Self.otherMockThemeSemanticColorToken } + + override var colorContentOnStatusNegativeMutedOnBgEmphasizedLight: ColorSemanticToken { Self.otherMockThemeSemanticColorToken } + override var colorContentOnStatusNegativeMutedOnBgEmphasizedDark: ColorSemanticToken { Self.otherMockThemeSemanticColorToken } + + override var colorContentOnStatusPositiveEmphasizedLight: ColorSemanticToken { Self.otherMockThemeSemanticColorToken } + override var colorContentOnStatusPositiveEmphasizedDark: ColorSemanticToken { Self.otherMockThemeSemanticColorToken } + + override var colorContentOnStatusPositiveMutedLight: ColorSemanticToken { Self.otherMockThemeSemanticColorToken } + override var colorContentOnStatusPositiveMutedDark: ColorSemanticToken { Self.otherMockThemeSemanticColorToken } + + override var colorContentOnStatusPositiveMutedOnBgEmphasizedLight: ColorSemanticToken { Self.otherMockThemeSemanticColorToken } + override var colorContentOnStatusPositiveMutedOnBgEmphasizedDark: ColorSemanticToken { Self.otherMockThemeSemanticColorToken } + + override var colorContentOnStatusWarningEmphasizedLight: ColorSemanticToken { Self.otherMockThemeSemanticColorToken } + override var colorContentOnStatusWarningEmphasizedDark: ColorSemanticToken { Self.otherMockThemeSemanticColorToken } + + override var colorContentOnStatusWarningMutedLight: ColorSemanticToken { Self.otherMockThemeSemanticColorToken } + override var colorContentOnStatusWarningMutedDark: ColorSemanticToken { Self.otherMockThemeSemanticColorToken } + + override var colorContentOnStatusWarningMutedOnBgEmphasizedLight: ColorSemanticToken { Self.otherMockThemeSemanticColorToken } + override var colorContentOnStatusWarningMutedOnBgEmphasizedDark: ColorSemanticToken { Self.otherMockThemeSemanticColorToken } } // swiftlint:enable required_deinit diff --git a/OUDS/Core/OUDS/Tests/OUDSTheme/TestThemeOverrideOfColorMultipleSemanticTokens.swift b/OUDS/Core/OUDS/Tests/OUDSTheme/TestThemeOverrideOfColorMultipleSemanticTokens.swift index 3cd4d5557..b82662901 100644 --- a/OUDS/Core/OUDS/Tests/OUDSTheme/TestThemeOverrideOfColorMultipleSemanticTokens.swift +++ b/OUDS/Core/OUDS/Tests/OUDSTheme/TestThemeOverrideOfColorMultipleSemanticTokens.swift @@ -64,16 +64,6 @@ final class TestThemeOverrideOfColorMultipleSemanticTokens: XCTestCase { XCTAssertTrue(inheritedTheme.colorBgBrandPrimary == OtherMockTheme.otherMockThemeMultipleColorSemanticTokens) } - func testInheritedThemeCanOverrideSemanticTokenColorBgBrandSecondary() throws { - XCTAssertNotEqual(inheritedTheme.colorBgBrandSecondary, abstractTheme.colorBgBrandSecondary) - XCTAssertTrue(inheritedTheme.colorBgBrandSecondary == OtherMockTheme.otherMockThemeMultipleColorSemanticTokens) - } - - func testInheritedThemeCanOverrideSemanticTokenColorBgBrandTertiary() throws { - XCTAssertNotEqual(inheritedTheme.colorBgBrandTertiary, abstractTheme.colorBgBrandTertiary) - XCTAssertTrue(inheritedTheme.colorBgBrandTertiary == OtherMockTheme.otherMockThemeMultipleColorSemanticTokens) - } - func testInheritedThemeCanOverrideSemanticTokenColorBgStatusNeutral() throws { XCTAssertNotEqual(inheritedTheme.colorBgStatusNeutral, abstractTheme.colorBgStatusNeutral) XCTAssertTrue(inheritedTheme.colorBgStatusNeutral == OtherMockTheme.otherMockThemeMultipleColorSemanticTokens) @@ -166,9 +156,9 @@ final class TestThemeOverrideOfColorMultipleSemanticTokens: XCTestCase { XCTAssertTrue(inheritedTheme.colorContentDefault == OtherMockTheme.otherMockThemeMultipleColorSemanticTokens) } - func testInheritedThemeCanOverrideSemanticTokenColorContentContentDefaultOnBgEmphasized() throws { - XCTAssertNotEqual(inheritedTheme.colorContentContentDefaultOnBgEmphasized, abstractTheme.colorContentContentDefaultOnBgEmphasized) - XCTAssertTrue(inheritedTheme.colorContentContentDefaultOnBgEmphasized == OtherMockTheme.otherMockThemeMultipleColorSemanticTokens) + func testInheritedThemeCanOverrideSemanticTokenColorContentDefaultOnBgEmphasized() throws { + XCTAssertNotEqual(inheritedTheme.colorContentDefaultOnBgEmphasized, abstractTheme.colorContentDefaultOnBgEmphasized) + XCTAssertTrue(inheritedTheme.colorContentDefaultOnBgEmphasized == OtherMockTheme.otherMockThemeMultipleColorSemanticTokens) } func testInheritedThemeCanOverrideSemanticTokenColorContentMuted() throws { @@ -176,9 +166,9 @@ final class TestThemeOverrideOfColorMultipleSemanticTokens: XCTestCase { XCTAssertTrue(inheritedTheme.colorContentMuted == OtherMockTheme.otherMockThemeMultipleColorSemanticTokens) } - func testInheritedThemeCanOverrideSemanticTokenColorContentContentMutedOnBgEmphasized() throws { - XCTAssertNotEqual(inheritedTheme.colorContentContentMutedOnBgEmphasized, abstractTheme.colorContentContentMutedOnBgEmphasized) - XCTAssertTrue(inheritedTheme.colorContentContentMutedOnBgEmphasized == OtherMockTheme.otherMockThemeMultipleColorSemanticTokens) + func testInheritedThemeCanOverrideSemanticTokenColorContentMutedOnBgEmphasized() throws { + XCTAssertNotEqual(inheritedTheme.colorContentMutedOnBgEmphasized, abstractTheme.colorContentMutedOnBgEmphasized) + XCTAssertTrue(inheritedTheme.colorContentMutedOnBgEmphasized == OtherMockTheme.otherMockThemeMultipleColorSemanticTokens) } func testInheritedThemeCanOverrideSemanticTokenColorContentDisabled() throws { @@ -186,9 +176,9 @@ final class TestThemeOverrideOfColorMultipleSemanticTokens: XCTestCase { XCTAssertTrue(inheritedTheme.colorContentDisabled == OtherMockTheme.otherMockThemeMultipleColorSemanticTokens) } - func testInheritedThemeCanOverrideSemanticTokenColorContentContentDisabledOnBgEmphasized() throws { - XCTAssertNotEqual(inheritedTheme.colorContentContentDisabledOnBgEmphasized, abstractTheme.colorContentContentDisabledOnBgEmphasized) - XCTAssertTrue(inheritedTheme.colorContentContentDisabledOnBgEmphasized == OtherMockTheme.otherMockThemeMultipleColorSemanticTokens) + func testInheritedThemeCanOverrideSemanticTokenColorContentDisabledOnBgEmphasized() throws { + XCTAssertNotEqual(inheritedTheme.colorContentDisabledOnBgEmphasized, abstractTheme.colorContentDisabledOnBgEmphasized) + XCTAssertTrue(inheritedTheme.colorContentDisabledOnBgEmphasized == OtherMockTheme.otherMockThemeMultipleColorSemanticTokens) } func testInheritedThemeCanOverrideSemanticTokenColorContentBrandPrimary() throws { @@ -196,17 +186,12 @@ final class TestThemeOverrideOfColorMultipleSemanticTokens: XCTestCase { XCTAssertTrue(inheritedTheme.colorContentBrandPrimary == OtherMockTheme.otherMockThemeMultipleColorSemanticTokens) } - func testInheritedThemeCanOverrideSemanticTokenColorContentBrandSecondary() throws { - XCTAssertNotEqual(inheritedTheme.colorContentBrandSecondary, abstractTheme.colorContentBrandSecondary) - XCTAssertTrue(inheritedTheme.colorContentBrandSecondary == OtherMockTheme.otherMockThemeMultipleColorSemanticTokens) - } - - func testInheritedThemeCanOverrideSemanticTokenColorContentBrandTertiary() throws { - XCTAssertNotEqual(inheritedTheme.colorContentBrandTertiary, abstractTheme.colorContentBrandTertiary) - XCTAssertTrue(inheritedTheme.colorContentBrandTertiary == OtherMockTheme.otherMockThemeMultipleColorSemanticTokens) + func testInheritedThemeCanOverrideSemanticTokenColorContentBrandPrimaryOnBgEmphasized() throws { + XCTAssertNotEqual(inheritedTheme.colorContentBrandPrimaryOnBgEmphasized, abstractTheme.colorContentBrandPrimaryOnBgEmphasized) + XCTAssertTrue(inheritedTheme.colorContentBrandPrimaryOnBgEmphasized == OtherMockTheme.otherMockThemeMultipleColorSemanticTokens) } - func testInheritedThemeCanOverrideSemanticTokenColorContentStatusPositive() throws { + func testInheritedThemeCanOverideSemanticTokenColorContentStatusPositive() throws { XCTAssertNotEqual(inheritedTheme.colorContentStatusPositive, abstractTheme.colorContentStatusPositive) XCTAssertTrue(inheritedTheme.colorContentStatusPositive == OtherMockTheme.otherMockThemeMultipleColorSemanticTokens) } @@ -226,101 +211,151 @@ final class TestThemeOverrideOfColorMultipleSemanticTokens: XCTestCase { XCTAssertTrue(inheritedTheme.colorContentStatusNegative == OtherMockTheme.otherMockThemeMultipleColorSemanticTokens) } - func testInheritedThemeCanOverrideSemanticTokenColorContentStatusAccent() throws { - XCTAssertNotEqual(inheritedTheme.colorContentStatusAccent, abstractTheme.colorContentStatusAccent) - XCTAssertTrue(inheritedTheme.colorContentStatusAccent == OtherMockTheme.otherMockThemeMultipleColorSemanticTokens) + // MARK: Semantic token - Colors - Content - On Action + + func testInheritedThemeCanOverrideSemanticTokenColorContentOnActionDisabled() throws { + XCTAssertNotEqual(inheritedTheme.colorContentOnActionDisabled, abstractTheme.colorContentOnActionDisabled) + XCTAssertTrue(inheritedTheme.colorContentOnActionDisabled == OtherMockTheme.otherMockThemeMultipleColorSemanticTokens) + } + + func testInheritedThemeCanOverrideSemanticTokenColorContentOnActionDisabledOnBgEmphasized() throws { + XCTAssertNotEqual(inheritedTheme.colorContentOnActionDisabledOnBgEmphasized, abstractTheme.colorContentOnActionDisabledOnBgEmphasized) + XCTAssertTrue(inheritedTheme.colorContentOnActionDisabledOnBgEmphasized == OtherMockTheme.otherMockThemeMultipleColorSemanticTokens) + } + + func testInheritedThemeCanOverrideSemanticTokenColorContentOnActionNegative() throws { + XCTAssertNotEqual(inheritedTheme.colorContentOnActionNegative, abstractTheme.colorContentOnActionNegative) + XCTAssertTrue(inheritedTheme.colorContentOnActionNegative == OtherMockTheme.otherMockThemeMultipleColorSemanticTokens) + } + + func testInheritedThemeCanOverrideSemanticTokenColorContentOnActionPrimaryEnabled() throws { + XCTAssertNotEqual(inheritedTheme.colorContentOnActionPrimaryEnabled, abstractTheme.colorContentOnActionPrimaryEnabled) + XCTAssertTrue(inheritedTheme.colorContentOnActionPrimaryEnabled == OtherMockTheme.otherMockThemeMultipleColorSemanticTokens) + } + + func testInheritedThemeCanOverrideSemanticTokenColorContentOnActionPrimaryEnabledOnBgEmphasized() throws { + XCTAssertNotEqual(inheritedTheme.colorContentOnActionPrimaryEnabledOnBgEmphasized, abstractTheme.colorContentOnActionPrimaryEnabledOnBgEmphasized) + XCTAssertTrue(inheritedTheme.colorContentOnActionPrimaryEnabledOnBgEmphasized == OtherMockTheme.otherMockThemeMultipleColorSemanticTokens) + } + + func testInheritedThemeCanOverrideSemanticTokenColorContentOnActionPrimaryFocus() throws { + XCTAssertNotEqual(inheritedTheme.colorContentOnActionPrimaryFocus, abstractTheme.colorContentOnActionPrimaryFocus) + XCTAssertTrue(inheritedTheme.colorContentOnActionPrimaryFocus == OtherMockTheme.otherMockThemeMultipleColorSemanticTokens) + } + + func testInheritedThemeCanOverrideSemanticTokenColorContentOnActionPrimaryFocusOnBgEmphasized() throws { + XCTAssertNotEqual(inheritedTheme.colorContentOnActionPrimaryFocusOnBgEmphasized, abstractTheme.colorContentOnActionPrimaryFocusOnBgEmphasized) + XCTAssertTrue(inheritedTheme.colorContentOnActionPrimaryFocusOnBgEmphasized == OtherMockTheme.otherMockThemeMultipleColorSemanticTokens) + } + + func testInheritedThemeCanOverrideSemanticTokenColorContentOnActionPrimaryHover() throws { + XCTAssertNotEqual(inheritedTheme.colorContentOnActionPrimaryHover, abstractTheme.colorContentOnActionPrimaryHover) + XCTAssertTrue(inheritedTheme.colorContentOnActionPrimaryHover == OtherMockTheme.otherMockThemeMultipleColorSemanticTokens) } - // MARK: Semantic token - Colors - Content - On Background + func testInheritedThemeCanOverrideSemanticTokenColorContentOnActionPrimaryHoverOnBgEmphasized() throws { + XCTAssertNotEqual(inheritedTheme.colorContentOnActionPrimaryHoverOnBgEmphasized, abstractTheme.colorContentOnActionPrimaryHoverOnBgEmphasized) + XCTAssertTrue(inheritedTheme.colorContentOnActionPrimaryHoverOnBgEmphasized == OtherMockTheme.otherMockThemeMultipleColorSemanticTokens) + } + + func testInheritedThemeCanOverrideSemanticTokenColorContentOnActionPrimaryLoading() throws { + XCTAssertNotEqual(inheritedTheme.colorContentOnActionPrimaryLoading, abstractTheme.colorContentOnActionPrimaryLoading) + XCTAssertTrue(inheritedTheme.colorContentOnActionPrimaryLoading == OtherMockTheme.otherMockThemeMultipleColorSemanticTokens) + } - func testInheritedThemeCanOverrideSemanticTokenColorContentOnBgPrimary() throws { - XCTAssertNotEqual(inheritedTheme.colorContentOnBgPrimary, abstractTheme.colorContentOnBgPrimary) - XCTAssertTrue(inheritedTheme.colorContentOnBgPrimary == OtherMockTheme.otherMockThemeMultipleColorSemanticTokens) + func testInheritedThemeCanOverrideSemanticTokenColorContentOnActionPrimaryLoadingOnBgEmphasized() throws { + XCTAssertNotEqual(inheritedTheme.colorContentOnActionPrimaryLoadingOnBgEmphasized, abstractTheme.colorContentOnActionPrimaryLoadingOnBgEmphasized) + XCTAssertTrue(inheritedTheme.colorContentOnActionPrimaryLoadingOnBgEmphasized == OtherMockTheme.otherMockThemeMultipleColorSemanticTokens) } - func testInheritedThemeCanOverrideSemanticTokenColorContentOnBgSecondary() throws { - XCTAssertNotEqual(inheritedTheme.colorContentOnBgSecondary, abstractTheme.colorContentOnBgSecondary) - XCTAssertTrue(inheritedTheme.colorContentOnBgSecondary == OtherMockTheme.otherMockThemeMultipleColorSemanticTokens) + func testInheritedThemeCanOverrideSemanticTokenColorContentOnActionPrimaryPressed() throws { + XCTAssertNotEqual(inheritedTheme.colorContentOnActionPrimaryPressed, abstractTheme.colorContentOnActionPrimaryPressed) + XCTAssertTrue(inheritedTheme.colorContentOnActionPrimaryPressed == OtherMockTheme.otherMockThemeMultipleColorSemanticTokens) } - func testInheritedThemeCanOverrideSemanticTokenColorContentOnBgTertiary() throws { - XCTAssertNotEqual(inheritedTheme.colorContentOnBgTertiary, abstractTheme.colorContentOnBgTertiary) - XCTAssertTrue(inheritedTheme.colorContentOnBgTertiary == OtherMockTheme.otherMockThemeMultipleColorSemanticTokens) + func testInheritedThemeCanOverrideSemanticTokenColorContentOnActionPrimaryPressedOnBgEmphasized() throws { + XCTAssertNotEqual(inheritedTheme.colorContentOnActionPrimaryPressedOnBgEmphasized, abstractTheme.colorContentOnActionPrimaryPressedOnBgEmphasized) + XCTAssertTrue(inheritedTheme.colorContentOnActionPrimaryPressedOnBgEmphasized == OtherMockTheme.otherMockThemeMultipleColorSemanticTokens) } - func testInheritedThemeCanOverrideSemanticTokenColorContentOnBgStatusPositiveMuted() throws { - XCTAssertNotEqual(inheritedTheme.colorContentOnBgStatusPositiveMuted, abstractTheme.colorContentOnBgStatusPositiveMuted) - XCTAssertTrue(inheritedTheme.colorContentOnBgStatusPositiveMuted == OtherMockTheme.otherMockThemeMultipleColorSemanticTokens) + func testInheritedThemeCanOverrideSemanticTokenColorContentOnBrandPrimary() throws { + XCTAssertNotEqual(inheritedTheme.colorContentOnBrandPrimary, abstractTheme.colorContentOnBrandPrimary) + XCTAssertTrue(inheritedTheme.colorContentOnBrandPrimary == OtherMockTheme.otherMockThemeMultipleColorSemanticTokens) } - func testInheritedThemeCanOverrideSemanticTokenColorContentOnBgStatusPositiveMutedOnBgEmphasized() throws { - XCTAssertNotEqual(inheritedTheme.colorContentOnBgStatusPositiveMutedOnBgEmphasized, abstractTheme.colorContentOnBgStatusPositiveMutedOnBgEmphasized) - XCTAssertTrue(inheritedTheme.colorContentOnBgStatusPositiveMutedOnBgEmphasized == OtherMockTheme.otherMockThemeMultipleColorSemanticTokens) + func testInheritedThemeCanOverrideSemanticTokenColorContentOnStatusAccentEmphasized() throws { + XCTAssertNotEqual(inheritedTheme.colorContentOnStatusAccentEmphasized, abstractTheme.colorContentOnStatusAccentEmphasized) + XCTAssertTrue(inheritedTheme.colorContentOnStatusAccentEmphasized == OtherMockTheme.otherMockThemeMultipleColorSemanticTokens) } - func testInheritedThemeCanOverrideSemanticTokenColorContentOnBgStatusPositiveEmphasized() throws { - XCTAssertNotEqual(inheritedTheme.colorContentOnBgStatusPositiveEmphasized, abstractTheme.colorContentOnBgStatusPositiveEmphasized) - XCTAssertTrue(inheritedTheme.colorContentOnBgStatusPositiveEmphasized == OtherMockTheme.otherMockThemeMultipleColorSemanticTokens) + func testInheritedThemeCanOverrideSemanticTokenColorContentOnStatusAccentMuted() throws { + XCTAssertNotEqual(inheritedTheme.colorContentOnStatusAccentMuted, abstractTheme.colorContentOnStatusAccentMuted) + XCTAssertTrue(inheritedTheme.colorContentOnStatusAccentMuted == OtherMockTheme.otherMockThemeMultipleColorSemanticTokens) } - func testInheritedThemeCanOverrideSemanticTokenColorContentOnBgStatusInfoMuted() throws { - XCTAssertNotEqual(inheritedTheme.colorContentOnBgStatusInfoMuted, abstractTheme.colorContentOnBgStatusInfoMuted) - XCTAssertTrue(inheritedTheme.colorContentOnBgStatusInfoMuted == OtherMockTheme.otherMockThemeMultipleColorSemanticTokens) + func testInheritedThemeCanOverrideSemanticTokenColorContentOnStatusAccentMutedOnBgEmphasized() throws { + XCTAssertNotEqual(inheritedTheme.colorContentOnStatusAccentMutedOnBgEmphasized, abstractTheme.colorContentOnStatusAccentMutedOnBgEmphasized) + XCTAssertTrue(inheritedTheme.colorContentOnStatusAccentMutedOnBgEmphasized == OtherMockTheme.otherMockThemeMultipleColorSemanticTokens) } - func testInheritedThemeCanOverrideSemanticTokenColorContentOnBgStatusInfoMutedOnBgEmphasized() throws { - XCTAssertNotEqual(inheritedTheme.colorContentOnBgStatusInfoMutedOnBgEmphasized, abstractTheme.colorContentOnBgStatusInfoMutedOnBgEmphasized) - XCTAssertTrue(inheritedTheme.colorContentOnBgStatusInfoMutedOnBgEmphasized == OtherMockTheme.otherMockThemeMultipleColorSemanticTokens) + func testInheritedThemeCanOverrideSemanticTokenColorContentOnStatusInfoEmphasized() throws { + XCTAssertNotEqual(inheritedTheme.colorContentOnStatusInfoEmphasized, abstractTheme.colorContentOnStatusInfoEmphasized) + XCTAssertTrue(inheritedTheme.colorContentOnStatusInfoEmphasized == OtherMockTheme.otherMockThemeMultipleColorSemanticTokens) } - func testInheritedThemeCanOverrideSemanticTokenColorContentOnBgStatusInfoEmphasized() throws { - XCTAssertNotEqual(inheritedTheme.colorContentOnBgStatusInfoEmphasized, abstractTheme.colorContentOnBgStatusInfoEmphasized) - XCTAssertTrue(inheritedTheme.colorContentOnBgStatusInfoEmphasized == OtherMockTheme.otherMockThemeMultipleColorSemanticTokens) + func testInheritedThemeCanOverrideSemanticTokenColorContentOnStatusInfoMuted() throws { + XCTAssertNotEqual(inheritedTheme.colorContentOnStatusInfoMuted, abstractTheme.colorContentOnStatusInfoMuted) + XCTAssertTrue(inheritedTheme.colorContentOnStatusInfoMuted == OtherMockTheme.otherMockThemeMultipleColorSemanticTokens) } - func testInheritedThemeCanOverrideSemanticTokenColorContentOnBgStatusWarningMuted() throws { - XCTAssertNotEqual(inheritedTheme.colorContentOnBgStatusWarningMuted, abstractTheme.colorContentOnBgStatusWarningMuted) - XCTAssertTrue(inheritedTheme.colorContentOnBgStatusWarningMuted == OtherMockTheme.otherMockThemeMultipleColorSemanticTokens) + func testInheritedThemeCanOverrideSemanticTokenColorContentOnStatusInfoMutedOnBgEmphasized() throws { + XCTAssertNotEqual(inheritedTheme.colorContentOnStatusInfoMutedOnBgEmphasized, abstractTheme.colorContentOnStatusInfoMutedOnBgEmphasized) + XCTAssertTrue(inheritedTheme.colorContentOnStatusInfoMutedOnBgEmphasized == OtherMockTheme.otherMockThemeMultipleColorSemanticTokens) } - func testInheritedThemeCanOverrideSemanticTokenColorContentOnBgStatusWarningMutedOnBgEmphasized() throws { - XCTAssertNotEqual(inheritedTheme.colorContentOnBgStatusWarningMutedOnBgEmphasized, abstractTheme.colorContentOnBgStatusWarningMutedOnBgEmphasized) - XCTAssertTrue(inheritedTheme.colorContentOnBgStatusWarningMutedOnBgEmphasized == OtherMockTheme.otherMockThemeMultipleColorSemanticTokens) + func testInheritedThemeCanOverrideSemanticTokenColorContentOnStatusNegativeEmphasized() throws { + XCTAssertNotEqual(inheritedTheme.colorContentOnStatusNegativeEmphasized, abstractTheme.colorContentOnStatusNegativeEmphasized) + XCTAssertTrue(inheritedTheme.colorContentOnStatusNegativeEmphasized == OtherMockTheme.otherMockThemeMultipleColorSemanticTokens) } - func testInheritedThemeCanOverrideSemanticTokenColorContentOnBgStatusWarningEmphasized() throws { - XCTAssertNotEqual(inheritedTheme.colorContentOnBgStatusWarningEmphasized, abstractTheme.colorContentOnBgStatusWarningEmphasized) - XCTAssertTrue(inheritedTheme.colorContentOnBgStatusWarningEmphasized == OtherMockTheme.otherMockThemeMultipleColorSemanticTokens) + func testInheritedThemeCanOverrideSemanticTokenColorContentOnStatusNegativeMuted() throws { + XCTAssertNotEqual(inheritedTheme.colorContentOnStatusNegativeMuted, abstractTheme.colorContentOnStatusNegativeMuted) + XCTAssertTrue(inheritedTheme.colorContentOnStatusNegativeMuted == OtherMockTheme.otherMockThemeMultipleColorSemanticTokens) } - func testInheritedThemeCanOverrideSemanticTokenColorContentOnBgStatusNegativeMuted() throws { - XCTAssertNotEqual(inheritedTheme.colorContentOnBgStatusNegativeMuted, abstractTheme.colorContentOnBgStatusNegativeMuted) - XCTAssertTrue(inheritedTheme.colorContentOnBgStatusNegativeMuted == OtherMockTheme.otherMockThemeMultipleColorSemanticTokens) + func testInheritedThemeCanOverrideSemanticTokenColorContentOnStatusNegativeMutedOnBgEmphasized() throws { + XCTAssertNotEqual(inheritedTheme.colorContentOnStatusNegativeMutedOnBgEmphasized, abstractTheme.colorContentOnStatusNegativeMutedOnBgEmphasized) + XCTAssertTrue(inheritedTheme.colorContentOnStatusNegativeMutedOnBgEmphasized == OtherMockTheme.otherMockThemeMultipleColorSemanticTokens) } - func testInheritedThemeCanOverrideSemanticTokenColorContentOnBgStatusNegativeMutedOnBgEmphasized() throws { - XCTAssertNotEqual(inheritedTheme.colorContentOnBgStatusNegativeMutedOnBgEmphasized, abstractTheme.colorContentOnBgStatusNegativeMutedOnBgEmphasized) - XCTAssertTrue(inheritedTheme.colorContentOnBgStatusNegativeMutedOnBgEmphasized == OtherMockTheme.otherMockThemeMultipleColorSemanticTokens) + func testInheritedThemeCanOverrideSemanticTokenColorContentOnStatusPositiveEmphasized() throws { + XCTAssertNotEqual(inheritedTheme.colorContentOnStatusPositiveEmphasized, abstractTheme.colorContentOnStatusPositiveEmphasized) + XCTAssertTrue(inheritedTheme.colorContentOnStatusPositiveEmphasized == OtherMockTheme.otherMockThemeMultipleColorSemanticTokens) } - func testInheritedThemeCanOverrideSemanticTokenColorContentOnBgStatusNegativeEmphasized() throws { - XCTAssertNotEqual(inheritedTheme.colorContentOnBgStatusNegativeEmphasized, abstractTheme.colorContentOnBgStatusNegativeEmphasized) - XCTAssertTrue(inheritedTheme.colorContentOnBgStatusNegativeEmphasized == OtherMockTheme.otherMockThemeMultipleColorSemanticTokens) + func testInheritedThemeCanOverrideSemanticTokenColorContentOnStatusPositiveMuted() throws { + XCTAssertNotEqual(inheritedTheme.colorContentOnStatusPositiveMuted, abstractTheme.colorContentOnStatusPositiveMuted) + XCTAssertTrue(inheritedTheme.colorContentOnStatusPositiveMuted == OtherMockTheme.otherMockThemeMultipleColorSemanticTokens) } - func testInheritedThemeCanOverrideSemanticTokenColorContentOnBgStatusAccentMuted() throws { - XCTAssertNotEqual(inheritedTheme.colorContentOnBgStatusAccentMuted, abstractTheme.colorContentOnBgStatusAccentMuted) - XCTAssertTrue(inheritedTheme.colorContentOnBgStatusAccentMuted == OtherMockTheme.otherMockThemeMultipleColorSemanticTokens) + func testInheritedThemeCanOverrideSemanticTokenColorContentOnStatusPositiveMutedOnBgEmphasized() throws { + XCTAssertNotEqual(inheritedTheme.colorContentOnStatusPositiveMutedOnBgEmphasized, abstractTheme.colorContentOnStatusPositiveMutedOnBgEmphasized) + XCTAssertTrue(inheritedTheme.colorContentOnStatusPositiveMutedOnBgEmphasized == OtherMockTheme.otherMockThemeMultipleColorSemanticTokens) } - func testInheritedThemeCanOverrideSemanticTokenColorContentOnBgStatusAccentMutedOnBgEmphasized() throws { - XCTAssertNotEqual(inheritedTheme.colorContentOnBgStatusAccentMutedOnBgEmphasized, abstractTheme.colorContentOnBgStatusAccentMutedOnBgEmphasized) - XCTAssertTrue(inheritedTheme.colorContentOnBgStatusAccentMutedOnBgEmphasized == OtherMockTheme.otherMockThemeMultipleColorSemanticTokens) + func testInheritedThemeCanOverrideSemanticTokenColorContentOnStatusWarningEmphasized() throws { + XCTAssertNotEqual(inheritedTheme.colorContentOnStatusWarningEmphasized, abstractTheme.colorContentOnStatusWarningEmphasized) + XCTAssertTrue(inheritedTheme.colorContentOnStatusWarningEmphasized == OtherMockTheme.otherMockThemeMultipleColorSemanticTokens) } - func testInheritedThemeCanOverrideSemanticTokenColorContentOnBgStatusAccentedEmphasized() throws { - XCTAssertNotEqual(inheritedTheme.colorContentOnBgStatusAccentedEmphasized, abstractTheme.colorContentOnBgStatusAccentedEmphasized) - XCTAssertTrue(inheritedTheme.colorContentOnBgStatusAccentedEmphasized == OtherMockTheme.otherMockThemeMultipleColorSemanticTokens) + func testInheritedThemeCanOverrideSemanticTokenColorContentOnStatusWarningMuted() throws { + XCTAssertNotEqual(inheritedTheme.colorContentOnStatusWarningMuted, abstractTheme.colorContentOnStatusWarningMuted) + XCTAssertTrue(inheritedTheme.colorContentOnStatusWarningMuted == OtherMockTheme.otherMockThemeMultipleColorSemanticTokens) + } + + func testInheritedThemeCanOverrideSemanticTokenColorContentOnStatusWarningMutedOnBgEmphasized() throws { + XCTAssertNotEqual(inheritedTheme.colorContentOnStatusWarningMutedOnBgEmphasized, abstractTheme.colorContentOnStatusWarningMutedOnBgEmphasized) + XCTAssertTrue(inheritedTheme.colorContentOnStatusWarningMutedOnBgEmphasized == OtherMockTheme.otherMockThemeMultipleColorSemanticTokens) } // MARK: Semantic token - Colors - Border @@ -350,64 +385,34 @@ final class TestThemeOverrideOfColorMultipleSemanticTokens: XCTestCase { XCTAssertTrue(inheritedTheme.colorBorderFocus == OtherMockTheme.otherMockThemeMultipleColorSemanticTokens) } - func testInheritedThemeCanOverrideSemanticTokenColorBorderBrandPrimaryOnBgEmphasized() throws { - XCTAssertNotEqual(inheritedTheme.colorBorderBrandPrimaryOnBgEmphasized, abstractTheme.colorBorderBrandPrimaryOnBgEmphasized) - XCTAssertTrue(inheritedTheme.colorBorderBrandPrimaryOnBgEmphasized == OtherMockTheme.otherMockThemeMultipleColorSemanticTokens) - } - - func testInheritedThemeCanOverrideSemanticTokenColorBorderBrandPrimary() throws { - XCTAssertNotEqual(inheritedTheme.colorBorderBrandPrimary, abstractTheme.colorBorderBrandPrimary) - XCTAssertTrue(inheritedTheme.colorBorderBrandPrimary == OtherMockTheme.otherMockThemeMultipleColorSemanticTokens) - } - - func testInheritedThemeCanOverrideSemanticTokenColorBorderBrandSecondary() throws { - XCTAssertNotEqual(inheritedTheme.colorBorderBrandSecondary, abstractTheme.colorBorderBrandSecondary) - XCTAssertTrue(inheritedTheme.colorBorderBrandSecondary == OtherMockTheme.otherMockThemeMultipleColorSemanticTokens) - } - - func testInheritedThemeCanOverrideSemanticTokenColorBorderBrandTertiary() throws { - XCTAssertNotEqual(inheritedTheme.colorBorderBrandTertiary, abstractTheme.colorBorderBrandTertiary) - XCTAssertTrue(inheritedTheme.colorBorderBrandTertiary == OtherMockTheme.otherMockThemeMultipleColorSemanticTokens) - } - - func testInheritedThemeCanOverrideSemanticTokenColorBorderStatusPositive() throws { - XCTAssertNotEqual(inheritedTheme.colorBorderStatusPositive, abstractTheme.colorBorderStatusPositive) - XCTAssertTrue(inheritedTheme.colorBorderStatusPositive == OtherMockTheme.otherMockThemeMultipleColorSemanticTokens) - } - - func testInheritedThemeCanOverrideSemanticTokenColorBorderStatusInfo() throws { - XCTAssertNotEqual(inheritedTheme.colorBorderStatusInfo, abstractTheme.colorBorderStatusInfo) - XCTAssertTrue(inheritedTheme.colorBorderStatusInfo == OtherMockTheme.otherMockThemeMultipleColorSemanticTokens) + func testInheritedThemeCanOverrideSemanticTokenColorBorderFocusInset() throws { + XCTAssertNotEqual(inheritedTheme.colorBorderFocusInset, abstractTheme.colorBorderFocusInset) + XCTAssertTrue(inheritedTheme.colorBorderFocusInset == OtherMockTheme.otherMockThemeMultipleColorSemanticTokens) } - func testInheritedThemeCanOverrideSemanticTokenColorBorderStatusWarning() throws { - XCTAssertNotEqual(inheritedTheme.colorBorderStatusWarning, abstractTheme.colorBorderStatusWarning) - XCTAssertTrue(inheritedTheme.colorBorderStatusWarning == OtherMockTheme.otherMockThemeMultipleColorSemanticTokens) + func testInheritedThemeCanOverrideSemanticTokenColorBorderFocusInsetOnBgEmphasized() throws { + XCTAssertNotEqual(inheritedTheme.colorBorderFocusInsetOnBgEmphasized, abstractTheme.colorBorderFocusInsetOnBgEmphasized) + XCTAssertTrue(inheritedTheme.colorBorderFocusInsetOnBgEmphasized == OtherMockTheme.otherMockThemeMultipleColorSemanticTokens) } - func testInheritedThemeCanOverrideSemanticTokenColorBorderStatusNegative() throws { - XCTAssertNotEqual(inheritedTheme.colorBorderStatusNegative, abstractTheme.colorBorderStatusNegative) - XCTAssertTrue(inheritedTheme.colorBorderStatusNegative == OtherMockTheme.otherMockThemeMultipleColorSemanticTokens) + func testInheritedThemeCanOverrideSemanticTokenColorBorderFocusOnBgEmphasized() throws { + XCTAssertNotEqual(inheritedTheme.colorBorderFocusOnBgEmphasized, abstractTheme.colorBorderFocusOnBgEmphasized) + XCTAssertTrue(inheritedTheme.colorBorderFocusOnBgEmphasized == OtherMockTheme.otherMockThemeMultipleColorSemanticTokens) } - func testInheritedThemeCanOverrideSemanticTokenColorBorderStatusAccent() throws { - XCTAssertNotEqual(inheritedTheme.colorBorderStatusAccent, abstractTheme.colorBorderStatusAccent) - XCTAssertTrue(inheritedTheme.colorBorderStatusAccent == OtherMockTheme.otherMockThemeMultipleColorSemanticTokens) - } - - func testInheritedThemeCanOverrideSemanticTokenColorBorderOnBgBrandPrimary() throws { - XCTAssertNotEqual(inheritedTheme.colorBorderOnBgBrandPrimary, abstractTheme.colorBorderOnBgBrandPrimary) - XCTAssertTrue(inheritedTheme.colorBorderOnBgBrandPrimary == OtherMockTheme.otherMockThemeMultipleColorSemanticTokens) + func testInheritedThemeCanOverrideSemanticTokenColorBorderBrandPrimaryOnBgEmphasized() throws { + XCTAssertNotEqual(inheritedTheme.colorBorderBrandPrimaryOnBgEmphasized, abstractTheme.colorBorderBrandPrimaryOnBgEmphasized) + XCTAssertTrue(inheritedTheme.colorBorderBrandPrimaryOnBgEmphasized == OtherMockTheme.otherMockThemeMultipleColorSemanticTokens) } - func testInheritedThemeCanOverrideSemanticTokenColorBorderOnBgBrandSecondary() throws { - XCTAssertNotEqual(inheritedTheme.colorBorderOnBgBrandSecondary, abstractTheme.colorBorderOnBgBrandSecondary) - XCTAssertTrue(inheritedTheme.colorBorderOnBgBrandSecondary == OtherMockTheme.otherMockThemeMultipleColorSemanticTokens) + func testInheritedThemeCanOverrideSemanticTokenColorBorderBrandPrimary() throws { + XCTAssertNotEqual(inheritedTheme.colorBorderBrandPrimary, abstractTheme.colorBorderBrandPrimary) + XCTAssertTrue(inheritedTheme.colorBorderBrandPrimary == OtherMockTheme.otherMockThemeMultipleColorSemanticTokens) } - func testInheritedThemeCanOverrideSemanticTokenColorBorderOnBgBrandTertiary() throws { - XCTAssertNotEqual(inheritedTheme.colorBorderOnBgBrandTertiary, abstractTheme.colorBorderOnBgBrandTertiary) - XCTAssertTrue(inheritedTheme.colorBorderOnBgBrandTertiary == OtherMockTheme.otherMockThemeMultipleColorSemanticTokens) + func testInheritedThemeCanOverrideSemanticTokenColorBorderOnBrandPrimary() throws { + XCTAssertNotEqual(inheritedTheme.colorBorderOnBrandPrimary, abstractTheme.colorBorderOnBrandPrimary) + XCTAssertTrue(inheritedTheme.colorBorderOnBrandPrimary == OtherMockTheme.otherMockThemeMultipleColorSemanticTokens) } // MARK: Semantic token - Colors - Action @@ -437,11 +442,6 @@ final class TestThemeOverrideOfColorMultipleSemanticTokens: XCTestCase { XCTAssertTrue(inheritedTheme.colorActionVisited == OtherMockTheme.otherMockThemeMultipleColorSemanticTokens) } - func testInheritedThemeCanOverrideSemanticTokenColorActionVistedOnBgEmphasized() throws { - XCTAssertNotEqual(inheritedTheme.colorActionVistedOnBgEmphasized, abstractTheme.colorActionVistedOnBgEmphasized) - XCTAssertTrue(inheritedTheme.colorActionVistedOnBgEmphasized == OtherMockTheme.otherMockThemeMultipleColorSemanticTokens) - } - func testInheritedThemeCanOverrideSemanticTokenColorActionPrimaryEnabled() throws { XCTAssertNotEqual(inheritedTheme.colorActionPrimaryEnabled, abstractTheme.colorActionPrimaryEnabled) XCTAssertTrue(inheritedTheme.colorActionPrimaryEnabled == OtherMockTheme.otherMockThemeMultipleColorSemanticTokens) @@ -567,121 +567,6 @@ final class TestThemeOverrideOfColorMultipleSemanticTokens: XCTestCase { XCTAssertTrue(inheritedTheme.colorActionNegativeFocus == OtherMockTheme.otherMockThemeMultipleColorSemanticTokens) } - func testInheritedThemeCanOverrideSemanticTokenColorActionOnBgActionDisabled() throws { - XCTAssertNotEqual(inheritedTheme.colorActionOnBgActionDisabled, abstractTheme.colorActionOnBgActionDisabled) - XCTAssertTrue(inheritedTheme.colorActionOnBgActionDisabled == OtherMockTheme.otherMockThemeMultipleColorSemanticTokens) - } - - func testInheritedThemeCanOverrideSemanticTokenColorActionOnBgActionDisabledOnBgEmphasized() throws { - XCTAssertNotEqual(inheritedTheme.colorActionOnBgActionDisabledOnBgEmphasized, abstractTheme.colorActionOnBgActionDisabledOnBgEmphasized) - XCTAssertTrue(inheritedTheme.colorActionOnBgActionDisabledOnBgEmphasized == OtherMockTheme.otherMockThemeMultipleColorSemanticTokens) - } - - func testInheritedThemeCanOverrideSemanticTokenColorActionOnBgActionNegative() throws { - XCTAssertNotEqual(inheritedTheme.colorActionOnBgActionNegative, abstractTheme.colorActionOnBgActionNegative) - XCTAssertTrue(inheritedTheme.colorActionOnBgActionNegative == OtherMockTheme.otherMockThemeMultipleColorSemanticTokens) - } - - func testInheritedThemeCanOverrideSemanticTokenColorActionOnBgActionPrimaryEnabled() throws { - XCTAssertNotEqual(inheritedTheme.colorActionOnBgActionPrimaryEnabled, abstractTheme.colorActionOnBgActionPrimaryEnabled) - XCTAssertTrue(inheritedTheme.colorActionOnBgActionPrimaryEnabled == OtherMockTheme.otherMockThemeMultipleColorSemanticTokens) - } - - func testInheritedThemeCanOverrideSemanticTokenColorActionOnBgActionPrimaryEnabledOnBgEmphasized() throws { - XCTAssertNotEqual(inheritedTheme.colorActionOnBgActionPrimaryEnabledOnBgEmphasized, abstractTheme.colorActionOnBgActionPrimaryEnabledOnBgEmphasized) - XCTAssertTrue(inheritedTheme.colorActionOnBgActionPrimaryEnabledOnBgEmphasized == OtherMockTheme.otherMockThemeMultipleColorSemanticTokens) - } - - func testInheritedThemeCanOverrideSemanticTokenColorActionOnBgActionPrimaryHover() throws { - XCTAssertNotEqual(inheritedTheme.colorActionOnBgActionPrimaryHover, abstractTheme.colorActionOnBgActionPrimaryHover) - XCTAssertTrue(inheritedTheme.colorActionOnBgActionPrimaryHover == OtherMockTheme.otherMockThemeMultipleColorSemanticTokens) - } - - func testInheritedThemeCanOverrideSemanticTokenColorActionOnBgActionPrimaryHoverOnBgEmphasized() throws { - XCTAssertNotEqual(inheritedTheme.colorActionOnBgActionPrimaryHoverOnBgEmphasized, abstractTheme.colorActionOnBgActionPrimaryHoverOnBgEmphasized) - XCTAssertTrue(inheritedTheme.colorActionOnBgActionPrimaryHoverOnBgEmphasized == OtherMockTheme.otherMockThemeMultipleColorSemanticTokens) - } - - func testInheritedThemeCanOverrideSemanticTokenColorActionOnBgActionPrimaryPressed() throws { - XCTAssertNotEqual(inheritedTheme.colorActionOnBgActionPrimaryPressed, abstractTheme.colorActionOnBgActionPrimaryPressed) - XCTAssertTrue(inheritedTheme.colorActionOnBgActionPrimaryPressed == OtherMockTheme.otherMockThemeMultipleColorSemanticTokens) - } - - func testInheritedThemeCanOverrideSemanticTokenColorActionOnBgActionPrimaryPressedOnBgEmphasized() throws { - XCTAssertNotEqual(inheritedTheme.colorActionOnBgActionPrimaryPressedOnBgEmphasized, abstractTheme.colorActionOnBgActionPrimaryPressedOnBgEmphasized) - XCTAssertTrue(inheritedTheme.colorActionOnBgActionPrimaryPressedOnBgEmphasized == OtherMockTheme.otherMockThemeMultipleColorSemanticTokens) - } - - func testInheritedThemeCanOverrideSemanticTokenColorActionOnBgActionPrimaryLoading() throws { - XCTAssertNotEqual(inheritedTheme.colorActionOnBgActionPrimaryLoading, abstractTheme.colorActionOnBgActionPrimaryLoading) - XCTAssertTrue(inheritedTheme.colorActionOnBgActionPrimaryLoading == OtherMockTheme.otherMockThemeMultipleColorSemanticTokens) - } - - func testInheritedThemeCanOverrideSemanticTokenColorActionOnBgActionPrimaryLoadingOnBgEmphasized() throws { - XCTAssertNotEqual(inheritedTheme.colorActionOnBgActionPrimaryLoadingOnBgEmphasized, abstractTheme.colorActionOnBgActionPrimaryLoadingOnBgEmphasized) - XCTAssertTrue(inheritedTheme.colorActionOnBgActionPrimaryLoadingOnBgEmphasized == OtherMockTheme.otherMockThemeMultipleColorSemanticTokens) - } - - func testInheritedThemeCanOverrideSemanticTokenColorActionOnBgActionPrimaryFocus() throws { - XCTAssertNotEqual(inheritedTheme.colorActionOnBgActionPrimaryFocus, abstractTheme.colorActionOnBgActionPrimaryFocus) - XCTAssertTrue(inheritedTheme.colorActionOnBgActionPrimaryFocus == OtherMockTheme.otherMockThemeMultipleColorSemanticTokens) - } - - func testInheritedThemeCanOverrideSemanticTokenColorActionOnBgActionPrimaryFocusOnBgEmphasized() throws { - XCTAssertNotEqual(inheritedTheme.colorActionOnBgActionPrimaryFocusOnBgEmphasized, abstractTheme.colorActionOnBgActionPrimaryFocusOnBgEmphasized) - XCTAssertTrue(inheritedTheme.colorActionOnBgActionPrimaryFocusOnBgEmphasized == OtherMockTheme.otherMockThemeMultipleColorSemanticTokens) - } - - func testInheritedThemeCanOverrideSemanticTokenColorActionOnBgActionSecondaryEnabled() throws { - XCTAssertNotEqual(inheritedTheme.colorActionOnBgActionSecondaryEnabled, abstractTheme.colorActionOnBgActionSecondaryEnabled) - XCTAssertTrue(inheritedTheme.colorActionOnBgActionSecondaryEnabled == OtherMockTheme.otherMockThemeMultipleColorSemanticTokens) - } - - func testInheritedThemeCanOverrideSemanticTokenColorActionOnBgActionSecondaryEnabledOnBgEmphasized() throws { - XCTAssertNotEqual(inheritedTheme.colorActionOnBgActionSecondaryEnabledOnBgEmphasized, abstractTheme.colorActionOnBgActionSecondaryEnabledOnBgEmphasized) - XCTAssertTrue(inheritedTheme.colorActionOnBgActionSecondaryEnabledOnBgEmphasized == OtherMockTheme.otherMockThemeMultipleColorSemanticTokens) - } - - func testInheritedThemeCanOverrideSemanticTokenColorActionOnBgActionSecondaryHover() throws { - XCTAssertNotEqual(inheritedTheme.colorActionOnBgActionSecondaryHover, abstractTheme.colorActionOnBgActionSecondaryHover) - XCTAssertTrue(inheritedTheme.colorActionOnBgActionSecondaryHover == OtherMockTheme.otherMockThemeMultipleColorSemanticTokens) - } - - func testInheritedThemeCanOverrideSemanticTokenColorActionOnBgActionSecondaryHoverOnBgEmphasized() throws { - XCTAssertNotEqual(inheritedTheme.colorActionOnBgActionSecondaryHoverOnBgEmphasized, abstractTheme.colorActionOnBgActionSecondaryHoverOnBgEmphasized) - XCTAssertTrue(inheritedTheme.colorActionOnBgActionSecondaryHoverOnBgEmphasized == OtherMockTheme.otherMockThemeMultipleColorSemanticTokens) - } - - func testInheritedThemeCanOverrideSemanticTokenColorActionOnBgActionSecondaryPressed() throws { - XCTAssertNotEqual(inheritedTheme.colorActionOnBgActionSecondaryPressed, abstractTheme.colorActionOnBgActionSecondaryPressed) - XCTAssertTrue(inheritedTheme.colorActionOnBgActionSecondaryPressed == OtherMockTheme.otherMockThemeMultipleColorSemanticTokens) - } - - func testInheritedThemeCanOverrideSemanticTokenColorActionOnBgActionSecondaryPressedOnBgEmphasized() throws { - XCTAssertNotEqual(inheritedTheme.colorActionOnBgActionSecondaryPressedOnBgEmphasized, abstractTheme.colorActionOnBgActionSecondaryPressedOnBgEmphasized) - XCTAssertTrue(inheritedTheme.colorActionOnBgActionSecondaryPressedOnBgEmphasized == OtherMockTheme.otherMockThemeMultipleColorSemanticTokens) - } - - func testInheritedThemeCanOverrideSemanticTokenColorActionOnBgActionSecondaryLoading() throws { - XCTAssertNotEqual(inheritedTheme.colorActionOnBgActionSecondaryLoading, abstractTheme.colorActionOnBgActionSecondaryLoading) - XCTAssertTrue(inheritedTheme.colorActionOnBgActionSecondaryLoading == OtherMockTheme.otherMockThemeMultipleColorSemanticTokens) - } - - func testInheritedThemeCanOverrideSemanticTokenColorActionOnBgActionSecondaryLoadingOnBgEmphasized() throws { - XCTAssertNotEqual(inheritedTheme.colorActionOnBgActionSecondaryLoadingOnBgEmphasized, abstractTheme.colorActionOnBgActionSecondaryLoadingOnBgEmphasized) - XCTAssertTrue(inheritedTheme.colorActionOnBgActionSecondaryLoadingOnBgEmphasized == OtherMockTheme.otherMockThemeMultipleColorSemanticTokens) - } - - func testInheritedThemeCanOverrideSemanticTokenColorActionOnBgActionSecondaryFocus() throws { - XCTAssertNotEqual(inheritedTheme.colorActionOnBgActionSecondaryFocus, abstractTheme.colorActionOnBgActionSecondaryFocus) - XCTAssertTrue(inheritedTheme.colorActionOnBgActionSecondaryFocus == OtherMockTheme.otherMockThemeMultipleColorSemanticTokens) - } - - func testInheritedThemeCanOverrideSemanticTokenColorActionOnBgActionSecondaryFocusOnBgEmphasized() throws { - XCTAssertNotEqual(inheritedTheme.colorActionOnBgActionSecondaryFocusOnBgEmphasized, abstractTheme.colorActionOnBgActionSecondaryFocusOnBgEmphasized) - XCTAssertTrue(inheritedTheme.colorActionOnBgActionSecondaryFocusOnBgEmphasized == OtherMockTheme.otherMockThemeMultipleColorSemanticTokens) - } - // MARK: Semantic token - Colors - Always func testInheritedThemeCanOverrideSemanticTokenColorAlwaysBlack() throws { @@ -719,39 +604,39 @@ final class TestThemeOverrideOfColorMultipleSemanticTokens: XCTestCase { XCTAssertTrue(inheritedTheme.colorAlwaysAccent == OtherMockTheme.otherMockThemeMultipleColorSemanticTokens) } - func testInheritedThemeCanOverrideSemanticTokenColorAlwaysOnBgBlack() throws { - XCTAssertNotEqual(inheritedTheme.colorAlwaysOnBgBlack, abstractTheme.colorAlwaysOnBgBlack) - XCTAssertTrue(inheritedTheme.colorAlwaysOnBgBlack == OtherMockTheme.otherMockThemeMultipleColorSemanticTokens) + func testInheritedThemeCanOverrideSemanticTokenColorAlwaysOnAccent() throws { + XCTAssertNotEqual(inheritedTheme.colorAlwaysOnAccent, abstractTheme.colorAlwaysOnAccent) + XCTAssertTrue(inheritedTheme.colorAlwaysOnAccent == OtherMockTheme.otherMockThemeMultipleColorSemanticTokens) } - func testInheritedThemeCanOverrideSemanticTokenColorAlwaysOnBgWhite() throws { - XCTAssertNotEqual(inheritedTheme.colorAlwaysOnBgWhite, abstractTheme.colorAlwaysOnBgWhite) - XCTAssertTrue(inheritedTheme.colorAlwaysOnBgWhite == OtherMockTheme.otherMockThemeMultipleColorSemanticTokens) + func testInheritedThemeCanOverrideSemanticTokenColorAlwaysOnBlack() throws { + XCTAssertNotEqual(inheritedTheme.colorAlwaysOnBlack, abstractTheme.colorAlwaysOnBlack) + XCTAssertTrue(inheritedTheme.colorAlwaysOnBlack == OtherMockTheme.otherMockThemeMultipleColorSemanticTokens) } - func testInheritedThemeCanOverrideSemanticTokenColorAlwaysOnBgWarning() throws { - XCTAssertNotEqual(inheritedTheme.colorAlwaysOnBgWarning, abstractTheme.colorAlwaysOnBgWarning) - XCTAssertTrue(inheritedTheme.colorAlwaysOnBgWarning == OtherMockTheme.otherMockThemeMultipleColorSemanticTokens) + func testInheritedThemeCanOverrideSemanticTokenColorAlwaysOnInfo() throws { + XCTAssertNotEqual(inheritedTheme.colorAlwaysOnInfo, abstractTheme.colorAlwaysOnInfo) + XCTAssertTrue(inheritedTheme.colorAlwaysOnInfo == OtherMockTheme.otherMockThemeMultipleColorSemanticTokens) } - func testInheritedThemeCanOverrideSemanticTokenColorAlwaysOnBgNegative() throws { - XCTAssertNotEqual(inheritedTheme.colorAlwaysOnBgNegative, abstractTheme.colorAlwaysOnBgNegative) - XCTAssertTrue(inheritedTheme.colorAlwaysOnBgNegative == OtherMockTheme.otherMockThemeMultipleColorSemanticTokens) + func testInheritedThemeCanOverrideSemanticTokenColorAlwaysOnNegative() throws { + XCTAssertNotEqual(inheritedTheme.colorAlwaysOnNegative, abstractTheme.colorAlwaysOnNegative) + XCTAssertTrue(inheritedTheme.colorAlwaysOnNegative == OtherMockTheme.otherMockThemeMultipleColorSemanticTokens) } - func testInheritedThemeCanOverrideSemanticTokenColorAlwaysOnBgPositive() throws { - XCTAssertNotEqual(inheritedTheme.colorAlwaysOnBgPositive, abstractTheme.colorAlwaysOnBgPositive) - XCTAssertTrue(inheritedTheme.colorAlwaysOnBgPositive == OtherMockTheme.otherMockThemeMultipleColorSemanticTokens) + func testInheritedThemeCanOverrideSemanticTokenColorAlwaysOnPositive() throws { + XCTAssertNotEqual(inheritedTheme.colorAlwaysOnPositive, abstractTheme.colorAlwaysOnPositive) + XCTAssertTrue(inheritedTheme.colorAlwaysOnPositive == OtherMockTheme.otherMockThemeMultipleColorSemanticTokens) } - func testInheritedThemeCanOverrideSemanticTokenColorAlwaysOnBgInfo() throws { - XCTAssertNotEqual(inheritedTheme.colorAlwaysOnBgInfo, abstractTheme.colorAlwaysOnBgInfo) - XCTAssertTrue(inheritedTheme.colorAlwaysOnBgInfo == OtherMockTheme.otherMockThemeMultipleColorSemanticTokens) + func testInheritedThemeCanOverrideSemanticTokenColorAlwaysOnWarning() throws { + XCTAssertNotEqual(inheritedTheme.colorAlwaysOnWarning, abstractTheme.colorAlwaysOnWarning) + XCTAssertTrue(inheritedTheme.colorAlwaysOnWarning == OtherMockTheme.otherMockThemeMultipleColorSemanticTokens) } - func testInheritedThemeCanOverrideSemanticTokenColorAlwaysOnBgAccent() throws { - XCTAssertNotEqual(inheritedTheme.colorAlwaysOnBgAccent, abstractTheme.colorAlwaysOnBgAccent) - XCTAssertTrue(inheritedTheme.colorAlwaysOnBgAccent == OtherMockTheme.otherMockThemeMultipleColorSemanticTokens) + func testInheritedThemeCanOverrideSemanticTokenColorAlwaysOnWhite() throws { + XCTAssertNotEqual(inheritedTheme.colorAlwaysOnWhite, abstractTheme.colorAlwaysOnWhite) + XCTAssertTrue(inheritedTheme.colorAlwaysOnWhite == OtherMockTheme.otherMockThemeMultipleColorSemanticTokens) } // MARK: Semantic token - Colors - Transparent @@ -830,21 +715,6 @@ final class TestThemeOverrideOfColorMultipleSemanticTokens: XCTestCase { // MARK: Semantic token - Colors - Decorative - func testInheritedThemeCanOverrideSemanticTokenColorDecorativePrimary() throws { - XCTAssertNotEqual(inheritedTheme.colorDecorativePrimary, abstractTheme.colorDecorativePrimary) - XCTAssertTrue(inheritedTheme.colorDecorativePrimary == OtherMockTheme.otherMockThemeMultipleColorSemanticTokens) - } - - func testInheritedThemeCanOverrideSemanticTokenColorDecorativeSecondary() throws { - XCTAssertNotEqual(inheritedTheme.colorDecorativeSecondary, abstractTheme.colorDecorativeSecondary) - XCTAssertTrue(inheritedTheme.colorDecorativeSecondary == OtherMockTheme.otherMockThemeMultipleColorSemanticTokens) - } - - func testInheritedThemeCanOverrideSemanticTokenColorDecorativeTertiary() throws { - XCTAssertNotEqual(inheritedTheme.colorDecorativeTertiary, abstractTheme.colorDecorativeTertiary) - XCTAssertTrue(inheritedTheme.colorDecorativeTertiary == OtherMockTheme.otherMockThemeMultipleColorSemanticTokens) - } - func testInheritedThemeCanOverrideSemanticTokenColorDecorativeNeutralMuted() throws { XCTAssertNotEqual(inheritedTheme.colorDecorativeNeutralMuted, abstractTheme.colorDecorativeNeutralMuted) XCTAssertTrue(inheritedTheme.colorDecorativeNeutralMuted == OtherMockTheme.otherMockThemeMultipleColorSemanticTokens) @@ -1277,596 +1147,26 @@ final class TestThemeOverrideOfColorMultipleSemanticTokens: XCTestCase { XCTAssertTrue(inheritedTheme.colorChartSequentialAccent5Tint900 == OtherMockTheme.otherMockThemeMultipleColorSemanticTokens) } - // MARK: Semantic token - Colors - Chart - - func testInheritedThemeCanOverrideSemanticTokenColorChartCategoricalNeutralLight() throws { - XCTAssertNotEqual(inheritedTheme.colorChartCategoricalNeutralLight, abstractTheme.colorChartCategoricalNeutralLight) - XCTAssertTrue(inheritedTheme.colorChartCategoricalNeutralLight == OtherMockTheme.otherMockThemeSemanticColorToken) - } - - func testInheritedThemeCanOverrideSemanticTokenColorChartCategoricalNeutralDark() throws { - XCTAssertNotEqual(inheritedTheme.colorChartCategoricalNeutralDark, abstractTheme.colorChartCategoricalNeutralDark) - XCTAssertTrue(inheritedTheme.colorChartCategoricalNeutralDark == OtherMockTheme.otherMockThemeSemanticColorToken) - } - - func testInheritedThemeCanOverrideSemanticTokenColorChartCategoricalBrandLight() throws { - XCTAssertNotEqual(inheritedTheme.colorChartCategoricalBrandLight, abstractTheme.colorChartCategoricalBrandLight) - XCTAssertTrue(inheritedTheme.colorChartCategoricalBrandLight == OtherMockTheme.otherMockThemeSemanticColorToken) - } - - func testInheritedThemeCanOverrideSemanticTokenColorChartCategoricalBrandDark() throws { - XCTAssertNotEqual(inheritedTheme.colorChartCategoricalBrandDark, abstractTheme.colorChartCategoricalBrandDark) - XCTAssertTrue(inheritedTheme.colorChartCategoricalBrandDark == OtherMockTheme.otherMockThemeSemanticColorToken) - } - - func testInheritedThemeCanOverrideSemanticTokenColorChartCategoricalPositiveLight() throws { - XCTAssertNotEqual(inheritedTheme.colorChartCategoricalPositiveLight, abstractTheme.colorChartCategoricalPositiveLight) - XCTAssertTrue(inheritedTheme.colorChartCategoricalPositiveLight == OtherMockTheme.otherMockThemeSemanticColorToken) - } - - func testInheritedThemeCanOverrideSemanticTokenColorChartCategoricalPositiveDark() throws { - XCTAssertNotEqual(inheritedTheme.colorChartCategoricalPositiveDark, abstractTheme.colorChartCategoricalPositiveDark) - XCTAssertTrue(inheritedTheme.colorChartCategoricalPositiveDark == OtherMockTheme.otherMockThemeSemanticColorToken) - } - - func testInheritedThemeCanOverrideSemanticTokenColorChartCategoricalNegativeLight() throws { - XCTAssertNotEqual(inheritedTheme.colorChartCategoricalNegativeLight, abstractTheme.colorChartCategoricalNegativeLight) - XCTAssertTrue(inheritedTheme.colorChartCategoricalNegativeLight == OtherMockTheme.otherMockThemeSemanticColorToken) - } - - func testInheritedThemeCanOverrideSemanticTokenColorChartCategoricalNegativeDark() throws { - XCTAssertNotEqual(inheritedTheme.colorChartCategoricalNegativeDark, abstractTheme.colorChartCategoricalNegativeDark) - XCTAssertTrue(inheritedTheme.colorChartCategoricalNegativeDark == OtherMockTheme.otherMockThemeSemanticColorToken) - } - - func testInheritedThemeCanOverrideSemanticTokenColorChartCategoricalTier1Light() throws { - XCTAssertNotEqual(inheritedTheme.colorChartCategoricalTier1Light, abstractTheme.colorChartCategoricalTier1Light) - XCTAssertTrue(inheritedTheme.colorChartCategoricalTier1Light == OtherMockTheme.otherMockThemeSemanticColorToken) - } - - func testInheritedThemeCanOverrideSemanticTokenColorChartCategoricalTier1Dark() throws { - XCTAssertNotEqual(inheritedTheme.colorChartCategoricalTier1Dark, abstractTheme.colorChartCategoricalTier1Dark) - XCTAssertTrue(inheritedTheme.colorChartCategoricalTier1Dark == OtherMockTheme.otherMockThemeSemanticColorToken) - } - - func testInheritedThemeCanOverrideSemanticTokenColorChartCategoricalTier2Light() throws { - XCTAssertNotEqual(inheritedTheme.colorChartCategoricalTier2Light, abstractTheme.colorChartCategoricalTier2Light) - XCTAssertTrue(inheritedTheme.colorChartCategoricalTier2Light == OtherMockTheme.otherMockThemeSemanticColorToken) - } - - func testInheritedThemeCanOverrideSemanticTokenColorChartCategoricalTier2Dark() throws { - XCTAssertNotEqual(inheritedTheme.colorChartCategoricalTier2Dark, abstractTheme.colorChartCategoricalTier2Dark) - XCTAssertTrue(inheritedTheme.colorChartCategoricalTier2Dark == OtherMockTheme.otherMockThemeSemanticColorToken) - } - - func testInheritedThemeCanOverrideSemanticTokenColorChartCategoricalTier3Light() throws { - XCTAssertNotEqual(inheritedTheme.colorChartCategoricalTier3Light, abstractTheme.colorChartCategoricalTier3Light) - XCTAssertTrue(inheritedTheme.colorChartCategoricalTier3Light == OtherMockTheme.otherMockThemeSemanticColorToken) - } - - func testInheritedThemeCanOverrideSemanticTokenColorChartCategoricalTier3Dark() throws { - XCTAssertNotEqual(inheritedTheme.colorChartCategoricalTier3Dark, abstractTheme.colorChartCategoricalTier3Dark) - XCTAssertTrue(inheritedTheme.colorChartCategoricalTier3Dark == OtherMockTheme.otherMockThemeSemanticColorToken) - } - - func testInheritedThemeCanOverrideSemanticTokenColorChartCategoricalTier4Light() throws { - XCTAssertNotEqual(inheritedTheme.colorChartCategoricalTier4Light, abstractTheme.colorChartCategoricalTier4Light) - XCTAssertTrue(inheritedTheme.colorChartCategoricalTier4Light == OtherMockTheme.otherMockThemeSemanticColorToken) - } - - func testInheritedThemeCanOverrideSemanticTokenColorChartCategoricalTier4Dark() throws { - XCTAssertNotEqual(inheritedTheme.colorChartCategoricalTier4Dark, abstractTheme.colorChartCategoricalTier4Dark) - XCTAssertTrue(inheritedTheme.colorChartCategoricalTier4Dark == OtherMockTheme.otherMockThemeSemanticColorToken) - } - - func testInheritedThemeCanOverrideSemanticTokenColorChartCategoricalTier5Light() throws { - XCTAssertNotEqual(inheritedTheme.colorChartCategoricalTier5Light, abstractTheme.colorChartCategoricalTier5Light) - XCTAssertTrue(inheritedTheme.colorChartCategoricalTier5Light == OtherMockTheme.otherMockThemeSemanticColorToken) - } - - func testInheritedThemeCanOverrideSemanticTokenColorChartCategoricalTier5Dark() throws { - XCTAssertNotEqual(inheritedTheme.colorChartCategoricalTier5Dark, abstractTheme.colorChartCategoricalTier5Dark) - XCTAssertTrue(inheritedTheme.colorChartCategoricalTier5Dark == OtherMockTheme.otherMockThemeSemanticColorToken) - } - - func testInheritedThemeCanOverrideSemanticTokenColorChartCategoricalTier6Light() throws { - XCTAssertNotEqual(inheritedTheme.colorChartCategoricalTier6Light, abstractTheme.colorChartCategoricalTier6Light) - XCTAssertTrue(inheritedTheme.colorChartCategoricalTier6Light == OtherMockTheme.otherMockThemeSemanticColorToken) - } - - func testInheritedThemeCanOverrideSemanticTokenColorChartCategoricalTier6Dark() throws { - XCTAssertNotEqual(inheritedTheme.colorChartCategoricalTier6Dark, abstractTheme.colorChartCategoricalTier6Dark) - XCTAssertTrue(inheritedTheme.colorChartCategoricalTier6Dark == OtherMockTheme.otherMockThemeSemanticColorToken) - } - - func testInheritedThemeCanOverrideSemanticTokenColorChartCategoricalTier7Light() throws { - XCTAssertNotEqual(inheritedTheme.colorChartCategoricalTier7Light, abstractTheme.colorChartCategoricalTier7Light) - XCTAssertTrue(inheritedTheme.colorChartCategoricalTier7Light == OtherMockTheme.otherMockThemeSemanticColorToken) - } - - func testInheritedThemeCanOverrideSemanticTokenColorChartCategoricalTier7Dark() throws { - XCTAssertNotEqual(inheritedTheme.colorChartCategoricalTier7Dark, abstractTheme.colorChartCategoricalTier7Dark) - XCTAssertTrue(inheritedTheme.colorChartCategoricalTier7Dark == OtherMockTheme.otherMockThemeSemanticColorToken) - } - - func testInheritedThemeCanOverrideSemanticTokenColorChartCategoricalTier8Light() throws { - XCTAssertNotEqual(inheritedTheme.colorChartCategoricalTier8Light, abstractTheme.colorChartCategoricalTier8Light) - XCTAssertTrue(inheritedTheme.colorChartCategoricalTier8Light == OtherMockTheme.otherMockThemeSemanticColorToken) - } - - func testInheritedThemeCanOverrideSemanticTokenColorChartCategoricalTier8Dark() throws { - XCTAssertNotEqual(inheritedTheme.colorChartCategoricalTier8Dark, abstractTheme.colorChartCategoricalTier8Dark) - XCTAssertTrue(inheritedTheme.colorChartCategoricalTier8Dark == OtherMockTheme.otherMockThemeSemanticColorToken) - } - - func testInheritedThemeCanOverrideSemanticTokenColorChartCategoricalTier9Light() throws { - XCTAssertNotEqual(inheritedTheme.colorChartCategoricalTier9Light, abstractTheme.colorChartCategoricalTier9Light) - XCTAssertTrue(inheritedTheme.colorChartCategoricalTier9Light == OtherMockTheme.otherMockThemeSemanticColorToken) - } - - func testInheritedThemeCanOverrideSemanticTokenColorChartCategoricalTier9Dark() throws { - XCTAssertNotEqual(inheritedTheme.colorChartCategoricalTier9Dark, abstractTheme.colorChartCategoricalTier9Dark) - XCTAssertTrue(inheritedTheme.colorChartCategoricalTier9Dark == OtherMockTheme.otherMockThemeSemanticColorToken) - } - - func testInheritedThemeCanOverrideSemanticTokenColorChartCategoricalTier10Light() throws { - XCTAssertNotEqual(inheritedTheme.colorChartCategoricalTier10Light, abstractTheme.colorChartCategoricalTier10Light) - XCTAssertTrue(inheritedTheme.colorChartCategoricalTier10Light == OtherMockTheme.otherMockThemeSemanticColorToken) - } - - func testInheritedThemeCanOverrideSemanticTokenColorChartCategoricalTier10Dark() throws { - XCTAssertNotEqual(inheritedTheme.colorChartCategoricalTier10Dark, abstractTheme.colorChartCategoricalTier10Dark) - XCTAssertTrue(inheritedTheme.colorChartCategoricalTier10Dark == OtherMockTheme.otherMockThemeSemanticColorToken) - } - - func testInheritedThemeCanOverrideSemanticTokenColorChartSequentialAccent1Tint100Light() throws { - XCTAssertNotEqual(inheritedTheme.colorChartSequentialAccent1Tint100Light, abstractTheme.colorChartSequentialAccent1Tint100Light) - XCTAssertTrue(inheritedTheme.colorChartSequentialAccent1Tint100Light == OtherMockTheme.otherMockThemeSemanticColorToken) - } - - func testInheritedThemeCanOverrideSemanticTokenColorChartSequentialAccent1Tint100Dark() throws { - XCTAssertNotEqual(inheritedTheme.colorChartSequentialAccent1Tint100Dark, abstractTheme.colorChartSequentialAccent1Tint100Dark) - XCTAssertTrue(inheritedTheme.colorChartSequentialAccent1Tint100Dark == OtherMockTheme.otherMockThemeSemanticColorToken) - } - - func testInheritedThemeCanOverrideSemanticTokenColorChartSequentialAccent1Tint200Light() throws { - XCTAssertNotEqual(inheritedTheme.colorChartSequentialAccent1Tint200Light, abstractTheme.colorChartSequentialAccent1Tint200Light) - XCTAssertTrue(inheritedTheme.colorChartSequentialAccent1Tint200Light == OtherMockTheme.otherMockThemeSemanticColorToken) - } - - func testInheritedThemeCanOverrideSemanticTokenColorChartSequentialAccent1Tint200Dark() throws { - XCTAssertNotEqual(inheritedTheme.colorChartSequentialAccent1Tint200Dark, abstractTheme.colorChartSequentialAccent1Tint200Dark) - XCTAssertTrue(inheritedTheme.colorChartSequentialAccent1Tint200Dark == OtherMockTheme.otherMockThemeSemanticColorToken) - } - - func testInheritedThemeCanOverrideSemanticTokenColorChartSequentialAccent1Tint300Light() throws { - XCTAssertNotEqual(inheritedTheme.colorChartSequentialAccent1Tint300Light, abstractTheme.colorChartSequentialAccent1Tint300Light) - XCTAssertTrue(inheritedTheme.colorChartSequentialAccent1Tint300Light == OtherMockTheme.otherMockThemeSemanticColorToken) - } - - func testInheritedThemeCanOverrideSemanticTokenColorChartSequentialAccent1Tint300Dark() throws { - XCTAssertNotEqual(inheritedTheme.colorChartSequentialAccent1Tint300Dark, abstractTheme.colorChartSequentialAccent1Tint300Dark) - XCTAssertTrue(inheritedTheme.colorChartSequentialAccent1Tint300Dark == OtherMockTheme.otherMockThemeSemanticColorToken) - } - - func testInheritedThemeCanOverrideSemanticTokenColorChartSequentialAccent1Tint400Light() throws { - XCTAssertNotEqual(inheritedTheme.colorChartSequentialAccent1Tint400Light, abstractTheme.colorChartSequentialAccent1Tint400Light) - XCTAssertTrue(inheritedTheme.colorChartSequentialAccent1Tint400Light == OtherMockTheme.otherMockThemeSemanticColorToken) - } - - func testInheritedThemeCanOverrideSemanticTokenColorChartSequentialAccent1Tint400Dark() throws { - XCTAssertNotEqual(inheritedTheme.colorChartSequentialAccent1Tint400Dark, abstractTheme.colorChartSequentialAccent1Tint400Dark) - XCTAssertTrue(inheritedTheme.colorChartSequentialAccent1Tint400Dark == OtherMockTheme.otherMockThemeSemanticColorToken) - } - - func testInheritedThemeCanOverrideSemanticTokenColorChartSequentialAccent1Tint500Light() throws { - XCTAssertNotEqual(inheritedTheme.colorChartSequentialAccent1Tint500Light, abstractTheme.colorChartSequentialAccent1Tint500Light) - XCTAssertTrue(inheritedTheme.colorChartSequentialAccent1Tint500Light == OtherMockTheme.otherMockThemeSemanticColorToken) - } - - func testInheritedThemeCanOverrideSemanticTokenColorChartSequentialAccent1Tint500Dark() throws { - XCTAssertNotEqual(inheritedTheme.colorChartSequentialAccent1Tint500Dark, abstractTheme.colorChartSequentialAccent1Tint500Dark) - XCTAssertTrue(inheritedTheme.colorChartSequentialAccent1Tint500Dark == OtherMockTheme.otherMockThemeSemanticColorToken) - } - - func testInheritedThemeCanOverrideSemanticTokenColorChartSequentialAccent1Tint600Light() throws { - XCTAssertNotEqual(inheritedTheme.colorChartSequentialAccent1Tint600Light, abstractTheme.colorChartSequentialAccent1Tint600Light) - XCTAssertTrue(inheritedTheme.colorChartSequentialAccent1Tint600Light == OtherMockTheme.otherMockThemeSemanticColorToken) - } - - func testInheritedThemeCanOverrideSemanticTokenColorChartSequentialAccent1Tint600Dark() throws { - XCTAssertNotEqual(inheritedTheme.colorChartSequentialAccent1Tint600Dark, abstractTheme.colorChartSequentialAccent1Tint600Dark) - XCTAssertTrue(inheritedTheme.colorChartSequentialAccent1Tint600Dark == OtherMockTheme.otherMockThemeSemanticColorToken) - } - - func testInheritedThemeCanOverrideSemanticTokenColorChartSequentialAccent1Tint700Light() throws { - XCTAssertNotEqual(inheritedTheme.colorChartSequentialAccent1Tint700Light, abstractTheme.colorChartSequentialAccent1Tint700Light) - XCTAssertTrue(inheritedTheme.colorChartSequentialAccent1Tint700Light == OtherMockTheme.otherMockThemeSemanticColorToken) - } - - func testInheritedThemeCanOverrideSemanticTokenColorChartSequentialAccent1Tint700Dark() throws { - XCTAssertNotEqual(inheritedTheme.colorChartSequentialAccent1Tint700Dark, abstractTheme.colorChartSequentialAccent1Tint700Dark) - XCTAssertTrue(inheritedTheme.colorChartSequentialAccent1Tint700Dark == OtherMockTheme.otherMockThemeSemanticColorToken) - } - - func testInheritedThemeCanOverrideSemanticTokenColorChartSequentialAccent1Tint800Light() throws { - XCTAssertNotEqual(inheritedTheme.colorChartSequentialAccent1Tint800Light, abstractTheme.colorChartSequentialAccent1Tint800Light) - XCTAssertTrue(inheritedTheme.colorChartSequentialAccent1Tint800Light == OtherMockTheme.otherMockThemeSemanticColorToken) - } - - func testInheritedThemeCanOverrideSemanticTokenColorChartSequentialAccent1Tint800Dark() throws { - XCTAssertNotEqual(inheritedTheme.colorChartSequentialAccent1Tint800Dark, abstractTheme.colorChartSequentialAccent1Tint800Dark) - XCTAssertTrue(inheritedTheme.colorChartSequentialAccent1Tint800Dark == OtherMockTheme.otherMockThemeSemanticColorToken) - } - - func testInheritedThemeCanOverrideSemanticTokenColorChartSequentialAccent1Tint900Light() throws { - XCTAssertNotEqual(inheritedTheme.colorChartSequentialAccent1Tint900Light, abstractTheme.colorChartSequentialAccent1Tint900Light) - XCTAssertTrue(inheritedTheme.colorChartSequentialAccent1Tint900Light == OtherMockTheme.otherMockThemeSemanticColorToken) - } - - func testInheritedThemeCanOverrideSemanticTokenColorChartSequentialAccent1Tint900Dark() throws { - XCTAssertNotEqual(inheritedTheme.colorChartSequentialAccent1Tint900Dark, abstractTheme.colorChartSequentialAccent1Tint900Dark) - XCTAssertTrue(inheritedTheme.colorChartSequentialAccent1Tint900Dark == OtherMockTheme.otherMockThemeSemanticColorToken) - } - - func testInheritedThemeCanOverrideSemanticTokenColorChartSequentialAccent2Tint100Light() throws { - XCTAssertNotEqual(inheritedTheme.colorChartSequentialAccent2Tint100Light, abstractTheme.colorChartSequentialAccent2Tint100Light) - XCTAssertTrue(inheritedTheme.colorChartSequentialAccent2Tint100Light == OtherMockTheme.otherMockThemeSemanticColorToken) - } - - func testInheritedThemeCanOverrideSemanticTokenColorChartSequentialAccent2Tint100Dark() throws { - XCTAssertNotEqual(inheritedTheme.colorChartSequentialAccent2Tint100Dark, abstractTheme.colorChartSequentialAccent2Tint100Dark) - XCTAssertTrue(inheritedTheme.colorChartSequentialAccent2Tint100Dark == OtherMockTheme.otherMockThemeSemanticColorToken) - } - - func testInheritedThemeCanOverrideSemanticTokenColorChartSequentialAccent2Tint200Light() throws { - XCTAssertNotEqual(inheritedTheme.colorChartSequentialAccent2Tint200Light, abstractTheme.colorChartSequentialAccent2Tint200Light) - XCTAssertTrue(inheritedTheme.colorChartSequentialAccent2Tint200Light == OtherMockTheme.otherMockThemeSemanticColorToken) - } - - func testInheritedThemeCanOverrideSemanticTokenColorChartSequentialAccent2Tint200Dark() throws { - XCTAssertNotEqual(inheritedTheme.colorChartSequentialAccent2Tint200Dark, abstractTheme.colorChartSequentialAccent2Tint200Dark) - XCTAssertTrue(inheritedTheme.colorChartSequentialAccent2Tint200Dark == OtherMockTheme.otherMockThemeSemanticColorToken) - } - - func testInheritedThemeCanOverrideSemanticTokenColorChartSequentialAccent2Tint300Light() throws { - XCTAssertNotEqual(inheritedTheme.colorChartSequentialAccent2Tint300Light, abstractTheme.colorChartSequentialAccent2Tint300Light) - XCTAssertTrue(inheritedTheme.colorChartSequentialAccent2Tint300Light == OtherMockTheme.otherMockThemeSemanticColorToken) - } - - func testInheritedThemeCanOverrideSemanticTokenColorChartSequentialAccent2Tint300Dark() throws { - XCTAssertNotEqual(inheritedTheme.colorChartSequentialAccent2Tint300Dark, abstractTheme.colorChartSequentialAccent2Tint300Dark) - XCTAssertTrue(inheritedTheme.colorChartSequentialAccent2Tint300Dark == OtherMockTheme.otherMockThemeSemanticColorToken) - } - - func testInheritedThemeCanOverrideSemanticTokenColorChartSequentialAccent2Tint400Light() throws { - XCTAssertNotEqual(inheritedTheme.colorChartSequentialAccent2Tint400Light, abstractTheme.colorChartSequentialAccent2Tint400Light) - XCTAssertTrue(inheritedTheme.colorChartSequentialAccent2Tint400Light == OtherMockTheme.otherMockThemeSemanticColorToken) - } - - func testInheritedThemeCanOverrideSemanticTokenColorChartSequentialAccent2Tint400Dark() throws { - XCTAssertNotEqual(inheritedTheme.colorChartSequentialAccent2Tint400Dark, abstractTheme.colorChartSequentialAccent2Tint400Dark) - XCTAssertTrue(inheritedTheme.colorChartSequentialAccent2Tint400Dark == OtherMockTheme.otherMockThemeSemanticColorToken) - } - - func testInheritedThemeCanOverrideSemanticTokenColorChartSequentialAccent2Tint500Light() throws { - XCTAssertNotEqual(inheritedTheme.colorChartSequentialAccent2Tint500Light, abstractTheme.colorChartSequentialAccent2Tint500Light) - XCTAssertTrue(inheritedTheme.colorChartSequentialAccent2Tint500Light == OtherMockTheme.otherMockThemeSemanticColorToken) - } - - func testInheritedThemeCanOverrideSemanticTokenColorChartSequentialAccent2Tint500Dark() throws { - XCTAssertNotEqual(inheritedTheme.colorChartSequentialAccent2Tint500Dark, abstractTheme.colorChartSequentialAccent2Tint500Dark) - XCTAssertTrue(inheritedTheme.colorChartSequentialAccent2Tint500Dark == OtherMockTheme.otherMockThemeSemanticColorToken) - } - - func testInheritedThemeCanOverrideSemanticTokenColorChartSequentialAccent2Tint600Light() throws { - XCTAssertNotEqual(inheritedTheme.colorChartSequentialAccent2Tint600Light, abstractTheme.colorChartSequentialAccent2Tint600Light) - XCTAssertTrue(inheritedTheme.colorChartSequentialAccent2Tint600Light == OtherMockTheme.otherMockThemeSemanticColorToken) - } - - func testInheritedThemeCanOverrideSemanticTokenColorChartSequentialAccent2Tint600Dark() throws { - XCTAssertNotEqual(inheritedTheme.colorChartSequentialAccent2Tint600Dark, abstractTheme.colorChartSequentialAccent2Tint600Dark) - XCTAssertTrue(inheritedTheme.colorChartSequentialAccent2Tint600Dark == OtherMockTheme.otherMockThemeSemanticColorToken) - } - - func testInheritedThemeCanOverrideSemanticTokenColorChartSequentialAccent2Tint700Light() throws { - XCTAssertNotEqual(inheritedTheme.colorChartSequentialAccent2Tint700Light, abstractTheme.colorChartSequentialAccent2Tint700Light) - XCTAssertTrue(inheritedTheme.colorChartSequentialAccent2Tint700Light == OtherMockTheme.otherMockThemeSemanticColorToken) - } - - func testInheritedThemeCanOverrideSemanticTokenColorChartSequentialAccent2Tint700Dark() throws { - XCTAssertNotEqual(inheritedTheme.colorChartSequentialAccent2Tint700Dark, abstractTheme.colorChartSequentialAccent2Tint700Dark) - XCTAssertTrue(inheritedTheme.colorChartSequentialAccent2Tint700Dark == OtherMockTheme.otherMockThemeSemanticColorToken) - } - - func testInheritedThemeCanOverrideSemanticTokenColorChartSequentialAccent2Tint800Light() throws { - XCTAssertNotEqual(inheritedTheme.colorChartSequentialAccent2Tint800Light, abstractTheme.colorChartSequentialAccent2Tint800Light) - XCTAssertTrue(inheritedTheme.colorChartSequentialAccent2Tint800Light == OtherMockTheme.otherMockThemeSemanticColorToken) - } - - func testInheritedThemeCanOverrideSemanticTokenColorChartSequentialAccent2Tint800Dark() throws { - XCTAssertNotEqual(inheritedTheme.colorChartSequentialAccent2Tint800Dark, abstractTheme.colorChartSequentialAccent2Tint800Dark) - XCTAssertTrue(inheritedTheme.colorChartSequentialAccent2Tint800Dark == OtherMockTheme.otherMockThemeSemanticColorToken) - } - - func testInheritedThemeCanOverrideSemanticTokenColorChartSequentialAccent2Tint900Light() throws { - XCTAssertNotEqual(inheritedTheme.colorChartSequentialAccent2Tint900Light, abstractTheme.colorChartSequentialAccent2Tint900Light) - XCTAssertTrue(inheritedTheme.colorChartSequentialAccent2Tint900Light == OtherMockTheme.otherMockThemeSemanticColorToken) - } - - func testInheritedThemeCanOverrideSemanticTokenColorChartSequentialAccent2Tint900Dark() throws { - XCTAssertNotEqual(inheritedTheme.colorChartSequentialAccent2Tint900Dark, abstractTheme.colorChartSequentialAccent2Tint900Dark) - XCTAssertTrue(inheritedTheme.colorChartSequentialAccent2Tint900Dark == OtherMockTheme.otherMockThemeSemanticColorToken) - } - - func testInheritedThemeCanOverrideSemanticTokenColorChartSequentialAccent3Tint100Light() throws { - XCTAssertNotEqual(inheritedTheme.colorChartSequentialAccent3Tint100Light, abstractTheme.colorChartSequentialAccent3Tint100Light) - XCTAssertTrue(inheritedTheme.colorChartSequentialAccent3Tint100Light == OtherMockTheme.otherMockThemeSemanticColorToken) - } - - func testInheritedThemeCanOverrideSemanticTokenColorChartSequentialAccent3Tint100Dark() throws { - XCTAssertNotEqual(inheritedTheme.colorChartSequentialAccent3Tint100Dark, abstractTheme.colorChartSequentialAccent3Tint100Dark) - XCTAssertTrue(inheritedTheme.colorChartSequentialAccent3Tint100Dark == OtherMockTheme.otherMockThemeSemanticColorToken) - } - - func testInheritedThemeCanOverrideSemanticTokenColorChartSequentialAccent3Tint200Light() throws { - XCTAssertNotEqual(inheritedTheme.colorChartSequentialAccent3Tint200Light, abstractTheme.colorChartSequentialAccent3Tint200Light) - XCTAssertTrue(inheritedTheme.colorChartSequentialAccent3Tint200Light == OtherMockTheme.otherMockThemeSemanticColorToken) - } - - func testInheritedThemeCanOverrideSemanticTokenColorChartSequentialAccent3Tint200Dark() throws { - XCTAssertNotEqual(inheritedTheme.colorChartSequentialAccent3Tint200Dark, abstractTheme.colorChartSequentialAccent3Tint200Dark) - XCTAssertTrue(inheritedTheme.colorChartSequentialAccent3Tint200Dark == OtherMockTheme.otherMockThemeSemanticColorToken) - } - - func testInheritedThemeCanOverrideSemanticTokenColorChartSequentialAccent3Tint300Light() throws { - XCTAssertNotEqual(inheritedTheme.colorChartSequentialAccent3Tint300Light, abstractTheme.colorChartSequentialAccent3Tint300Light) - XCTAssertTrue(inheritedTheme.colorChartSequentialAccent3Tint300Light == OtherMockTheme.otherMockThemeSemanticColorToken) - } - - func testInheritedThemeCanOverrideSemanticTokenColorChartSequentialAccent3Tint300Dark() throws { - XCTAssertNotEqual(inheritedTheme.colorChartSequentialAccent3Tint300Dark, abstractTheme.colorChartSequentialAccent3Tint300Dark) - XCTAssertTrue(inheritedTheme.colorChartSequentialAccent3Tint300Dark == OtherMockTheme.otherMockThemeSemanticColorToken) - } - - func testInheritedThemeCanOverrideSemanticTokenColorChartSequentialAccent3Tint400Light() throws { - XCTAssertNotEqual(inheritedTheme.colorChartSequentialAccent3Tint400Light, abstractTheme.colorChartSequentialAccent3Tint400Light) - XCTAssertTrue(inheritedTheme.colorChartSequentialAccent3Tint400Light == OtherMockTheme.otherMockThemeSemanticColorToken) - } - - func testInheritedThemeCanOverrideSemanticTokenColorChartSequentialAccent3Tint400Dark() throws { - XCTAssertNotEqual(inheritedTheme.colorChartSequentialAccent3Tint400Dark, abstractTheme.colorChartSequentialAccent3Tint400Dark) - XCTAssertTrue(inheritedTheme.colorChartSequentialAccent3Tint400Dark == OtherMockTheme.otherMockThemeSemanticColorToken) - } - - func testInheritedThemeCanOverrideSemanticTokenColorChartSequentialAccent3Tint500Light() throws { - XCTAssertNotEqual(inheritedTheme.colorChartSequentialAccent3Tint500Light, abstractTheme.colorChartSequentialAccent3Tint500Light) - XCTAssertTrue(inheritedTheme.colorChartSequentialAccent3Tint500Light == OtherMockTheme.otherMockThemeSemanticColorToken) - } - - func testInheritedThemeCanOverrideSemanticTokenColorChartSequentialAccent3Tint500Dark() throws { - XCTAssertNotEqual(inheritedTheme.colorChartSequentialAccent3Tint500Dark, abstractTheme.colorChartSequentialAccent3Tint500Dark) - XCTAssertTrue(inheritedTheme.colorChartSequentialAccent3Tint500Dark == OtherMockTheme.otherMockThemeSemanticColorToken) - } - - func testInheritedThemeCanOverrideSemanticTokenColorChartSequentialAccent3Tint600Light() throws { - XCTAssertNotEqual(inheritedTheme.colorChartSequentialAccent3Tint600Light, abstractTheme.colorChartSequentialAccent3Tint600Light) - XCTAssertTrue(inheritedTheme.colorChartSequentialAccent3Tint600Light == OtherMockTheme.otherMockThemeSemanticColorToken) - } - - func testInheritedThemeCanOverrideSemanticTokenColorChartSequentialAccent3Tint600Dark() throws { - XCTAssertNotEqual(inheritedTheme.colorChartSequentialAccent3Tint600Dark, abstractTheme.colorChartSequentialAccent3Tint600Dark) - XCTAssertTrue(inheritedTheme.colorChartSequentialAccent3Tint600Dark == OtherMockTheme.otherMockThemeSemanticColorToken) - } - - func testInheritedThemeCanOverrideSemanticTokenColorChartSequentialAccent3Tint700Light() throws { - XCTAssertNotEqual(inheritedTheme.colorChartSequentialAccent3Tint700Light, abstractTheme.colorChartSequentialAccent3Tint700Light) - XCTAssertTrue(inheritedTheme.colorChartSequentialAccent3Tint700Light == OtherMockTheme.otherMockThemeSemanticColorToken) - } - - func testInheritedThemeCanOverrideSemanticTokenColorChartSequentialAccent3Tint700Dark() throws { - XCTAssertNotEqual(inheritedTheme.colorChartSequentialAccent3Tint700Dark, abstractTheme.colorChartSequentialAccent3Tint700Dark) - XCTAssertTrue(inheritedTheme.colorChartSequentialAccent3Tint700Dark == OtherMockTheme.otherMockThemeSemanticColorToken) - } - - func testInheritedThemeCanOverrideSemanticTokenColorChartSequentialAccent3Tint800Light() throws { - XCTAssertNotEqual(inheritedTheme.colorChartSequentialAccent3Tint800Light, abstractTheme.colorChartSequentialAccent3Tint800Light) - XCTAssertTrue(inheritedTheme.colorChartSequentialAccent3Tint800Light == OtherMockTheme.otherMockThemeSemanticColorToken) - } - - func testInheritedThemeCanOverrideSemanticTokenColorChartSequentialAccent3Tint800Dark() throws { - XCTAssertNotEqual(inheritedTheme.colorChartSequentialAccent3Tint800Dark, abstractTheme.colorChartSequentialAccent3Tint800Dark) - XCTAssertTrue(inheritedTheme.colorChartSequentialAccent3Tint800Dark == OtherMockTheme.otherMockThemeSemanticColorToken) - } - - func testInheritedThemeCanOverrideSemanticTokenColorChartSequentialAccent3Tint900Light() throws { - XCTAssertNotEqual(inheritedTheme.colorChartSequentialAccent3Tint900Light, abstractTheme.colorChartSequentialAccent3Tint900Light) - XCTAssertTrue(inheritedTheme.colorChartSequentialAccent3Tint900Light == OtherMockTheme.otherMockThemeSemanticColorToken) - } - - func testInheritedThemeCanOverrideSemanticTokenColorChartSequentialAccent3Tint900Dark() throws { - XCTAssertNotEqual(inheritedTheme.colorChartSequentialAccent3Tint900Dark, abstractTheme.colorChartSequentialAccent3Tint900Dark) - XCTAssertTrue(inheritedTheme.colorChartSequentialAccent3Tint900Dark == OtherMockTheme.otherMockThemeSemanticColorToken) - } - - func testInheritedThemeCanOverrideSemanticTokenColorChartSequentialAccent4Tint100Light() throws { - XCTAssertNotEqual(inheritedTheme.colorChartSequentialAccent4Tint100Light, abstractTheme.colorChartSequentialAccent4Tint100Light) - XCTAssertTrue(inheritedTheme.colorChartSequentialAccent4Tint100Light == OtherMockTheme.otherMockThemeSemanticColorToken) - } - - func testInheritedThemeCanOverrideSemanticTokenColorChartSequentialAccent4Tint100Dark() throws { - XCTAssertNotEqual(inheritedTheme.colorChartSequentialAccent4Tint100Dark, abstractTheme.colorChartSequentialAccent4Tint100Dark) - XCTAssertTrue(inheritedTheme.colorChartSequentialAccent4Tint100Dark == OtherMockTheme.otherMockThemeSemanticColorToken) - } - - func testInheritedThemeCanOverrideSemanticTokenColorChartSequentialAccent4Tint200Light() throws { - XCTAssertNotEqual(inheritedTheme.colorChartSequentialAccent4Tint200Light, abstractTheme.colorChartSequentialAccent4Tint200Light) - XCTAssertTrue(inheritedTheme.colorChartSequentialAccent4Tint200Light == OtherMockTheme.otherMockThemeSemanticColorToken) - } - - func testInheritedThemeCanOverrideSemanticTokenColorChartSequentialAccent4Tint200Dark() throws { - XCTAssertNotEqual(inheritedTheme.colorChartSequentialAccent4Tint200Dark, abstractTheme.colorChartSequentialAccent4Tint200Dark) - XCTAssertTrue(inheritedTheme.colorChartSequentialAccent4Tint200Dark == OtherMockTheme.otherMockThemeSemanticColorToken) - } - - func testInheritedThemeCanOverrideSemanticTokenColorChartSequentialAccent4Tint300Light() throws { - XCTAssertNotEqual(inheritedTheme.colorChartSequentialAccent4Tint300Light, abstractTheme.colorChartSequentialAccent4Tint300Light) - XCTAssertTrue(inheritedTheme.colorChartSequentialAccent4Tint300Light == OtherMockTheme.otherMockThemeSemanticColorToken) - } - - func testInheritedThemeCanOverrideSemanticTokenColorChartSequentialAccent4Tint300Dark() throws { - XCTAssertNotEqual(inheritedTheme.colorChartSequentialAccent4Tint300Dark, abstractTheme.colorChartSequentialAccent4Tint300Dark) - XCTAssertTrue(inheritedTheme.colorChartSequentialAccent4Tint300Dark == OtherMockTheme.otherMockThemeSemanticColorToken) - } - - func testInheritedThemeCanOverrideSemanticTokenColorChartSequentialAccent4Tint400Light() throws { - XCTAssertNotEqual(inheritedTheme.colorChartSequentialAccent4Tint400Light, abstractTheme.colorChartSequentialAccent4Tint400Light) - XCTAssertTrue(inheritedTheme.colorChartSequentialAccent4Tint400Light == OtherMockTheme.otherMockThemeSemanticColorToken) - } - - func testInheritedThemeCanOverrideSemanticTokenColorChartSequentialAccent4Tint400Dark() throws { - XCTAssertNotEqual(inheritedTheme.colorChartSequentialAccent4Tint400Dark, abstractTheme.colorChartSequentialAccent4Tint400Dark) - XCTAssertTrue(inheritedTheme.colorChartSequentialAccent4Tint400Dark == OtherMockTheme.otherMockThemeSemanticColorToken) - } - - func testInheritedThemeCanOverrideSemanticTokenColorChartSequentialAccent4Tint500Light() throws { - XCTAssertNotEqual(inheritedTheme.colorChartSequentialAccent4Tint500Light, abstractTheme.colorChartSequentialAccent4Tint500Light) - XCTAssertTrue(inheritedTheme.colorChartSequentialAccent4Tint500Light == OtherMockTheme.otherMockThemeSemanticColorToken) - } - - func testInheritedThemeCanOverrideSemanticTokenColorChartSequentialAccent4Tint500Dark() throws { - XCTAssertNotEqual(inheritedTheme.colorChartSequentialAccent4Tint500Dark, abstractTheme.colorChartSequentialAccent4Tint500Dark) - XCTAssertTrue(inheritedTheme.colorChartSequentialAccent4Tint500Dark == OtherMockTheme.otherMockThemeSemanticColorToken) - } - - func testInheritedThemeCanOverrideSemanticTokenColorChartSequentialAccent4Tint600Light() throws { - XCTAssertNotEqual(inheritedTheme.colorChartSequentialAccent4Tint600Light, abstractTheme.colorChartSequentialAccent4Tint600Light) - XCTAssertTrue(inheritedTheme.colorChartSequentialAccent4Tint600Light == OtherMockTheme.otherMockThemeSemanticColorToken) - } - - func testInheritedThemeCanOverrideSemanticTokenColorChartSequentialAccent4Tint600Dark() throws { - XCTAssertNotEqual(inheritedTheme.colorChartSequentialAccent4Tint600Dark, abstractTheme.colorChartSequentialAccent4Tint600Dark) - XCTAssertTrue(inheritedTheme.colorChartSequentialAccent4Tint600Dark == OtherMockTheme.otherMockThemeSemanticColorToken) - } - - func testInheritedThemeCanOverrideSemanticTokenColorChartSequentialAccent4Tint700Light() throws { - XCTAssertNotEqual(inheritedTheme.colorChartSequentialAccent4Tint700Light, abstractTheme.colorChartSequentialAccent4Tint700Light) - XCTAssertTrue(inheritedTheme.colorChartSequentialAccent4Tint700Light == OtherMockTheme.otherMockThemeSemanticColorToken) - } - - func testInheritedThemeCanOverrideSemanticTokenColorChartSequentialAccent4Tint700Dark() throws { - XCTAssertNotEqual(inheritedTheme.colorChartSequentialAccent4Tint700Dark, abstractTheme.colorChartSequentialAccent4Tint700Dark) - XCTAssertTrue(inheritedTheme.colorChartSequentialAccent4Tint700Dark == OtherMockTheme.otherMockThemeSemanticColorToken) - } - - func testInheritedThemeCanOverrideSemanticTokenColorChartSequentialAccent4Tint800Light() throws { - XCTAssertNotEqual(inheritedTheme.colorChartSequentialAccent4Tint800Light, abstractTheme.colorChartSequentialAccent4Tint800Light) - XCTAssertTrue(inheritedTheme.colorChartSequentialAccent4Tint800Light == OtherMockTheme.otherMockThemeSemanticColorToken) - } - - func testInheritedThemeCanOverrideSemanticTokenColorChartSequentialAccent4Tint800Dark() throws { - XCTAssertNotEqual(inheritedTheme.colorChartSequentialAccent4Tint800Dark, abstractTheme.colorChartSequentialAccent4Tint800Dark) - XCTAssertTrue(inheritedTheme.colorChartSequentialAccent4Tint800Dark == OtherMockTheme.otherMockThemeSemanticColorToken) - } - - func testInheritedThemeCanOverrideSemanticTokenColorChartSequentialAccent4Tint900Light() throws { - XCTAssertNotEqual(inheritedTheme.colorChartSequentialAccent4Tint900Light, abstractTheme.colorChartSequentialAccent4Tint900Light) - XCTAssertTrue(inheritedTheme.colorChartSequentialAccent4Tint900Light == OtherMockTheme.otherMockThemeSemanticColorToken) - } - - func testInheritedThemeCanOverrideSemanticTokenColorChartSequentialAccent4Tint900Dark() throws { - XCTAssertNotEqual(inheritedTheme.colorChartSequentialAccent4Tint900Dark, abstractTheme.colorChartSequentialAccent4Tint900Dark) - XCTAssertTrue(inheritedTheme.colorChartSequentialAccent4Tint900Dark == OtherMockTheme.otherMockThemeSemanticColorToken) - } - - func testInheritedThemeCanOverrideSemanticTokenColorChartSequentialAccent5Tint100Light() throws { - XCTAssertNotEqual(inheritedTheme.colorChartSequentialAccent5Tint100Light, abstractTheme.colorChartSequentialAccent5Tint100Light) - XCTAssertTrue(inheritedTheme.colorChartSequentialAccent5Tint100Light == OtherMockTheme.otherMockThemeSemanticColorToken) - } - - func testInheritedThemeCanOverrideSemanticTokenColorChartSequentialAccent5Tint100Dark() throws { - XCTAssertNotEqual(inheritedTheme.colorChartSequentialAccent5Tint100Dark, abstractTheme.colorChartSequentialAccent5Tint100Dark) - XCTAssertTrue(inheritedTheme.colorChartSequentialAccent5Tint100Dark == OtherMockTheme.otherMockThemeSemanticColorToken) - } - - func testInheritedThemeCanOverrideSemanticTokenColorChartSequentialAccent5Tint200Light() throws { - XCTAssertNotEqual(inheritedTheme.colorChartSequentialAccent5Tint200Light, abstractTheme.colorChartSequentialAccent5Tint200Light) - XCTAssertTrue(inheritedTheme.colorChartSequentialAccent5Tint200Light == OtherMockTheme.otherMockThemeSemanticColorToken) - } - - func testInheritedThemeCanOverrideSemanticTokenColorChartSequentialAccent5Tint200Dark() throws { - XCTAssertNotEqual(inheritedTheme.colorChartSequentialAccent5Tint200Dark, abstractTheme.colorChartSequentialAccent5Tint200Dark) - XCTAssertTrue(inheritedTheme.colorChartSequentialAccent5Tint200Dark == OtherMockTheme.otherMockThemeSemanticColorToken) - } - - func testInheritedThemeCanOverrideSemanticTokenColorChartSequentialAccent5Tint300Light() throws { - XCTAssertNotEqual(inheritedTheme.colorChartSequentialAccent5Tint300Light, abstractTheme.colorChartSequentialAccent5Tint300Light) - XCTAssertTrue(inheritedTheme.colorChartSequentialAccent5Tint300Light == OtherMockTheme.otherMockThemeSemanticColorToken) - } - - func testInheritedThemeCanOverrideSemanticTokenColorChartSequentialAccent5Tint300Dark() throws { - XCTAssertNotEqual(inheritedTheme.colorChartSequentialAccent5Tint300Dark, abstractTheme.colorChartSequentialAccent5Tint300Dark) - XCTAssertTrue(inheritedTheme.colorChartSequentialAccent5Tint300Dark == OtherMockTheme.otherMockThemeSemanticColorToken) - } - - func testInheritedThemeCanOverrideSemanticTokenColorChartSequentialAccent5Tint400Light() throws { - XCTAssertNotEqual(inheritedTheme.colorChartSequentialAccent5Tint400Light, abstractTheme.colorChartSequentialAccent5Tint400Light) - XCTAssertTrue(inheritedTheme.colorChartSequentialAccent5Tint400Light == OtherMockTheme.otherMockThemeSemanticColorToken) - } - - func testInheritedThemeCanOverrideSemanticTokenColorChartSequentialAccent5Tint400Dark() throws { - XCTAssertNotEqual(inheritedTheme.colorChartSequentialAccent5Tint400Dark, abstractTheme.colorChartSequentialAccent5Tint400Dark) - XCTAssertTrue(inheritedTheme.colorChartSequentialAccent5Tint400Dark == OtherMockTheme.otherMockThemeSemanticColorToken) - } - - func testInheritedThemeCanOverrideSemanticTokenColorChartSequentialAccent5Tint500Light() throws { - XCTAssertNotEqual(inheritedTheme.colorChartSequentialAccent5Tint500Light, abstractTheme.colorChartSequentialAccent5Tint500Light) - XCTAssertTrue(inheritedTheme.colorChartSequentialAccent5Tint500Light == OtherMockTheme.otherMockThemeSemanticColorToken) - } - - func testInheritedThemeCanOverrideSemanticTokenColorChartSequentialAccent5Tint500Dark() throws { - XCTAssertNotEqual(inheritedTheme.colorChartSequentialAccent5Tint500Dark, abstractTheme.colorChartSequentialAccent5Tint500Dark) - XCTAssertTrue(inheritedTheme.colorChartSequentialAccent5Tint500Dark == OtherMockTheme.otherMockThemeSemanticColorToken) - } - - func testInheritedThemeCanOverrideSemanticTokenColorChartSequentialAccent5Tint600Light() throws { - XCTAssertNotEqual(inheritedTheme.colorChartSequentialAccent5Tint600Light, abstractTheme.colorChartSequentialAccent5Tint600Light) - XCTAssertTrue(inheritedTheme.colorChartSequentialAccent5Tint600Light == OtherMockTheme.otherMockThemeSemanticColorToken) - } - - func testInheritedThemeCanOverrideSemanticTokenColorChartSequentialAccent5Tint600Dark() throws { - XCTAssertNotEqual(inheritedTheme.colorChartSequentialAccent5Tint600Dark, abstractTheme.colorChartSequentialAccent5Tint600Dark) - XCTAssertTrue(inheritedTheme.colorChartSequentialAccent5Tint600Dark == OtherMockTheme.otherMockThemeSemanticColorToken) - } - - func testInheritedThemeCanOverrideSemanticTokenColorChartSequentialAccent5Tint700Light() throws { - XCTAssertNotEqual(inheritedTheme.colorChartSequentialAccent5Tint700Light, abstractTheme.colorChartSequentialAccent5Tint700Light) - XCTAssertTrue(inheritedTheme.colorChartSequentialAccent5Tint700Light == OtherMockTheme.otherMockThemeSemanticColorToken) - } - - func testInheritedThemeCanOverrideSemanticTokenColorChartSequentialAccent5Tint700Dark() throws { - XCTAssertNotEqual(inheritedTheme.colorChartSequentialAccent5Tint700Dark, abstractTheme.colorChartSequentialAccent5Tint700Dark) - XCTAssertTrue(inheritedTheme.colorChartSequentialAccent5Tint700Dark == OtherMockTheme.otherMockThemeSemanticColorToken) - } + // MARK: - Semantic token - Colors - Gradient - func testInheritedThemeCanOverrideSemanticTokenColorChartSequentialAccent5Tint800Light() throws { - XCTAssertNotEqual(inheritedTheme.colorChartSequentialAccent5Tint800Light, abstractTheme.colorChartSequentialAccent5Tint800Light) - XCTAssertTrue(inheritedTheme.colorChartSequentialAccent5Tint800Light == OtherMockTheme.otherMockThemeSemanticColorToken) + func testInheritedThemeCanOverrideSemanticTokenColorColorGradientSkeletonMiddle() throws { + XCTAssertNotEqual(inheritedTheme.colorGradientSkeletonMiddle, abstractTheme.colorGradientSkeletonMiddle) + XCTAssertTrue(inheritedTheme.colorGradientSkeletonMiddle == OtherMockTheme.otherMockThemeMultipleColorSemanticTokens) } - func testInheritedThemeCanOverrideSemanticTokenColorChartSequentialAccent5Tint800Dark() throws { - XCTAssertNotEqual(inheritedTheme.colorChartSequentialAccent5Tint800Dark, abstractTheme.colorChartSequentialAccent5Tint800Dark) - XCTAssertTrue(inheritedTheme.colorChartSequentialAccent5Tint800Dark == OtherMockTheme.otherMockThemeSemanticColorToken) + func testInheritedThemeCanOverrideSemanticTokenColorColorGradientSkeletonMiddleOnBgEmphasized() throws { + XCTAssertNotEqual(inheritedTheme.colorGradientSkeletonMiddleOnBgEmphasized, abstractTheme.colorGradientSkeletonMiddleOnBgEmphasized) + XCTAssertTrue(inheritedTheme.colorGradientSkeletonMiddleOnBgEmphasized == OtherMockTheme.otherMockThemeMultipleColorSemanticTokens) } - func testInheritedThemeCanOverrideSemanticTokenColorChartSequentialAccent5Tint900Light() throws { - XCTAssertNotEqual(inheritedTheme.colorChartSequentialAccent5Tint900Light, abstractTheme.colorChartSequentialAccent5Tint900Light) - XCTAssertTrue(inheritedTheme.colorChartSequentialAccent5Tint900Light == OtherMockTheme.otherMockThemeSemanticColorToken) + func testInheritedThemeCanOverrideSemanticTokenColorColorGradientSkeletonStartEnd() throws { + XCTAssertNotEqual(inheritedTheme.colorGradientSkeletonStartEnd, abstractTheme.colorGradientSkeletonStartEnd) + XCTAssertTrue(inheritedTheme.colorGradientSkeletonStartEnd == OtherMockTheme.otherMockThemeMultipleColorSemanticTokens) } - func testInheritedThemeCanOverrideSemanticTokenColorChartSequentialAccent5Tint900Dark() throws { - XCTAssertNotEqual(inheritedTheme.colorChartSequentialAccent5Tint900Dark, abstractTheme.colorChartSequentialAccent5Tint900Dark) - XCTAssertTrue(inheritedTheme.colorChartSequentialAccent5Tint900Dark == OtherMockTheme.otherMockThemeSemanticColorToken) + func testInheritedThemeCanOverrideSemanticTokenColorColorGradientSkeletonStartEndOnBgEmphasized() throws { + XCTAssertNotEqual(inheritedTheme.colorGradientSkeletonStartEndOnBgEmphasized, abstractTheme.colorGradientSkeletonMiddle) + XCTAssertTrue(inheritedTheme.colorGradientSkeletonStartEndOnBgEmphasized == OtherMockTheme.otherMockThemeMultipleColorSemanticTokens) } } diff --git a/OUDS/Core/OUDS/Tests/OUDSTheme/TestThemeOverrideOfColorSemanticTokens.swift b/OUDS/Core/OUDS/Tests/OUDSTheme/TestThemeOverrideOfColorSemanticTokens.swift index ef2f1db37..4b3ca7069 100644 --- a/OUDS/Core/OUDS/Tests/OUDSTheme/TestThemeOverrideOfColorSemanticTokens.swift +++ b/OUDS/Core/OUDS/Tests/OUDSTheme/TestThemeOverrideOfColorSemanticTokens.swift @@ -88,26 +88,6 @@ final class TestThemeOverrideOfColorSemanticTokens: XCTestCase { XCTAssertTrue(inheritedTheme.colorBgBrandPrimaryDark == OtherMockTheme.otherMockThemeSemanticColorToken) } - func testInheritedThemeCanOverrideSemanticTokenColorBgBrandSecondaryLight() throws { - XCTAssertNotEqual(inheritedTheme.colorBgBrandSecondaryLight, abstractTheme.colorBgBrandSecondaryLight) - XCTAssertTrue(inheritedTheme.colorBgBrandSecondaryLight == OtherMockTheme.otherMockThemeSemanticColorToken) - } - - func testInheritedThemeCanOverrideSemanticTokenColorBgBrandSecondaryDark() throws { - XCTAssertNotEqual(inheritedTheme.colorBgBrandSecondaryDark, abstractTheme.colorBgBrandSecondaryDark) - XCTAssertTrue(inheritedTheme.colorBgBrandSecondaryDark == OtherMockTheme.otherMockThemeSemanticColorToken) - } - - func testInheritedThemeCanOverrideSemanticTokenColorBgBrandTertiaryLight() throws { - XCTAssertNotEqual(inheritedTheme.colorBgBrandTertiaryLight, abstractTheme.colorBgBrandTertiaryLight) - XCTAssertTrue(inheritedTheme.colorBgBrandTertiaryLight == OtherMockTheme.otherMockThemeSemanticColorToken) - } - - func testInheritedThemeCanOverrideSemanticTokenColorBgBrandTertiaryDark() throws { - XCTAssertNotEqual(inheritedTheme.colorBgBrandTertiaryDark, abstractTheme.colorBgBrandTertiaryDark) - XCTAssertTrue(inheritedTheme.colorBgBrandTertiaryDark == OtherMockTheme.otherMockThemeSemanticColorToken) - } - func testInheritedThemeCanOverrideSemanticTokenColorBgStatusNeutralLight() throws { XCTAssertNotEqual(inheritedTheme.colorBgStatusNeutralLight, abstractTheme.colorBgStatusNeutralLight) XCTAssertTrue(inheritedTheme.colorBgStatusNeutralLight == OtherMockTheme.otherMockThemeSemanticColorToken) @@ -290,14 +270,14 @@ final class TestThemeOverrideOfColorSemanticTokens: XCTestCase { XCTAssertTrue(inheritedTheme.colorContentDefaultDark == OtherMockTheme.otherMockThemeSemanticColorToken) } - func testInheritedThemeCanOverrideSemanticTokenColorContentContentDefaultOnBgEmphasizedLight() throws { - XCTAssertNotEqual(inheritedTheme.colorContentContentDefaultOnBgEmphasizedLight, abstractTheme.colorContentContentDefaultOnBgEmphasizedLight) - XCTAssertTrue(inheritedTheme.colorContentContentDefaultOnBgEmphasizedLight == OtherMockTheme.otherMockThemeSemanticColorToken) + func testInheritedThemeCanOverrideSemanticTokenColorContentDefaultOnBgEmphasizedLight() throws { + XCTAssertNotEqual(inheritedTheme.colorContentDefaultOnBgEmphasizedLight, abstractTheme.colorContentDefaultOnBgEmphasizedLight) + XCTAssertTrue(inheritedTheme.colorContentDefaultOnBgEmphasizedLight == OtherMockTheme.otherMockThemeSemanticColorToken) } - func testInheritedThemeCanOverrideSemanticTokenColorContentContentDefaultOnBgEmphasizedDark() throws { - XCTAssertNotEqual(inheritedTheme.colorContentContentDefaultOnBgEmphasizedDark, abstractTheme.colorContentContentDefaultOnBgEmphasizedDark) - XCTAssertTrue(inheritedTheme.colorContentContentDefaultOnBgEmphasizedDark == OtherMockTheme.otherMockThemeSemanticColorToken) + func testInheritedThemeCanOverrideSemanticTokenColorContentDefaultOnBgEmphasizedDark() throws { + XCTAssertNotEqual(inheritedTheme.colorContentDefaultOnBgEmphasizedDark, abstractTheme.colorContentDefaultOnBgEmphasizedDark) + XCTAssertTrue(inheritedTheme.colorContentDefaultOnBgEmphasizedDark == OtherMockTheme.otherMockThemeSemanticColorToken) } func testInheritedThemeCanOverrideSemanticTokenColorContentMutedLight() throws { @@ -310,14 +290,14 @@ final class TestThemeOverrideOfColorSemanticTokens: XCTestCase { XCTAssertTrue(inheritedTheme.colorContentMutedDark == OtherMockTheme.otherMockThemeSemanticColorToken) } - func testInheritedThemeCanOverrideSemanticTokenColorContentContentMutedOnBgEmphasizedLight() throws { - XCTAssertNotEqual(inheritedTheme.colorContentContentMutedOnBgEmphasizedLight, abstractTheme.colorContentContentMutedOnBgEmphasizedLight) - XCTAssertTrue(inheritedTheme.colorContentContentMutedOnBgEmphasizedLight == OtherMockTheme.otherMockThemeSemanticColorToken) + func testInheritedThemeCanOverrideSemanticTokenColorContentMutedOnBgEmphasizedLight() throws { + XCTAssertNotEqual(inheritedTheme.colorContentMutedOnBgEmphasizedLight, abstractTheme.colorContentMutedOnBgEmphasizedLight) + XCTAssertTrue(inheritedTheme.colorContentMutedOnBgEmphasizedLight == OtherMockTheme.otherMockThemeSemanticColorToken) } - func testInheritedThemeCanOverrideSemanticTokenColorContentContentMutedOnBgEmphasizedDark() throws { - XCTAssertNotEqual(inheritedTheme.colorContentContentMutedOnBgEmphasizedDark, abstractTheme.colorContentContentMutedOnBgEmphasizedDark) - XCTAssertTrue(inheritedTheme.colorContentContentMutedOnBgEmphasizedDark == OtherMockTheme.otherMockThemeSemanticColorToken) + func testInheritedThemeCanOverrideSemanticTokenColorContentMutedOnBgEmphasizedDark() throws { + XCTAssertNotEqual(inheritedTheme.colorContentMutedOnBgEmphasizedDark, abstractTheme.colorContentMutedOnBgEmphasizedDark) + XCTAssertTrue(inheritedTheme.colorContentMutedOnBgEmphasizedDark == OtherMockTheme.otherMockThemeSemanticColorToken) } func testInheritedThemeCanOverrideSemanticTokenColorContentDisabledLight() throws { @@ -330,14 +310,14 @@ final class TestThemeOverrideOfColorSemanticTokens: XCTestCase { XCTAssertTrue(inheritedTheme.colorContentDisabledDark == OtherMockTheme.otherMockThemeSemanticColorToken) } - func testInheritedThemeCanOverrideSemanticTokenColorContentContentDisabledOnBgEmphasizedLight() throws { - XCTAssertNotEqual(inheritedTheme.colorContentContentDisabledOnBgEmphasizedLight, abstractTheme.colorContentContentDisabledOnBgEmphasizedLight) - XCTAssertTrue(inheritedTheme.colorContentContentDisabledOnBgEmphasizedLight == OtherMockTheme.otherMockThemeSemanticColorToken) + func testInheritedThemeCanOverrideSemanticTokenColorContentDisabledOnBgEmphasizedLight() throws { + XCTAssertNotEqual(inheritedTheme.colorContentDisabledOnBgEmphasizedLight, abstractTheme.colorContentDisabledOnBgEmphasizedLight) + XCTAssertTrue(inheritedTheme.colorContentDisabledOnBgEmphasizedLight == OtherMockTheme.otherMockThemeSemanticColorToken) } - func testInheritedThemeCanOverrideSemanticTokenColorContentContentDisabledOnBgEmphasizedDark() throws { - XCTAssertNotEqual(inheritedTheme.colorContentContentDisabledOnBgEmphasizedDark, abstractTheme.colorContentContentDisabledOnBgEmphasizedDark) - XCTAssertTrue(inheritedTheme.colorContentContentDisabledOnBgEmphasizedDark == OtherMockTheme.otherMockThemeSemanticColorToken) + func testInheritedThemeCanOverrideSemanticTokenColorContentDisabledOnBgEmphasizedDark() throws { + XCTAssertNotEqual(inheritedTheme.colorContentDisabledOnBgEmphasizedDark, abstractTheme.colorContentDisabledOnBgEmphasizedDark) + XCTAssertTrue(inheritedTheme.colorContentDisabledOnBgEmphasizedDark == OtherMockTheme.otherMockThemeSemanticColorToken) } func testInheritedThemeCanOverrideSemanticTokenColorContentBrandPrimaryLight() throws { @@ -350,24 +330,14 @@ final class TestThemeOverrideOfColorSemanticTokens: XCTestCase { XCTAssertTrue(inheritedTheme.colorContentBrandPrimaryDark == OtherMockTheme.otherMockThemeSemanticColorToken) } - func testInheritedThemeCanOverrideSemanticTokenColorContentBrandSecondaryLight() throws { - XCTAssertNotEqual(inheritedTheme.colorContentBrandSecondaryLight, abstractTheme.colorContentBrandSecondaryLight) - XCTAssertTrue(inheritedTheme.colorContentBrandSecondaryLight == OtherMockTheme.otherMockThemeSemanticColorToken) + func testInheritedThemeCanOverrideSemanticTokenColorContentBrandPrimaryOnBgEmphasizedLight() throws { + XCTAssertNotEqual(inheritedTheme.colorContentBrandPrimaryOnBgEmphasizedLight, abstractTheme.colorContentBrandPrimaryOnBgEmphasizedLight) + XCTAssertTrue(inheritedTheme.colorContentBrandPrimaryOnBgEmphasizedLight == OtherMockTheme.otherMockThemeSemanticColorToken) } - func testInheritedThemeCanOverrideSemanticTokenColorContentBrandSecondaryDark() throws { - XCTAssertNotEqual(inheritedTheme.colorContentBrandSecondaryDark, abstractTheme.colorContentBrandSecondaryDark) - XCTAssertTrue(inheritedTheme.colorContentBrandSecondaryDark == OtherMockTheme.otherMockThemeSemanticColorToken) - } - - func testInheritedThemeCanOverrideSemanticTokenColorContentBrandTertiaryLight() throws { - XCTAssertNotEqual(inheritedTheme.colorContentBrandTertiaryLight, abstractTheme.colorContentBrandTertiaryLight) - XCTAssertTrue(inheritedTheme.colorContentBrandTertiaryLight == OtherMockTheme.otherMockThemeSemanticColorToken) - } - - func testInheritedThemeCanOverrideSemanticTokenColorContentBrandTertiaryDark() throws { - XCTAssertNotEqual(inheritedTheme.colorContentBrandTertiaryDark, abstractTheme.colorContentBrandTertiaryDark) - XCTAssertTrue(inheritedTheme.colorContentBrandTertiaryDark == OtherMockTheme.otherMockThemeSemanticColorToken) + func testInheritedThemeCanOverrideSemanticTokenColorContentBrandPrimaryOnBgEmphasizedDarkk() throws { + XCTAssertNotEqual(inheritedTheme.colorContentBrandPrimaryOnBgEmphasizedDark, abstractTheme.colorContentBrandPrimaryOnBgEmphasizedDark) + XCTAssertTrue(inheritedTheme.colorContentBrandPrimaryOnBgEmphasizedDark == OtherMockTheme.otherMockThemeSemanticColorToken) } func testInheritedThemeCanOverrideSemanticTokenColorContentStatusPositiveLight() throws { @@ -410,178 +380,6 @@ final class TestThemeOverrideOfColorSemanticTokens: XCTestCase { XCTAssertTrue(inheritedTheme.colorContentStatusNegativeDark == OtherMockTheme.otherMockThemeSemanticColorToken) } - func testInheritedThemeCanOverrideSemanticTokenColorContentStatusAccentLight() throws { - XCTAssertNotEqual(inheritedTheme.colorContentStatusAccentLight, abstractTheme.colorContentStatusAccentLight) - XCTAssertTrue(inheritedTheme.colorContentStatusAccentLight == OtherMockTheme.otherMockThemeSemanticColorToken) - } - - func testInheritedThemeCanOverrideSemanticTokenColorContentStatusAccentDark() throws { - XCTAssertNotEqual(inheritedTheme.colorContentStatusAccentDark, abstractTheme.colorContentStatusAccentDark) - XCTAssertTrue(inheritedTheme.colorContentStatusAccentDark == OtherMockTheme.otherMockThemeSemanticColorToken) - } - - // MARK: Semantic token - Colors - Content - On Background - - func testInheritedThemeCanOverrideSemanticTokenColorContentOnBgPrimaryLight() throws { - XCTAssertNotEqual(inheritedTheme.colorContentOnBgPrimaryLight, abstractTheme.colorContentOnBgPrimaryLight) - XCTAssertTrue(inheritedTheme.colorContentOnBgPrimaryLight == OtherMockTheme.otherMockThemeSemanticColorToken) - } - - func testInheritedThemeCanOverrideSemanticTokenColorContentOnBgPrimaryDark() throws { - XCTAssertNotEqual(inheritedTheme.colorContentOnBgPrimaryDark, abstractTheme.colorContentOnBgPrimaryDark) - XCTAssertTrue(inheritedTheme.colorContentOnBgPrimaryDark == OtherMockTheme.otherMockThemeSemanticColorToken) - } - - func testInheritedThemeCanOverrideSemanticTokenColorContentOnBgSecondaryLight() throws { - XCTAssertNotEqual(inheritedTheme.colorContentOnBgSecondaryLight, abstractTheme.colorContentOnBgSecondaryLight) - XCTAssertTrue(inheritedTheme.colorContentOnBgSecondaryLight == OtherMockTheme.otherMockThemeSemanticColorToken) - } - - func testInheritedThemeCanOverrideSemanticTokenColorContentOnBgSecondaryDark() throws { - XCTAssertNotEqual(inheritedTheme.colorContentOnBgSecondaryDark, abstractTheme.colorContentOnBgSecondaryDark) - XCTAssertTrue(inheritedTheme.colorContentOnBgSecondaryDark == OtherMockTheme.otherMockThemeSemanticColorToken) - } - - func testInheritedThemeCanOverrideSemanticTokenColorContentOnBgTertiaryLight() throws { - XCTAssertNotEqual(inheritedTheme.colorContentOnBgTertiaryLight, abstractTheme.colorContentOnBgTertiaryLight) - XCTAssertTrue(inheritedTheme.colorContentOnBgTertiaryLight == OtherMockTheme.otherMockThemeSemanticColorToken) - } - - func testInheritedThemeCanOverrideSemanticTokenColorContentOnBgTertiaryDark() throws { - XCTAssertNotEqual(inheritedTheme.colorContentOnBgTertiaryDark, abstractTheme.colorContentOnBgTertiaryDark) - XCTAssertTrue(inheritedTheme.colorContentOnBgTertiaryDark == OtherMockTheme.otherMockThemeSemanticColorToken) - } - - func testInheritedThemeCanOverrideSemanticTokenColorContentOnBgStatusPositiveMutedLight() throws { - XCTAssertNotEqual(inheritedTheme.colorContentOnBgStatusPositiveMutedLight, abstractTheme.colorContentOnBgStatusPositiveMutedLight) - XCTAssertTrue(inheritedTheme.colorContentOnBgStatusPositiveMutedLight == OtherMockTheme.otherMockThemeSemanticColorToken) - } - - func testInheritedThemeCanOverrideSemanticTokenColorContentOnBgStatusPositiveMutedDark() throws { - XCTAssertNotEqual(inheritedTheme.colorContentOnBgStatusPositiveMutedDark, abstractTheme.colorContentOnBgStatusPositiveMutedDark) - XCTAssertTrue(inheritedTheme.colorContentOnBgStatusPositiveMutedDark == OtherMockTheme.otherMockThemeSemanticColorToken) - } - - func testInheritedThemeCanOverrideSemanticTokenColorContentOnBgStatusPositiveMutedOnBgEmphasizedLight() throws { - XCTAssertNotEqual(inheritedTheme.colorContentOnBgStatusPositiveMutedOnBgEmphasizedLight, abstractTheme.colorContentOnBgStatusPositiveMutedOnBgEmphasizedLight) - XCTAssertTrue(inheritedTheme.colorContentOnBgStatusPositiveMutedOnBgEmphasizedLight == OtherMockTheme.otherMockThemeSemanticColorToken) - } - - func testInheritedThemeCanOverrideSemanticTokenColorContentOnBgStatusPositiveMutedOnBgEmphasizedDark() throws { - XCTAssertNotEqual(inheritedTheme.colorContentOnBgStatusPositiveMutedOnBgEmphasizedDark, abstractTheme.colorContentOnBgStatusPositiveMutedOnBgEmphasizedDark) - XCTAssertTrue(inheritedTheme.colorContentOnBgStatusPositiveMutedOnBgEmphasizedDark == OtherMockTheme.otherMockThemeSemanticColorToken) - } - - func testInheritedThemeCanOverrideSemanticTokenColorContentOnBgStatusPositiveEmphasizedLight() throws { - XCTAssertNotEqual(inheritedTheme.colorContentOnBgStatusPositiveEmphasizedLight, abstractTheme.colorContentOnBgStatusPositiveEmphasizedLight) - XCTAssertTrue(inheritedTheme.colorContentOnBgStatusPositiveEmphasizedLight == OtherMockTheme.otherMockThemeSemanticColorToken) - } - - func testInheritedThemeCanOverrideSemanticTokenColorContentOnBgStatusPositiveEmphasizedDark() throws { - XCTAssertNotEqual(inheritedTheme.colorContentOnBgStatusPositiveEmphasizedDark, abstractTheme.colorContentOnBgStatusPositiveEmphasizedDark) - XCTAssertTrue(inheritedTheme.colorContentOnBgStatusPositiveEmphasizedDark == OtherMockTheme.otherMockThemeSemanticColorToken) - } - - func testInheritedThemeCanOverrideSemanticTokenColorContentOnBgStatusInfoMutedLight() throws { - XCTAssertNotEqual(inheritedTheme.colorContentOnBgStatusInfoMutedLight, abstractTheme.colorContentOnBgStatusInfoMutedLight) - XCTAssertTrue(inheritedTheme.colorContentOnBgStatusInfoMutedLight == OtherMockTheme.otherMockThemeSemanticColorToken) - } - - func testInheritedThemeCanOverrideSemanticTokenColorContentOnBgStatusInfoMutedDark() throws { - XCTAssertNotEqual(inheritedTheme.colorContentOnBgStatusInfoMutedDark, abstractTheme.colorContentOnBgStatusInfoMutedDark) - XCTAssertTrue(inheritedTheme.colorContentOnBgStatusInfoMutedDark == OtherMockTheme.otherMockThemeSemanticColorToken) - } - - func testInheritedThemeCanOverrideSemanticTokenColorContentOnBgStatusInfoMutedOnBgEmphasizedLight() throws { - XCTAssertNotEqual(inheritedTheme.colorContentOnBgStatusInfoMutedOnBgEmphasizedLight, abstractTheme.colorContentOnBgStatusInfoMutedOnBgEmphasizedLight) - XCTAssertTrue(inheritedTheme.colorContentOnBgStatusInfoMutedOnBgEmphasizedLight == OtherMockTheme.otherMockThemeSemanticColorToken) - } - - func testInheritedThemeCanOverrideSemanticTokenColorContentOnBgStatusInfoMutedOnBgEmphasizedDark() throws { - XCTAssertNotEqual(inheritedTheme.colorContentOnBgStatusInfoMutedOnBgEmphasizedDark, abstractTheme.colorContentOnBgStatusInfoMutedOnBgEmphasizedDark) - XCTAssertTrue(inheritedTheme.colorContentOnBgStatusInfoMutedOnBgEmphasizedDark == OtherMockTheme.otherMockThemeSemanticColorToken) - } - - func testInheritedThemeCanOverrideSemanticTokenColorContentOnBgStatusInfoEmphasizedLight() throws { - XCTAssertNotEqual(inheritedTheme.colorContentOnBgStatusInfoEmphasizedLight, abstractTheme.colorContentOnBgStatusInfoEmphasizedLight) - XCTAssertTrue(inheritedTheme.colorContentOnBgStatusInfoEmphasizedLight == OtherMockTheme.otherMockThemeSemanticColorToken) - } - - func testInheritedThemeCanOverrideSemanticTokenColorContentOnBgStatusInfoEmphasizedDark() throws { - XCTAssertNotEqual(inheritedTheme.colorContentOnBgStatusInfoEmphasizedDark, abstractTheme.colorContentOnBgStatusInfoEmphasizedDark) - XCTAssertTrue(inheritedTheme.colorContentOnBgStatusInfoEmphasizedDark == OtherMockTheme.otherMockThemeSemanticColorToken) - } - - func testInheritedThemeCanOverrideSemanticTokenColorContentOnBgStatusWarningMutedLight() throws { - XCTAssertNotEqual(inheritedTheme.colorContentOnBgStatusWarningMutedLight, abstractTheme.colorContentOnBgStatusWarningMutedLight) - XCTAssertTrue(inheritedTheme.colorContentOnBgStatusWarningMutedLight == OtherMockTheme.otherMockThemeSemanticColorToken) - } - - func testInheritedThemeCanOverrideSemanticTokenColorContentOnBgStatusWarningMutedDark() throws { - XCTAssertNotEqual(inheritedTheme.colorContentOnBgStatusWarningMutedDark, abstractTheme.colorContentOnBgStatusWarningMutedDark) - XCTAssertTrue(inheritedTheme.colorContentOnBgStatusWarningMutedDark == OtherMockTheme.otherMockThemeSemanticColorToken) - } - - func testInheritedThemeCanOverrideSemanticTokenColorContentOnBgStatusWarningMutedOnBgEmphasizedLight() throws { - XCTAssertNotEqual(inheritedTheme.colorContentOnBgStatusWarningMutedOnBgEmphasizedLight, abstractTheme.colorContentOnBgStatusWarningMutedOnBgEmphasizedLight) - XCTAssertTrue(inheritedTheme.colorContentOnBgStatusWarningMutedOnBgEmphasizedLight == OtherMockTheme.otherMockThemeSemanticColorToken) - } - - func testInheritedThemeCanOverrideSemanticTokenColorContentOnBgStatusWarningMutedOnBgEmphasizedDark() throws { - XCTAssertNotEqual(inheritedTheme.colorContentOnBgStatusWarningMutedOnBgEmphasizedDark, abstractTheme.colorContentOnBgStatusWarningMutedOnBgEmphasizedDark) - XCTAssertTrue(inheritedTheme.colorContentOnBgStatusWarningMutedOnBgEmphasizedDark == OtherMockTheme.otherMockThemeSemanticColorToken) - } - - func testInheritedThemeCanOverrideSemanticTokenColorContentOnBgStatusWarningEmphasizedLight() throws { - XCTAssertNotEqual(inheritedTheme.colorContentOnBgStatusWarningEmphasizedLight, abstractTheme.colorContentOnBgStatusWarningEmphasizedLight) - XCTAssertTrue(inheritedTheme.colorContentOnBgStatusWarningEmphasizedLight == OtherMockTheme.otherMockThemeSemanticColorToken) - } - - func testInheritedThemeCanOverrideSemanticTokenColorContentOnBgStatusWarningEmphasizedDark() throws { - XCTAssertNotEqual(inheritedTheme.colorContentOnBgStatusWarningEmphasizedDark, abstractTheme.colorContentOnBgStatusWarningEmphasizedDark) - XCTAssertTrue(inheritedTheme.colorContentOnBgStatusWarningEmphasizedDark == OtherMockTheme.otherMockThemeSemanticColorToken) - } - - func testInheritedThemeCanOverrideSemanticTokenColorContentOnBgStatusNegativeMutedLight() throws { - XCTAssertNotEqual(inheritedTheme.colorContentOnBgStatusNegativeMutedLight, abstractTheme.colorContentOnBgStatusNegativeMutedLight) - XCTAssertTrue(inheritedTheme.colorContentOnBgStatusNegativeMutedLight == OtherMockTheme.otherMockThemeSemanticColorToken) - } - - func testInheritedThemeCanOverrideSemanticTokenColorContentOnBgStatusNegativeMutedDark() throws { - XCTAssertNotEqual(inheritedTheme.colorContentOnBgStatusNegativeMutedDark, abstractTheme.colorContentOnBgStatusNegativeMutedDark) - XCTAssertTrue(inheritedTheme.colorContentOnBgStatusNegativeMutedDark == OtherMockTheme.otherMockThemeSemanticColorToken) - } - - func testInheritedThemeCanOverrideSemanticTokenColorContentOnBgStatusNegativeMutedOnBgEmphasizedLight() throws { - XCTAssertNotEqual(inheritedTheme.colorContentOnBgStatusNegativeMutedOnBgEmphasizedLight, abstractTheme.colorContentOnBgStatusNegativeMutedOnBgEmphasizedLight) - XCTAssertTrue(inheritedTheme.colorContentOnBgStatusNegativeMutedOnBgEmphasizedLight == OtherMockTheme.otherMockThemeSemanticColorToken) - } - - func testInheritedThemeCanOverrideSemanticTokenColorContentOnBgStatusNegativeMutedOnBgEmphasizedDark() throws { - XCTAssertNotEqual(inheritedTheme.colorContentOnBgStatusNegativeMutedOnBgEmphasizedDark, abstractTheme.colorContentOnBgStatusNegativeMutedOnBgEmphasizedDark) - XCTAssertTrue(inheritedTheme.colorContentOnBgStatusNegativeMutedOnBgEmphasizedDark == OtherMockTheme.otherMockThemeSemanticColorToken) - } - - func testInheritedThemeCanOverrideSemanticTokenColorContentOnBgStatusNegativeEmphasizedLight() throws { - XCTAssertNotEqual(inheritedTheme.colorContentOnBgStatusNegativeEmphasizedLight, abstractTheme.colorContentOnBgStatusNegativeEmphasizedLight) - XCTAssertTrue(inheritedTheme.colorContentOnBgStatusNegativeEmphasizedLight == OtherMockTheme.otherMockThemeSemanticColorToken) - } - - func testInheritedThemeCanOverrideSemanticTokenColorContentOnBgStatusNegativeEmphasizedDark() throws { - XCTAssertNotEqual(inheritedTheme.colorContentOnBgStatusNegativeEmphasizedDark, abstractTheme.colorContentOnBgStatusNegativeEmphasizedDark) - XCTAssertTrue(inheritedTheme.colorContentOnBgStatusNegativeEmphasizedDark == OtherMockTheme.otherMockThemeSemanticColorToken) - } - - func testInheritedThemeCanOverrideSemanticTokenColorContentOnBgStatusAccentMutedLight() throws { - XCTAssertNotEqual(inheritedTheme.colorContentOnBgStatusAccentMutedLight, abstractTheme.colorContentOnBgStatusAccentMutedLight) - XCTAssertTrue(inheritedTheme.colorContentOnBgStatusAccentMutedLight == OtherMockTheme.otherMockThemeSemanticColorToken) - } - - func testInheritedThemeCanOverrideSemanticTokenColorContentOnBgStatusAccentMutedDark() throws { - XCTAssertNotEqual(inheritedTheme.colorContentOnBgStatusAccentMutedDark, abstractTheme.colorContentOnBgStatusAccentMutedDark) - XCTAssertTrue(inheritedTheme.colorContentOnBgStatusAccentMutedDark == OtherMockTheme.otherMockThemeSemanticColorToken) - } - // MARK: Semantic token - Colors - Border func testInheritedThemeCanOverrideSemanticTokenColorBorderDefaultLight() throws { @@ -634,126 +432,64 @@ final class TestThemeOverrideOfColorSemanticTokens: XCTestCase { XCTAssertTrue(inheritedTheme.colorBorderFocusDark == OtherMockTheme.otherMockThemeSemanticColorToken) } - // WARNING: #124 - Colors to use sont part of Orange Theme so sont not reachable at this level, as un workaround add raw values - func testInheritedThemeCanOverrideSemanticTokenColorBorderBrandPrimaryOnBgEmphasizedLight() throws { - XCTAssertNotEqual(inheritedTheme.colorBorderBrandPrimaryOnBgEmphasizedLight, abstractTheme.colorBorderBrandPrimaryOnBgEmphasizedLight) - XCTAssertTrue(inheritedTheme.colorBorderBrandPrimaryOnBgEmphasizedLight == OtherMockTheme.otherMockThemeSemanticColorToken) - } - - func testInheritedThemeCanOverrideSemanticTokenColorBorderBrandPrimaryOnBgEmphasizedDark() throws { - XCTAssertNotEqual(inheritedTheme.colorBorderBrandPrimaryOnBgEmphasizedDark, abstractTheme.colorBorderBrandPrimaryOnBgEmphasizedDark) - XCTAssertTrue(inheritedTheme.colorBorderBrandPrimaryOnBgEmphasizedDark == OtherMockTheme.otherMockThemeSemanticColorToken) - } - - // WARNING: #124 - Colors to use sont part of Orange Theme so sont not reachable at this level, as un workaround add raw values - func testInheritedThemeCanOverrideSemanticTokenColorBorderBrandPrimaryLight() throws { - XCTAssertNotEqual(inheritedTheme.colorBorderBrandPrimaryLight, abstractTheme.colorBorderBrandPrimaryLight) - XCTAssertTrue(inheritedTheme.colorBorderBrandPrimaryLight == OtherMockTheme.otherMockThemeSemanticColorToken) - } - - func testInheritedThemeCanOverrideSemanticTokenColorBorderBrandPrimaryDark() throws { - XCTAssertNotEqual(inheritedTheme.colorBorderBrandPrimaryDark, abstractTheme.colorBorderBrandPrimaryDark) - XCTAssertTrue(inheritedTheme.colorBorderBrandPrimaryDark == OtherMockTheme.otherMockThemeSemanticColorToken) - } - - func testInheritedThemeCanOverrideSemanticTokenColorBorderBrandSecondaryLight() throws { - XCTAssertNotEqual(inheritedTheme.colorBorderBrandSecondaryLight, abstractTheme.colorBorderBrandSecondaryLight) - XCTAssertTrue(inheritedTheme.colorBorderBrandSecondaryLight == OtherMockTheme.otherMockThemeSemanticColorToken) - } - - func testInheritedThemeCanOverrideSemanticTokenColorBorderBrandSecondaryDark() throws { - XCTAssertNotEqual(inheritedTheme.colorBorderBrandSecondaryDark, abstractTheme.colorBorderBrandSecondaryDark) - XCTAssertTrue(inheritedTheme.colorBorderBrandSecondaryDark == OtherMockTheme.otherMockThemeSemanticColorToken) - } - - func testInheritedThemeCanOverrideSemanticTokenColorBorderBrandTertiaryLight() throws { - XCTAssertNotEqual(inheritedTheme.colorBorderBrandTertiaryLight, abstractTheme.colorBorderBrandTertiaryLight) - XCTAssertTrue(inheritedTheme.colorBorderBrandTertiaryLight == OtherMockTheme.otherMockThemeSemanticColorToken) - } - - func testInheritedThemeCanOverrideSemanticTokenColorBorderBrandTertiaryDark() throws { - XCTAssertNotEqual(inheritedTheme.colorBorderBrandTertiaryDark, abstractTheme.colorBorderBrandTertiaryDark) - XCTAssertTrue(inheritedTheme.colorBorderBrandTertiaryDark == OtherMockTheme.otherMockThemeSemanticColorToken) - } - - func testInheritedThemeCanOverrideSemanticTokenColorBorderStatusPositiveLight() throws { - XCTAssertNotEqual(inheritedTheme.colorBorderStatusPositiveLight, abstractTheme.colorBorderStatusPositiveLight) - XCTAssertTrue(inheritedTheme.colorBorderStatusPositiveLight == OtherMockTheme.otherMockThemeSemanticColorToken) - } - - func testInheritedThemeCanOverrideSemanticTokenColorBorderStatusPositiveDark() throws { - XCTAssertNotEqual(inheritedTheme.colorBorderStatusPositiveDark, abstractTheme.colorBorderStatusPositiveDark) - XCTAssertTrue(inheritedTheme.colorBorderStatusPositiveDark == OtherMockTheme.otherMockThemeSemanticColorToken) - } - - func testInheritedThemeCanOverrideSemanticTokenColorBorderStatusInfoLight() throws { - XCTAssertNotEqual(inheritedTheme.colorBorderStatusInfoLight, abstractTheme.colorBorderStatusInfoLight) - XCTAssertTrue(inheritedTheme.colorBorderStatusInfoLight == OtherMockTheme.otherMockThemeSemanticColorToken) - } - - func testInheritedThemeCanOverrideSemanticTokenColorBorderStatusInfoDark() throws { - XCTAssertNotEqual(inheritedTheme.colorBorderStatusInfoDark, abstractTheme.colorBorderStatusInfoDark) - XCTAssertTrue(inheritedTheme.colorBorderStatusInfoDark == OtherMockTheme.otherMockThemeSemanticColorToken) - } - - func testInheritedThemeCanOverrideSemanticTokenColorBorderStatusWarningLight() throws { - XCTAssertNotEqual(inheritedTheme.colorBorderStatusWarningLight, abstractTheme.colorBorderStatusWarningLight) - XCTAssertTrue(inheritedTheme.colorBorderStatusWarningLight == OtherMockTheme.otherMockThemeSemanticColorToken) + func testInheritedThemeCanOverrideSemanticTokenColorBorderFocusInsetLight() throws { + XCTAssertNotEqual(inheritedTheme.colorBorderFocusInsetLight, abstractTheme.colorBorderFocusInsetLight) + XCTAssertTrue(inheritedTheme.colorBorderFocusInsetLight == OtherMockTheme.otherMockThemeSemanticColorToken) } - func testInheritedThemeCanOverrideSemanticTokenColorBorderStatusWarningDark() throws { - XCTAssertNotEqual(inheritedTheme.colorBorderStatusWarningDark, abstractTheme.colorBorderStatusWarningDark) - XCTAssertTrue(inheritedTheme.colorBorderStatusWarningDark == OtherMockTheme.otherMockThemeSemanticColorToken) + func testInheritedThemeCanOverrideSemanticTokenColorBorderFocusInsetDark() throws { + XCTAssertNotEqual(inheritedTheme.colorBorderFocusInsetDark, abstractTheme.colorBorderFocusInsetDark) + XCTAssertTrue(inheritedTheme.colorBorderFocusInsetDark == OtherMockTheme.otherMockThemeSemanticColorToken) } - func testInheritedThemeCanOverrideSemanticTokenColorBorderStatusNegativeLight() throws { - XCTAssertNotEqual(inheritedTheme.colorBorderStatusNegativeLight, abstractTheme.colorBorderStatusNegativeLight) - XCTAssertTrue(inheritedTheme.colorBorderStatusNegativeLight == OtherMockTheme.otherMockThemeSemanticColorToken) + func testInheritedThemeCanOverrideSemanticTokenColorBorderFocusInsetOnBgEmphasizedLight() throws { + XCTAssertNotEqual(inheritedTheme.colorBorderFocusInsetOnBgEmphasizedLight, abstractTheme.colorBorderFocusInsetOnBgEmphasizedLight) + XCTAssertTrue(inheritedTheme.colorBorderFocusInsetOnBgEmphasizedLight == OtherMockTheme.otherMockThemeSemanticColorToken) } - func testInheritedThemeCanOverrideSemanticTokenColorBorderStatusNegativeDark() throws { - XCTAssertNotEqual(inheritedTheme.colorBorderStatusNegativeDark, abstractTheme.colorBorderStatusNegativeDark) - XCTAssertTrue(inheritedTheme.colorBorderStatusNegativeDark == OtherMockTheme.otherMockThemeSemanticColorToken) + func testInheritedThemeCanOverrideSemanticTokenColorBorderFocusInsetOnBgEmphasizedDark() throws { + XCTAssertNotEqual(inheritedTheme.colorBorderFocusInsetOnBgEmphasizedDark, abstractTheme.colorBorderFocusInsetOnBgEmphasizedDark) + XCTAssertTrue(inheritedTheme.colorBorderFocusInsetOnBgEmphasizedDark == OtherMockTheme.otherMockThemeSemanticColorToken) } - func testInheritedThemeCanOverrideSemanticTokenColorBorderStatusAccentLight() throws { - XCTAssertNotEqual(inheritedTheme.colorBorderStatusAccentLight, abstractTheme.colorBorderStatusAccentLight) - XCTAssertTrue(inheritedTheme.colorBorderStatusAccentLight == OtherMockTheme.otherMockThemeSemanticColorToken) + func testInheritedThemeCanOverrideSemanticTokenColorBorderFocusOnBgEmphasizedLight() throws { + XCTAssertNotEqual(inheritedTheme.colorBorderFocusOnBgEmphasizedLight, abstractTheme.colorBorderFocusOnBgEmphasizedLight) + XCTAssertTrue(inheritedTheme.colorBorderFocusOnBgEmphasizedLight == OtherMockTheme.otherMockThemeSemanticColorToken) } - func testInheritedThemeCanOverrideSemanticTokenColorBorderStatusAccentDark() throws { - XCTAssertNotEqual(inheritedTheme.colorBorderStatusAccentDark, abstractTheme.colorBorderStatusAccentDark) - XCTAssertTrue(inheritedTheme.colorBorderStatusAccentDark == OtherMockTheme.otherMockThemeSemanticColorToken) + func testInheritedThemeCanOverrideSemanticTokenColorBorderFocusOnBgEmphasizedDark() throws { + XCTAssertNotEqual(inheritedTheme.colorBorderFocusOnBgEmphasizedDark, abstractTheme.colorBorderFocusOnBgEmphasizedDark) + XCTAssertTrue(inheritedTheme.colorBorderFocusOnBgEmphasizedDark == OtherMockTheme.otherMockThemeSemanticColorToken) } - func testInheritedThemeCanOverrideSemanticTokenColorBorderOnBgBrandPrimaryLight() throws { - XCTAssertNotEqual(inheritedTheme.colorBorderOnBgBrandPrimaryLight, abstractTheme.colorBorderOnBgBrandPrimaryLight) - XCTAssertTrue(inheritedTheme.colorBorderOnBgBrandPrimaryLight == OtherMockTheme.otherMockThemeSemanticColorToken) + func testInheritedThemeCanOverrideSemanticTokenColorBorderBrandPrimaryOnBgEmphasizedLight() throws { + XCTAssertNotEqual(inheritedTheme.colorBorderBrandPrimaryOnBgEmphasizedLight, abstractTheme.colorBorderBrandPrimaryOnBgEmphasizedLight) + XCTAssertTrue(inheritedTheme.colorBorderBrandPrimaryOnBgEmphasizedLight == OtherMockTheme.otherMockThemeSemanticColorToken) } - func testInheritedThemeCanOverrideSemanticTokenColorBorderOnBgBrandPrimaryDark() throws { - XCTAssertNotEqual(inheritedTheme.colorBorderOnBgBrandPrimaryDark, abstractTheme.colorBorderOnBgBrandPrimaryDark) - XCTAssertTrue(inheritedTheme.colorBorderOnBgBrandPrimaryDark == OtherMockTheme.otherMockThemeSemanticColorToken) + func testInheritedThemeCanOverrideSemanticTokenColorBorderBrandPrimaryOnBgEmphasizedDark() throws { + XCTAssertNotEqual(inheritedTheme.colorBorderBrandPrimaryOnBgEmphasizedDark, abstractTheme.colorBorderBrandPrimaryOnBgEmphasizedDark) + XCTAssertTrue(inheritedTheme.colorBorderBrandPrimaryOnBgEmphasizedDark == OtherMockTheme.otherMockThemeSemanticColorToken) } - func testInheritedThemeCanOverrideSemanticTokenColorBorderOnBgBrandSecondaryLight() throws { - XCTAssertNotEqual(inheritedTheme.colorBorderOnBgBrandSecondaryLight, abstractTheme.colorBorderOnBgBrandSecondaryLight) - XCTAssertTrue(inheritedTheme.colorBorderOnBgBrandSecondaryLight == OtherMockTheme.otherMockThemeSemanticColorToken) + func testInheritedThemeCanOverrideSemanticTokenColorBorderBrandPrimaryLight() throws { + XCTAssertNotEqual(inheritedTheme.colorBorderBrandPrimaryLight, abstractTheme.colorBorderBrandPrimaryLight) + XCTAssertTrue(inheritedTheme.colorBorderBrandPrimaryLight == OtherMockTheme.otherMockThemeSemanticColorToken) } - func testInheritedThemeCanOverrideSemanticTokenColorBorderOnBgBrandSecondaryDark() throws { - XCTAssertNotEqual(inheritedTheme.colorBorderOnBgBrandSecondaryDark, abstractTheme.colorBorderOnBgBrandSecondaryDark) - XCTAssertTrue(inheritedTheme.colorBorderOnBgBrandSecondaryDark == OtherMockTheme.otherMockThemeSemanticColorToken) + func testInheritedThemeCanOverrideSemanticTokenColorBorderBrandPrimaryDark() throws { + XCTAssertNotEqual(inheritedTheme.colorBorderBrandPrimaryDark, abstractTheme.colorBorderBrandPrimaryDark) + XCTAssertTrue(inheritedTheme.colorBorderBrandPrimaryDark == OtherMockTheme.otherMockThemeSemanticColorToken) } - func testInheritedThemeCanOverrideSemanticTokenColorBorderOnBgBrandTertiaryLight() throws { - XCTAssertNotEqual(inheritedTheme.colorBorderOnBgBrandTertiaryLight, abstractTheme.colorBorderOnBgBrandTertiaryLight) - XCTAssertTrue(inheritedTheme.colorBorderOnBgBrandTertiaryLight == OtherMockTheme.otherMockThemeSemanticColorToken) + func testInheritedThemeCanOverrideSemanticTokenColorBorderOnBrandPrimaryLight() throws { + XCTAssertNotEqual(inheritedTheme.colorBorderOnBrandPrimaryLight, abstractTheme.colorBorderOnBrandPrimaryLight) + XCTAssertTrue(inheritedTheme.colorBorderOnBrandPrimaryLight == OtherMockTheme.otherMockThemeSemanticColorToken) } - func testInheritedThemeCanOverrideSemanticTokenColorBorderOnBgBrandTertiaryDark() throws { - XCTAssertNotEqual(inheritedTheme.colorBorderOnBgBrandTertiaryDark, abstractTheme.colorBorderOnBgBrandTertiaryDark) - XCTAssertTrue(inheritedTheme.colorBorderOnBgBrandTertiaryDark == OtherMockTheme.otherMockThemeSemanticColorToken) + func testInheritedThemeCanOverrideSemanticTokenColorBorderOnBrandPrimaryDark() throws { + XCTAssertNotEqual(inheritedTheme.colorBorderOnBrandPrimaryDark, abstractTheme.colorBorderOnBrandPrimaryDark) + XCTAssertTrue(inheritedTheme.colorBorderOnBrandPrimaryDark == OtherMockTheme.otherMockThemeSemanticColorToken) } // MARK: Semantic token - Colors - Action @@ -808,16 +544,6 @@ final class TestThemeOverrideOfColorSemanticTokens: XCTestCase { XCTAssertTrue(inheritedTheme.colorActionVisitedDark == OtherMockTheme.otherMockThemeSemanticColorToken) } - func testInheritedThemeCanOverrideSemanticTokenColorActionVistedOnBgEmphasizedLight() throws { - XCTAssertNotEqual(inheritedTheme.colorActionVistedOnBgEmphasizedLight, abstractTheme.colorActionVistedOnBgEmphasizedLight) - XCTAssertTrue(inheritedTheme.colorActionVistedOnBgEmphasizedLight == OtherMockTheme.otherMockThemeSemanticColorToken) - } - - func testInheritedThemeCanOverrideSemanticTokenColorActionVistedOnBgEmphasizedDark() throws { - XCTAssertNotEqual(inheritedTheme.colorActionVistedOnBgEmphasizedDark, abstractTheme.colorActionVistedOnBgEmphasizedDark) - XCTAssertTrue(inheritedTheme.colorActionVistedOnBgEmphasizedDark == OtherMockTheme.otherMockThemeSemanticColorToken) - } - func testInheritedThemeCanOverrideSemanticTokenColorActionPrimaryEnabledLight() throws { XCTAssertNotEqual(inheritedTheme.colorActionPrimaryEnabledLight, abstractTheme.colorActionPrimaryEnabledLight) XCTAssertTrue(inheritedTheme.colorActionPrimaryEnabledLight == OtherMockTheme.otherMockThemeSemanticColorToken) @@ -1090,6 +816,76 @@ final class TestThemeOverrideOfColorSemanticTokens: XCTestCase { XCTAssertTrue(inheritedTheme.colorAlwaysAccentDark == OtherMockTheme.otherMockThemeSemanticColorToken) } + func testInheritedThemeCanOverrideSemanticTokenColorAlwaysOnAccentLight() throws { + XCTAssertNotEqual(inheritedTheme.colorAlwaysOnAccentLight, abstractTheme.colorAlwaysOnAccentLight) + XCTAssertTrue(inheritedTheme.colorAlwaysOnAccentLight == OtherMockTheme.otherMockThemeSemanticColorToken) + } + + func testInheritedThemeCanOverrideSemanticTokenColorAlwayOnAccentDark() throws { + XCTAssertNotEqual(inheritedTheme.colorAlwaysOnAccentDark, abstractTheme.colorAlwaysOnAccentDark) + XCTAssertTrue(inheritedTheme.colorAlwaysOnAccentDark == OtherMockTheme.otherMockThemeSemanticColorToken) + } + + func testInheritedThemeCanOverrideSemanticTokenColorAlwaysOnBlackLight() throws { + XCTAssertNotEqual(inheritedTheme.colorAlwaysOnBlackLight, abstractTheme.colorAlwaysOnBlackLight) + XCTAssertTrue(inheritedTheme.colorAlwaysOnBlackLight == OtherMockTheme.otherMockThemeSemanticColorToken) + } + + func testInheritedThemeCanOverrideSemanticTokenColorAlwayOnBlackDark() throws { + XCTAssertNotEqual(inheritedTheme.colorAlwaysOnBlackDark, abstractTheme.colorAlwaysOnBlackDark) + XCTAssertTrue(inheritedTheme.colorAlwaysOnBlackDark == OtherMockTheme.otherMockThemeSemanticColorToken) + } + + func testInheritedThemeCanOverrideSemanticTokenColorAlwaysOnInfoLight() throws { + XCTAssertNotEqual(inheritedTheme.colorAlwaysOnInfoLight, abstractTheme.colorAlwaysOnInfoLight) + XCTAssertTrue(inheritedTheme.colorAlwaysOnInfoLight == OtherMockTheme.otherMockThemeSemanticColorToken) + } + + func testInheritedThemeCanOverrideSemanticTokenColorAlwayOnInfoDark() throws { + XCTAssertNotEqual(inheritedTheme.colorAlwaysOnInfoDark, abstractTheme.colorAlwaysOnInfoDark) + XCTAssertTrue(inheritedTheme.colorAlwaysOnInfoDark == OtherMockTheme.otherMockThemeSemanticColorToken) + } + + func testInheritedThemeCanOverrideSemanticTokenColorAlwaysOnNegativeLight() throws { + XCTAssertNotEqual(inheritedTheme.colorAlwaysOnNegativeLight, abstractTheme.colorAlwaysOnNegativeLight) + XCTAssertTrue(inheritedTheme.colorAlwaysOnNegativeLight == OtherMockTheme.otherMockThemeSemanticColorToken) + } + + func testInheritedThemeCanOverrideSemanticTokenColorAlwayOnNegativeDark() throws { + XCTAssertNotEqual(inheritedTheme.colorAlwaysOnNegativeDark, abstractTheme.colorAlwaysOnNegativeDark) + XCTAssertTrue(inheritedTheme.colorAlwaysOnNegativeDark == OtherMockTheme.otherMockThemeSemanticColorToken) + } + + func testInheritedThemeCanOverrideSemanticTokenColorAlwaysOnPositiveLight() throws { + XCTAssertNotEqual(inheritedTheme.colorAlwaysOnPositiveLight, abstractTheme.colorAlwaysOnPositiveLight) + XCTAssertTrue(inheritedTheme.colorAlwaysOnPositiveLight == OtherMockTheme.otherMockThemeSemanticColorToken) + } + + func testInheritedThemeCanOverrideSemanticTokenColorAlwayOnPositiveDark() throws { + XCTAssertNotEqual(inheritedTheme.colorAlwaysOnPositiveDark, abstractTheme.colorAlwaysOnPositiveDark) + XCTAssertTrue(inheritedTheme.colorAlwaysOnPositiveDark == OtherMockTheme.otherMockThemeSemanticColorToken) + } + + func testInheritedThemeCanOverrideSemanticTokenColorAlwaysOnWarningLight() throws { + XCTAssertNotEqual(inheritedTheme.colorAlwaysOnWarningLight, abstractTheme.colorAlwaysOnWarningLight) + XCTAssertTrue(inheritedTheme.colorAlwaysOnWarningLight == OtherMockTheme.otherMockThemeSemanticColorToken) + } + + func testInheritedThemeCanOverrideSemanticTokenColorAlwayOnWarningDark() throws { + XCTAssertNotEqual(inheritedTheme.colorAlwaysOnWarningDark, abstractTheme.colorAlwaysOnWarningDark) + XCTAssertTrue(inheritedTheme.colorAlwaysOnWarningDark == OtherMockTheme.otherMockThemeSemanticColorToken) + } + + func testInheritedThemeCanOverrideSemanticTokenColorAlwaysOnWhiteLight() throws { + XCTAssertNotEqual(inheritedTheme.colorAlwaysOnWhiteLight, abstractTheme.colorAlwaysOnWhiteLight) + XCTAssertTrue(inheritedTheme.colorAlwaysOnWhiteLight == OtherMockTheme.otherMockThemeSemanticColorToken) + } + + func testInheritedThemeCanOverrideSemanticTokenColorAlwayOnWhiteDark() throws { + XCTAssertNotEqual(inheritedTheme.colorAlwaysOnWhiteDark, abstractTheme.colorAlwaysOnWhiteDark) + XCTAssertTrue(inheritedTheme.colorAlwaysOnWhiteDark == OtherMockTheme.otherMockThemeSemanticColorToken) + } + // MARK: Semantic token - Colors - Transparent func testInheritedThemeCanOverrideSemanticTokenColorTransparentDefaultLight() throws { @@ -1236,36 +1032,6 @@ final class TestThemeOverrideOfColorSemanticTokens: XCTestCase { // MARK: Semantic token - Colors - Decorative - func testInheritedThemeCanOverrideSemanticTokenColorDecorativePrimaryLight() throws { - XCTAssertNotEqual(inheritedTheme.colorDecorativePrimaryLight, abstractTheme.colorDecorativePrimaryLight) - XCTAssertTrue(inheritedTheme.colorDecorativePrimaryLight == OtherMockTheme.otherMockThemeSemanticColorToken) - } - - func testInheritedThemeCanOverrideSemanticTokenColorDecorativePrimaryDark() throws { - XCTAssertNotEqual(inheritedTheme.colorDecorativePrimaryDark, abstractTheme.colorDecorativePrimaryDark) - XCTAssertTrue(inheritedTheme.colorDecorativePrimaryDark == OtherMockTheme.otherMockThemeSemanticColorToken) - } - - func testInheritedThemeCanOverrideSemanticTokenColorDecorativeSecondaryLight() throws { - XCTAssertNotEqual(inheritedTheme.colorDecorativeSecondaryLight, abstractTheme.colorDecorativeSecondaryLight) - XCTAssertTrue(inheritedTheme.colorDecorativeSecondaryLight == OtherMockTheme.otherMockThemeSemanticColorToken) - } - - func testInheritedThemeCanOverrideSemanticTokenColorDecorativeSecondaryDark() throws { - XCTAssertNotEqual(inheritedTheme.colorDecorativeSecondaryDark, abstractTheme.colorDecorativeSecondaryDark) - XCTAssertTrue(inheritedTheme.colorDecorativeSecondaryDark == OtherMockTheme.otherMockThemeSemanticColorToken) - } - - func testInheritedThemeCanOverrideSemanticTokenColorDecorativeTertiaryLight() throws { - XCTAssertNotEqual(inheritedTheme.colorDecorativeTertiaryLight, abstractTheme.colorDecorativeTertiaryLight) - XCTAssertTrue(inheritedTheme.colorDecorativeTertiaryLight == OtherMockTheme.otherMockThemeSemanticColorToken) - } - - func testInheritedThemeCanOverrideSemanticTokenColorDecorativeTertiaryDark() throws { - XCTAssertNotEqual(inheritedTheme.colorDecorativeTertiaryDark, abstractTheme.colorDecorativeTertiaryDark) - XCTAssertTrue(inheritedTheme.colorDecorativeTertiaryDark == OtherMockTheme.otherMockThemeSemanticColorToken) - } - func testInheritedThemeCanOverrideSemanticTokenColorDecorativeNeutralMutedLight() throws { XCTAssertNotEqual(inheritedTheme.colorDecorativeNeutralMutedLight, abstractTheme.colorDecorativeNeutralMutedLight) XCTAssertTrue(inheritedTheme.colorDecorativeNeutralMutedLight == OtherMockTheme.otherMockThemeSemanticColorToken) @@ -1535,6 +1301,932 @@ final class TestThemeOverrideOfColorSemanticTokens: XCTestCase { XCTAssertNotEqual(inheritedTheme.colorDecorativeSkinTint900Dark, abstractTheme.colorDecorativeSkinTint900Dark) XCTAssertTrue(inheritedTheme.colorDecorativeSkinTint900Dark == OtherMockTheme.otherMockThemeSemanticColorToken) } + + // MARK: Semantic token - Colors - Chart + + func testInheritedThemeCanOverrideSemanticTokenColorChartCategoricalNeutralLight() throws { + XCTAssertNotEqual(inheritedTheme.colorChartCategoricalNeutralLight, abstractTheme.colorChartCategoricalNeutralLight) + XCTAssertTrue(inheritedTheme.colorChartCategoricalNeutralLight == OtherMockTheme.otherMockThemeSemanticColorToken) + } + + func testInheritedThemeCanOverrideSemanticTokenColorChartCategoricalNeutralDark() throws { + XCTAssertNotEqual(inheritedTheme.colorChartCategoricalNeutralDark, abstractTheme.colorChartCategoricalNeutralDark) + XCTAssertTrue(inheritedTheme.colorChartCategoricalNeutralDark == OtherMockTheme.otherMockThemeSemanticColorToken) + } + + func testInheritedThemeCanOverrideSemanticTokenColorChartCategoricalBrandLight() throws { + XCTAssertNotEqual(inheritedTheme.colorChartCategoricalBrandLight, abstractTheme.colorChartCategoricalBrandLight) + XCTAssertTrue(inheritedTheme.colorChartCategoricalBrandLight == OtherMockTheme.otherMockThemeSemanticColorToken) + } + + func testInheritedThemeCanOverrideSemanticTokenColorChartCategoricalBrandDark() throws { + XCTAssertNotEqual(inheritedTheme.colorChartCategoricalBrandDark, abstractTheme.colorChartCategoricalBrandDark) + XCTAssertTrue(inheritedTheme.colorChartCategoricalBrandDark == OtherMockTheme.otherMockThemeSemanticColorToken) + } + + func testInheritedThemeCanOverrideSemanticTokenColorChartCategoricalPositiveLight() throws { + XCTAssertNotEqual(inheritedTheme.colorChartCategoricalPositiveLight, abstractTheme.colorChartCategoricalPositiveLight) + XCTAssertTrue(inheritedTheme.colorChartCategoricalPositiveLight == OtherMockTheme.otherMockThemeSemanticColorToken) + } + + func testInheritedThemeCanOverrideSemanticTokenColorChartCategoricalPositiveDark() throws { + XCTAssertNotEqual(inheritedTheme.colorChartCategoricalPositiveDark, abstractTheme.colorChartCategoricalPositiveDark) + XCTAssertTrue(inheritedTheme.colorChartCategoricalPositiveDark == OtherMockTheme.otherMockThemeSemanticColorToken) + } + + func testInheritedThemeCanOverrideSemanticTokenColorChartCategoricalNegativeLight() throws { + XCTAssertNotEqual(inheritedTheme.colorChartCategoricalNegativeLight, abstractTheme.colorChartCategoricalNegativeLight) + XCTAssertTrue(inheritedTheme.colorChartCategoricalNegativeLight == OtherMockTheme.otherMockThemeSemanticColorToken) + } + + func testInheritedThemeCanOverrideSemanticTokenColorChartCategoricalNegativeDark() throws { + XCTAssertNotEqual(inheritedTheme.colorChartCategoricalNegativeDark, abstractTheme.colorChartCategoricalNegativeDark) + XCTAssertTrue(inheritedTheme.colorChartCategoricalNegativeDark == OtherMockTheme.otherMockThemeSemanticColorToken) + } + + func testInheritedThemeCanOverrideSemanticTokenColorChartCategoricalTier1Light() throws { + XCTAssertNotEqual(inheritedTheme.colorChartCategoricalTier1Light, abstractTheme.colorChartCategoricalTier1Light) + XCTAssertTrue(inheritedTheme.colorChartCategoricalTier1Light == OtherMockTheme.otherMockThemeSemanticColorToken) + } + + func testInheritedThemeCanOverrideSemanticTokenColorChartCategoricalTier1Dark() throws { + XCTAssertNotEqual(inheritedTheme.colorChartCategoricalTier1Dark, abstractTheme.colorChartCategoricalTier1Dark) + XCTAssertTrue(inheritedTheme.colorChartCategoricalTier1Dark == OtherMockTheme.otherMockThemeSemanticColorToken) + } + + func testInheritedThemeCanOverrideSemanticTokenColorChartCategoricalTier2Light() throws { + XCTAssertNotEqual(inheritedTheme.colorChartCategoricalTier2Light, abstractTheme.colorChartCategoricalTier2Light) + XCTAssertTrue(inheritedTheme.colorChartCategoricalTier2Light == OtherMockTheme.otherMockThemeSemanticColorToken) + } + + func testInheritedThemeCanOverrideSemanticTokenColorChartCategoricalTier2Dark() throws { + XCTAssertNotEqual(inheritedTheme.colorChartCategoricalTier2Dark, abstractTheme.colorChartCategoricalTier2Dark) + XCTAssertTrue(inheritedTheme.colorChartCategoricalTier2Dark == OtherMockTheme.otherMockThemeSemanticColorToken) + } + + func testInheritedThemeCanOverrideSemanticTokenColorChartCategoricalTier3Light() throws { + XCTAssertNotEqual(inheritedTheme.colorChartCategoricalTier3Light, abstractTheme.colorChartCategoricalTier3Light) + XCTAssertTrue(inheritedTheme.colorChartCategoricalTier3Light == OtherMockTheme.otherMockThemeSemanticColorToken) + } + + func testInheritedThemeCanOverrideSemanticTokenColorChartCategoricalTier3Dark() throws { + XCTAssertNotEqual(inheritedTheme.colorChartCategoricalTier3Dark, abstractTheme.colorChartCategoricalTier3Dark) + XCTAssertTrue(inheritedTheme.colorChartCategoricalTier3Dark == OtherMockTheme.otherMockThemeSemanticColorToken) + } + + func testInheritedThemeCanOverrideSemanticTokenColorChartCategoricalTier4Light() throws { + XCTAssertNotEqual(inheritedTheme.colorChartCategoricalTier4Light, abstractTheme.colorChartCategoricalTier4Light) + XCTAssertTrue(inheritedTheme.colorChartCategoricalTier4Light == OtherMockTheme.otherMockThemeSemanticColorToken) + } + + func testInheritedThemeCanOverrideSemanticTokenColorChartCategoricalTier4Dark() throws { + XCTAssertNotEqual(inheritedTheme.colorChartCategoricalTier4Dark, abstractTheme.colorChartCategoricalTier4Dark) + XCTAssertTrue(inheritedTheme.colorChartCategoricalTier4Dark == OtherMockTheme.otherMockThemeSemanticColorToken) + } + + func testInheritedThemeCanOverrideSemanticTokenColorChartCategoricalTier5Light() throws { + XCTAssertNotEqual(inheritedTheme.colorChartCategoricalTier5Light, abstractTheme.colorChartCategoricalTier5Light) + XCTAssertTrue(inheritedTheme.colorChartCategoricalTier5Light == OtherMockTheme.otherMockThemeSemanticColorToken) + } + + func testInheritedThemeCanOverrideSemanticTokenColorChartCategoricalTier5Dark() throws { + XCTAssertNotEqual(inheritedTheme.colorChartCategoricalTier5Dark, abstractTheme.colorChartCategoricalTier5Dark) + XCTAssertTrue(inheritedTheme.colorChartCategoricalTier5Dark == OtherMockTheme.otherMockThemeSemanticColorToken) + } + + func testInheritedThemeCanOverrideSemanticTokenColorChartCategoricalTier6Light() throws { + XCTAssertNotEqual(inheritedTheme.colorChartCategoricalTier6Light, abstractTheme.colorChartCategoricalTier6Light) + XCTAssertTrue(inheritedTheme.colorChartCategoricalTier6Light == OtherMockTheme.otherMockThemeSemanticColorToken) + } + + func testInheritedThemeCanOverrideSemanticTokenColorChartCategoricalTier6Dark() throws { + XCTAssertNotEqual(inheritedTheme.colorChartCategoricalTier6Dark, abstractTheme.colorChartCategoricalTier6Dark) + XCTAssertTrue(inheritedTheme.colorChartCategoricalTier6Dark == OtherMockTheme.otherMockThemeSemanticColorToken) + } + + func testInheritedThemeCanOverrideSemanticTokenColorChartCategoricalTier7Light() throws { + XCTAssertNotEqual(inheritedTheme.colorChartCategoricalTier7Light, abstractTheme.colorChartCategoricalTier7Light) + XCTAssertTrue(inheritedTheme.colorChartCategoricalTier7Light == OtherMockTheme.otherMockThemeSemanticColorToken) + } + + func testInheritedThemeCanOverrideSemanticTokenColorChartCategoricalTier7Dark() throws { + XCTAssertNotEqual(inheritedTheme.colorChartCategoricalTier7Dark, abstractTheme.colorChartCategoricalTier7Dark) + XCTAssertTrue(inheritedTheme.colorChartCategoricalTier7Dark == OtherMockTheme.otherMockThemeSemanticColorToken) + } + + func testInheritedThemeCanOverrideSemanticTokenColorChartCategoricalTier8Light() throws { + XCTAssertNotEqual(inheritedTheme.colorChartCategoricalTier8Light, abstractTheme.colorChartCategoricalTier8Light) + XCTAssertTrue(inheritedTheme.colorChartCategoricalTier8Light == OtherMockTheme.otherMockThemeSemanticColorToken) + } + + func testInheritedThemeCanOverrideSemanticTokenColorChartCategoricalTier8Dark() throws { + XCTAssertNotEqual(inheritedTheme.colorChartCategoricalTier8Dark, abstractTheme.colorChartCategoricalTier8Dark) + XCTAssertTrue(inheritedTheme.colorChartCategoricalTier8Dark == OtherMockTheme.otherMockThemeSemanticColorToken) + } + + func testInheritedThemeCanOverrideSemanticTokenColorChartCategoricalTier9Light() throws { + XCTAssertNotEqual(inheritedTheme.colorChartCategoricalTier9Light, abstractTheme.colorChartCategoricalTier9Light) + XCTAssertTrue(inheritedTheme.colorChartCategoricalTier9Light == OtherMockTheme.otherMockThemeSemanticColorToken) + } + + func testInheritedThemeCanOverrideSemanticTokenColorChartCategoricalTier9Dark() throws { + XCTAssertNotEqual(inheritedTheme.colorChartCategoricalTier9Dark, abstractTheme.colorChartCategoricalTier9Dark) + XCTAssertTrue(inheritedTheme.colorChartCategoricalTier9Dark == OtherMockTheme.otherMockThemeSemanticColorToken) + } + + func testInheritedThemeCanOverrideSemanticTokenColorChartCategoricalTier10Light() throws { + XCTAssertNotEqual(inheritedTheme.colorChartCategoricalTier10Light, abstractTheme.colorChartCategoricalTier10Light) + XCTAssertTrue(inheritedTheme.colorChartCategoricalTier10Light == OtherMockTheme.otherMockThemeSemanticColorToken) + } + + func testInheritedThemeCanOverrideSemanticTokenColorChartCategoricalTier10Dark() throws { + XCTAssertNotEqual(inheritedTheme.colorChartCategoricalTier10Dark, abstractTheme.colorChartCategoricalTier10Dark) + XCTAssertTrue(inheritedTheme.colorChartCategoricalTier10Dark == OtherMockTheme.otherMockThemeSemanticColorToken) + } + + func testInheritedThemeCanOverrideSemanticTokenColorChartSequentialAccent1Tint100Light() throws { + XCTAssertNotEqual(inheritedTheme.colorChartSequentialAccent1Tint100Light, abstractTheme.colorChartSequentialAccent1Tint100Light) + XCTAssertTrue(inheritedTheme.colorChartSequentialAccent1Tint100Light == OtherMockTheme.otherMockThemeSemanticColorToken) + } + + func testInheritedThemeCanOverrideSemanticTokenColorChartSequentialAccent1Tint100Dark() throws { + XCTAssertNotEqual(inheritedTheme.colorChartSequentialAccent1Tint100Dark, abstractTheme.colorChartSequentialAccent1Tint100Dark) + XCTAssertTrue(inheritedTheme.colorChartSequentialAccent1Tint100Dark == OtherMockTheme.otherMockThemeSemanticColorToken) + } + + func testInheritedThemeCanOverrideSemanticTokenColorChartSequentialAccent1Tint200Light() throws { + XCTAssertNotEqual(inheritedTheme.colorChartSequentialAccent1Tint200Light, abstractTheme.colorChartSequentialAccent1Tint200Light) + XCTAssertTrue(inheritedTheme.colorChartSequentialAccent1Tint200Light == OtherMockTheme.otherMockThemeSemanticColorToken) + } + + func testInheritedThemeCanOverrideSemanticTokenColorChartSequentialAccent1Tint200Dark() throws { + XCTAssertNotEqual(inheritedTheme.colorChartSequentialAccent1Tint200Dark, abstractTheme.colorChartSequentialAccent1Tint200Dark) + XCTAssertTrue(inheritedTheme.colorChartSequentialAccent1Tint200Dark == OtherMockTheme.otherMockThemeSemanticColorToken) + } + + func testInheritedThemeCanOverrideSemanticTokenColorChartSequentialAccent1Tint300Light() throws { + XCTAssertNotEqual(inheritedTheme.colorChartSequentialAccent1Tint300Light, abstractTheme.colorChartSequentialAccent1Tint300Light) + XCTAssertTrue(inheritedTheme.colorChartSequentialAccent1Tint300Light == OtherMockTheme.otherMockThemeSemanticColorToken) + } + + func testInheritedThemeCanOverrideSemanticTokenColorChartSequentialAccent1Tint300Dark() throws { + XCTAssertNotEqual(inheritedTheme.colorChartSequentialAccent1Tint300Dark, abstractTheme.colorChartSequentialAccent1Tint300Dark) + XCTAssertTrue(inheritedTheme.colorChartSequentialAccent1Tint300Dark == OtherMockTheme.otherMockThemeSemanticColorToken) + } + + func testInheritedThemeCanOverrideSemanticTokenColorChartSequentialAccent1Tint400Light() throws { + XCTAssertNotEqual(inheritedTheme.colorChartSequentialAccent1Tint400Light, abstractTheme.colorChartSequentialAccent1Tint400Light) + XCTAssertTrue(inheritedTheme.colorChartSequentialAccent1Tint400Light == OtherMockTheme.otherMockThemeSemanticColorToken) + } + + func testInheritedThemeCanOverrideSemanticTokenColorChartSequentialAccent1Tint400Dark() throws { + XCTAssertNotEqual(inheritedTheme.colorChartSequentialAccent1Tint400Dark, abstractTheme.colorChartSequentialAccent1Tint400Dark) + XCTAssertTrue(inheritedTheme.colorChartSequentialAccent1Tint400Dark == OtherMockTheme.otherMockThemeSemanticColorToken) + } + + func testInheritedThemeCanOverrideSemanticTokenColorChartSequentialAccent1Tint500Light() throws { + XCTAssertNotEqual(inheritedTheme.colorChartSequentialAccent1Tint500Light, abstractTheme.colorChartSequentialAccent1Tint500Light) + XCTAssertTrue(inheritedTheme.colorChartSequentialAccent1Tint500Light == OtherMockTheme.otherMockThemeSemanticColorToken) + } + + func testInheritedThemeCanOverrideSemanticTokenColorChartSequentialAccent1Tint500Dark() throws { + XCTAssertNotEqual(inheritedTheme.colorChartSequentialAccent1Tint500Dark, abstractTheme.colorChartSequentialAccent1Tint500Dark) + XCTAssertTrue(inheritedTheme.colorChartSequentialAccent1Tint500Dark == OtherMockTheme.otherMockThemeSemanticColorToken) + } + + func testInheritedThemeCanOverrideSemanticTokenColorChartSequentialAccent1Tint600Light() throws { + XCTAssertNotEqual(inheritedTheme.colorChartSequentialAccent1Tint600Light, abstractTheme.colorChartSequentialAccent1Tint600Light) + XCTAssertTrue(inheritedTheme.colorChartSequentialAccent1Tint600Light == OtherMockTheme.otherMockThemeSemanticColorToken) + } + + func testInheritedThemeCanOverrideSemanticTokenColorChartSequentialAccent1Tint600Dark() throws { + XCTAssertNotEqual(inheritedTheme.colorChartSequentialAccent1Tint600Dark, abstractTheme.colorChartSequentialAccent1Tint600Dark) + XCTAssertTrue(inheritedTheme.colorChartSequentialAccent1Tint600Dark == OtherMockTheme.otherMockThemeSemanticColorToken) + } + + func testInheritedThemeCanOverrideSemanticTokenColorChartSequentialAccent1Tint700Light() throws { + XCTAssertNotEqual(inheritedTheme.colorChartSequentialAccent1Tint700Light, abstractTheme.colorChartSequentialAccent1Tint700Light) + XCTAssertTrue(inheritedTheme.colorChartSequentialAccent1Tint700Light == OtherMockTheme.otherMockThemeSemanticColorToken) + } + + func testInheritedThemeCanOverrideSemanticTokenColorChartSequentialAccent1Tint700Dark() throws { + XCTAssertNotEqual(inheritedTheme.colorChartSequentialAccent1Tint700Dark, abstractTheme.colorChartSequentialAccent1Tint700Dark) + XCTAssertTrue(inheritedTheme.colorChartSequentialAccent1Tint700Dark == OtherMockTheme.otherMockThemeSemanticColorToken) + } + + func testInheritedThemeCanOverrideSemanticTokenColorChartSequentialAccent1Tint800Light() throws { + XCTAssertNotEqual(inheritedTheme.colorChartSequentialAccent1Tint800Light, abstractTheme.colorChartSequentialAccent1Tint800Light) + XCTAssertTrue(inheritedTheme.colorChartSequentialAccent1Tint800Light == OtherMockTheme.otherMockThemeSemanticColorToken) + } + + func testInheritedThemeCanOverrideSemanticTokenColorChartSequentialAccent1Tint800Dark() throws { + XCTAssertNotEqual(inheritedTheme.colorChartSequentialAccent1Tint800Dark, abstractTheme.colorChartSequentialAccent1Tint800Dark) + XCTAssertTrue(inheritedTheme.colorChartSequentialAccent1Tint800Dark == OtherMockTheme.otherMockThemeSemanticColorToken) + } + + func testInheritedThemeCanOverrideSemanticTokenColorChartSequentialAccent1Tint900Light() throws { + XCTAssertNotEqual(inheritedTheme.colorChartSequentialAccent1Tint900Light, abstractTheme.colorChartSequentialAccent1Tint900Light) + XCTAssertTrue(inheritedTheme.colorChartSequentialAccent1Tint900Light == OtherMockTheme.otherMockThemeSemanticColorToken) + } + + func testInheritedThemeCanOverrideSemanticTokenColorChartSequentialAccent1Tint900Dark() throws { + XCTAssertNotEqual(inheritedTheme.colorChartSequentialAccent1Tint900Dark, abstractTheme.colorChartSequentialAccent1Tint900Dark) + XCTAssertTrue(inheritedTheme.colorChartSequentialAccent1Tint900Dark == OtherMockTheme.otherMockThemeSemanticColorToken) + } + + func testInheritedThemeCanOverrideSemanticTokenColorChartSequentialAccent2Tint100Light() throws { + XCTAssertNotEqual(inheritedTheme.colorChartSequentialAccent2Tint100Light, abstractTheme.colorChartSequentialAccent2Tint100Light) + XCTAssertTrue(inheritedTheme.colorChartSequentialAccent2Tint100Light == OtherMockTheme.otherMockThemeSemanticColorToken) + } + + func testInheritedThemeCanOverrideSemanticTokenColorChartSequentialAccent2Tint100Dark() throws { + XCTAssertNotEqual(inheritedTheme.colorChartSequentialAccent2Tint100Dark, abstractTheme.colorChartSequentialAccent2Tint100Dark) + XCTAssertTrue(inheritedTheme.colorChartSequentialAccent2Tint100Dark == OtherMockTheme.otherMockThemeSemanticColorToken) + } + + func testInheritedThemeCanOverrideSemanticTokenColorChartSequentialAccent2Tint200Light() throws { + XCTAssertNotEqual(inheritedTheme.colorChartSequentialAccent2Tint200Light, abstractTheme.colorChartSequentialAccent2Tint200Light) + XCTAssertTrue(inheritedTheme.colorChartSequentialAccent2Tint200Light == OtherMockTheme.otherMockThemeSemanticColorToken) + } + + func testInheritedThemeCanOverrideSemanticTokenColorChartSequentialAccent2Tint200Dark() throws { + XCTAssertNotEqual(inheritedTheme.colorChartSequentialAccent2Tint200Dark, abstractTheme.colorChartSequentialAccent2Tint200Dark) + XCTAssertTrue(inheritedTheme.colorChartSequentialAccent2Tint200Dark == OtherMockTheme.otherMockThemeSemanticColorToken) + } + + func testInheritedThemeCanOverrideSemanticTokenColorChartSequentialAccent2Tint300Light() throws { + XCTAssertNotEqual(inheritedTheme.colorChartSequentialAccent2Tint300Light, abstractTheme.colorChartSequentialAccent2Tint300Light) + XCTAssertTrue(inheritedTheme.colorChartSequentialAccent2Tint300Light == OtherMockTheme.otherMockThemeSemanticColorToken) + } + + func testInheritedThemeCanOverrideSemanticTokenColorChartSequentialAccent2Tint300Dark() throws { + XCTAssertNotEqual(inheritedTheme.colorChartSequentialAccent2Tint300Dark, abstractTheme.colorChartSequentialAccent2Tint300Dark) + XCTAssertTrue(inheritedTheme.colorChartSequentialAccent2Tint300Dark == OtherMockTheme.otherMockThemeSemanticColorToken) + } + + func testInheritedThemeCanOverrideSemanticTokenColorChartSequentialAccent2Tint400Light() throws { + XCTAssertNotEqual(inheritedTheme.colorChartSequentialAccent2Tint400Light, abstractTheme.colorChartSequentialAccent2Tint400Light) + XCTAssertTrue(inheritedTheme.colorChartSequentialAccent2Tint400Light == OtherMockTheme.otherMockThemeSemanticColorToken) + } + + func testInheritedThemeCanOverrideSemanticTokenColorChartSequentialAccent2Tint400Dark() throws { + XCTAssertNotEqual(inheritedTheme.colorChartSequentialAccent2Tint400Dark, abstractTheme.colorChartSequentialAccent2Tint400Dark) + XCTAssertTrue(inheritedTheme.colorChartSequentialAccent2Tint400Dark == OtherMockTheme.otherMockThemeSemanticColorToken) + } + + func testInheritedThemeCanOverrideSemanticTokenColorChartSequentialAccent2Tint500Light() throws { + XCTAssertNotEqual(inheritedTheme.colorChartSequentialAccent2Tint500Light, abstractTheme.colorChartSequentialAccent2Tint500Light) + XCTAssertTrue(inheritedTheme.colorChartSequentialAccent2Tint500Light == OtherMockTheme.otherMockThemeSemanticColorToken) + } + + func testInheritedThemeCanOverrideSemanticTokenColorChartSequentialAccent2Tint500Dark() throws { + XCTAssertNotEqual(inheritedTheme.colorChartSequentialAccent2Tint500Dark, abstractTheme.colorChartSequentialAccent2Tint500Dark) + XCTAssertTrue(inheritedTheme.colorChartSequentialAccent2Tint500Dark == OtherMockTheme.otherMockThemeSemanticColorToken) + } + + func testInheritedThemeCanOverrideSemanticTokenColorChartSequentialAccent2Tint600Light() throws { + XCTAssertNotEqual(inheritedTheme.colorChartSequentialAccent2Tint600Light, abstractTheme.colorChartSequentialAccent2Tint600Light) + XCTAssertTrue(inheritedTheme.colorChartSequentialAccent2Tint600Light == OtherMockTheme.otherMockThemeSemanticColorToken) + } + + func testInheritedThemeCanOverrideSemanticTokenColorChartSequentialAccent2Tint600Dark() throws { + XCTAssertNotEqual(inheritedTheme.colorChartSequentialAccent2Tint600Dark, abstractTheme.colorChartSequentialAccent2Tint600Dark) + XCTAssertTrue(inheritedTheme.colorChartSequentialAccent2Tint600Dark == OtherMockTheme.otherMockThemeSemanticColorToken) + } + + func testInheritedThemeCanOverrideSemanticTokenColorChartSequentialAccent2Tint700Light() throws { + XCTAssertNotEqual(inheritedTheme.colorChartSequentialAccent2Tint700Light, abstractTheme.colorChartSequentialAccent2Tint700Light) + XCTAssertTrue(inheritedTheme.colorChartSequentialAccent2Tint700Light == OtherMockTheme.otherMockThemeSemanticColorToken) + } + + func testInheritedThemeCanOverrideSemanticTokenColorChartSequentialAccent2Tint700Dark() throws { + XCTAssertNotEqual(inheritedTheme.colorChartSequentialAccent2Tint700Dark, abstractTheme.colorChartSequentialAccent2Tint700Dark) + XCTAssertTrue(inheritedTheme.colorChartSequentialAccent2Tint700Dark == OtherMockTheme.otherMockThemeSemanticColorToken) + } + + func testInheritedThemeCanOverrideSemanticTokenColorChartSequentialAccent2Tint800Light() throws { + XCTAssertNotEqual(inheritedTheme.colorChartSequentialAccent2Tint800Light, abstractTheme.colorChartSequentialAccent2Tint800Light) + XCTAssertTrue(inheritedTheme.colorChartSequentialAccent2Tint800Light == OtherMockTheme.otherMockThemeSemanticColorToken) + } + + func testInheritedThemeCanOverrideSemanticTokenColorChartSequentialAccent2Tint800Dark() throws { + XCTAssertNotEqual(inheritedTheme.colorChartSequentialAccent2Tint800Dark, abstractTheme.colorChartSequentialAccent2Tint800Dark) + XCTAssertTrue(inheritedTheme.colorChartSequentialAccent2Tint800Dark == OtherMockTheme.otherMockThemeSemanticColorToken) + } + + func testInheritedThemeCanOverrideSemanticTokenColorChartSequentialAccent2Tint900Light() throws { + XCTAssertNotEqual(inheritedTheme.colorChartSequentialAccent2Tint900Light, abstractTheme.colorChartSequentialAccent2Tint900Light) + XCTAssertTrue(inheritedTheme.colorChartSequentialAccent2Tint900Light == OtherMockTheme.otherMockThemeSemanticColorToken) + } + + func testInheritedThemeCanOverrideSemanticTokenColorChartSequentialAccent2Tint900Dark() throws { + XCTAssertNotEqual(inheritedTheme.colorChartSequentialAccent2Tint900Dark, abstractTheme.colorChartSequentialAccent2Tint900Dark) + XCTAssertTrue(inheritedTheme.colorChartSequentialAccent2Tint900Dark == OtherMockTheme.otherMockThemeSemanticColorToken) + } + + func testInheritedThemeCanOverrideSemanticTokenColorChartSequentialAccent3Tint100Light() throws { + XCTAssertNotEqual(inheritedTheme.colorChartSequentialAccent3Tint100Light, abstractTheme.colorChartSequentialAccent3Tint100Light) + XCTAssertTrue(inheritedTheme.colorChartSequentialAccent3Tint100Light == OtherMockTheme.otherMockThemeSemanticColorToken) + } + + func testInheritedThemeCanOverrideSemanticTokenColorChartSequentialAccent3Tint100Dark() throws { + XCTAssertNotEqual(inheritedTheme.colorChartSequentialAccent3Tint100Dark, abstractTheme.colorChartSequentialAccent3Tint100Dark) + XCTAssertTrue(inheritedTheme.colorChartSequentialAccent3Tint100Dark == OtherMockTheme.otherMockThemeSemanticColorToken) + } + + func testInheritedThemeCanOverrideSemanticTokenColorChartSequentialAccent3Tint200Light() throws { + XCTAssertNotEqual(inheritedTheme.colorChartSequentialAccent3Tint200Light, abstractTheme.colorChartSequentialAccent3Tint200Light) + XCTAssertTrue(inheritedTheme.colorChartSequentialAccent3Tint200Light == OtherMockTheme.otherMockThemeSemanticColorToken) + } + + func testInheritedThemeCanOverrideSemanticTokenColorChartSequentialAccent3Tint200Dark() throws { + XCTAssertNotEqual(inheritedTheme.colorChartSequentialAccent3Tint200Dark, abstractTheme.colorChartSequentialAccent3Tint200Dark) + XCTAssertTrue(inheritedTheme.colorChartSequentialAccent3Tint200Dark == OtherMockTheme.otherMockThemeSemanticColorToken) + } + + func testInheritedThemeCanOverrideSemanticTokenColorChartSequentialAccent3Tint300Light() throws { + XCTAssertNotEqual(inheritedTheme.colorChartSequentialAccent3Tint300Light, abstractTheme.colorChartSequentialAccent3Tint300Light) + XCTAssertTrue(inheritedTheme.colorChartSequentialAccent3Tint300Light == OtherMockTheme.otherMockThemeSemanticColorToken) + } + + func testInheritedThemeCanOverrideSemanticTokenColorChartSequentialAccent3Tint300Dark() throws { + XCTAssertNotEqual(inheritedTheme.colorChartSequentialAccent3Tint300Dark, abstractTheme.colorChartSequentialAccent3Tint300Dark) + XCTAssertTrue(inheritedTheme.colorChartSequentialAccent3Tint300Dark == OtherMockTheme.otherMockThemeSemanticColorToken) + } + + func testInheritedThemeCanOverrideSemanticTokenColorChartSequentialAccent3Tint400Light() throws { + XCTAssertNotEqual(inheritedTheme.colorChartSequentialAccent3Tint400Light, abstractTheme.colorChartSequentialAccent3Tint400Light) + XCTAssertTrue(inheritedTheme.colorChartSequentialAccent3Tint400Light == OtherMockTheme.otherMockThemeSemanticColorToken) + } + + func testInheritedThemeCanOverrideSemanticTokenColorChartSequentialAccent3Tint400Dark() throws { + XCTAssertNotEqual(inheritedTheme.colorChartSequentialAccent3Tint400Dark, abstractTheme.colorChartSequentialAccent3Tint400Dark) + XCTAssertTrue(inheritedTheme.colorChartSequentialAccent3Tint400Dark == OtherMockTheme.otherMockThemeSemanticColorToken) + } + + func testInheritedThemeCanOverrideSemanticTokenColorChartSequentialAccent3Tint500Light() throws { + XCTAssertNotEqual(inheritedTheme.colorChartSequentialAccent3Tint500Light, abstractTheme.colorChartSequentialAccent3Tint500Light) + XCTAssertTrue(inheritedTheme.colorChartSequentialAccent3Tint500Light == OtherMockTheme.otherMockThemeSemanticColorToken) + } + + func testInheritedThemeCanOverrideSemanticTokenColorChartSequentialAccent3Tint500Dark() throws { + XCTAssertNotEqual(inheritedTheme.colorChartSequentialAccent3Tint500Dark, abstractTheme.colorChartSequentialAccent3Tint500Dark) + XCTAssertTrue(inheritedTheme.colorChartSequentialAccent3Tint500Dark == OtherMockTheme.otherMockThemeSemanticColorToken) + } + + func testInheritedThemeCanOverrideSemanticTokenColorChartSequentialAccent3Tint600Light() throws { + XCTAssertNotEqual(inheritedTheme.colorChartSequentialAccent3Tint600Light, abstractTheme.colorChartSequentialAccent3Tint600Light) + XCTAssertTrue(inheritedTheme.colorChartSequentialAccent3Tint600Light == OtherMockTheme.otherMockThemeSemanticColorToken) + } + + func testInheritedThemeCanOverrideSemanticTokenColorChartSequentialAccent3Tint600Dark() throws { + XCTAssertNotEqual(inheritedTheme.colorChartSequentialAccent3Tint600Dark, abstractTheme.colorChartSequentialAccent3Tint600Dark) + XCTAssertTrue(inheritedTheme.colorChartSequentialAccent3Tint600Dark == OtherMockTheme.otherMockThemeSemanticColorToken) + } + + func testInheritedThemeCanOverrideSemanticTokenColorChartSequentialAccent3Tint700Light() throws { + XCTAssertNotEqual(inheritedTheme.colorChartSequentialAccent3Tint700Light, abstractTheme.colorChartSequentialAccent3Tint700Light) + XCTAssertTrue(inheritedTheme.colorChartSequentialAccent3Tint700Light == OtherMockTheme.otherMockThemeSemanticColorToken) + } + + func testInheritedThemeCanOverrideSemanticTokenColorChartSequentialAccent3Tint700Dark() throws { + XCTAssertNotEqual(inheritedTheme.colorChartSequentialAccent3Tint700Dark, abstractTheme.colorChartSequentialAccent3Tint700Dark) + XCTAssertTrue(inheritedTheme.colorChartSequentialAccent3Tint700Dark == OtherMockTheme.otherMockThemeSemanticColorToken) + } + + func testInheritedThemeCanOverrideSemanticTokenColorChartSequentialAccent3Tint800Light() throws { + XCTAssertNotEqual(inheritedTheme.colorChartSequentialAccent3Tint800Light, abstractTheme.colorChartSequentialAccent3Tint800Light) + XCTAssertTrue(inheritedTheme.colorChartSequentialAccent3Tint800Light == OtherMockTheme.otherMockThemeSemanticColorToken) + } + + func testInheritedThemeCanOverrideSemanticTokenColorChartSequentialAccent3Tint800Dark() throws { + XCTAssertNotEqual(inheritedTheme.colorChartSequentialAccent3Tint800Dark, abstractTheme.colorChartSequentialAccent3Tint800Dark) + XCTAssertTrue(inheritedTheme.colorChartSequentialAccent3Tint800Dark == OtherMockTheme.otherMockThemeSemanticColorToken) + } + + func testInheritedThemeCanOverrideSemanticTokenColorChartSequentialAccent3Tint900Light() throws { + XCTAssertNotEqual(inheritedTheme.colorChartSequentialAccent3Tint900Light, abstractTheme.colorChartSequentialAccent3Tint900Light) + XCTAssertTrue(inheritedTheme.colorChartSequentialAccent3Tint900Light == OtherMockTheme.otherMockThemeSemanticColorToken) + } + + func testInheritedThemeCanOverrideSemanticTokenColorChartSequentialAccent3Tint900Dark() throws { + XCTAssertNotEqual(inheritedTheme.colorChartSequentialAccent3Tint900Dark, abstractTheme.colorChartSequentialAccent3Tint900Dark) + XCTAssertTrue(inheritedTheme.colorChartSequentialAccent3Tint900Dark == OtherMockTheme.otherMockThemeSemanticColorToken) + } + + func testInheritedThemeCanOverrideSemanticTokenColorChartSequentialAccent4Tint100Light() throws { + XCTAssertNotEqual(inheritedTheme.colorChartSequentialAccent4Tint100Light, abstractTheme.colorChartSequentialAccent4Tint100Light) + XCTAssertTrue(inheritedTheme.colorChartSequentialAccent4Tint100Light == OtherMockTheme.otherMockThemeSemanticColorToken) + } + + func testInheritedThemeCanOverrideSemanticTokenColorChartSequentialAccent4Tint100Dark() throws { + XCTAssertNotEqual(inheritedTheme.colorChartSequentialAccent4Tint100Dark, abstractTheme.colorChartSequentialAccent4Tint100Dark) + XCTAssertTrue(inheritedTheme.colorChartSequentialAccent4Tint100Dark == OtherMockTheme.otherMockThemeSemanticColorToken) + } + + func testInheritedThemeCanOverrideSemanticTokenColorChartSequentialAccent4Tint200Light() throws { + XCTAssertNotEqual(inheritedTheme.colorChartSequentialAccent4Tint200Light, abstractTheme.colorChartSequentialAccent4Tint200Light) + XCTAssertTrue(inheritedTheme.colorChartSequentialAccent4Tint200Light == OtherMockTheme.otherMockThemeSemanticColorToken) + } + + func testInheritedThemeCanOverrideSemanticTokenColorChartSequentialAccent4Tint200Dark() throws { + XCTAssertNotEqual(inheritedTheme.colorChartSequentialAccent4Tint200Dark, abstractTheme.colorChartSequentialAccent4Tint200Dark) + XCTAssertTrue(inheritedTheme.colorChartSequentialAccent4Tint200Dark == OtherMockTheme.otherMockThemeSemanticColorToken) + } + + func testInheritedThemeCanOverrideSemanticTokenColorChartSequentialAccent4Tint300Light() throws { + XCTAssertNotEqual(inheritedTheme.colorChartSequentialAccent4Tint300Light, abstractTheme.colorChartSequentialAccent4Tint300Light) + XCTAssertTrue(inheritedTheme.colorChartSequentialAccent4Tint300Light == OtherMockTheme.otherMockThemeSemanticColorToken) + } + + func testInheritedThemeCanOverrideSemanticTokenColorChartSequentialAccent4Tint300Dark() throws { + XCTAssertNotEqual(inheritedTheme.colorChartSequentialAccent4Tint300Dark, abstractTheme.colorChartSequentialAccent4Tint300Dark) + XCTAssertTrue(inheritedTheme.colorChartSequentialAccent4Tint300Dark == OtherMockTheme.otherMockThemeSemanticColorToken) + } + + func testInheritedThemeCanOverrideSemanticTokenColorChartSequentialAccent4Tint400Light() throws { + XCTAssertNotEqual(inheritedTheme.colorChartSequentialAccent4Tint400Light, abstractTheme.colorChartSequentialAccent4Tint400Light) + XCTAssertTrue(inheritedTheme.colorChartSequentialAccent4Tint400Light == OtherMockTheme.otherMockThemeSemanticColorToken) + } + + func testInheritedThemeCanOverrideSemanticTokenColorChartSequentialAccent4Tint400Dark() throws { + XCTAssertNotEqual(inheritedTheme.colorChartSequentialAccent4Tint400Dark, abstractTheme.colorChartSequentialAccent4Tint400Dark) + XCTAssertTrue(inheritedTheme.colorChartSequentialAccent4Tint400Dark == OtherMockTheme.otherMockThemeSemanticColorToken) + } + + func testInheritedThemeCanOverrideSemanticTokenColorChartSequentialAccent4Tint500Light() throws { + XCTAssertNotEqual(inheritedTheme.colorChartSequentialAccent4Tint500Light, abstractTheme.colorChartSequentialAccent4Tint500Light) + XCTAssertTrue(inheritedTheme.colorChartSequentialAccent4Tint500Light == OtherMockTheme.otherMockThemeSemanticColorToken) + } + + func testInheritedThemeCanOverrideSemanticTokenColorChartSequentialAccent4Tint500Dark() throws { + XCTAssertNotEqual(inheritedTheme.colorChartSequentialAccent4Tint500Dark, abstractTheme.colorChartSequentialAccent4Tint500Dark) + XCTAssertTrue(inheritedTheme.colorChartSequentialAccent4Tint500Dark == OtherMockTheme.otherMockThemeSemanticColorToken) + } + + func testInheritedThemeCanOverrideSemanticTokenColorChartSequentialAccent4Tint600Light() throws { + XCTAssertNotEqual(inheritedTheme.colorChartSequentialAccent4Tint600Light, abstractTheme.colorChartSequentialAccent4Tint600Light) + XCTAssertTrue(inheritedTheme.colorChartSequentialAccent4Tint600Light == OtherMockTheme.otherMockThemeSemanticColorToken) + } + + func testInheritedThemeCanOverrideSemanticTokenColorChartSequentialAccent4Tint600Dark() throws { + XCTAssertNotEqual(inheritedTheme.colorChartSequentialAccent4Tint600Dark, abstractTheme.colorChartSequentialAccent4Tint600Dark) + XCTAssertTrue(inheritedTheme.colorChartSequentialAccent4Tint600Dark == OtherMockTheme.otherMockThemeSemanticColorToken) + } + + func testInheritedThemeCanOverrideSemanticTokenColorChartSequentialAccent4Tint700Light() throws { + XCTAssertNotEqual(inheritedTheme.colorChartSequentialAccent4Tint700Light, abstractTheme.colorChartSequentialAccent4Tint700Light) + XCTAssertTrue(inheritedTheme.colorChartSequentialAccent4Tint700Light == OtherMockTheme.otherMockThemeSemanticColorToken) + } + + func testInheritedThemeCanOverrideSemanticTokenColorChartSequentialAccent4Tint700Dark() throws { + XCTAssertNotEqual(inheritedTheme.colorChartSequentialAccent4Tint700Dark, abstractTheme.colorChartSequentialAccent4Tint700Dark) + XCTAssertTrue(inheritedTheme.colorChartSequentialAccent4Tint700Dark == OtherMockTheme.otherMockThemeSemanticColorToken) + } + + func testInheritedThemeCanOverrideSemanticTokenColorChartSequentialAccent4Tint800Light() throws { + XCTAssertNotEqual(inheritedTheme.colorChartSequentialAccent4Tint800Light, abstractTheme.colorChartSequentialAccent4Tint800Light) + XCTAssertTrue(inheritedTheme.colorChartSequentialAccent4Tint800Light == OtherMockTheme.otherMockThemeSemanticColorToken) + } + + func testInheritedThemeCanOverrideSemanticTokenColorChartSequentialAccent4Tint800Dark() throws { + XCTAssertNotEqual(inheritedTheme.colorChartSequentialAccent4Tint800Dark, abstractTheme.colorChartSequentialAccent4Tint800Dark) + XCTAssertTrue(inheritedTheme.colorChartSequentialAccent4Tint800Dark == OtherMockTheme.otherMockThemeSemanticColorToken) + } + + func testInheritedThemeCanOverrideSemanticTokenColorChartSequentialAccent4Tint900Light() throws { + XCTAssertNotEqual(inheritedTheme.colorChartSequentialAccent4Tint900Light, abstractTheme.colorChartSequentialAccent4Tint900Light) + XCTAssertTrue(inheritedTheme.colorChartSequentialAccent4Tint900Light == OtherMockTheme.otherMockThemeSemanticColorToken) + } + + func testInheritedThemeCanOverrideSemanticTokenColorChartSequentialAccent4Tint900Dark() throws { + XCTAssertNotEqual(inheritedTheme.colorChartSequentialAccent4Tint900Dark, abstractTheme.colorChartSequentialAccent4Tint900Dark) + XCTAssertTrue(inheritedTheme.colorChartSequentialAccent4Tint900Dark == OtherMockTheme.otherMockThemeSemanticColorToken) + } + + func testInheritedThemeCanOverrideSemanticTokenColorChartSequentialAccent5Tint100Light() throws { + XCTAssertNotEqual(inheritedTheme.colorChartSequentialAccent5Tint100Light, abstractTheme.colorChartSequentialAccent5Tint100Light) + XCTAssertTrue(inheritedTheme.colorChartSequentialAccent5Tint100Light == OtherMockTheme.otherMockThemeSemanticColorToken) + } + + func testInheritedThemeCanOverrideSemanticTokenColorChartSequentialAccent5Tint100Dark() throws { + XCTAssertNotEqual(inheritedTheme.colorChartSequentialAccent5Tint100Dark, abstractTheme.colorChartSequentialAccent5Tint100Dark) + XCTAssertTrue(inheritedTheme.colorChartSequentialAccent5Tint100Dark == OtherMockTheme.otherMockThemeSemanticColorToken) + } + + func testInheritedThemeCanOverrideSemanticTokenColorChartSequentialAccent5Tint200Light() throws { + XCTAssertNotEqual(inheritedTheme.colorChartSequentialAccent5Tint200Light, abstractTheme.colorChartSequentialAccent5Tint200Light) + XCTAssertTrue(inheritedTheme.colorChartSequentialAccent5Tint200Light == OtherMockTheme.otherMockThemeSemanticColorToken) + } + + func testInheritedThemeCanOverrideSemanticTokenColorChartSequentialAccent5Tint200Dark() throws { + XCTAssertNotEqual(inheritedTheme.colorChartSequentialAccent5Tint200Dark, abstractTheme.colorChartSequentialAccent5Tint200Dark) + XCTAssertTrue(inheritedTheme.colorChartSequentialAccent5Tint200Dark == OtherMockTheme.otherMockThemeSemanticColorToken) + } + + func testInheritedThemeCanOverrideSemanticTokenColorChartSequentialAccent5Tint300Light() throws { + XCTAssertNotEqual(inheritedTheme.colorChartSequentialAccent5Tint300Light, abstractTheme.colorChartSequentialAccent5Tint300Light) + XCTAssertTrue(inheritedTheme.colorChartSequentialAccent5Tint300Light == OtherMockTheme.otherMockThemeSemanticColorToken) + } + + func testInheritedThemeCanOverrideSemanticTokenColorChartSequentialAccent5Tint300Dark() throws { + XCTAssertNotEqual(inheritedTheme.colorChartSequentialAccent5Tint300Dark, abstractTheme.colorChartSequentialAccent5Tint300Dark) + XCTAssertTrue(inheritedTheme.colorChartSequentialAccent5Tint300Dark == OtherMockTheme.otherMockThemeSemanticColorToken) + } + + func testInheritedThemeCanOverrideSemanticTokenColorChartSequentialAccent5Tint400Light() throws { + XCTAssertNotEqual(inheritedTheme.colorChartSequentialAccent5Tint400Light, abstractTheme.colorChartSequentialAccent5Tint400Light) + XCTAssertTrue(inheritedTheme.colorChartSequentialAccent5Tint400Light == OtherMockTheme.otherMockThemeSemanticColorToken) + } + + func testInheritedThemeCanOverrideSemanticTokenColorChartSequentialAccent5Tint400Dark() throws { + XCTAssertNotEqual(inheritedTheme.colorChartSequentialAccent5Tint400Dark, abstractTheme.colorChartSequentialAccent5Tint400Dark) + XCTAssertTrue(inheritedTheme.colorChartSequentialAccent5Tint400Dark == OtherMockTheme.otherMockThemeSemanticColorToken) + } + + func testInheritedThemeCanOverrideSemanticTokenColorChartSequentialAccent5Tint500Light() throws { + XCTAssertNotEqual(inheritedTheme.colorChartSequentialAccent5Tint500Light, abstractTheme.colorChartSequentialAccent5Tint500Light) + XCTAssertTrue(inheritedTheme.colorChartSequentialAccent5Tint500Light == OtherMockTheme.otherMockThemeSemanticColorToken) + } + + func testInheritedThemeCanOverrideSemanticTokenColorChartSequentialAccent5Tint500Dark() throws { + XCTAssertNotEqual(inheritedTheme.colorChartSequentialAccent5Tint500Dark, abstractTheme.colorChartSequentialAccent5Tint500Dark) + XCTAssertTrue(inheritedTheme.colorChartSequentialAccent5Tint500Dark == OtherMockTheme.otherMockThemeSemanticColorToken) + } + + func testInheritedThemeCanOverrideSemanticTokenColorChartSequentialAccent5Tint600Light() throws { + XCTAssertNotEqual(inheritedTheme.colorChartSequentialAccent5Tint600Light, abstractTheme.colorChartSequentialAccent5Tint600Light) + XCTAssertTrue(inheritedTheme.colorChartSequentialAccent5Tint600Light == OtherMockTheme.otherMockThemeSemanticColorToken) + } + + func testInheritedThemeCanOverrideSemanticTokenColorChartSequentialAccent5Tint600Dark() throws { + XCTAssertNotEqual(inheritedTheme.colorChartSequentialAccent5Tint600Dark, abstractTheme.colorChartSequentialAccent5Tint600Dark) + XCTAssertTrue(inheritedTheme.colorChartSequentialAccent5Tint600Dark == OtherMockTheme.otherMockThemeSemanticColorToken) + } + + func testInheritedThemeCanOverrideSemanticTokenColorChartSequentialAccent5Tint700Light() throws { + XCTAssertNotEqual(inheritedTheme.colorChartSequentialAccent5Tint700Light, abstractTheme.colorChartSequentialAccent5Tint700Light) + XCTAssertTrue(inheritedTheme.colorChartSequentialAccent5Tint700Light == OtherMockTheme.otherMockThemeSemanticColorToken) + } + + func testInheritedThemeCanOverrideSemanticTokenColorChartSequentialAccent5Tint700Dark() throws { + XCTAssertNotEqual(inheritedTheme.colorChartSequentialAccent5Tint700Dark, abstractTheme.colorChartSequentialAccent5Tint700Dark) + XCTAssertTrue(inheritedTheme.colorChartSequentialAccent5Tint700Dark == OtherMockTheme.otherMockThemeSemanticColorToken) + } + + func testInheritedThemeCanOverrideSemanticTokenColorChartSequentialAccent5Tint800Light() throws { + XCTAssertNotEqual(inheritedTheme.colorChartSequentialAccent5Tint800Light, abstractTheme.colorChartSequentialAccent5Tint800Light) + XCTAssertTrue(inheritedTheme.colorChartSequentialAccent5Tint800Light == OtherMockTheme.otherMockThemeSemanticColorToken) + } + + func testInheritedThemeCanOverrideSemanticTokenColorChartSequentialAccent5Tint800Dark() throws { + XCTAssertNotEqual(inheritedTheme.colorChartSequentialAccent5Tint800Dark, abstractTheme.colorChartSequentialAccent5Tint800Dark) + XCTAssertTrue(inheritedTheme.colorChartSequentialAccent5Tint800Dark == OtherMockTheme.otherMockThemeSemanticColorToken) + } + + func testInheritedThemeCanOverrideSemanticTokenColorChartSequentialAccent5Tint900Light() throws { + XCTAssertNotEqual(inheritedTheme.colorChartSequentialAccent5Tint900Light, abstractTheme.colorChartSequentialAccent5Tint900Light) + XCTAssertTrue(inheritedTheme.colorChartSequentialAccent5Tint900Light == OtherMockTheme.otherMockThemeSemanticColorToken) + } + + func testInheritedThemeCanOverrideSemanticTokenColorChartSequentialAccent5Tint900Dark() throws { + XCTAssertNotEqual(inheritedTheme.colorChartSequentialAccent5Tint900Dark, abstractTheme.colorChartSequentialAccent5Tint900Dark) + XCTAssertTrue(inheritedTheme.colorChartSequentialAccent5Tint900Dark == OtherMockTheme.otherMockThemeSemanticColorToken) + } + + // MARK: Semantic token - Colors - Content - On Action + + func testInheritedThemeCanOverrideSemanticTokenColorContentOnActionDisabledLight() throws { + XCTAssertNotEqual(inheritedTheme.colorContentOnActionDisabledLight, abstractTheme.colorContentOnActionDisabledLight) + XCTAssertTrue(inheritedTheme.colorContentOnActionDisabledLight == OtherMockTheme.otherMockThemeSemanticColorToken) + } + + func testInheritedThemeCanOverrideSemanticTokenColorContentOnActionDisabledDark() throws { + XCTAssertNotEqual(inheritedTheme.colorContentOnActionDisabledDark, abstractTheme.colorContentOnActionDisabledDark) + XCTAssertTrue(inheritedTheme.colorContentOnActionDisabledDark == OtherMockTheme.otherMockThemeSemanticColorToken) + } + + func testInheritedThemeCanOverrideSemanticTokenColorContentOnActionDisabledOnBgEmphasizedLight() throws { + XCTAssertNotEqual(inheritedTheme.colorContentOnActionDisabledOnBgEmphasizedLight, abstractTheme.colorContentOnActionDisabledOnBgEmphasizedLight) + XCTAssertTrue(inheritedTheme.colorContentOnActionDisabledOnBgEmphasizedLight == OtherMockTheme.otherMockThemeSemanticColorToken) + } + + func testInheritedThemeCanOverrideSemanticTokenColorContentOnActionDisabledOnBgEmphasizedDark() throws { + XCTAssertNotEqual(inheritedTheme.colorContentOnActionDisabledOnBgEmphasizedDark, abstractTheme.colorContentOnActionDisabledOnBgEmphasizedDark) + XCTAssertTrue(inheritedTheme.colorContentOnActionDisabledOnBgEmphasizedDark == OtherMockTheme.otherMockThemeSemanticColorToken) + } + + func testInheritedThemeCanOverrideSemanticTokenColorContentOnActionNegativeLight() throws { + XCTAssertNotEqual(inheritedTheme.colorContentOnActionNegativeLight, abstractTheme.colorContentOnActionNegativeLight) + XCTAssertTrue(inheritedTheme.colorContentOnActionNegativeLight == OtherMockTheme.otherMockThemeSemanticColorToken) + } + + func testInheritedThemeCanOverrideSemanticTokenColorContentOnActionNegativeDark() throws { + XCTAssertNotEqual(inheritedTheme.colorContentOnActionNegativeDark, abstractTheme.colorContentOnActionNegativeDark) + XCTAssertTrue(inheritedTheme.colorContentOnActionNegativeDark == OtherMockTheme.otherMockThemeSemanticColorToken) + } + + func testInheritedThemeCanOverrideSemanticTokenColorContentOnActionPrimaryEnabledLight() throws { + XCTAssertNotEqual(inheritedTheme.colorContentOnActionPrimaryEnabledLight, abstractTheme.colorContentOnActionPrimaryEnabledLight) + XCTAssertTrue(inheritedTheme.colorContentOnActionPrimaryEnabledLight == OtherMockTheme.otherMockThemeSemanticColorToken) + } + + func testInheritedThemeCanOverrideSemanticTokenColorContentOnActionPrimaryEnabledDark() throws { + XCTAssertNotEqual(inheritedTheme.colorContentOnActionPrimaryEnabledDark, abstractTheme.colorContentOnActionPrimaryEnabledDark) + XCTAssertTrue(inheritedTheme.colorContentOnActionPrimaryEnabledDark == OtherMockTheme.otherMockThemeSemanticColorToken) + } + + func testInheritedThemeCanOverrideSemanticTokenColorContentOnActionPrimaryEnabledOnBgEmphasizedLight() throws { + XCTAssertNotEqual(inheritedTheme.colorContentOnActionPrimaryEnabledOnBgEmphasizedLight, abstractTheme.colorContentOnActionPrimaryEnabledOnBgEmphasizedLight) + XCTAssertTrue(inheritedTheme.colorContentOnActionPrimaryEnabledOnBgEmphasizedLight == OtherMockTheme.otherMockThemeSemanticColorToken) + } + + func testInheritedThemeCanOverrideSemanticTokenColorContentOnActionPrimaryEnabledOnBgEmphasizedDark() throws { + XCTAssertNotEqual(inheritedTheme.colorContentOnActionPrimaryEnabledOnBgEmphasizedDark, abstractTheme.colorContentOnActionPrimaryEnabledOnBgEmphasizedDark) + XCTAssertTrue(inheritedTheme.colorContentOnActionPrimaryEnabledOnBgEmphasizedDark == OtherMockTheme.otherMockThemeSemanticColorToken) + } + + func testInheritedThemeCanOverrideSemanticTokenColorContentOnActionPrimaryFocusLight() throws { + XCTAssertNotEqual(inheritedTheme.colorContentOnActionPrimaryFocusLight, abstractTheme.colorContentOnActionPrimaryFocusLight) + XCTAssertTrue(inheritedTheme.colorContentOnActionPrimaryFocusLight == OtherMockTheme.otherMockThemeSemanticColorToken) + } + + func testInheritedThemeCanOverrideSemanticTokenColorContentOnActionPrimaryFocusDark() throws { + XCTAssertNotEqual(inheritedTheme.colorContentOnActionPrimaryFocusDark, abstractTheme.colorContentOnActionPrimaryFocusDark) + XCTAssertTrue(inheritedTheme.colorContentOnActionPrimaryFocusDark == OtherMockTheme.otherMockThemeSemanticColorToken) + } + + func testInheritedThemeCanOverrideSemanticTokenColorContentOnActionPrimaryFocusOnBgEmphasizedLight() throws { + XCTAssertNotEqual(inheritedTheme.colorContentOnActionPrimaryFocusOnBgEmphasizedLight, abstractTheme.colorContentOnActionPrimaryFocusOnBgEmphasizedLight) + XCTAssertTrue(inheritedTheme.colorContentOnActionPrimaryFocusOnBgEmphasizedLight == OtherMockTheme.otherMockThemeSemanticColorToken) + } + + func testInheritedThemeCanOverrideSemanticTokenColorContentOnActionPrimaryFocusOnBgEmphasizedDark() throws { + XCTAssertNotEqual(inheritedTheme.colorContentOnActionPrimaryFocusOnBgEmphasizedDark, abstractTheme.colorContentOnActionPrimaryFocusOnBgEmphasizedDark) + XCTAssertTrue(inheritedTheme.colorContentOnActionPrimaryFocusOnBgEmphasizedDark == OtherMockTheme.otherMockThemeSemanticColorToken) + } + + func testInheritedThemeCanOverrideSemanticTokenColorContentOnActionPrimaryHoverLight() throws { + XCTAssertNotEqual(inheritedTheme.colorContentOnActionPrimaryHoverLight, abstractTheme.colorContentOnActionPrimaryHoverLight) + XCTAssertTrue(inheritedTheme.colorContentOnActionPrimaryHoverLight == OtherMockTheme.otherMockThemeSemanticColorToken) + } + + func testInheritedThemeCanOverrideSemanticTokenColorContentOnActionPrimaryHoverDark() throws { + XCTAssertNotEqual(inheritedTheme.colorContentOnActionPrimaryHoverDark, abstractTheme.colorContentOnActionPrimaryHoverDark) + XCTAssertTrue(inheritedTheme.colorContentOnActionPrimaryHoverDark == OtherMockTheme.otherMockThemeSemanticColorToken) + } + + func testInheritedThemeCanOverrideSemanticTokenColorContentOnActionPrimaryHoverOnBgEmphasizedLight() throws { + XCTAssertNotEqual(inheritedTheme.colorContentOnActionPrimaryHoverOnBgEmphasizedLight, abstractTheme.colorContentOnActionPrimaryHoverOnBgEmphasizedLight) + XCTAssertTrue(inheritedTheme.colorContentOnActionPrimaryHoverOnBgEmphasizedLight == OtherMockTheme.otherMockThemeSemanticColorToken) + } + + func testInheritedThemeCanOverrideSemanticTokenColorContentOnActionPrimaryHoverOnBgEmphasizedDark() throws { + XCTAssertNotEqual(inheritedTheme.colorContentOnActionPrimaryHoverOnBgEmphasizedDark, abstractTheme.colorContentOnActionPrimaryHoverOnBgEmphasizedDark) + XCTAssertTrue(inheritedTheme.colorContentOnActionPrimaryHoverOnBgEmphasizedDark == OtherMockTheme.otherMockThemeSemanticColorToken) + } + + func testInheritedThemeCanOverrideSemanticTokenColorContentOnActionPrimaryLoadingLight() throws { + XCTAssertNotEqual(inheritedTheme.colorContentOnActionPrimaryLoadingLight, abstractTheme.colorContentOnActionPrimaryLoadingLight) + XCTAssertTrue(inheritedTheme.colorContentOnActionPrimaryLoadingLight == OtherMockTheme.otherMockThemeSemanticColorToken) + } + + func testInheritedThemeCanOverrideSemanticTokenColorContentOnActionPrimaryLoadingDark() throws { + XCTAssertNotEqual(inheritedTheme.colorContentOnActionPrimaryLoadingDark, abstractTheme.colorContentOnActionPrimaryLoadingDark) + XCTAssertTrue(inheritedTheme.colorContentOnActionPrimaryLoadingDark == OtherMockTheme.otherMockThemeSemanticColorToken) + } + + func testInheritedThemeCanOverrideSemanticTokenColorContentOnActionPrimaryLoadingOnBgEmphasizedLight() throws { + XCTAssertNotEqual(inheritedTheme.colorContentOnActionPrimaryLoadingOnBgEmphasizedLight, abstractTheme.colorContentOnActionPrimaryLoadingOnBgEmphasizedLight) + XCTAssertTrue(inheritedTheme.colorContentOnActionPrimaryLoadingOnBgEmphasizedLight == OtherMockTheme.otherMockThemeSemanticColorToken) + } + + func testInheritedThemeCanOverrideSemanticTokenColorContentOnActionPrimaryLoadingOnBgEmphasizedDark() throws { + XCTAssertNotEqual(inheritedTheme.colorContentOnActionPrimaryLoadingOnBgEmphasizedDark, abstractTheme.colorContentOnActionPrimaryLoadingOnBgEmphasizedDark) + XCTAssertTrue(inheritedTheme.colorContentOnActionPrimaryLoadingOnBgEmphasizedDark == OtherMockTheme.otherMockThemeSemanticColorToken) + } + + func testInheritedThemeCanOverrideSemanticTokenColorContentOnActionPrimaryPressedLight() throws { + XCTAssertNotEqual(inheritedTheme.colorContentOnActionPrimaryPressedLight, abstractTheme.colorContentOnActionPrimaryPressedLight) + XCTAssertTrue(inheritedTheme.colorContentOnActionPrimaryPressedLight == OtherMockTheme.otherMockThemeSemanticColorToken) + } + + func testInheritedThemeCanOverrideSemanticTokenColorContentOnActionPrimaryPressedDark() throws { + XCTAssertNotEqual(inheritedTheme.colorContentOnActionPrimaryPressedDark, abstractTheme.colorContentOnActionPrimaryPressedDark) + XCTAssertTrue(inheritedTheme.colorContentOnActionPrimaryPressedDark == OtherMockTheme.otherMockThemeSemanticColorToken) + } + + func testInheritedThemeCanOverrideSemanticTokenColorContentOnActionPrimaryPressedOnBgEmphasizedLight() throws { + XCTAssertNotEqual(inheritedTheme.colorContentOnActionPrimaryPressedOnBgEmphasizedLight, abstractTheme.colorContentOnActionPrimaryPressedOnBgEmphasizedLight) + XCTAssertTrue(inheritedTheme.colorContentOnActionPrimaryPressedOnBgEmphasizedLight == OtherMockTheme.otherMockThemeSemanticColorToken) + } + + func testInheritedThemeCanOverrideSemanticTokenColorContentOnActionPrimaryPressedOnBgEmphasizedDark() throws { + XCTAssertNotEqual(inheritedTheme.colorContentOnActionPrimaryPressedOnBgEmphasizedDark, abstractTheme.colorContentOnActionPrimaryPressedOnBgEmphasizedDark) + XCTAssertTrue(inheritedTheme.colorContentOnActionPrimaryPressedOnBgEmphasizedDark == OtherMockTheme.otherMockThemeSemanticColorToken) + } + + func testInheritedThemeCanOverrideSemanticTokenColorContentOnBrandPrimaryLight() throws { + XCTAssertNotEqual(inheritedTheme.colorContentOnBrandPrimaryLight, abstractTheme.colorContentOnBrandPrimaryLight) + XCTAssertTrue(inheritedTheme.colorContentOnBrandPrimaryLight == OtherMockTheme.otherMockThemeSemanticColorToken) + } + + func testInheritedThemeCanOverrideSemanticTokenColorContentOnBrandPrimaryDark() throws { + XCTAssertNotEqual(inheritedTheme.colorContentOnBrandPrimaryDark, abstractTheme.colorContentOnBrandPrimaryDark) + XCTAssertTrue(inheritedTheme.colorContentOnBrandPrimaryDark == OtherMockTheme.otherMockThemeSemanticColorToken) + } + + func testInheritedThemeCanOverrideSemanticTokenColorContentOnStatusAccentEmphasizedLight() throws { + XCTAssertNotEqual(inheritedTheme.colorContentOnStatusAccentEmphasizedLight, abstractTheme.colorContentOnStatusAccentEmphasizedLight) + XCTAssertTrue(inheritedTheme.colorContentOnStatusAccentEmphasizedLight == OtherMockTheme.otherMockThemeSemanticColorToken) + } + + func testInheritedThemeCanOverrideSemanticTokenColorContentOnStatusAccentEmphasizedDark() throws { + XCTAssertNotEqual(inheritedTheme.colorContentOnStatusAccentEmphasizedDark, abstractTheme.colorContentOnStatusAccentEmphasizedDark) + XCTAssertTrue(inheritedTheme.colorContentOnStatusAccentEmphasizedDark == OtherMockTheme.otherMockThemeSemanticColorToken) + } + + func testInheritedThemeCanOverrideSemanticTokenColorContentOnStatusAccentMutedLight() throws { + XCTAssertNotEqual(inheritedTheme.colorContentOnStatusAccentMutedLight, abstractTheme.colorContentOnStatusAccentMutedLight) + XCTAssertTrue(inheritedTheme.colorContentOnStatusAccentMutedLight == OtherMockTheme.otherMockThemeSemanticColorToken) + } + + func testInheritedThemeCanOverrideSemanticTokenColorContentOnStatusAccentMutedDark() throws { + XCTAssertNotEqual(inheritedTheme.colorContentOnStatusAccentMutedDark, abstractTheme.colorContentOnStatusAccentMutedDark) + XCTAssertTrue(inheritedTheme.colorContentOnStatusAccentMutedDark == OtherMockTheme.otherMockThemeSemanticColorToken) + } + + func testInheritedThemeCanOverrideSemanticTokenColorContentOnStatusAccentMutedOnBgEmphasizedLight() throws { + XCTAssertNotEqual(inheritedTheme.colorContentOnStatusAccentMutedOnBgEmphasizedLight, abstractTheme.colorContentOnStatusAccentMutedOnBgEmphasizedLight) + XCTAssertTrue(inheritedTheme.colorContentOnStatusAccentMutedOnBgEmphasizedLight == OtherMockTheme.otherMockThemeSemanticColorToken) + } + + func testInheritedThemeCanOverrideSemanticTokenColorContentOnStatusAccentMutedOnBgEmphasizedDark() throws { + XCTAssertNotEqual(inheritedTheme.colorContentOnStatusAccentMutedOnBgEmphasizedDark, abstractTheme.colorContentOnStatusAccentMutedOnBgEmphasizedDark) + XCTAssertTrue(inheritedTheme.colorContentOnStatusAccentMutedOnBgEmphasizedDark == OtherMockTheme.otherMockThemeSemanticColorToken) + } + + func testInheritedThemeCanOverrideSemanticTokenColorContentOnStatusInfoEmphasizedLight() throws { + XCTAssertNotEqual(inheritedTheme.colorContentOnStatusInfoEmphasizedLight, abstractTheme.colorContentOnStatusInfoEmphasizedLight) + XCTAssertTrue(inheritedTheme.colorContentOnStatusInfoEmphasizedLight == OtherMockTheme.otherMockThemeSemanticColorToken) + } + + func testInheritedThemeCanOverrideSemanticTokenColorContentOnStatusInfoEmphasizedDark() throws { + XCTAssertNotEqual(inheritedTheme.colorContentOnStatusInfoEmphasizedDark, abstractTheme.colorContentOnStatusInfoEmphasizedDark) + XCTAssertTrue(inheritedTheme.colorContentOnStatusInfoEmphasizedDark == OtherMockTheme.otherMockThemeSemanticColorToken) + } + + func testInheritedThemeCanOverrideSemanticTokenColorContentOnStatusInfoMutedLight() throws { + XCTAssertNotEqual(inheritedTheme.colorContentOnStatusInfoMutedLight, abstractTheme.colorContentOnStatusInfoMutedLight) + XCTAssertTrue(inheritedTheme.colorContentOnStatusInfoMutedLight == OtherMockTheme.otherMockThemeSemanticColorToken) + } + + func testInheritedThemeCanOverrideSemanticTokenColorContentOnStatusInfoMutedDark() throws { + XCTAssertNotEqual(inheritedTheme.colorContentOnStatusInfoMutedDark, abstractTheme.colorContentOnStatusInfoMutedDark) + XCTAssertTrue(inheritedTheme.colorContentOnStatusInfoMutedDark == OtherMockTheme.otherMockThemeSemanticColorToken) + } + + func testInheritedThemeCanOverrideSemanticTokenColorContentOnStatusInfoMutedOnBgEmphasizedLight() throws { + XCTAssertNotEqual(inheritedTheme.colorContentOnStatusInfoMutedOnBgEmphasizedLight, abstractTheme.colorContentOnStatusInfoMutedOnBgEmphasizedLight) + XCTAssertTrue(inheritedTheme.colorContentOnStatusInfoMutedOnBgEmphasizedLight == OtherMockTheme.otherMockThemeSemanticColorToken) + } + + func testInheritedThemeCanOverrideSemanticTokenColorContentOnStatusInfoMutedOnBgEmphasizedDark() throws { + XCTAssertNotEqual(inheritedTheme.colorContentOnStatusInfoMutedOnBgEmphasizedDark, abstractTheme.colorContentOnStatusInfoMutedOnBgEmphasizedDark) + XCTAssertTrue(inheritedTheme.colorContentOnStatusInfoMutedOnBgEmphasizedDark == OtherMockTheme.otherMockThemeSemanticColorToken) + } + + func testInheritedThemeCanOverrideSemanticTokenColorContentOnStatusNegativeEmphasizedLight() throws { + XCTAssertNotEqual(inheritedTheme.colorContentOnStatusNegativeEmphasizedLight, abstractTheme.colorContentOnStatusNegativeEmphasizedLight) + XCTAssertTrue(inheritedTheme.colorContentOnStatusNegativeEmphasizedLight == OtherMockTheme.otherMockThemeSemanticColorToken) + } + + func testInheritedThemeCanOverrideSemanticTokenColorContentOnStatusNegativeEmphasizedDark() throws { + XCTAssertNotEqual(inheritedTheme.colorContentOnStatusNegativeEmphasizedDark, abstractTheme.colorContentOnStatusNegativeEmphasizedDark) + XCTAssertTrue(inheritedTheme.colorContentOnStatusNegativeEmphasizedDark == OtherMockTheme.otherMockThemeSemanticColorToken) + } + + func testInheritedThemeCanOverrideSemanticTokenColorContentOnStatusNegativeMutedLight() throws { + XCTAssertNotEqual(inheritedTheme.colorContentOnStatusNegativeMutedLight, abstractTheme.colorContentOnStatusNegativeMutedLight) + XCTAssertTrue(inheritedTheme.colorContentOnStatusNegativeMutedLight == OtherMockTheme.otherMockThemeSemanticColorToken) + } + + func testInheritedThemeCanOverrideSemanticTokenColorContentOnStatusNegativeMutedDark() throws { + XCTAssertNotEqual(inheritedTheme.colorContentOnStatusNegativeMutedDark, abstractTheme.colorContentOnStatusNegativeMutedDark) + XCTAssertTrue(inheritedTheme.colorContentOnStatusNegativeMutedDark == OtherMockTheme.otherMockThemeSemanticColorToken) + } + + func testInheritedThemeCanOverrideSemanticTokenColorContentOnStatusNegativeMutedOnBgEmphasizedLight() throws { + XCTAssertNotEqual(inheritedTheme.colorContentOnStatusNegativeMutedOnBgEmphasizedLight, abstractTheme.colorContentOnStatusNegativeMutedOnBgEmphasizedLight) + XCTAssertTrue(inheritedTheme.colorContentOnStatusNegativeMutedOnBgEmphasizedLight == OtherMockTheme.otherMockThemeSemanticColorToken) + } + + func testInheritedThemeCanOverrideSemanticTokenColorContentOnStatusNegativeMutedOnBgEmphasizedDark() throws { + XCTAssertNotEqual(inheritedTheme.colorContentOnStatusNegativeMutedOnBgEmphasizedDark, abstractTheme.colorContentOnStatusNegativeMutedOnBgEmphasizedDark) + XCTAssertTrue(inheritedTheme.colorContentOnStatusNegativeMutedOnBgEmphasizedDark == OtherMockTheme.otherMockThemeSemanticColorToken) + } + + func testInheritedThemeCanOverrideSemanticTokenColorContentOnStatusPositiveEmphasizedLight() throws { + XCTAssertNotEqual(inheritedTheme.colorContentOnStatusPositiveEmphasizedLight, abstractTheme.colorContentOnStatusPositiveEmphasizedLight) + XCTAssertTrue(inheritedTheme.colorContentOnStatusPositiveEmphasizedLight == OtherMockTheme.otherMockThemeSemanticColorToken) + } + + func testInheritedThemeCanOverrideSemanticTokenColorContentOnStatusPositiveEmphasizedDark() throws { + XCTAssertNotEqual(inheritedTheme.colorContentOnStatusPositiveEmphasizedDark, abstractTheme.colorContentOnStatusPositiveEmphasizedDark) + XCTAssertTrue(inheritedTheme.colorContentOnStatusPositiveEmphasizedDark == OtherMockTheme.otherMockThemeSemanticColorToken) + } + + func testInheritedThemeCanOverrideSemanticTokenColorContentOnStatusPositiveMutedLight() throws { + XCTAssertNotEqual(inheritedTheme.colorContentOnStatusPositiveMutedLight, abstractTheme.colorContentOnStatusPositiveMutedLight) + XCTAssertTrue(inheritedTheme.colorContentOnStatusPositiveMutedLight == OtherMockTheme.otherMockThemeSemanticColorToken) + } + + func testInheritedThemeCanOverrideSemanticTokenColorContentOnStatusPositiveMutedDark() throws { + XCTAssertNotEqual(inheritedTheme.colorContentOnStatusPositiveMutedDark, abstractTheme.colorContentOnStatusPositiveMutedDark) + XCTAssertTrue(inheritedTheme.colorContentOnStatusPositiveMutedDark == OtherMockTheme.otherMockThemeSemanticColorToken) + } + + func testInheritedThemeCanOverrideSemanticTokenColorContentOnStatusPositiveMutedOnBgEmphasizedLight() throws { + XCTAssertNotEqual(inheritedTheme.colorContentOnStatusPositiveMutedOnBgEmphasizedLight, abstractTheme.colorContentOnStatusPositiveMutedOnBgEmphasizedLight) + XCTAssertTrue(inheritedTheme.colorContentOnStatusPositiveMutedOnBgEmphasizedLight == OtherMockTheme.otherMockThemeSemanticColorToken) + } + + func testInheritedThemeCanOverrideSemanticTokenColorContentOnStatusPositiveMutedOnBgEmphasizedDark() throws { + XCTAssertNotEqual(inheritedTheme.colorContentOnStatusPositiveMutedOnBgEmphasizedDark, abstractTheme.colorContentOnStatusPositiveMutedOnBgEmphasizedDark) + XCTAssertTrue(inheritedTheme.colorContentOnStatusPositiveMutedOnBgEmphasizedDark == OtherMockTheme.otherMockThemeSemanticColorToken) + } + + func testInheritedThemeCanOverrideSemanticTokenColorContentOnStatusWarningEmphasizedLight() throws { + XCTAssertNotEqual(inheritedTheme.colorContentOnStatusWarningEmphasizedLight, abstractTheme.colorContentOnStatusWarningEmphasizedLight) + XCTAssertTrue(inheritedTheme.colorContentOnStatusWarningEmphasizedLight == OtherMockTheme.otherMockThemeSemanticColorToken) + } + + func testInheritedThemeCanOverrideSemanticTokenColorContentOnStatusWarningEmphasizedDark() throws { + XCTAssertNotEqual(inheritedTheme.colorContentOnStatusWarningEmphasizedDark, abstractTheme.colorContentOnStatusWarningEmphasizedDark) + XCTAssertTrue(inheritedTheme.colorContentOnStatusWarningEmphasizedDark == OtherMockTheme.otherMockThemeSemanticColorToken) + } + + func testInheritedThemeCanOverrideSemanticTokenColorContentOnStatusWarningMutedLight() throws { + XCTAssertNotEqual(inheritedTheme.colorContentOnStatusWarningMutedLight, abstractTheme.colorContentOnStatusWarningMutedLight) + XCTAssertTrue(inheritedTheme.colorContentOnStatusWarningMutedLight == OtherMockTheme.otherMockThemeSemanticColorToken) + } + + func testInheritedThemeCanOverrideSemanticTokenColorContentOnStatusWarningMutedDark() throws { + XCTAssertNotEqual(inheritedTheme.colorContentOnStatusWarningMutedDark, abstractTheme.colorContentOnStatusWarningMutedDark) + XCTAssertTrue(inheritedTheme.colorContentOnStatusWarningMutedDark == OtherMockTheme.otherMockThemeSemanticColorToken) + } + + func testInheritedThemeCanOverrideSemanticTokenColorContentOnStatusWarningMutedOnBgEmphasizedLight() throws { + XCTAssertNotEqual(inheritedTheme.colorContentOnStatusWarningMutedOnBgEmphasizedLight, abstractTheme.colorContentOnStatusWarningMutedOnBgEmphasizedLight) + XCTAssertTrue(inheritedTheme.colorContentOnStatusWarningMutedOnBgEmphasizedLight == OtherMockTheme.otherMockThemeSemanticColorToken) + } + + func testInheritedThemeCanOverrideSemanticTokenColorContentOnStatusWarningMutedOnBgEmphasizedDark() throws { + XCTAssertNotEqual(inheritedTheme.colorContentOnStatusWarningMutedOnBgEmphasizedDark, abstractTheme.colorContentOnStatusWarningMutedOnBgEmphasizedDark) + XCTAssertTrue(inheritedTheme.colorContentOnStatusWarningMutedOnBgEmphasizedDark == OtherMockTheme.otherMockThemeSemanticColorToken) + } + + // MARK: - Semantic token - Colors - Gradient + + func testInheritedThemeCanOverrideSemanticTokenColorColorGradientSkeletonMiddleLight() throws { + XCTAssertNotEqual(inheritedTheme.colorGradientSkeletonMiddleLight, abstractTheme.colorGradientSkeletonMiddleLight) + XCTAssertTrue(inheritedTheme.colorGradientSkeletonMiddleLight == OtherMockTheme.otherMockThemeSemanticColorToken) + } + + func testInheritedThemeCanOverrideSemanticTokenColorColorGradientSkeletonMiddleDark() throws { + XCTAssertNotEqual(inheritedTheme.colorGradientSkeletonMiddleDark, abstractTheme.colorGradientSkeletonMiddleDark) + XCTAssertTrue(inheritedTheme.colorGradientSkeletonMiddleDark == OtherMockTheme.otherMockThemeSemanticColorToken) + } + + func testInheritedThemeCanOverrideSemanticTokenColorColorGradientSkeletonMiddleOnBgEmphasizedLight() throws { + XCTAssertNotEqual(inheritedTheme.colorGradientSkeletonMiddleOnBgEmphasizedLight, abstractTheme.colorGradientSkeletonMiddleOnBgEmphasizedLight) + XCTAssertTrue(inheritedTheme.colorGradientSkeletonMiddleOnBgEmphasizedLight == OtherMockTheme.otherMockThemeSemanticColorToken) + } + + func testInheritedThemeCanOverrideSemanticTokenColorColorGradientSkeletonMiddleOnBgEmphasizedDark() throws { + XCTAssertNotEqual(inheritedTheme.colorGradientSkeletonMiddleOnBgEmphasizedDark, abstractTheme.colorGradientSkeletonMiddleOnBgEmphasizedDark) + XCTAssertTrue(inheritedTheme.colorGradientSkeletonMiddleOnBgEmphasizedDark == OtherMockTheme.otherMockThemeSemanticColorToken) + } + + func testInheritedThemeCanOverrideSemanticTokenColorColorGradientSkeletonStartEndLight() throws { + XCTAssertNotEqual(inheritedTheme.colorGradientSkeletonStartEndLight, abstractTheme.colorGradientSkeletonStartEndLight) + XCTAssertTrue(inheritedTheme.colorGradientSkeletonStartEndLight == OtherMockTheme.otherMockThemeSemanticColorToken) + } + + func testInheritedThemeCanOverrideSemanticTokenColorColorGradientSkeletonStartEndDark() throws { + XCTAssertNotEqual(inheritedTheme.colorGradientSkeletonStartEndDark, abstractTheme.colorGradientSkeletonStartEndDark) + XCTAssertTrue(inheritedTheme.colorGradientSkeletonStartEndDark == OtherMockTheme.otherMockThemeSemanticColorToken) + } + + func testInheritedThemeCanOverrideSemanticTokenColorColorGradientSkeletonStartEndOnBgEmphasizedLight() throws { + XCTAssertNotEqual(inheritedTheme.colorGradientSkeletonStartEndOnBgEmphasizedLight, abstractTheme.colorGradientSkeletonStartEndOnBgEmphasizedLight) + XCTAssertTrue(inheritedTheme.colorGradientSkeletonStartEndOnBgEmphasizedLight == OtherMockTheme.otherMockThemeSemanticColorToken) + } + + func testInheritedThemeCanOverrideSemanticTokenColorColorGradientSkeletonStartEndOnBgEmphasizedDark() throws { + XCTAssertNotEqual(inheritedTheme.colorGradientSkeletonStartEndOnBgEmphasizedDark, abstractTheme.colorGradientSkeletonStartEndOnBgEmphasizedDark) + XCTAssertTrue(inheritedTheme.colorGradientSkeletonStartEndOnBgEmphasizedDark == OtherMockTheme.otherMockThemeSemanticColorToken) + } } // swiftlint:enable type_body_length diff --git a/OUDS/Core/Themes/Inverse/Sources/InverseTheme+ColorSemanticTokens.swift b/OUDS/Core/Themes/Inverse/Sources/InverseTheme+ColorSemanticTokens.swift index 2e2d57ced..f70a8e827 100644 --- a/OUDS/Core/Themes/Inverse/Sources/InverseTheme+ColorSemanticTokens.swift +++ b/OUDS/Core/Themes/Inverse/Sources/InverseTheme+ColorSemanticTokens.swift @@ -21,9 +21,6 @@ import OUDSTokensSemantic // WARNING: Not synchronized anymore with the Figjam / Figma by developers team // Create an issue for update https://github.com/Orange-OpenSource/ouds-ios/issues/new?template=token_update.yml -// swiftlint:disable line_length -// swiftlint:disable file_length - /// Overrides some colors using values defined in extension of ``ColorRawTokens`` in this current module. /// Some tokens do not have values assigned in the design system, and must be overriden. extension InverseTheme { @@ -40,10 +37,6 @@ extension InverseTheme { override public var colorBgBrandPrimary: MultipleColorSemanticTokens { MultipleColorSemanticTokens(OrangeBrandColorRawTokens.colorOrange500) } - override public var colorBgBrandSecondary: MultipleColorSemanticTokens { fatalError("🤖 No value defined for colorBgBrandSecondary!") } - - override public var colorBgBrandTertiary: MultipleColorSemanticTokens { fatalError("🤖 No value defined for colorBgBrandTertiary!") } - override public var colorBgStatusNeutral: MultipleColorSemanticTokens { MultipleColorSemanticTokens(ColorRawTokens.colorFunctionalDarkGray720) } override public var colorBgStatusNeutralOnBgEmphasized: MultipleColorSemanticTokens { MultipleColorSemanticTokens(ColorRawTokens.colorFunctionalLightGray80) } @@ -82,22 +75,18 @@ extension InverseTheme { override public var colorContentDefault: MultipleColorSemanticTokens { MultipleColorSemanticTokens(ColorRawTokens.colorFunctionalLightGray160) } - override public var colorContentContentDefaultOnBgEmphasized: MultipleColorSemanticTokens { MultipleColorSemanticTokens(ColorRawTokens.colorFunctionalBlack) } + override public var colorContentDefaultOnBgEmphasized: MultipleColorSemanticTokens { MultipleColorSemanticTokens(ColorRawTokens.colorFunctionalBlack) } override public var colorContentMuted: MultipleColorSemanticTokens { MultipleColorSemanticTokens(ColorRawTokens.colorFunctionalLightGray400) } - override public var colorContentContentMutedOnBgEmphasized: MultipleColorSemanticTokens { MultipleColorSemanticTokens(ColorRawTokens.colorFunctionalDarkGray400) } + override public var colorContentMutedOnBgEmphasized: MultipleColorSemanticTokens { MultipleColorSemanticTokens(ColorRawTokens.colorFunctionalDarkGray400) } override public var colorContentDisabled: MultipleColorSemanticTokens { MultipleColorSemanticTokens(ColorRawTokens.colorFunctionalDarkGray400) } - override public var colorContentContentDisabledOnBgEmphasized: MultipleColorSemanticTokens { MultipleColorSemanticTokens(ColorRawTokens.colorFunctionalLightGray400) } + override public var colorContentDisabledOnBgEmphasized: MultipleColorSemanticTokens { MultipleColorSemanticTokens(ColorRawTokens.colorFunctionalLightGray400) } override public var colorContentBrandPrimary: MultipleColorSemanticTokens { MultipleColorSemanticTokens(OrangeBrandColorRawTokens.colorOrange500) } - override public var colorContentBrandSecondary: MultipleColorSemanticTokens { fatalError("🤖 No value defined for colorContentBrandSecondary!") } - - override public var colorContentBrandTertiary: MultipleColorSemanticTokens { fatalError("🤖 No value defined for colorContentBrandTertiary!") } - override public var colorContentStatusPositive: MultipleColorSemanticTokens { MultipleColorSemanticTokens(ColorRawTokens.colorFunctionalMalachite500) } override public var colorContentStatusInfo: MultipleColorSemanticTokens { MultipleColorSemanticTokens(ColorRawTokens.colorFunctionalDodgerBlue500) } @@ -106,46 +95,6 @@ extension InverseTheme { override public var colorContentStatusNegative: MultipleColorSemanticTokens { MultipleColorSemanticTokens(ColorRawTokens.colorFunctionalScarlet600) } - override public var colorContentStatusAccent: MultipleColorSemanticTokens { fatalError("🤖 No value defined for colorContentStatusAccent!") } - - // MARK: Semantic token - Colors - Content - On Background - - override public var colorContentOnBgPrimary: MultipleColorSemanticTokens { MultipleColorSemanticTokens( ColorRawTokens.colorFunctionalBlack) } - - override public var colorContentOnBgSecondary: MultipleColorSemanticTokens { fatalError("🤖 No value defined for colorContentOnBgSecondary!") } - - override public var colorContentOnBgTertiary: MultipleColorSemanticTokens { fatalError("🤖 No value defined for colorContentOnBgTertiary!") } - - override public var colorContentOnBgStatusPositiveMuted: MultipleColorSemanticTokens { MultipleColorSemanticTokens(ColorRawTokens.colorFunctionalLightGray160) } - - override public var colorContentOnBgStatusPositiveMutedOnBgEmphasized: MultipleColorSemanticTokens { MultipleColorSemanticTokens(ColorRawTokens.colorFunctionalBlack) } - - override public var colorContentOnBgStatusPositiveEmphasized: MultipleColorSemanticTokens { MultipleColorSemanticTokens(ColorRawTokens.colorFunctionalBlack) } - - override public var colorContentOnBgStatusInfoMuted: MultipleColorSemanticTokens { MultipleColorSemanticTokens(ColorRawTokens.colorFunctionalLightGray160) } - - override public var colorContentOnBgStatusInfoMutedOnBgEmphasized: MultipleColorSemanticTokens { MultipleColorSemanticTokens(ColorRawTokens.colorFunctionalLightGray160) } - - override public var colorContentOnBgStatusInfoEmphasized: MultipleColorSemanticTokens { MultipleColorSemanticTokens(ColorRawTokens.colorFunctionalBlack) } - - override public var colorContentOnBgStatusWarningMuted: MultipleColorSemanticTokens { MultipleColorSemanticTokens(ColorRawTokens.colorFunctionalLightGray160) } - - override public var colorContentOnBgStatusWarningMutedOnBgEmphasized: MultipleColorSemanticTokens { MultipleColorSemanticTokens(ColorRawTokens.colorFunctionalBlack) } - - override public var colorContentOnBgStatusWarningEmphasized: MultipleColorSemanticTokens { MultipleColorSemanticTokens(ColorRawTokens.colorFunctionalBlack) } - - override public var colorContentOnBgStatusNegativeMuted: MultipleColorSemanticTokens { MultipleColorSemanticTokens(ColorRawTokens.colorFunctionalLightGray160) } - - override public var colorContentOnBgStatusNegativeMutedOnBgEmphasized: MultipleColorSemanticTokens { MultipleColorSemanticTokens(ColorRawTokens.colorFunctionalBlack) } - - override public var colorContentOnBgStatusNegativeEmphasized: MultipleColorSemanticTokens { MultipleColorSemanticTokens(ColorRawTokens.colorFunctionalWhite) } - - override public var colorContentOnBgStatusAccentMuted: MultipleColorSemanticTokens { MultipleColorSemanticTokens(ColorRawTokens.colorFunctionalLightGray160) } - - override public var colorContentOnBgStatusAccentMutedOnBgEmphasized: MultipleColorSemanticTokens { MultipleColorSemanticTokens(ColorRawTokens.colorFunctionalBlack) } - - override public var colorContentOnBgStatusAccentedEmphasized: MultipleColorSemanticTokens { MultipleColorSemanticTokens(ColorRawTokens.colorFunctionalBlack) } - // MARK: Semantic token - Colors - Border override public var colorBorderDefault: MultipleColorSemanticTokens { MultipleColorSemanticTokens(ColorRawTokens.colorFunctionalDarkGray400) } @@ -162,26 +111,6 @@ extension InverseTheme { override public var colorBorderBrandPrimary: MultipleColorSemanticTokens { MultipleColorSemanticTokens(OrangeBrandColorRawTokens.colorOrange500) } - override public var colorBorderBrandSecondary: MultipleColorSemanticTokens { fatalError("🤖 No value defined for colorBorderBrandSecondary!") } - - override public var colorBorderBrandTertiary: MultipleColorSemanticTokens { fatalError("🤖 No value defined for colorBorderBrandTertiary!") } - - override public var colorBorderStatusPositive: MultipleColorSemanticTokens { fatalError("🤖 No value defined for colorBorderStatusPositive!") } - - override public var colorBorderStatusInfo: MultipleColorSemanticTokens { fatalError("🤖 No value defined for colorBorderStatusInfo!") } - - override public var colorBorderStatusWarning: MultipleColorSemanticTokens { fatalError("🤖 No value defined for colorBorderStatusWarning!") } - - override public var colorBorderStatusNegative: MultipleColorSemanticTokens { fatalError("🤖 No value defined for colorBorderStatusNegative!") } - - override public var colorBorderStatusAccent: MultipleColorSemanticTokens { fatalError("🤖 No value defined for colorBorderStatusAccent!") } - - override public var colorBorderOnBgBrandPrimary: MultipleColorSemanticTokens { MultipleColorSemanticTokens(ColorRawTokens.colorFunctionalBlack) } - - override public var colorBorderOnBgBrandSecondary: MultipleColorSemanticTokens { fatalError("🤖 No value defined for colorBorderOnBgBrandSecondary!") } - - override public var colorBorderOnBgBrandTertiary: MultipleColorSemanticTokens { fatalError("🤖 No value defined for colorBorderOnBgBrandTertiary!") } - // MARK: Semantic token - Colors - Action override public var colorActionSelected: MultipleColorSemanticTokens { MultipleColorSemanticTokens(OrangeBrandColorRawTokens.colorOrange500) } @@ -194,8 +123,6 @@ extension InverseTheme { override public var colorActionVisited: MultipleColorSemanticTokens { MultipleColorSemanticTokens(ColorRawTokens.colorDecorativeAmethyst400) } - override public var colorActionVistedOnBgEmphasized: MultipleColorSemanticTokens { MultipleColorSemanticTokens(ColorRawTokens.colorDecorativeAmethyst600) } - override public var colorActionPrimaryEnabled: MultipleColorSemanticTokens { MultipleColorSemanticTokens(ColorRawTokens.colorFunctionalLightGray160) } override public var colorActionPrimaryEnabledOnBgEmphasized: MultipleColorSemanticTokens { MultipleColorSemanticTokens(ColorRawTokens.colorFunctionalBlack) } @@ -246,52 +173,6 @@ extension InverseTheme { override public var colorActionNegativeFocus: MultipleColorSemanticTokens { MultipleColorSemanticTokens(ColorRawTokens.colorFunctionalScarlet700) } - override public var colorActionOnBgActionDisabled: MultipleColorSemanticTokens { MultipleColorSemanticTokens(ColorRawTokens.colorFunctionalBlack) } - - override public var colorActionOnBgActionDisabledOnBgEmphasized: MultipleColorSemanticTokens { MultipleColorSemanticTokens(ColorRawTokens.colorFunctionalWhite) } - - override public var colorActionOnBgActionNegative: MultipleColorSemanticTokens { MultipleColorSemanticTokens(ColorRawTokens.colorFunctionalWhite) } - - override public var colorActionOnBgActionPrimaryEnabled: MultipleColorSemanticTokens { MultipleColorSemanticTokens(ColorRawTokens.colorFunctionalBlack) } - - override public var colorActionOnBgActionPrimaryEnabledOnBgEmphasized: MultipleColorSemanticTokens { MultipleColorSemanticTokens(ColorRawTokens.colorFunctionalWhite) } - - override public var colorActionOnBgActionPrimaryHover: MultipleColorSemanticTokens { MultipleColorSemanticTokens(ColorRawTokens.colorFunctionalBlack) } - - override public var colorActionOnBgActionPrimaryHoverOnBgEmphasized: MultipleColorSemanticTokens { MultipleColorSemanticTokens(ColorRawTokens.colorFunctionalWhite) } - - override public var colorActionOnBgActionPrimaryPressed: MultipleColorSemanticTokens { MultipleColorSemanticTokens(ColorRawTokens.colorFunctionalBlack) } - - override public var colorActionOnBgActionPrimaryPressedOnBgEmphasized: MultipleColorSemanticTokens { MultipleColorSemanticTokens(ColorRawTokens.colorFunctionalWhite) } - - override public var colorActionOnBgActionPrimaryLoading: MultipleColorSemanticTokens { MultipleColorSemanticTokens(ColorRawTokens.colorFunctionalBlack) } - - override public var colorActionOnBgActionPrimaryLoadingOnBgEmphasized: MultipleColorSemanticTokens { MultipleColorSemanticTokens(ColorRawTokens.colorFunctionalWhite) } - - override public var colorActionOnBgActionPrimaryFocus: MultipleColorSemanticTokens { MultipleColorSemanticTokens(ColorRawTokens.colorFunctionalBlack) } - - override public var colorActionOnBgActionPrimaryFocusOnBgEmphasized: MultipleColorSemanticTokens { MultipleColorSemanticTokens(ColorRawTokens.colorFunctionalWhite) } - - override public var colorActionOnBgActionSecondaryEnabled: MultipleColorSemanticTokens { fatalError("🤖 No value defined for colorActionOnBgActionSecondaryEnabled!") } - - override public var colorActionOnBgActionSecondaryEnabledOnBgEmphasized: MultipleColorSemanticTokens { fatalError("🤖 No value defined for colorActionOnBgActionSecondaryEnabledOnBgEmphasized!") } - - override public var colorActionOnBgActionSecondaryHover: MultipleColorSemanticTokens { fatalError("🤖 No value defined for colorActionOnBgActionSecondaryHover!") } - - override public var colorActionOnBgActionSecondaryHoverOnBgEmphasized: MultipleColorSemanticTokens { fatalError("🤖 No value defined for colorActionOnBgActionSecondaryHoverOnBgEmphasized!") } - - override public var colorActionOnBgActionSecondaryPressed: MultipleColorSemanticTokens { fatalError("🤖 No value defined for colorActionOnBgActionSecondaryPressed!") } - - override public var colorActionOnBgActionSecondaryPressedOnBgEmphasized: MultipleColorSemanticTokens { fatalError("🤖 No value defined for colorActionOnBgActionSecondaryPressedOnBgEmphasized!") } - - override public var colorActionOnBgActionSecondaryLoading: MultipleColorSemanticTokens { fatalError("🤖 No value defined for colorActionOnBgActionSecondaryLoading!") } - - override public var colorActionOnBgActionSecondaryLoadingOnBgEmphasized: MultipleColorSemanticTokens { fatalError("🤖 No value defined for colorActionOnBgActionSecondaryLoadingOnBgEmphasized!") } - - override public var colorActionOnBgActionSecondaryFocus: MultipleColorSemanticTokens { fatalError("🤖 No value defined for colorActionOnBgActionSecondaryFocus!") } - - override public var colorActionOnBgActionSecondaryFocusOnBgEmphasized: MultipleColorSemanticTokens { fatalError("🤖 No value defined for colorActionOnBgActionSecondaryFocusOnBgEmphasized!") } - // MARK: Semantic token - Colors - Elevation override public var colorElevationRaised: MultipleColorSemanticTokens { MultipleColorSemanticTokens(ColorRawTokens.colorFunctionalDarkGray800) } @@ -322,12 +203,6 @@ extension InverseTheme { // MARK: Semantic token - Colors - Decorative - override public var colorDecorativePrimary: MultipleColorSemanticTokens { MultipleColorSemanticTokens(OrangeBrandColorRawTokens.colorOrange500) } - - override public var colorDecorativeSecondary: MultipleColorSemanticTokens { MultipleColorSemanticTokens(ColorRawTokens.colorFunctionalWhite) } - - override public var colorDecorativeTertiary: MultipleColorSemanticTokens { MultipleColorSemanticTokens(ColorRawTokens.colorFunctionalBlack) } - override public var colorDecorativeNeutralMuted: MultipleColorSemanticTokens { MultipleColorSemanticTokens(ColorRawTokens.colorFunctionalDarkGray640) } override public var colorDecorativeNeutralDefault: MultipleColorSemanticTokens { MultipleColorSemanticTokens(ColorRawTokens.colorFunctionalLightGray400) } @@ -502,4 +377,3 @@ extension InverseTheme { override public var colorChartSequentialAccent5Tint900: MultipleColorSemanticTokens { MultipleColorSemanticTokens(ColorRawTokens.colorFunctionalSun100) } } -// swiftlint:enable line_length diff --git a/OUDS/Core/Themes/Inverse/Tests/TestInverseThemeColors.swift b/OUDS/Core/Themes/Inverse/Tests/TestInverseThemeColors.swift index 03a1e022b..ca50e0a9a 100644 --- a/OUDS/Core/Themes/Inverse/Tests/TestInverseThemeColors.swift +++ b/OUDS/Core/Themes/Inverse/Tests/TestInverseThemeColors.swift @@ -59,16 +59,6 @@ final class TestInverseThemeColors: XCTestCase { assertHomogeneity(inverseTheme.colorBgBrandPrimary) } - // In InverseTheme token not implemented yet -// func testColorsHomogeneityColorBgBrandSecondary() throws { -// assertHomogeneity(inverseTheme.colorBgBrandSecondary) -// } - - // In InverseTheme token not implemented yet -// func testColorsHomogeneityColorBgBrandTertiary() throws { -// assertHomogeneity(inverseTheme.colorBgBrandTertiary) -// } - func testColorsHomogeneityColorBackgroundStatusNeutral() throws { assertHomogeneity(inverseTheme.colorBgStatusNeutral) } @@ -143,40 +133,30 @@ final class TestInverseThemeColors: XCTestCase { assertHomogeneity(inverseTheme.colorContentDefault) } - func testColorsHomogeneityColorContentContentDefaultOnBgEmphasized() throws { - assertHomogeneity(inverseTheme.colorContentContentDefaultOnBgEmphasized) + func testColorsHomogeneityColorContentDefaultOnBgEmphasized() throws { + assertHomogeneity(inverseTheme.colorContentDefaultOnBgEmphasized) } func testColorsHomogeneityColorContentMuted() throws { assertHomogeneity(inverseTheme.colorContentMuted) } - func testColorsHomogeneityColorContentContentMutedOnBgEmphasized() throws { - assertHomogeneity(inverseTheme.colorContentContentMutedOnBgEmphasized) + func testColorsHomogeneityColorContentMutedOnBgEmphasized() throws { + assertHomogeneity(inverseTheme.colorContentMutedOnBgEmphasized) } func testColorsHomogeneityColorContentDisabled() throws { assertHomogeneity(inverseTheme.colorContentDisabled) } - func testColorsHomogeneityColorContentContentDisabledOnBgEmphasized() throws { - assertHomogeneity(inverseTheme.colorContentContentDisabledOnBgEmphasized) + func testColorsHomogeneityColorContentDisabledOnBgEmphasized() throws { + assertHomogeneity(inverseTheme.colorContentDisabledOnBgEmphasized) } func testColorsHomogeneityColorContentBrandPrimary() throws { assertHomogeneity(inverseTheme.colorContentBrandPrimary) } - // In InverseTheme token not implemented yet -// func testColorsHomogeneityColorContentBrandSecondary() throws { -// assertHomogeneity(inverseTheme.colorContentBrandSecondary) -// } - - // In InverseTheme token not implemented yet -// func testColorsHomogeneityColorContentBrandTertiary() throws { -// assertHomogeneity(inverseTheme.colorContentBrandTertiary) -// } - func testColorsHomogeneityColorContentStatusPositive() throws { assertHomogeneity(inverseTheme.colorContentStatusPositive) } @@ -193,87 +173,6 @@ final class TestInverseThemeColors: XCTestCase { assertHomogeneity(inverseTheme.colorContentStatusNegative) } - // In InverseTheme token not implemented yet -// func testColorsHomogeneityColorContentStatusAccent() throws { -// assertHomogeneity(inverseTheme.colorContentStatusAccent) -// } - - // MARK: Semantic token - Colors - Content - On Background - - func testColorsHomogeneityColorContentOnBgPrimary() throws { - assertHomogeneity(inverseTheme.colorContentOnBgPrimary) - } - - // In InverseTheme token not implemented yet -// func testColorsHomogeneityColorContentOnBgSecondary() throws { -// assertHomogeneity(inverseTheme.colorContentOnBgSecondary) -// } - - // In InverseTheme token not implemented yet -// func testColorsHomogeneityColorContentOnBgTertiary() throws { -// assertHomogeneity(inverseTheme.colorContentOnBgTertiary) -// } - - func testColorsHomogeneityColorContentOnBgStatusPositiveMuted() throws { - assertHomogeneity(inverseTheme.colorContentOnBgStatusPositiveMuted) - } - - func testColorsHomogeneityColorContentOnBgStatusPositiveMutedOnBgEmphasized() throws { - assertHomogeneity(inverseTheme.colorContentOnBgStatusPositiveMutedOnBgEmphasized) - } - - func testColorsHomogeneityColorContentOnBgStatusPositiveEmphasized() throws { - assertHomogeneity(inverseTheme.colorContentOnBgStatusPositiveEmphasized) - } - - func testColorsHomogeneityColorContentOnBgStatusInfoMuted() throws { - assertHomogeneity(inverseTheme.colorContentOnBgStatusInfoMuted) - } - - func testColorsHomogeneityColorContentOnBgStatusInfoMutedOnBgEmphasized() throws { - assertHomogeneity(inverseTheme.colorContentOnBgStatusInfoMutedOnBgEmphasized) - } - - func testColorsHomogeneityColorContentOnBgStatusInfoEmphasized() throws { - assertHomogeneity(inverseTheme.colorContentOnBgStatusInfoEmphasized) - } - - func testColorsHomogeneityColorContentOnBgStatusWarningMuted() throws { - assertHomogeneity(inverseTheme.colorContentOnBgStatusWarningMuted) - } - - func testColorsHomogeneityColorContentOnBgStatusWarningMutedOnBgEmphasized() throws { - assertHomogeneity(inverseTheme.colorContentOnBgStatusWarningMutedOnBgEmphasized) - } - - func testColorsHomogeneityColorContentOnBgStatusWarningEmphasized() throws { - assertHomogeneity(inverseTheme.colorContentOnBgStatusWarningEmphasized) - } - - func testColorsHomogeneityColorContentOnBgStatusNegativeMuted() throws { - assertHomogeneity(inverseTheme.colorContentOnBgStatusNegativeMuted) - } - - func testColorsHomogeneityColorContentOnBgStatusNegativeMutedOnBgEmphasized() throws { - assertHomogeneity(inverseTheme.colorContentOnBgStatusNegativeMutedOnBgEmphasized) - } - - func testColorsHomogeneityColorContentOnBgStatusNegativeEmphasized() throws { - assertHomogeneity(inverseTheme.colorContentOnBgStatusNegativeEmphasized) - } - - func testColorsHomogeneityColorContentOnBgStatusAccentMuted() throws { - assertHomogeneity(inverseTheme.colorContentOnBgStatusAccentMuted) - } - - func testColorsHomogeneityColorContentOnBgStatusAccentMutedOnBgEmphasized() throws { - assertHomogeneity(inverseTheme.colorContentOnBgStatusAccentMutedOnBgEmphasized) - } - - func testColorsHomogeneityColorContentOnBgStatusAccentedEmphasized() throws { - assertHomogeneity(inverseTheme.colorContentOnBgStatusAccentedEmphasized) - } - // MARK: Semantic token - Colors - Border func testColorsHomogeneityColorBorderDefault() throws { @@ -304,55 +203,6 @@ final class TestInverseThemeColors: XCTestCase { assertHomogeneity(inverseTheme.colorBorderBrandPrimary) } - // In InverseTheme token not implemented yet -// func testColorsHomogeneityColorBorderBrandSecondary() throws { -// assertHomogeneity(inverseTheme.colorBorderBrandSecondary) -// } - - // In InverseTheme token not implemented yet -// func testColorsHomogeneityColorBorderBrandTertiary() throws { -// assertHomogeneity(inverseTheme.colorBorderBrandTertiary) -// } - - // In InverseTheme token not implemented yet -// func testColorsHomogeneityColorBorderStatusPositive() throws { -// assertHomogeneity(inverseTheme.colorBorderStatusPositive) -// } - - // In InverseTheme token not implemented yet -// func testColorsHomogeneityColorBorderStatusInfo() throws { -// assertHomogeneity(inverseTheme.colorBorderStatusInfo) -// } - - // In InverseTheme token not implemented yet -// func testColorsHomogeneityColorBorderStatusWarning() throws { -// assertHomogeneity(inverseTheme.colorBorderStatusWarning) -// } - - // In InverseTheme token not implemented yet -// func testColorsHomogeneityColorBorderStatusNegative() throws { -// assertHomogeneity(inverseTheme.colorBorderStatusNegative) -// } - - // In InverseTheme token not implemented yet -// func testColorsHomogeneityColorBorderStatusAccent() throws { -// assertHomogeneity(inverseTheme.colorBorderStatusAccent) -// } - - func testColorsHomogeneityColorBorderOnBgBrandPrimary() throws { - assertHomogeneity(inverseTheme.colorBorderOnBgBrandPrimary) - } - - // In InverseTheme token not implemented yet -// func testColorsHomogeneityColorBorderOnBgBrandSecondary() throws { -// assertHomogeneity(inverseTheme.colorBorderOnBgBrandSecondary) -// } - - // In InverseTheme token not implemented yet -// func testColorsHomogeneityColorBorderOnBgBrandTertiary() throws { -// assertHomogeneity(inverseTheme.colorBorderOnBgBrandTertiary) -// } - // MARK: Semantic token - Colors - Action func testColorsHomogeneityColorActionSelected() throws { @@ -375,10 +225,6 @@ final class TestInverseThemeColors: XCTestCase { assertHomogeneity(inverseTheme.colorActionVisited) } - func testColorsHomogeneityColorActionVistedOnBgEmphasized() throws { - assertHomogeneity(inverseTheme.colorActionVistedOnBgEmphasized) - } - func testColorsHomogeneityColorActionPrimaryEnabled() throws { assertHomogeneity(inverseTheme.colorActionPrimaryEnabled) } @@ -479,108 +325,6 @@ final class TestInverseThemeColors: XCTestCase { assertHomogeneity(inverseTheme.colorActionNegativeFocus) } - func testColorsHomogeneityColorActionOnBgActionDisabled() throws { - assertHomogeneity(inverseTheme.colorActionOnBgActionDisabled) - } - - func testColorsHomogeneityColorActionOnBgActionDisabledOnBgEmphasized() throws { - assertHomogeneity(inverseTheme.colorActionOnBgActionDisabledOnBgEmphasized) - } - - func testColorsHomogeneityColorActionOnBgActionNegative() throws { - assertHomogeneity(inverseTheme.colorActionOnBgActionNegative) - } - - func testColorsHomogeneityColorActionOnBgActionPrimaryEnabled() throws { - assertHomogeneity(inverseTheme.colorActionOnBgActionPrimaryEnabled) - } - - func testColorsHomogeneityColorActionOnBgActionPrimaryEnabledOnBgEmphasized() throws { - assertHomogeneity(inverseTheme.colorActionOnBgActionPrimaryEnabledOnBgEmphasized) - } - - func testColorsHomogeneityColorActionOnBgActionPrimaryHover() throws { - assertHomogeneity(inverseTheme.colorActionOnBgActionPrimaryHover) - } - - func testColorsHomogeneityColorActionOnBgActionPrimaryHoverOnBgEmphasized() throws { - assertHomogeneity(inverseTheme.colorActionOnBgActionPrimaryHoverOnBgEmphasized) - } - - func testColorsHomogeneityColorActionOnBgActionPrimaryPressed() throws { - assertHomogeneity(inverseTheme.colorActionOnBgActionPrimaryPressed) - } - - func testColorsHomogeneityColorActionOnBgActionPrimaryPressedOnBgEmphasized() throws { - assertHomogeneity(inverseTheme.colorActionOnBgActionPrimaryPressedOnBgEmphasized) - } - - func testColorsHomogeneityColorActionOnBgActionPrimaryLoading() throws { - assertHomogeneity(inverseTheme.colorActionOnBgActionPrimaryLoading) - } - - func testColorsHomogeneityColorActionOnBgActionPrimaryLoadingOnBgEmphasized() throws { - assertHomogeneity(inverseTheme.colorActionOnBgActionPrimaryLoadingOnBgEmphasized) - } - - func testColorsHomogeneityColorActionOnBgActionPrimaryFocus() throws { - assertHomogeneity(inverseTheme.colorActionOnBgActionPrimaryFocus) - } - - func testColorsHomogeneityColorActionOnBgActionPrimaryFocusOnBgEmphasized() throws { - assertHomogeneity(inverseTheme.colorActionOnBgActionPrimaryFocusOnBgEmphasized) - } - - // In InverseTheme token not implemented yet -// func testColorsHomogeneityColorActionOnBgActionSecondaryEnabled() throws { -// assertHomogeneity(inverseTheme.colorActionOnBgActionSecondaryEnabled) -// } - - // In InverseTheme token not implemented yet -// func testColorsHomogeneityColorActionOnBgActionSecondaryEnabledOnBgEmphasized() throws { -// assertHomogeneity(inverseTheme.colorActionOnBgActionSecondaryEnabledOnBgEmphasized) -// } - - // In InverseTheme token not implemented yet -// func testColorsHomogeneityColorActionOnBgActionSecondaryHover() throws { -// assertHomogeneity(inverseTheme.colorActionOnBgActionSecondaryHover) -// } - - // In InverseTheme token not implemented yet -// func testColorsHomogeneityColorActionOnBgActionSecondaryHoverOnBgEmphasized() throws { -// assertHomogeneity(inverseTheme.colorActionOnBgActionSecondaryHoverOnBgEmphasized) -// } - - // In InverseTheme token not implemented yet -// func testColorsHomogeneityColorActionOnBgActionSecondaryPressed() throws { -// assertHomogeneity(inverseTheme.colorActionOnBgActionSecondaryPressed) -// } - - // In InverseTheme token not implemented yet -// func testColorsHomogeneityColorActionOnBgActionSecondaryPressedOnBgEmphasized() throws { -// assertHomogeneity(inverseTheme.colorActionOnBgActionSecondaryPressedOnBgEmphasized) -// } - - // In InverseTheme token not implemented yet -// func testColorsHomogeneityColorActionOnBgActionSecondaryLoading() throws { -// assertHomogeneity(inverseTheme.colorActionOnBgActionSecondaryLoading) -// } - - // In InverseTheme token not implemented yet -// func testColorsHomogeneityColorActionOnBgActionSecondaryLoadingOnBgEmphasized() throws { -// assertHomogeneity(inverseTheme.colorActionOnBgActionSecondaryLoadingOnBgEmphasized) -// } - - // In InverseTheme token not implemented yet -// func testColorsHomogeneityColorActionOnBgActionSecondaryFocus() throws { -// assertHomogeneity(inverseTheme.colorActionOnBgActionSecondaryFocus) -// } - - // In InverseTheme token not implemented yet -// func testColorsHomogeneityColorActionOnBgActionSecondaryFocusOnBgEmphasized() throws { -// assertHomogeneity(inverseTheme.colorActionOnBgActionSecondaryFocusOnBgEmphasized) -// } - // MARK: Semantic token - Colors - Always func testColorsHomogeneityColorAlwaysBlack() throws { @@ -611,34 +355,6 @@ final class TestInverseThemeColors: XCTestCase { assertHomogeneity(inverseTheme.colorAlwaysAccent) } - func testColorsHomogeneityColorAlwaysOnBgBlack() throws { - assertHomogeneity(inverseTheme.colorAlwaysOnBgBlack) - } - - func testColorsHomogeneityColorAlwaysOnBgWhite() throws { - assertHomogeneity(inverseTheme.colorAlwaysOnBgWhite) - } - - func testColorsHomogeneityColorAlwaysOnBgWarning() throws { - assertHomogeneity(inverseTheme.colorAlwaysOnBgWarning) - } - - func testColorsHomogeneityColorAlwaysOnBgNegative() throws { - assertHomogeneity(inverseTheme.colorAlwaysOnBgNegative) - } - - func testColorsHomogeneityColorAlwaysOnBgPositive() throws { - assertHomogeneity(inverseTheme.colorAlwaysOnBgPositive) - } - - func testColorsHomogeneityColorAlwaysOnBgInfo() throws { - assertHomogeneity(inverseTheme.colorAlwaysOnBgInfo) - } - - func testColorsHomogeneityColorAlwaysOnBgAccent() throws { - assertHomogeneity(inverseTheme.colorAlwaysOnBgAccent) - } - // MARK: Semantic token - Colors - Transparent func testColorsHomogeneityColorTransparentDefault() throws { @@ -701,18 +417,6 @@ final class TestInverseThemeColors: XCTestCase { // MARK: Semantic token - Colors - Decorative - func testColorsHomogeneityColorDecorativeBrandPrimary() throws { - assertHomogeneity(inverseTheme.colorDecorativePrimary) - } - - func testColorsHomogeneityColorDecorativeSecondary() throws { - assertHomogeneity(inverseTheme.colorDecorativeSecondary) - } - - func testColorsHomogeneityColorDecorativeTertiary() throws { - assertHomogeneity(inverseTheme.colorDecorativeTertiary) - } - func testColorsHomogeneityColorDecorativeNeutralMuted() throws { assertHomogeneity(inverseTheme.colorDecorativeNeutralMuted) } diff --git a/OUDS/Core/Themes/Orange/Sources/OrangeTheme+SemanticColorTokens.swift b/OUDS/Core/Themes/Orange/Sources/OrangeTheme+SemanticColorTokens.swift index c57f351cf..b8dcf2897 100644 --- a/OUDS/Core/Themes/Orange/Sources/OrangeTheme+SemanticColorTokens.swift +++ b/OUDS/Core/Themes/Orange/Sources/OrangeTheme+SemanticColorTokens.swift @@ -14,77 +14,187 @@ import OUDSTokensRaw import OUDSTokensSemantic -// ଘ( ・ω・)_/゚・:*:・。☆ -// [File to generate by the tokenator] +// [File not generated by the tokenator] // WARNING: Not synchronized anymore with the Figjam / Figma by developers team // Create an issue for update https://github.com/Orange-OpenSource/ouds-ios/issues/new?template=token_update.yml // swiftlint:disable line_length -/// Overrides some color tokens using values available in ``OrangeBrandColorRawTokens`` +/// Overrides some color tokens using values available in ``OrangeBrandColorRawTokens``. +/// In fact the *tokenator* is not able to do the magic needed using the JSON file produced by *Figma*. +/// Some color tokens are not isolated by theme in *Figma*, thus the abstract ``OUDSTheme`` faces issues by defining tokens with raw tokens not defined in ``ColorRawTokens`` but in ``OrangeBrandColorRawTokens``. Thus when the ``OUDSTheme``has its colors tokens updated, a manual update must be done to replace unknown tokens by `fatalError` (i.e. must be overriden somewhere somehow) in that file and in this ``OrangeTheme`` files tokens must be overriden and manualy updated with the expected values. +/// +/// // For example, in OUDSTheme colors: +/// +/// // This token can be defined because uses colorFunctionalDarkGray400 defined in ColorRawTokens, that's ok +/// @objc open var colorActionPrimaryHoverLight: ColorSemanticToken { ColorRawTokens.colorFunctionalDarkGray400 } +/// +/// // This token does not compile because colorOrange500 is in OrangeBrandColorRawTokens and not ColorRawTokens +/// // but Figma cannot manage them so the JSON is wrong and the tokenator cannot guess the trick +/// @objc open var colorActionPrimaryLoadingOnBgEmphasizedLight: ColorSemanticToken { ColorRawTokens.colorOrange500 } +/// +/// // So it must be replaced by to prevent themes to use bad tokens +/// // and ensure they will be defined somewhere somehow +/// @objc open var colorActionPrimaryLoadingOnBgEmphasizedLight: ColorSemanticToken { fatalError("🤖 Raw token unavailable for colorActionPrimaryLoadingOnBgEmphasizedLight!") } +/// +/// // And in OrangeTheme colors: +/// +/// // Token must be overriden +/// override open var colorActionPrimaryLoadingOnBgEmphasizedLight: ColorSemanticToken { OrangeBrandColorRawTokens.colorOrange500 } +/// +/// // And use the suitable reference in the multiple if existing +/// override open var colorActionPrimaryLoadingOnBgEmphasized: MultipleColorSemanticTokens { MultipleColorSemanticTokens(light: colorActionPrimaryLoadingOnBgEmphasizedLight, dark: ...) } +/// +/// // "open" keyword allows subtheme like e.g. InverseTheme to override if needed +/// +/// In few words, we need to keep isolated tokens and brand colors, provide kind of abstract architecture with isolated and overridable themes, but face troubles with *Figma* design kit having conception issues and producing JSON not reflecting the reality making *tokenator* unable to build the expected Swift code. +/// We get uncompilable code for color tokens update and need to make the merge manualy. extension OrangeTheme { // MARK: Semantic token - Colors - Background - // NOTE: Defined here because use values available only in this Orange theme, open for InverseTheme overriding - override open var colorBgTertiary: MultipleColorSemanticTokens { MultipleColorSemanticTokens(light: OrangeBrandColorRawTokens.colorWarmGray100, dark: OrangeBrandColorRawTokens.colorWarmGray900) } + // NOTE: Picked from OUDSTheme since tokenator update + override open var colorBgTertiaryLight: ColorSemanticToken { + OrangeBrandColorRawTokens.colorWarmGray100 } - // NOTE: Defined here because use values available only in this Orange theme, open for InverseTheme overriding - override open var colorBgBrandPrimary: MultipleColorSemanticTokens { MultipleColorSemanticTokens(light: OrangeBrandColorRawTokens.colorOrange550, dark: OrangeBrandColorRawTokens.colorOrange500) } + // NOTE: Picked from OUDSTheme since tokenator update + override open var colorBgTertiaryDark: ColorSemanticToken { + OrangeBrandColorRawTokens.colorWarmGray900 } - // NOTE: Defined here because use values available only in this Orange theme, open for InverseTheme overriding - override open var colorBgStatusAccentMuted: MultipleColorSemanticTokens { MultipleColorSemanticTokens(light: OrangeBrandColorRawTokens.colorWarmGray100, dark: OrangeBrandColorRawTokens.colorWarmGray900) } + // NOTE: Picked from OUDSTheme since tokenator update + override open var colorBgBrandPrimaryLight: ColorSemanticToken { OrangeBrandColorRawTokens.colorOrange550 } - // NOTE: Defined here because use values available only in this Orange theme, open for InverseTheme overriding - override open var colorBgStatusAccentMutedOnBgEmphasized: MultipleColorSemanticTokens { MultipleColorSemanticTokens(OrangeBrandColorRawTokens.colorWarmGray900) } + // NOTE: Picked from OUDSTheme since tokenator update + override open var colorBgBrandPrimaryDark: ColorSemanticToken { OrangeBrandColorRawTokens.colorOrange500 } + + override open var colorBgBrandPrimary: MultipleColorSemanticTokens { MultipleColorSemanticTokens(light: colorBgBrandPrimaryLight, dark: colorBgBrandPrimaryDark) } + + // NOTE: Picked from OUDSTheme since tokenator update + override open var colorBgStatusAccentMutedLight: ColorSemanticToken { OrangeBrandColorRawTokens.colorWarmGray100 } + + // NOTE: Picked from OUDSTheme since tokenator update + override open var colorBgStatusAccentMutedDark: ColorSemanticToken { OrangeBrandColorRawTokens.colorWarmGray900 } + + override open var colorBgStatusAccentMuted: MultipleColorSemanticTokens { MultipleColorSemanticTokens(light: colorBgStatusAccentMutedLight, dark: colorBgStatusAccentMutedDark) } + + override open var colorBgStatusAccentMutedOnBgEmphasizedLight: ColorSemanticToken { OrangeBrandColorRawTokens.colorWarmGray900 } + + override open var colorBgStatusAccentMutedOnBgEmphasizedDark: ColorSemanticToken { OrangeBrandColorRawTokens.colorWarmGray900 } + + override open var colorBgStatusAccentMutedOnBgEmphasized: MultipleColorSemanticTokens { MultipleColorSemanticTokens(light: colorBgStatusAccentMutedOnBgEmphasizedLight, dark: colorBgStatusAccentMutedOnBgEmphasizedDark) } // MARK: Semantic token - Colors - Content - // NOTE: Defined here because use values available only in this Orange theme, open for InverseTheme overriding - override open var colorContentBrandPrimary: MultipleColorSemanticTokens { MultipleColorSemanticTokens(light: OrangeBrandColorRawTokens.colorOrange550, dark: OrangeBrandColorRawTokens.colorOrange500) } + // NOTE: Picked from OUDSTheme since tokenator update + override open var colorContentBrandPrimaryLight: ColorSemanticToken { OrangeBrandColorRawTokens.colorOrange550 } + + // NOTE: Picked from OUDSTheme since tokenator update + override open var colorContentBrandPrimaryDark: ColorSemanticToken { OrangeBrandColorRawTokens.colorOrange550 } + + override open var colorContentBrandPrimary: MultipleColorSemanticTokens { MultipleColorSemanticTokens(light: colorContentBrandPrimaryLight, dark: colorContentBrandPrimaryDark) } + + // NOTE: Picked from OUDSTheme since tokenator update + override open var colorContentBrandPrimaryOnBgEmphasizedLight: ColorSemanticToken { OrangeBrandColorRawTokens.colorOrange500 } + + // NOTE: Picked from OUDSTheme since tokenator update + override open var colorContentBrandPrimaryOnBgEmphasizedDark: ColorSemanticToken { OrangeBrandColorRawTokens.colorOrange500 } + + override open var colorContentBrandPrimaryOnBgEmphasized: MultipleColorSemanticTokens { MultipleColorSemanticTokens(light: colorContentBrandPrimaryOnBgEmphasizedLight, dark: colorContentBrandPrimaryOnBgEmphasizedDark) } // MARK: Semantic token - Colors - Border - // NOTE: Defined here because use values available only in this Orange theme, open for InverseTheme overriding - override open var colorBorderBrandPrimaryOnBgEmphasized: MultipleColorSemanticTokens { MultipleColorSemanticTokens(OrangeBrandColorRawTokens.colorOrange500) } + // NOTE: Picked from OUDSTheme since tokenator update + override open var colorBorderBrandPrimaryOnBgEmphasizedLight: ColorSemanticToken { OrangeBrandColorRawTokens.colorOrange500 } + + // NOTE: Picked from OUDSTheme since tokenator update + override open var colorBorderBrandPrimaryOnBgEmphasizedDark: ColorSemanticToken { OrangeBrandColorRawTokens.colorOrange500 } - // NOTE: Defined here because use values available only in this Orange theme, open for InverseTheme overriding - override open var colorBorderBrandPrimary: MultipleColorSemanticTokens { MultipleColorSemanticTokens(light: OrangeBrandColorRawTokens.colorOrange550, dark: OrangeBrandColorRawTokens.colorOrange500) } + override open var colorBorderBrandPrimaryOnBgEmphasized: MultipleColorSemanticTokens { MultipleColorSemanticTokens(light: colorBorderBrandPrimaryOnBgEmphasizedLight, dark: colorBorderBrandPrimaryOnBgEmphasizedDark) } + + // NOTE: Picked from OUDSTheme since tokenator update + override open var colorBorderBrandPrimaryLight: ColorSemanticToken { OrangeBrandColorRawTokens.colorOrange550 } + + // NOTE: Picked from OUDSTheme since tokenator update + override open var colorBorderBrandPrimaryDark: ColorSemanticToken { OrangeBrandColorRawTokens.colorOrange500 } + + override open var colorBorderBrandPrimary: MultipleColorSemanticTokens { MultipleColorSemanticTokens(light: colorBorderBrandPrimaryLight, dark: colorBorderBrandPrimaryDark) } // MARK: Semantic token - Colors - Action - // NOTE: Defined here because use values available only in this Orange theme, open for InverseTheme overriding - override open var colorActionSelected: MultipleColorSemanticTokens { MultipleColorSemanticTokens(light: OrangeBrandColorRawTokens.colorOrange550, dark: OrangeBrandColorRawTokens.colorOrange500) } + // NOTE: Picked from OUDSTheme since tokenator update + override open var colorActionSelectedLight: ColorSemanticToken { OrangeBrandColorRawTokens.colorOrange550 } + + // NOTE: Picked from OUDSTheme since tokenator update + override open var colorActionSelectedDark: ColorSemanticToken { OrangeBrandColorRawTokens.colorOrange500 } + + override open var colorActionSelected: MultipleColorSemanticTokens { MultipleColorSemanticTokens(light: colorActionSelectedLight, dark: colorActionSelectedDark) } + + // NOTE: Picked from OUDSTheme since tokenator update + override open var colorActionSelectedOnBgEmphasizedLight: ColorSemanticToken { OrangeBrandColorRawTokens.colorOrange500 } + + // NOTE: Picked from OUDSTheme since tokenator update + override open var colorActionSelectedOnBgEmphasizedDark: ColorSemanticToken { OrangeBrandColorRawTokens.colorOrange500 } - // NOTE: Defined here because use values available only in this Orange theme, open for InverseTheme overriding override open var colorActionSelectedOnBgEmphasized: MultipleColorSemanticTokens { MultipleColorSemanticTokens(OrangeBrandColorRawTokens.colorOrange500) } - // NOTE: Defined here because use values available only in this Orange theme, open for InverseTheme overriding - override open var colorActionPrimaryPressed: MultipleColorSemanticTokens { MultipleColorSemanticTokens(light: OrangeBrandColorRawTokens.colorOrange550, dark: OrangeBrandColorRawTokens.colorOrange500) } + // NOTE: Picked from OUDSTheme since tokenator update + override open var colorActionPrimaryPressedLight: ColorSemanticToken { OrangeBrandColorRawTokens.colorOrange550 } + + override open var colorActionPrimaryPressedDark: ColorSemanticToken { OrangeBrandColorRawTokens.colorOrange500 } + + override open var colorActionPrimaryPressed: MultipleColorSemanticTokens { MultipleColorSemanticTokens(light: colorActionPrimaryPressedLight, dark: colorActionPrimaryPressedDark) } + + // NOTE: Picked from OUDSTheme since tokenator update + override open var colorActionPrimaryPressedOnBgEmphasizedLight: ColorSemanticToken { OrangeBrandColorRawTokens.colorOrange500 } + + // NOTE: Picked from OUDSTheme since tokenator update + override open var colorActionPrimaryPressedOnBgEmphasizedDark: ColorSemanticToken { OrangeBrandColorRawTokens.colorOrange500 } + + override open var colorActionPrimaryPressedOnBgEmphasized: MultipleColorSemanticTokens { MultipleColorSemanticTokens(light: colorActionPrimaryPressedOnBgEmphasizedLight, dark: colorActionPrimaryPressedOnBgEmphasizedDark) } + + // NOTE: Picked from OUDSTheme since tokenator update + override open var colorActionPrimaryLoadingLight: ColorSemanticToken { OrangeBrandColorRawTokens.colorOrange550 } - // NOTE: Defined here because use values available only in this Orange theme, open for InverseTheme overriding - override open var colorActionPrimaryPressedOnBgEmphasized: MultipleColorSemanticTokens { MultipleColorSemanticTokens(OrangeBrandColorRawTokens.colorOrange500) } + // NOTE: Picked from OUDSTheme since tokenator update + override open var colorActionPrimaryLoadingDark: ColorSemanticToken { OrangeBrandColorRawTokens.colorOrange500 } - // NOTE: Defined here because use values available only in this Orange theme, open for InverseTheme overriding - override open var colorActionPrimaryLoading: MultipleColorSemanticTokens { MultipleColorSemanticTokens(light: OrangeBrandColorRawTokens.colorOrange550, dark: OrangeBrandColorRawTokens.colorOrange500) } + override open var colorActionPrimaryLoading: MultipleColorSemanticTokens { MultipleColorSemanticTokens(light: colorActionPrimaryLoadingLight, dark: colorActionPrimaryLoadingDark) } - // NOTE: Defined here because use values available only in this Orange theme, open for InverseTheme overriding - override open var colorActionPrimaryLoadingOnBgEmphasized: MultipleColorSemanticTokens { MultipleColorSemanticTokens(OrangeBrandColorRawTokens.colorOrange500) } + // NOTE: Picked from OUDSTheme since tokenator update + override open var colorActionPrimaryLoadingOnBgEmphasizedLight: ColorRawToken { OrangeBrandColorRawTokens.colorOrange500 } + + // NOTE: Picked from OUDSTheme since tokenator update + override open var colorActionPrimaryLoadingOnBgEmphasizedDark: ColorRawToken { OrangeBrandColorRawTokens.colorOrange500 } + + override open var colorActionPrimaryLoadingOnBgEmphasized: MultipleColorSemanticTokens { MultipleColorSemanticTokens(light: colorActionPrimaryLoadingOnBgEmphasizedLight, dark: colorActionPrimaryLoadingOnBgEmphasizedDark) } - // NOTE: Defined here because use values available only in this Orange theme, open for InverseTheme overriding override open var colorActionPrimaryFocus: MultipleColorSemanticTokens { MultipleColorSemanticTokens(light: ColorRawTokens.colorFunctionalDarkGray400, dark: ColorRawTokens.colorFunctionalLightGray400) } - // NOTE: Defined here because use values available only in this Orange theme, open for InverseTheme overriding override open var colorActionPrimaryFocusOnBgEmphasized: MultipleColorSemanticTokens { MultipleColorSemanticTokens(ColorRawTokens.colorFunctionalLightGray400) } - // MARK: Semantic token - Colors - Elevation + // MARK: Semantic token - Colors - Decorative + + // NOTE: Picked from OUDSTheme since tokenator update + override open var colorDecorativeBrandPrimaryLight: ColorRawToken { OrangeBrandColorRawTokens.colorOrange500 } + + // NOTE: Picked from OUDSTheme since tokenator update + override open var colorDecorativeBrandPrimaryDark: ColorRawToken { OrangeBrandColorRawTokens.colorOrange500 } - // NOTE: Defined here because use values available only in this Orange theme, open for InverseTheme overriding - override open var colorDecorativePrimary: MultipleColorSemanticTokens { MultipleColorSemanticTokens(OrangeBrandColorRawTokens.colorOrange500) } + override open var colorDecorativeBrandPrimary: MultipleColorSemanticTokens { MultipleColorSemanticTokens(light: colorDecorativeBrandPrimaryLight, dark: colorDecorativeBrandPrimaryDark) } + + override open var colorDecorativeBrandSecondary: MultipleColorSemanticTokens { MultipleColorSemanticTokens(light: colorDecorativeBrandSecondaryLight, dark: colorDecorativeBrandSecondaryDark) } + + override open var colorDecorativeBrandTertiary: MultipleColorSemanticTokens { MultipleColorSemanticTokens(light: colorDecorativeBrandTertiaryLight, dark: colorDecorativeBrandTertiaryDark) } // MARK: Semantic token - Colors - Chart - override open var colorChartCategoricalBrand: MultipleColorSemanticTokens { MultipleColorSemanticTokens(light: OrangeBrandColorRawTokens.colorOrange550, dark: OrangeBrandColorRawTokens.colorOrange500) } + // NOTE: Picked from OUDSTheme since tokenator update + override open var colorChartCategoricalBrandLight: ColorSemanticToken { OrangeBrandColorRawTokens.colorOrange550 } + + // NOTE: Picked from OUDSTheme since tokenator update + override open var colorChartCategoricalBrandDark: ColorSemanticToken { OrangeBrandColorRawTokens.colorOrange500 } + + override open var colorChartCategoricalBrand: MultipleColorSemanticTokens { MultipleColorSemanticTokens(light: colorChartCategoricalBrandLight, dark: colorChartCategoricalBrandDark) } } // swiftlint:enable line_length diff --git a/OUDS/Core/Tokens/SemanticTokens/Sources/Values/ColorMultipleSemanticTokens.swift b/OUDS/Core/Tokens/SemanticTokens/Sources/Values/ColorMultipleSemanticTokens.swift index 20c0dcbc0..7f1f5491a 100644 --- a/OUDS/Core/Tokens/SemanticTokens/Sources/Values/ColorMultipleSemanticTokens.swift +++ b/OUDS/Core/Tokens/SemanticTokens/Sources/Values/ColorMultipleSemanticTokens.swift @@ -17,8 +17,8 @@ // swiftlint:disable missing_docs // swiftlint:disable identifier_name -// swiftlint:disable file_length // swiftlint:disable line_length +// swiftlint:disable file_length /// This is a group of semantic tokens for **colors** but using ``MultipleColorSemanticTokens``. /// @@ -59,10 +59,6 @@ public protocol ColorMultipleSemanticTokens { var colorBgBrandPrimary: MultipleColorSemanticTokens { get } - var colorBgBrandSecondary: MultipleColorSemanticTokens { get } - - var colorBgBrandTertiary: MultipleColorSemanticTokens { get } - var colorBgStatusNeutral: MultipleColorSemanticTokens { get } var colorBgStatusNeutralOnBgEmphasized: MultipleColorSemanticTokens { get } @@ -101,21 +97,19 @@ public protocol ColorMultipleSemanticTokens { var colorContentDefault: MultipleColorSemanticTokens { get } - var colorContentContentDefaultOnBgEmphasized: MultipleColorSemanticTokens { get } + var colorContentDefaultOnBgEmphasized: MultipleColorSemanticTokens { get } var colorContentMuted: MultipleColorSemanticTokens { get } - var colorContentContentMutedOnBgEmphasized: MultipleColorSemanticTokens { get } + var colorContentMutedOnBgEmphasized: MultipleColorSemanticTokens { get } var colorContentDisabled: MultipleColorSemanticTokens { get } - var colorContentContentDisabledOnBgEmphasized: MultipleColorSemanticTokens { get } + var colorContentDisabledOnBgEmphasized: MultipleColorSemanticTokens { get } var colorContentBrandPrimary: MultipleColorSemanticTokens { get } - var colorContentBrandSecondary: MultipleColorSemanticTokens { get } - - var colorContentBrandTertiary: MultipleColorSemanticTokens { get } + var colorContentBrandPrimaryOnBgEmphasized: MultipleColorSemanticTokens { get } var colorContentStatusPositive: MultipleColorSemanticTokens { get } @@ -125,81 +119,87 @@ public protocol ColorMultipleSemanticTokens { var colorContentStatusNegative: MultipleColorSemanticTokens { get } - var colorContentStatusAccent: MultipleColorSemanticTokens { get } + var colorContentOnActionDisabled: MultipleColorSemanticTokens { get } - // MARK: Semantic token - Colors - Content - On Background + var colorContentOnActionDisabledOnBgEmphasized: MultipleColorSemanticTokens { get } - var colorContentOnBgPrimary: MultipleColorSemanticTokens { get } + var colorContentOnActionNegative: MultipleColorSemanticTokens { get } - var colorContentOnBgSecondary: MultipleColorSemanticTokens { get } + var colorContentOnActionPrimaryEnabled: MultipleColorSemanticTokens { get } - var colorContentOnBgTertiary: MultipleColorSemanticTokens { get } + var colorContentOnActionPrimaryEnabledOnBgEmphasized: MultipleColorSemanticTokens { get } - var colorContentOnBgStatusPositiveMuted: MultipleColorSemanticTokens { get } + var colorContentOnActionPrimaryFocus: MultipleColorSemanticTokens { get } - var colorContentOnBgStatusPositiveMutedOnBgEmphasized: MultipleColorSemanticTokens { get } + var colorContentOnActionPrimaryFocusOnBgEmphasized: MultipleColorSemanticTokens { get } - var colorContentOnBgStatusPositiveEmphasized: MultipleColorSemanticTokens { get } + var colorContentOnActionPrimaryHover: MultipleColorSemanticTokens { get } - var colorContentOnBgStatusInfoMuted: MultipleColorSemanticTokens { get } + var colorContentOnActionPrimaryHoverOnBgEmphasized: MultipleColorSemanticTokens { get } - var colorContentOnBgStatusInfoMutedOnBgEmphasized: MultipleColorSemanticTokens { get } + var colorContentOnActionPrimaryLoading: MultipleColorSemanticTokens { get } - var colorContentOnBgStatusInfoEmphasized: MultipleColorSemanticTokens { get } + var colorContentOnActionPrimaryLoadingOnBgEmphasized: MultipleColorSemanticTokens { get } - var colorContentOnBgStatusWarningMuted: MultipleColorSemanticTokens { get } + var colorContentOnActionPrimaryPressed: MultipleColorSemanticTokens { get } - var colorContentOnBgStatusWarningMutedOnBgEmphasized: MultipleColorSemanticTokens { get } + var colorContentOnActionPrimaryPressedOnBgEmphasized: MultipleColorSemanticTokens { get } - var colorContentOnBgStatusWarningEmphasized: MultipleColorSemanticTokens { get } + var colorContentOnBrandPrimary: MultipleColorSemanticTokens { get } - var colorContentOnBgStatusNegativeMuted: MultipleColorSemanticTokens { get } + var colorContentOnStatusAccentEmphasized: MultipleColorSemanticTokens { get } - var colorContentOnBgStatusNegativeMutedOnBgEmphasized: MultipleColorSemanticTokens { get } + var colorContentOnStatusAccentMuted: MultipleColorSemanticTokens { get } - var colorContentOnBgStatusNegativeEmphasized: MultipleColorSemanticTokens { get } + var colorContentOnStatusAccentMutedOnBgEmphasized: MultipleColorSemanticTokens { get } - var colorContentOnBgStatusAccentMuted: MultipleColorSemanticTokens { get } + var colorContentOnStatusInfoEmphasized: MultipleColorSemanticTokens { get } - var colorContentOnBgStatusAccentMutedOnBgEmphasized: MultipleColorSemanticTokens { get } + var colorContentOnStatusInfoMuted: MultipleColorSemanticTokens { get } - var colorContentOnBgStatusAccentedEmphasized: MultipleColorSemanticTokens { get } + var colorContentOnStatusInfoMutedOnBgEmphasized: MultipleColorSemanticTokens { get } - // MARK: Semantic token - Colors - Border + var colorContentOnStatusNegativeEmphasized: MultipleColorSemanticTokens { get } - var colorBorderDefault: MultipleColorSemanticTokens { get } + var colorContentOnStatusNegativeMuted: MultipleColorSemanticTokens { get } - var colorBorderDefaultOnBgEmphasized: MultipleColorSemanticTokens { get } + var colorContentOnStatusNegativeMutedOnBgEmphasized: MultipleColorSemanticTokens { get } - var colorBorderEmphasized: MultipleColorSemanticTokens { get } + var colorContentOnStatusPositiveEmphasized: MultipleColorSemanticTokens { get } - var colorBorderEmphasizedOnBgEmphasized: MultipleColorSemanticTokens { get } + var colorContentOnStatusPositiveMuted: MultipleColorSemanticTokens { get } - var colorBorderFocus: MultipleColorSemanticTokens { get } + var colorContentOnStatusPositiveMutedOnBgEmphasized: MultipleColorSemanticTokens { get } - var colorBorderBrandPrimaryOnBgEmphasized: MultipleColorSemanticTokens { get } + var colorContentOnStatusWarningEmphasized: MultipleColorSemanticTokens { get } - var colorBorderBrandPrimary: MultipleColorSemanticTokens { get } + var colorContentOnStatusWarningMuted: MultipleColorSemanticTokens { get } - var colorBorderBrandSecondary: MultipleColorSemanticTokens { get } + var colorContentOnStatusWarningMutedOnBgEmphasized: MultipleColorSemanticTokens { get } - var colorBorderBrandTertiary: MultipleColorSemanticTokens { get } + // MARK: Semantic token - Colors - Border - var colorBorderStatusPositive: MultipleColorSemanticTokens { get } + var colorBorderDefault: MultipleColorSemanticTokens { get } - var colorBorderStatusInfo: MultipleColorSemanticTokens { get } + var colorBorderDefaultOnBgEmphasized: MultipleColorSemanticTokens { get } - var colorBorderStatusWarning: MultipleColorSemanticTokens { get } + var colorBorderEmphasized: MultipleColorSemanticTokens { get } - var colorBorderStatusNegative: MultipleColorSemanticTokens { get } + var colorBorderEmphasizedOnBgEmphasized: MultipleColorSemanticTokens { get } - var colorBorderStatusAccent: MultipleColorSemanticTokens { get } + var colorBorderFocus: MultipleColorSemanticTokens { get } - var colorBorderOnBgBrandPrimary: MultipleColorSemanticTokens { get } + var colorBorderFocusInset: MultipleColorSemanticTokens { get } - var colorBorderOnBgBrandSecondary: MultipleColorSemanticTokens { get } + var colorBorderFocusInsetOnBgEmphasized: MultipleColorSemanticTokens { get } - var colorBorderOnBgBrandTertiary: MultipleColorSemanticTokens { get } + var colorBorderFocusOnBgEmphasized: MultipleColorSemanticTokens { get } + + var colorBorderBrandPrimaryOnBgEmphasized: MultipleColorSemanticTokens { get } + + var colorBorderBrandPrimary: MultipleColorSemanticTokens { get } + + var colorBorderOnBrandPrimary: MultipleColorSemanticTokens { get } // MARK: Semantic token - Colors - Action @@ -213,7 +213,7 @@ public protocol ColorMultipleSemanticTokens { var colorActionVisited: MultipleColorSemanticTokens { get } - var colorActionVistedOnBgEmphasized: MultipleColorSemanticTokens { get } + var colorActionVisitedOnBgEmphasized: MultipleColorSemanticTokens { get } var colorActionPrimaryEnabled: MultipleColorSemanticTokens { get } @@ -265,52 +265,6 @@ public protocol ColorMultipleSemanticTokens { var colorActionNegativeFocus: MultipleColorSemanticTokens { get } - var colorActionOnBgActionDisabled: MultipleColorSemanticTokens { get } - - var colorActionOnBgActionDisabledOnBgEmphasized: MultipleColorSemanticTokens { get } - - var colorActionOnBgActionNegative: MultipleColorSemanticTokens { get } - - var colorActionOnBgActionPrimaryEnabled: MultipleColorSemanticTokens { get } - - var colorActionOnBgActionPrimaryEnabledOnBgEmphasized: MultipleColorSemanticTokens { get } - - var colorActionOnBgActionPrimaryHover: MultipleColorSemanticTokens { get } - - var colorActionOnBgActionPrimaryHoverOnBgEmphasized: MultipleColorSemanticTokens { get } - - var colorActionOnBgActionPrimaryPressed: MultipleColorSemanticTokens { get } - - var colorActionOnBgActionPrimaryPressedOnBgEmphasized: MultipleColorSemanticTokens { get } - - var colorActionOnBgActionPrimaryLoading: MultipleColorSemanticTokens { get } - - var colorActionOnBgActionPrimaryLoadingOnBgEmphasized: MultipleColorSemanticTokens { get } - - var colorActionOnBgActionPrimaryFocus: MultipleColorSemanticTokens { get } - - var colorActionOnBgActionPrimaryFocusOnBgEmphasized: MultipleColorSemanticTokens { get } - - var colorActionOnBgActionSecondaryEnabled: MultipleColorSemanticTokens { get } - - var colorActionOnBgActionSecondaryEnabledOnBgEmphasized: MultipleColorSemanticTokens { get } - - var colorActionOnBgActionSecondaryHover: MultipleColorSemanticTokens { get } - - var colorActionOnBgActionSecondaryHoverOnBgEmphasized: MultipleColorSemanticTokens { get } - - var colorActionOnBgActionSecondaryPressed: MultipleColorSemanticTokens { get } - - var colorActionOnBgActionSecondaryPressedOnBgEmphasized: MultipleColorSemanticTokens { get } - - var colorActionOnBgActionSecondaryLoading: MultipleColorSemanticTokens { get } - - var colorActionOnBgActionSecondaryLoadingOnBgEmphasized: MultipleColorSemanticTokens { get } - - var colorActionOnBgActionSecondaryFocus: MultipleColorSemanticTokens { get } - - var colorActionOnBgActionSecondaryFocusOnBgEmphasized: MultipleColorSemanticTokens { get } - // MARK: Semantic token - Colors - Always var colorAlwaysBlack: MultipleColorSemanticTokens { get } @@ -327,19 +281,19 @@ public protocol ColorMultipleSemanticTokens { var colorAlwaysAccent: MultipleColorSemanticTokens { get } - var colorAlwaysOnBgBlack: MultipleColorSemanticTokens { get } + var colorAlwaysOnAccent: MultipleColorSemanticTokens { get } - var colorAlwaysOnBgWhite: MultipleColorSemanticTokens { get } + var colorAlwaysOnBlack: MultipleColorSemanticTokens { get } - var colorAlwaysOnBgWarning: MultipleColorSemanticTokens { get } + var colorAlwaysOnInfo: MultipleColorSemanticTokens { get } - var colorAlwaysOnBgNegative: MultipleColorSemanticTokens { get } + var colorAlwaysOnNegative: MultipleColorSemanticTokens { get } - var colorAlwaysOnBgPositive: MultipleColorSemanticTokens { get } + var colorAlwaysOnPositive: MultipleColorSemanticTokens { get } - var colorAlwaysOnBgInfo: MultipleColorSemanticTokens { get } + var colorAlwaysOnWarning: MultipleColorSemanticTokens { get } - var colorAlwaysOnBgAccent: MultipleColorSemanticTokens { get } + var colorAlwaysOnWhite: MultipleColorSemanticTokens { get } // MARK: Semantic token - Colors - Transparent @@ -375,11 +329,11 @@ public protocol ColorMultipleSemanticTokens { // MARK: Semantic token - Colors - Decorative - var colorDecorativePrimary: MultipleColorSemanticTokens { get } + var colorDecorativeBrandPrimary: MultipleColorSemanticTokens { get } - var colorDecorativeSecondary: MultipleColorSemanticTokens { get } + var colorDecorativeBrandSecondary: MultipleColorSemanticTokens { get } - var colorDecorativeTertiary: MultipleColorSemanticTokens { get } + var colorDecorativeBrandTertiary: MultipleColorSemanticTokens { get } var colorDecorativeNeutralMuted: MultipleColorSemanticTokens { get } @@ -554,6 +508,16 @@ public protocol ColorMultipleSemanticTokens { var colorChartSequentialAccent5Tint800: MultipleColorSemanticTokens { get } var colorChartSequentialAccent5Tint900: MultipleColorSemanticTokens { get } + + // MARK: - Semantic token - Colors - Gradient + + var colorGradientSkeletonMiddle: MultipleColorSemanticTokens { get } + + var colorGradientSkeletonMiddleOnBgEmphasized: MultipleColorSemanticTokens { get } + + var colorGradientSkeletonStartEnd: MultipleColorSemanticTokens { get } + + var colorGradientSkeletonStartEndOnBgEmphasized: MultipleColorSemanticTokens { get } } // swiftlint:enable missing_docs diff --git a/OUDS/Core/Tokens/SemanticTokens/Sources/Values/ColorSemanticTokens.swift b/OUDS/Core/Tokens/SemanticTokens/Sources/Values/ColorSemanticTokens.swift index 8f65480a3..e837954b4 100644 --- a/OUDS/Core/Tokens/SemanticTokens/Sources/Values/ColorSemanticTokens.swift +++ b/OUDS/Core/Tokens/SemanticTokens/Sources/Values/ColorSemanticTokens.swift @@ -41,10 +41,6 @@ public protocol ColorSemanticTokens { var colorBgBrandPrimaryLight: ColorSemanticToken { get } - var colorBgBrandSecondaryLight: ColorSemanticToken { get } - - var colorBgBrandTertiaryLight: ColorSemanticToken { get } - var colorBgStatusNeutralLight: ColorSemanticToken { get } var colorBgStatusNeutralOnBgEmphasizedLight: ColorSemanticToken { get } @@ -83,21 +79,19 @@ public protocol ColorSemanticTokens { var colorContentDefaultLight: ColorSemanticToken { get } - var colorContentContentDefaultOnBgEmphasizedLight: ColorSemanticToken { get } + var colorContentDefaultOnBgEmphasizedLight: ColorSemanticToken { get } var colorContentMutedLight: ColorSemanticToken { get } - var colorContentContentMutedOnBgEmphasizedLight: ColorSemanticToken { get } + var colorContentMutedOnBgEmphasizedLight: ColorSemanticToken { get } var colorContentDisabledLight: ColorSemanticToken { get } - var colorContentContentDisabledOnBgEmphasizedLight: ColorSemanticToken { get } + var colorContentDisabledOnBgEmphasizedLight: ColorSemanticToken { get } var colorContentBrandPrimaryLight: ColorSemanticToken { get } - var colorContentBrandSecondaryLight: ColorSemanticToken { get } - - var colorContentBrandTertiaryLight: ColorSemanticToken { get } + var colorContentBrandPrimaryOnBgEmphasizedLight: ColorSemanticToken { get } var colorContentStatusPositiveLight: ColorSemanticToken { get } @@ -107,81 +101,87 @@ public protocol ColorSemanticTokens { var colorContentStatusNegativeLight: ColorSemanticToken { get } - var colorContentStatusAccentLight: ColorSemanticToken { get } + var colorContentOnActionDisabledLight: ColorSemanticToken { get } - // MARK: Semantic token - Colors - Content - On Background + var colorContentOnActionDisabledOnBgEmphasizedLight: ColorSemanticToken { get } - var colorContentOnBgPrimaryLight: ColorSemanticToken { get } + var colorContentOnActionNegativeLight: ColorSemanticToken { get } - var colorContentOnBgSecondaryLight: ColorSemanticToken { get } + var colorContentOnActionPrimaryEnabledLight: ColorSemanticToken { get } - var colorContentOnBgTertiaryLight: ColorSemanticToken { get } + var colorContentOnActionPrimaryEnabledOnBgEmphasizedLight: ColorSemanticToken { get } - var colorContentOnBgStatusPositiveMutedLight: ColorSemanticToken { get } + var colorContentOnActionPrimaryFocusLight: ColorSemanticToken { get } - var colorContentOnBgStatusPositiveMutedOnBgEmphasizedLight: ColorSemanticToken { get } + var colorContentOnActionPrimaryFocusOnBgEmphasizedLight: ColorSemanticToken { get } - var colorContentOnBgStatusPositiveEmphasizedLight: ColorSemanticToken { get } + var colorContentOnActionPrimaryHoverLight: ColorSemanticToken { get } - var colorContentOnBgStatusInfoMutedLight: ColorSemanticToken { get } + var colorContentOnActionPrimaryHoverOnBgEmphasizedLight: ColorSemanticToken { get } - var colorContentOnBgStatusInfoMutedOnBgEmphasizedLight: ColorSemanticToken { get } + var colorContentOnActionPrimaryLoadingLight: ColorSemanticToken { get } - var colorContentOnBgStatusInfoEmphasizedLight: ColorSemanticToken { get } + var colorContentOnActionPrimaryLoadingOnBgEmphasizedLight: ColorSemanticToken { get } - var colorContentOnBgStatusWarningMutedLight: ColorSemanticToken { get } + var colorContentOnActionPrimaryPressedLight: ColorSemanticToken { get } - var colorContentOnBgStatusWarningMutedOnBgEmphasizedLight: ColorSemanticToken { get } + var colorContentOnActionPrimaryPressedOnBgEmphasizedLight: ColorSemanticToken { get } - var colorContentOnBgStatusWarningEmphasizedLight: ColorSemanticToken { get } + var colorContentOnBrandPrimaryLight: ColorSemanticToken { get } - var colorContentOnBgStatusNegativeMutedLight: ColorSemanticToken { get } + var colorContentOnStatusAccentEmphasizedLight: ColorSemanticToken { get } - var colorContentOnBgStatusNegativeMutedOnBgEmphasizedLight: ColorSemanticToken { get } + var colorContentOnStatusAccentMutedLight: ColorSemanticToken { get } - var colorContentOnBgStatusNegativeEmphasizedLight: ColorSemanticToken { get } + var colorContentOnStatusAccentMutedOnBgEmphasizedLight: ColorSemanticToken { get } - var colorContentOnBgStatusAccentMutedLight: ColorSemanticToken { get } + var colorContentOnStatusInfoEmphasizedLight: ColorSemanticToken { get } - var colorContentOnBgStatusAccentMutedOnBgEmphasizedLight: ColorSemanticToken { get } + var colorContentOnStatusInfoMutedLight: ColorSemanticToken { get } - var colorContentOnBgStatusAccentedEmphasizedLight: ColorSemanticToken { get } + var colorContentOnStatusInfoMutedOnBgEmphasizedLight: ColorSemanticToken { get } - // MARK: Semantic token - Colors - Border + var colorContentOnStatusNegativeEmphasizedLight: ColorSemanticToken { get } - var colorBorderDefaultLight: ColorSemanticToken { get } + var colorContentOnStatusNegativeMutedLight: ColorSemanticToken { get } - var colorBorderDefaultOnBgEmphasizedLight: ColorSemanticToken { get } + var colorContentOnStatusNegativeMutedOnBgEmphasizedLight: ColorSemanticToken { get } - var colorBorderEmphasizedLight: ColorSemanticToken { get } + var colorContentOnStatusPositiveEmphasizedLight: ColorSemanticToken { get } - var colorBorderEmphasizedOnBgEmphasizedLight: ColorSemanticToken { get } + var colorContentOnStatusPositiveMutedLight: ColorSemanticToken { get } - var colorBorderFocusLight: ColorSemanticToken { get } + var colorContentOnStatusPositiveMutedOnBgEmphasizedLight: ColorSemanticToken { get } - var colorBorderBrandPrimaryOnBgEmphasizedLight: ColorSemanticToken { get } + var colorContentOnStatusWarningEmphasizedLight: ColorSemanticToken { get } - var colorBorderBrandPrimaryLight: ColorSemanticToken { get } + var colorContentOnStatusWarningMutedLight: ColorSemanticToken { get } + + var colorContentOnStatusWarningMutedOnBgEmphasizedLight: ColorSemanticToken { get } + + // MARK: Semantic token - Colors - Border - var colorBorderBrandSecondaryLight: ColorSemanticToken { get } + var colorBorderDefaultLight: ColorSemanticToken { get } - var colorBorderBrandTertiaryLight: ColorSemanticToken { get } + var colorBorderDefaultOnBgEmphasizedLight: ColorSemanticToken { get } - var colorBorderStatusPositiveLight: ColorSemanticToken { get } + var colorBorderEmphasizedLight: ColorSemanticToken { get } - var colorBorderStatusInfoLight: ColorSemanticToken { get } + var colorBorderEmphasizedOnBgEmphasizedLight: ColorSemanticToken { get } - var colorBorderStatusWarningLight: ColorSemanticToken { get } + var colorBorderFocusLight: ColorSemanticToken { get } - var colorBorderStatusNegativeLight: ColorSemanticToken { get } + var colorBorderFocusInsetLight: ColorSemanticToken { get } - var colorBorderStatusAccentLight: ColorSemanticToken { get } + var colorBorderFocusInsetOnBgEmphasizedLight: ColorSemanticToken { get } - var colorBorderOnBgBrandPrimaryLight: ColorSemanticToken { get } + var colorBorderFocusOnBgEmphasizedLight: ColorSemanticToken { get } - var colorBorderOnBgBrandSecondaryLight: ColorSemanticToken { get } + var colorBorderBrandPrimaryOnBgEmphasizedLight: ColorSemanticToken { get } - var colorBorderOnBgBrandTertiaryLight: ColorSemanticToken { get } + var colorBorderBrandPrimaryLight: ColorSemanticToken { get } + + var colorBorderOnBrandPrimaryLight: ColorSemanticToken { get } // MARK: Semantic token - Colors - Action @@ -195,8 +195,6 @@ public protocol ColorSemanticTokens { var colorActionVisitedLight: ColorSemanticToken { get } - var colorActionVistedOnBgEmphasizedLight: ColorSemanticToken { get } - var colorActionPrimaryEnabledLight: ColorSemanticToken { get } var colorActionPrimaryEnabledOnBgEmphasizedLight: ColorSemanticToken { get } @@ -247,52 +245,6 @@ public protocol ColorSemanticTokens { var colorActionNegativeFocusLight: ColorSemanticToken { get } - var colorActionOnBgActionDisabledLight: ColorSemanticToken { get } - - var colorActionOnBgActionDisabledOnBgEmphasizedLight: ColorSemanticToken { get } - - var colorActionOnBgActionNegativeLight: ColorSemanticToken { get } - - var colorActionOnBgActionPrimaryEnabledLight: ColorSemanticToken { get } - - var colorActionOnBgActionPrimaryEnabledOnBgEmphasizedLight: ColorSemanticToken { get } - - var colorActionOnBgActionPrimaryHoverLight: ColorSemanticToken { get } - - var colorActionOnBgActionPrimaryHoverOnBgEmphasizedLight: ColorSemanticToken { get } - - var colorActionOnBgActionPrimaryPressedLight: ColorSemanticToken { get } - - var colorActionOnBgActionPrimaryPressedOnBgEmphasizedLight: ColorSemanticToken { get } - - var colorActionOnBgActionPrimaryLoadingLight: ColorSemanticToken { get } - - var colorActionOnBgActionPrimaryLoadingOnBgEmphasizedLight: ColorSemanticToken { get } - - var colorActionOnBgActionPrimaryFocusLight: ColorSemanticToken { get } - - var colorActionOnBgActionPrimaryFocusOnBgEmphasizedLight: ColorSemanticToken { get } - - var colorActionOnBgActionSecondaryEnabledLight: ColorSemanticToken { get } - - var colorActionOnBgActionSecondaryEnabledOnBgEmphasizedLight: ColorSemanticToken { get } - - var colorActionOnBgActionSecondaryHoverLight: ColorSemanticToken { get } - - var colorActionOnBgActionSecondaryHoverOnBgEmphasizedLight: ColorSemanticToken { get } - - var colorActionOnBgActionSecondaryPressedLight: ColorSemanticToken { get } - - var colorActionOnBgActionSecondaryPressedOnBgEmphasizedLight: ColorSemanticToken { get } - - var colorActionOnBgActionSecondaryLoadingLight: ColorSemanticToken { get } - - var colorActionOnBgActionSecondaryLoadingOnBgEmphasizedLight: ColorSemanticToken { get } - - var colorActionOnBgActionSecondaryFocusLight: ColorSemanticToken { get } - - var colorActionOnBgActionSecondaryFocusOnBgEmphasizedLight: ColorSemanticToken { get } - // MARK: Semantic token - Colors - Always var colorAlwaysBlackLight: ColorSemanticToken { get } @@ -309,19 +261,19 @@ public protocol ColorSemanticTokens { var colorAlwaysAccentLight: ColorSemanticToken { get } - var colorAlwaysOnBgBlackLight: ColorSemanticToken { get } + var colorAlwaysOnAccentLight: ColorSemanticToken { get } - var colorAlwaysOnBgWhiteLight: ColorSemanticToken { get } + var colorAlwaysOnBlackLight: ColorSemanticToken { get } - var colorAlwaysOnBgWarningLight: ColorSemanticToken { get } + var colorAlwaysOnInfoLight: ColorSemanticToken { get } - var colorAlwaysOnBgNegativeLight: ColorSemanticToken { get } + var colorAlwaysOnNegativeLight: ColorSemanticToken { get } - var colorAlwaysOnBgPositiveLight: ColorSemanticToken { get } + var colorAlwaysOnPositiveLight: ColorSemanticToken { get } - var colorAlwaysOnBgInfoLight: ColorSemanticToken { get } + var colorAlwaysOnWarningLight: ColorSemanticToken { get } - var colorAlwaysOnBgAccentLight: ColorSemanticToken { get } + var colorAlwaysOnWhiteLight: ColorSemanticToken { get } // MARK: Semantic token - Colors - Transparent @@ -357,11 +309,11 @@ public protocol ColorSemanticTokens { // MARK: Semantic token - Colors - Decorative - var colorDecorativePrimaryLight: ColorSemanticToken { get } + var colorDecorativeBrandPrimaryLight: ColorSemanticToken { get } - var colorDecorativeSecondaryLight: ColorSemanticToken { get } + var colorDecorativeBrandSecondaryLight: ColorSemanticToken { get } - var colorDecorativeTertiaryLight: ColorSemanticToken { get } + var colorDecorativeBrandTertiaryLight: ColorSemanticToken { get } var colorDecorativeNeutralMutedLight: ColorSemanticToken { get } @@ -537,6 +489,16 @@ public protocol ColorSemanticTokens { var colorChartSequentialAccent5Tint900Light: ColorSemanticToken { get } + // MARK: - Semantic token - Colors - Gradient + + var colorGradientSkeletonMiddleLight: ColorSemanticToken { get } + + var colorGradientSkeletonMiddleOnBgEmphasizedLight: ColorSemanticToken { get } + + var colorGradientSkeletonStartEndLight: ColorSemanticToken { get } + + var colorGradientSkeletonStartEndOnBgEmphasizedLight: ColorSemanticToken { get } + // MARK: - Dark values // MARK: Semantic token - Colors - Background @@ -551,10 +513,6 @@ public protocol ColorSemanticTokens { var colorBgBrandPrimaryDark: ColorSemanticToken { get } - var colorBgBrandSecondaryDark: ColorSemanticToken { get } - - var colorBgBrandTertiaryDark: ColorSemanticToken { get } - var colorBgStatusNeutralDark: ColorSemanticToken { get } var colorBgStatusNeutralOnBgEmphasizedDark: ColorSemanticToken { get } @@ -593,21 +551,19 @@ public protocol ColorSemanticTokens { var colorContentDefaultDark: ColorSemanticToken { get } - var colorContentContentDefaultOnBgEmphasizedDark: ColorSemanticToken { get } + var colorContentDefaultOnBgEmphasizedDark: ColorSemanticToken { get } var colorContentMutedDark: ColorSemanticToken { get } - var colorContentContentMutedOnBgEmphasizedDark: ColorSemanticToken { get } + var colorContentMutedOnBgEmphasizedDark: ColorSemanticToken { get } var colorContentDisabledDark: ColorSemanticToken { get } - var colorContentContentDisabledOnBgEmphasizedDark: ColorSemanticToken { get } + var colorContentDisabledOnBgEmphasizedDark: ColorSemanticToken { get } var colorContentBrandPrimaryDark: ColorSemanticToken { get } - var colorContentBrandSecondaryDark: ColorSemanticToken { get } - - var colorContentBrandTertiaryDark: ColorSemanticToken { get } + var colorContentBrandPrimaryOnBgEmphasizedDark: ColorSemanticToken { get } var colorContentStatusPositiveDark: ColorSemanticToken { get } @@ -617,81 +573,87 @@ public protocol ColorSemanticTokens { var colorContentStatusNegativeDark: ColorSemanticToken { get } - var colorContentStatusAccentDark: ColorSemanticToken { get } + var colorContentOnActionDisabledDark: ColorSemanticToken { get } - // MARK: Semantic token - Colors - Content - On Background + var colorContentOnActionDisabledOnBgEmphasizedDark: ColorSemanticToken { get } - var colorContentOnBgPrimaryDark: ColorSemanticToken { get } + var colorContentOnActionNegativeDark: ColorSemanticToken { get } - var colorContentOnBgSecondaryDark: ColorSemanticToken { get } + var colorContentOnActionPrimaryEnabledDark: ColorSemanticToken { get } - var colorContentOnBgTertiaryDark: ColorSemanticToken { get } + var colorContentOnActionPrimaryEnabledOnBgEmphasizedDark: ColorSemanticToken { get } - var colorContentOnBgStatusPositiveMutedDark: ColorSemanticToken { get } + var colorContentOnActionPrimaryFocusDark: ColorSemanticToken { get } - var colorContentOnBgStatusPositiveMutedOnBgEmphasizedDark: ColorSemanticToken { get } + var colorContentOnActionPrimaryFocusOnBgEmphasizedDark: ColorSemanticToken { get } - var colorContentOnBgStatusPositiveEmphasizedDark: ColorSemanticToken { get } + var colorContentOnActionPrimaryHoverDark: ColorSemanticToken { get } - var colorContentOnBgStatusInfoMutedDark: ColorSemanticToken { get } + var colorContentOnActionPrimaryHoverOnBgEmphasizedDark: ColorSemanticToken { get } - var colorContentOnBgStatusInfoMutedOnBgEmphasizedDark: ColorSemanticToken { get } + var colorContentOnActionPrimaryLoadingDark: ColorSemanticToken { get } - var colorContentOnBgStatusInfoEmphasizedDark: ColorSemanticToken { get } + var colorContentOnActionPrimaryLoadingOnBgEmphasizedDark: ColorSemanticToken { get } - var colorContentOnBgStatusWarningMutedDark: ColorSemanticToken { get } + var colorContentOnActionPrimaryPressedDark: ColorSemanticToken { get } - var colorContentOnBgStatusWarningMutedOnBgEmphasizedDark: ColorSemanticToken { get } + var colorContentOnActionPrimaryPressedOnBgEmphasizedDark: ColorSemanticToken { get } - var colorContentOnBgStatusWarningEmphasizedDark: ColorSemanticToken { get } + var colorContentOnBrandPrimaryDark: ColorSemanticToken { get } - var colorContentOnBgStatusNegativeMutedDark: ColorSemanticToken { get } + var colorContentOnStatusAccentEmphasizedDark: ColorSemanticToken { get } - var colorContentOnBgStatusNegativeMutedOnBgEmphasizedDark: ColorSemanticToken { get } + var colorContentOnStatusAccentMutedDark: ColorSemanticToken { get } - var colorContentOnBgStatusNegativeEmphasizedDark: ColorSemanticToken { get } + var colorContentOnStatusAccentMutedOnBgEmphasizedDark: ColorSemanticToken { get } - var colorContentOnBgStatusAccentMutedDark: ColorSemanticToken { get } + var colorContentOnStatusInfoEmphasizedDark: ColorSemanticToken { get } - var colorContentOnBgStatusAccentMutedOnBgEmphasizedDark: ColorSemanticToken { get } + var colorContentOnStatusInfoMutedDark: ColorSemanticToken { get } - var colorContentOnBgStatusAccentedEmphasizedDark: ColorSemanticToken { get } + var colorContentOnStatusInfoMutedOnBgEmphasizedDark: ColorSemanticToken { get } - // MARK: Semantic token - Colors - Border + var colorContentOnStatusNegativeEmphasizedDark: ColorSemanticToken { get } - var colorBorderDefaultDark: ColorSemanticToken { get } + var colorContentOnStatusNegativeMutedDark: ColorSemanticToken { get } - var colorBorderDefaultOnBgEmphasizedDark: ColorSemanticToken { get } + var colorContentOnStatusNegativeMutedOnBgEmphasizedDark: ColorSemanticToken { get } - var colorBorderEmphasizedDark: ColorSemanticToken { get } + var colorContentOnStatusPositiveEmphasizedDark: ColorSemanticToken { get } - var colorBorderEmphasizedOnBgEmphasizedDark: ColorSemanticToken { get } + var colorContentOnStatusPositiveMutedDark: ColorSemanticToken { get } - var colorBorderFocusDark: ColorSemanticToken { get } + var colorContentOnStatusPositiveMutedOnBgEmphasizedDark: ColorSemanticToken { get } - var colorBorderBrandPrimaryOnBgEmphasizedDark: ColorSemanticToken { get } + var colorContentOnStatusWarningEmphasizedDark: ColorSemanticToken { get } - var colorBorderBrandPrimaryDark: ColorSemanticToken { get } + var colorContentOnStatusWarningMutedDark: ColorSemanticToken { get } + + var colorContentOnStatusWarningMutedOnBgEmphasizedDark: ColorSemanticToken { get } + + // MARK: Semantic token - Colors - Border - var colorBorderBrandSecondaryDark: ColorSemanticToken { get } + var colorBorderDefaultDark: ColorSemanticToken { get } - var colorBorderBrandTertiaryDark: ColorSemanticToken { get } + var colorBorderDefaultOnBgEmphasizedDark: ColorSemanticToken { get } - var colorBorderStatusPositiveDark: ColorSemanticToken { get } + var colorBorderEmphasizedDark: ColorSemanticToken { get } - var colorBorderStatusInfoDark: ColorSemanticToken { get } + var colorBorderEmphasizedOnBgEmphasizedDark: ColorSemanticToken { get } - var colorBorderStatusWarningDark: ColorSemanticToken { get } + var colorBorderFocusDark: ColorSemanticToken { get } - var colorBorderStatusNegativeDark: ColorSemanticToken { get } + var colorBorderFocusInsetDark: ColorSemanticToken { get } - var colorBorderStatusAccentDark: ColorSemanticToken { get } + var colorBorderFocusInsetOnBgEmphasizedDark: ColorSemanticToken { get } - var colorBorderOnBgBrandPrimaryDark: ColorSemanticToken { get } + var colorBorderFocusOnBgEmphasizedDark: ColorSemanticToken { get } - var colorBorderOnBgBrandSecondaryDark: ColorSemanticToken { get } + var colorBorderBrandPrimaryOnBgEmphasizedDark: ColorSemanticToken { get } - var colorBorderOnBgBrandTertiaryDark: ColorSemanticToken { get } + var colorBorderBrandPrimaryDark: ColorSemanticToken { get } + + var colorBorderOnBrandPrimaryDark: ColorSemanticToken { get } // MARK: Semantic token - Colors - Action @@ -705,8 +667,6 @@ public protocol ColorSemanticTokens { var colorActionVisitedDark: ColorSemanticToken { get } - var colorActionVistedOnBgEmphasizedDark: ColorSemanticToken { get } - var colorActionPrimaryEnabledDark: ColorSemanticToken { get } var colorActionPrimaryEnabledOnBgEmphasizedDark: ColorSemanticToken { get } @@ -757,52 +717,6 @@ public protocol ColorSemanticTokens { var colorActionNegativeFocusDark: ColorSemanticToken { get } - var colorActionOnBgActionDisabledDark: ColorSemanticToken { get } - - var colorActionOnBgActionDisabledOnBgEmphasizedDark: ColorSemanticToken { get } - - var colorActionOnBgActionNegativeDark: ColorSemanticToken { get } - - var colorActionOnBgActionPrimaryEnabledDark: ColorSemanticToken { get } - - var colorActionOnBgActionPrimaryEnabledOnBgEmphasizedDark: ColorSemanticToken { get } - - var colorActionOnBgActionPrimaryHoverDark: ColorSemanticToken { get } - - var colorActionOnBgActionPrimaryHoverOnBgEmphasizedDark: ColorSemanticToken { get } - - var colorActionOnBgActionPrimaryPressedDark: ColorSemanticToken { get } - - var colorActionOnBgActionPrimaryPressedOnBgEmphasizedDark: ColorSemanticToken { get } - - var colorActionOnBgActionPrimaryLoadingDark: ColorSemanticToken { get } - - var colorActionOnBgActionPrimaryLoadingOnBgEmphasizedDark: ColorSemanticToken { get } - - var colorActionOnBgActionPrimaryFocusDark: ColorSemanticToken { get } - - var colorActionOnBgActionPrimaryFocusOnBgEmphasizedDark: ColorSemanticToken { get } - - var colorActionOnBgActionSecondaryEnabledDark: ColorSemanticToken { get } - - var colorActionOnBgActionSecondaryEnabledOnBgEmphasizedDark: ColorSemanticToken { get } - - var colorActionOnBgActionSecondaryHoverDark: ColorSemanticToken { get } - - var colorActionOnBgActionSecondaryHoverOnBgEmphasizedDark: ColorSemanticToken { get } - - var colorActionOnBgActionSecondaryPressedDark: ColorSemanticToken { get } - - var colorActionOnBgActionSecondaryPressedOnBgEmphasizedDark: ColorSemanticToken { get } - - var colorActionOnBgActionSecondaryLoadingDark: ColorSemanticToken { get } - - var colorActionOnBgActionSecondaryLoadingOnBgEmphasizedDark: ColorSemanticToken { get } - - var colorActionOnBgActionSecondaryFocusDark: ColorSemanticToken { get } - - var colorActionOnBgActionSecondaryFocusOnBgEmphasizedDark: ColorSemanticToken { get } - // MARK: Semantic token - Colors - Always var colorAlwaysBlackDark: ColorSemanticToken { get } @@ -819,19 +733,19 @@ public protocol ColorSemanticTokens { var colorAlwaysAccentDark: ColorSemanticToken { get } - var colorAlwaysOnBgBlackDark: ColorSemanticToken { get } + var colorAlwaysOnAccentDark: ColorSemanticToken { get } - var colorAlwaysOnBgWhiteDark: ColorSemanticToken { get } + var colorAlwaysOnBlackDark: ColorSemanticToken { get } - var colorAlwaysOnBgWarningDark: ColorSemanticToken { get } + var colorAlwaysOnInfoDark: ColorSemanticToken { get } - var colorAlwaysOnBgNegativeDark: ColorSemanticToken { get } + var colorAlwaysOnNegativeDark: ColorSemanticToken { get } - var colorAlwaysOnBgPositiveDark: ColorSemanticToken { get } + var colorAlwaysOnPositiveDark: ColorSemanticToken { get } - var colorAlwaysOnBgInfoDark: ColorSemanticToken { get } + var colorAlwaysOnWarningDark: ColorSemanticToken { get } - var colorAlwaysOnBgAccentDark: ColorSemanticToken { get } + var colorAlwaysOnWhiteDark: ColorSemanticToken { get } // MARK: Semantic token - Colors - Transparent @@ -867,11 +781,11 @@ public protocol ColorSemanticTokens { // MARK: Semantic token - Colors - Decorative - var colorDecorativePrimaryDark: ColorSemanticToken { get } + var colorDecorativeBrandPrimaryDark: ColorSemanticToken { get } - var colorDecorativeSecondaryDark: ColorSemanticToken { get } + var colorDecorativeBrandSecondaryDark: ColorSemanticToken { get } - var colorDecorativeTertiaryDark: ColorSemanticToken { get } + var colorDecorativeBrandTertiaryDark: ColorSemanticToken { get } var colorDecorativeNeutralMutedDark: ColorSemanticToken { get } @@ -1046,6 +960,16 @@ public protocol ColorSemanticTokens { var colorChartSequentialAccent5Tint800Dark: ColorSemanticToken { get } var colorChartSequentialAccent5Tint900Dark: ColorSemanticToken { get } + + // MARK: - Semantic token - Colors - Gradient + + var colorGradientSkeletonMiddleDark: ColorSemanticToken { get } + + var colorGradientSkeletonMiddleOnBgEmphasizedDark: ColorSemanticToken { get } + + var colorGradientSkeletonStartEndDark: ColorSemanticToken { get } + + var colorGradientSkeletonStartEndOnBgEmphasizedDark: ColorSemanticToken { get } } // swiftlint:enable missing_docs diff --git a/Showcase/Showcase.xcodeproj/project.pbxproj b/Showcase/Showcase.xcodeproj/project.pbxproj index 1e122ccc5..feb0cea57 100644 --- a/Showcase/Showcase.xcodeproj/project.pbxproj +++ b/Showcase/Showcase.xcodeproj/project.pbxproj @@ -47,7 +47,6 @@ 0765B49C2CC15B2E00E69359 /* NamedColor+Elevation.swift in Sources */ = {isa = PBXBuildFile; fileRef = 0765B49B2CC15B2E00E69359 /* NamedColor+Elevation.swift */; }; 0765B49E2CC15B7E00E69359 /* NamedColor+Decorative.swift in Sources */ = {isa = PBXBuildFile; fileRef = 0765B49D2CC15B7E00E69359 /* NamedColor+Decorative.swift */; }; 0765B4A02CC15BBC00E69359 /* NamedColor+Content.swift in Sources */ = {isa = PBXBuildFile; fileRef = 0765B49F2CC15BBC00E69359 /* NamedColor+Content.swift */; }; - 0765B4A22CC15C0500E69359 /* NamedColor+OnContent.swift in Sources */ = {isa = PBXBuildFile; fileRef = 0765B4A12CC15C0500E69359 /* NamedColor+OnContent.swift */; }; 0765B4A42CC15C3E00E69359 /* NamedColor+Chart.swift in Sources */ = {isa = PBXBuildFile; fileRef = 0765B4A32CC15C3E00E69359 /* NamedColor+Chart.swift */; }; 0765B4A62CC15C9D00E69359 /* NamedColor.swift in Sources */ = {isa = PBXBuildFile; fileRef = 0765B4A52CC15C9D00E69359 /* NamedColor.swift */; }; 077CCE572CB426090059CC28 /* SpaceTokenElement.swift in Sources */ = {isa = PBXBuildFile; fileRef = 077CCE512CB426090059CC28 /* SpaceTokenElement.swift */; }; @@ -84,6 +83,7 @@ 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 */; }; + 515FF21A2CF8924F0057A8C5 /* NamedColor+Gradient.swift in Sources */ = {isa = PBXBuildFile; fileRef = 515FF2192CF8924F0057A8C5 /* NamedColor+Gradient.swift */; }; 51BC9DE72C6513F200EB2A11 /* OUDSFoundations in Frameworks */ = {isa = PBXBuildFile; productRef = 51BC9DE62C6513F200EB2A11 /* OUDSFoundations */; }; 51BD76212C466FCF0033365D /* AboutPage.swift in Sources */ = {isa = PBXBuildFile; fileRef = 51BD760B2C466FCF0033365D /* AboutPage.swift */; }; 51BD76222C466FCF0033365D /* ComponentsPage.swift in Sources */ = {isa = PBXBuildFile; fileRef = 51BD760D2C466FCF0033365D /* ComponentsPage.swift */; }; @@ -96,17 +96,8 @@ 51BD762A2C466FCF0033365D /* Showcase.swift in Sources */ = {isa = PBXBuildFile; fileRef = 51BD761E2C466FCF0033365D /* Showcase.swift */; }; 51BD762B2C466FCF0033365D /* MainView.swift in Sources */ = {isa = PBXBuildFile; fileRef = 51BD761F2C466FCF0033365D /* MainView.swift */; }; 51E3FF0B2CAFD9AE00F1BC59 /* ShowcaseElementPage.swift in Sources */ = {isa = PBXBuildFile; fileRef = 51E3FF0A2CAFD9AE00F1BC59 /* ShowcaseElementPage.swift */; }; + 51ED41052CF8AF2C007AB814 /* NamedColor+Gradient.swift in Sources */ = {isa = PBXBuildFile; fileRef = 515FF2192CF8924F0057A8C5 /* NamedColor+Gradient.swift */; }; 51EE2C682C5BF5DE00F634EC /* OUDSThemesOrange in Frameworks */ = {isa = PBXBuildFile; productRef = 51EE2C672C5BF5DE00F634EC /* OUDSThemesOrange */; }; - 6DFC208B2CDE669500F2EC33 /* AccessibilityStatementPage.swift in Sources */ = {isa = PBXBuildFile; fileRef = 6DFC208A2CDE669500F2EC33 /* AccessibilityStatementPage.swift */; }; - 6DFC20B52CE3AF1500F2EC33 /* boosted-grid.min.css in Resources */ = {isa = PBXBuildFile; fileRef = 6DFC20B02CE3AF1500F2EC33 /* boosted-grid.min.css */; }; - 6DFC20B62CE3AF1500F2EC33 /* favicon.ico in Resources */ = {isa = PBXBuildFile; fileRef = 6DFC20B12CE3AF1500F2EC33 /* favicon.ico */; }; - 6DFC20B72CE3AF1500F2EC33 /* pie.css in Resources */ = {isa = PBXBuildFile; fileRef = 6DFC20B32CE3AF1500F2EC33 /* pie.css */; }; - 6DFC20B82CE3AF1500F2EC33 /* style.css in Resources */ = {isa = PBXBuildFile; fileRef = 6DFC20B42CE3AF1500F2EC33 /* style.css */; }; - 6DFC20B92CE3AF1500F2EC33 /* orange-logo.svg in Resources */ = {isa = PBXBuildFile; fileRef = 6DFC20B22CE3AF1500F2EC33 /* orange-logo.svg */; }; - 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 */; }; - 6D24658B2CBEAB670023E359 /* OUDSTokensBorderUITests.swift in Sources */ = {isa = PBXBuildFile; fileRef = 6D24658A2CBEAB670023E359 /* OUDSTokensBorderUITests.swift */; }; 6D17A2182CCBE50700C00512 /* OUDSTypographyUITests.swift in Sources */ = {isa = PBXBuildFile; fileRef = 6D17A2172CCBE50700C00512 /* OUDSTypographyUITests.swift */; }; 6D17A21A2CCBE74C00C00512 /* OUDSTokensElevationUITests.swift in Sources */ = {isa = PBXBuildFile; fileRef = 6D17A2192CCBE74C00C00512 /* OUDSTokensElevationUITests.swift */; }; 6D17A21C2CCBE7E200C00512 /* OUDSTokensOpacityUITests.swift in Sources */ = {isa = PBXBuildFile; fileRef = 6D17A21B2CCBE7E200C00512 /* OUDSTokensOpacityUITests.swift */; }; @@ -118,7 +109,6 @@ 6D17A22F2CCBF12B00C00512 /* NamedColor+Border.swift in Sources */ = {isa = PBXBuildFile; fileRef = 0765B4992CC15ACE00E69359 /* NamedColor+Border.swift */; }; 6D17A2302CCBF12B00C00512 /* NamedColor+Chart.swift in Sources */ = {isa = PBXBuildFile; fileRef = 0765B4A32CC15C3E00E69359 /* NamedColor+Chart.swift */; }; 6D17A2312CCBF12B00C00512 /* NamedColor+Content.swift in Sources */ = {isa = PBXBuildFile; fileRef = 0765B49F2CC15BBC00E69359 /* NamedColor+Content.swift */; }; - 6D17A2322CCBF12B00C00512 /* NamedColor+OnContent.swift in Sources */ = {isa = PBXBuildFile; fileRef = 0765B4A12CC15C0500E69359 /* NamedColor+OnContent.swift */; }; 6D17A2332CCBF12B00C00512 /* NamedColor+Decorative.swift in Sources */ = {isa = PBXBuildFile; fileRef = 0765B49D2CC15B7E00E69359 /* NamedColor+Decorative.swift */; }; 6D17A2342CCBF12B00C00512 /* NamedColor+Elevation.swift in Sources */ = {isa = PBXBuildFile; fileRef = 0765B49B2CC15B2E00E69359 /* NamedColor+Elevation.swift */; }; 6D17A2352CCF8DC300C00512 /* NamedColor.swift in Sources */ = {isa = PBXBuildFile; fileRef = 0765B4A52CC15C9D00E69359 /* NamedColor.swift */; }; @@ -155,6 +145,15 @@ 6DED17EF2CD25B2200584BC9 /* SizeTokenElement.swift in Sources */ = {isa = PBXBuildFile; fileRef = 075114D82CB7D28D00B8B759 /* SizeTokenElement.swift */; }; 6DED17F02CD25CB000584BC9 /* TokenElement.swift in Sources */ = {isa = PBXBuildFile; fileRef = 073543222CA192F9001187EA /* TokenElement.swift */; }; 6DED17F12CD2641800584BC9 /* OpacityTokenElement.swift in Sources */ = {isa = PBXBuildFile; fileRef = 07CF427D2CA41325000BD03E /* OpacityTokenElement.swift */; }; + 6DFC208B2CDE669500F2EC33 /* AccessibilityStatementPage.swift in Sources */ = {isa = PBXBuildFile; fileRef = 6DFC208A2CDE669500F2EC33 /* AccessibilityStatementPage.swift */; }; + 6DFC20B52CE3AF1500F2EC33 /* boosted-grid.min.css in Resources */ = {isa = PBXBuildFile; fileRef = 6DFC20B02CE3AF1500F2EC33 /* boosted-grid.min.css */; }; + 6DFC20B62CE3AF1500F2EC33 /* favicon.ico in Resources */ = {isa = PBXBuildFile; fileRef = 6DFC20B12CE3AF1500F2EC33 /* favicon.ico */; }; + 6DFC20B72CE3AF1500F2EC33 /* pie.css in Resources */ = {isa = PBXBuildFile; fileRef = 6DFC20B32CE3AF1500F2EC33 /* pie.css */; }; + 6DFC20B82CE3AF1500F2EC33 /* style.css in Resources */ = {isa = PBXBuildFile; fileRef = 6DFC20B42CE3AF1500F2EC33 /* style.css */; }; + 6DFC20B92CE3AF1500F2EC33 /* orange-logo.svg in Resources */ = {isa = PBXBuildFile; fileRef = 6DFC20B22CE3AF1500F2EC33 /* orange-logo.svg */; }; + 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 */; }; /* End PBXBuildFile section */ @@ -200,7 +199,6 @@ 0765B49B2CC15B2E00E69359 /* NamedColor+Elevation.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = "NamedColor+Elevation.swift"; sourceTree = ""; }; 0765B49D2CC15B7E00E69359 /* NamedColor+Decorative.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = "NamedColor+Decorative.swift"; sourceTree = ""; }; 0765B49F2CC15BBC00E69359 /* NamedColor+Content.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = "NamedColor+Content.swift"; sourceTree = ""; }; - 0765B4A12CC15C0500E69359 /* NamedColor+OnContent.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = "NamedColor+OnContent.swift"; sourceTree = ""; }; 0765B4A32CC15C3E00E69359 /* NamedColor+Chart.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = "NamedColor+Chart.swift"; sourceTree = ""; }; 0765B4A52CC15C9D00E69359 /* NamedColor.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = NamedColor.swift; sourceTree = ""; }; 077CCE512CB426090059CC28 /* SpaceTokenElement.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = SpaceTokenElement.swift; sourceTree = ""; }; @@ -247,6 +245,7 @@ 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 = ""; }; + 515FF2192CF8924F0057A8C5 /* NamedColor+Gradient.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; name = "NamedColor+Gradient.swift"; path = "Showcase/Pages/Tokens/Color/NamedColor/NamedColor+Gradient.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 = ""; }; 51BD760D2C466FCF0033365D /* ComponentsPage.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = ComponentsPage.swift; sourceTree = ""; }; @@ -259,6 +258,13 @@ 51BD761E2C466FCF0033365D /* Showcase.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = Showcase.swift; sourceTree = ""; }; 51BD761F2C466FCF0033365D /* MainView.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = MainView.swift; sourceTree = ""; }; 51E3FF0A2CAFD9AE00F1BC59 /* ShowcaseElementPage.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = ShowcaseElementPage.swift; sourceTree = ""; }; + 6D17A2172CCBE50700C00512 /* OUDSTypographyUITests.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; name = OUDSTypographyUITests.swift; path = ShowcaseTests/__Snapshots__/OUDSTokensTypographyUITests/OUDSTypographyUITests.swift; sourceTree = SOURCE_ROOT; }; + 6D17A2192CCBE74C00C00512 /* OUDSTokensElevationUITests.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; name = OUDSTokensElevationUITests.swift; path = ShowcaseTests/__Snapshots__/OUDSTokensElevationUITests/OUDSTokensElevationUITests.swift; sourceTree = SOURCE_ROOT; }; + 6D17A21B2CCBE7E200C00512 /* OUDSTokensOpacityUITests.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; name = OUDSTokensOpacityUITests.swift; path = ShowcaseTests/__Snapshots__/OUDSTokensOpacityUITests/OUDSTokensOpacityUITests.swift; sourceTree = SOURCE_ROOT; }; + 6D17A2292CCBEF6700C00512 /* OUDSTokensColorUITests.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; name = OUDSTokensColorUITests.swift; path = ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/OUDSTokensColorUITests.swift; sourceTree = SOURCE_ROOT; }; + 6D3E872B2CCBE0A300AEB105 /* OUDSTokenBorderUITests.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; name = OUDSTokenBorderUITests.swift; path = ShowcaseTests/__Snapshots__/OUDSTokensBorderUITests/OUDSTokenBorderUITests.swift; sourceTree = SOURCE_ROOT; }; + 6DED17E82CD1143500584BC9 /* OUDSTokensSizeUITests.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; name = OUDSTokensSizeUITests.swift; path = ShowcaseTests/__Snapshots__/OUDSTokensDimensionUITests/Size/OUDSTokensSizeUITests.swift; sourceTree = SOURCE_ROOT; }; + 6DED17EA2CD114AD00584BC9 /* OUDSTokensSpaceUITests.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; name = OUDSTokensSpaceUITests.swift; path = ShowcaseTests/__Snapshots__/OUDSTokensDimensionUITests/Space/OUDSTokensSpaceUITests.swift; sourceTree = SOURCE_ROOT; }; 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 = ""; }; @@ -267,16 +273,6 @@ 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 = ""; }; - 6D24658A2CBEAB670023E359 /* OUDSTokensBorderUITests.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = OUDSTokensBorderUITests.swift; sourceTree = ""; }; - 6D3E87252CCBC4A200AEB105 /* OUDSTokensElevationUITests.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; name = OUDSTokensElevationUITests.swift; path = ShowcaseTests/OUDSTokensElevationUITests.swift; sourceTree = SOURCE_ROOT; }; - 6D3E87272CCBCCCA00AEB105 /* OUDSTokensTypographyUITests.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; name = OUDSTokensTypographyUITests.swift; path = ShowcaseTests/OUDSTokensTypographyUITests.swift; sourceTree = SOURCE_ROOT; }; - 6D17A2172CCBE50700C00512 /* OUDSTypographyUITests.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; name = OUDSTypographyUITests.swift; path = ShowcaseTests/__Snapshots__/OUDSTokensTypographyUITests/OUDSTypographyUITests.swift; sourceTree = SOURCE_ROOT; }; - 6D17A2192CCBE74C00C00512 /* OUDSTokensElevationUITests.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; name = OUDSTokensElevationUITests.swift; path = ShowcaseTests/__Snapshots__/OUDSTokensElevationUITests/OUDSTokensElevationUITests.swift; sourceTree = SOURCE_ROOT; }; - 6D17A21B2CCBE7E200C00512 /* OUDSTokensOpacityUITests.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; name = OUDSTokensOpacityUITests.swift; path = ShowcaseTests/__Snapshots__/OUDSTokensOpacityUITests/OUDSTokensOpacityUITests.swift; sourceTree = SOURCE_ROOT; }; - 6D17A2292CCBEF6700C00512 /* OUDSTokensColorUITests.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; name = OUDSTokensColorUITests.swift; path = ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/OUDSTokensColorUITests.swift; sourceTree = SOURCE_ROOT; }; - 6D3E872B2CCBE0A300AEB105 /* OUDSTokenBorderUITests.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; name = OUDSTokenBorderUITests.swift; path = ShowcaseTests/__Snapshots__/OUDSTokensBorderUITests/OUDSTokenBorderUITests.swift; sourceTree = SOURCE_ROOT; }; - 6DED17E82CD1143500584BC9 /* OUDSTokensSizeUITests.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; name = OUDSTokensSizeUITests.swift; path = ShowcaseTests/__Snapshots__/OUDSTokensDimensionUITests/Size/OUDSTokensSizeUITests.swift; sourceTree = SOURCE_ROOT; }; - 6DED17EA2CD114AD00584BC9 /* OUDSTokensSpaceUITests.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; name = OUDSTokensSpaceUITests.swift; path = ShowcaseTests/__Snapshots__/OUDSTokensDimensionUITests/Space/OUDSTokensSpaceUITests.swift; sourceTree = SOURCE_ROOT; }; 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 = ""; }; 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; }; @@ -418,7 +414,6 @@ 0765B4992CC15ACE00E69359 /* NamedColor+Border.swift */, 0765B4A32CC15C3E00E69359 /* NamedColor+Chart.swift */, 0765B49F2CC15BBC00E69359 /* NamedColor+Content.swift */, - 0765B4A12CC15C0500E69359 /* NamedColor+OnContent.swift */, 0765B49D2CC15B7E00E69359 /* NamedColor+Decorative.swift */, 0765B49B2CC15B2E00E69359 /* NamedColor+Elevation.swift */, ); @@ -526,6 +521,7 @@ 07FDCD882C296A500009AA13 = { isa = PBXGroup; children = ( + 515FF2192CF8924F0057A8C5 /* NamedColor+Gradient.swift */, 07FDCDA32C296B170009AA13 /* 🛠 */, 51BD76202C466FCF0033365D /* Showcase */, 0740A9902C9873500069D24A /* ShowcaseTests */, @@ -667,28 +663,6 @@ path = Showcase; sourceTree = ""; }; - 6DFC20892CDE664400F2EC33 /* AccessibilityStatement */ = { - isa = PBXGroup; - children = ( - 6DFC208A2CDE669500F2EC33 /* AccessibilityStatementPage.swift */, - ); - path = AccessibilityStatement; - sourceTree = ""; - }; - 6DFC209B2CDF92D500F2EC33 /* accessibilityStatement */ = { - isa = PBXGroup; - children = ( - 6DFC20BF2CE3D39D00F2EC33 /* accessibility_detail.html */, - 6DFC20C02CE3D39D00F2EC33 /* accessibility_result.xml */, - 6DFC20B02CE3AF1500F2EC33 /* boosted-grid.min.css */, - 6DFC20B12CE3AF1500F2EC33 /* favicon.ico */, - 6DFC20B22CE3AF1500F2EC33 /* orange-logo.svg */, - 6DFC20B32CE3AF1500F2EC33 /* pie.css */, - 6DFC20B42CE3AF1500F2EC33 /* style.css */, - ); - path = accessibilityStatement; - sourceTree = ""; - }; 6D17A2242CCBEF1100C00512 /* OUDSTokensColorUITests */ = { isa = PBXGroup; children = ( @@ -745,6 +719,28 @@ path = OUDSComponentsUITests; sourceTree = ""; }; + 6DFC20892CDE664400F2EC33 /* AccessibilityStatement */ = { + isa = PBXGroup; + children = ( + 6DFC208A2CDE669500F2EC33 /* AccessibilityStatementPage.swift */, + ); + path = AccessibilityStatement; + sourceTree = ""; + }; + 6DFC209B2CDF92D500F2EC33 /* accessibilityStatement */ = { + isa = PBXGroup; + children = ( + 6DFC20BF2CE3D39D00F2EC33 /* accessibility_detail.html */, + 6DFC20C02CE3D39D00F2EC33 /* accessibility_result.xml */, + 6DFC20B02CE3AF1500F2EC33 /* boosted-grid.min.css */, + 6DFC20B12CE3AF1500F2EC33 /* favicon.ico */, + 6DFC20B22CE3AF1500F2EC33 /* orange-logo.svg */, + 6DFC20B32CE3AF1500F2EC33 /* pie.css */, + 6DFC20B42CE3AF1500F2EC33 /* style.css */, + ); + path = accessibilityStatement; + sourceTree = ""; + }; 6E90D400B72B50FE406E8DFC /* Frameworks */ = { isa = PBXGroup; children = ( @@ -963,6 +959,7 @@ isa = PBXSourcesBuildPhase; buildActionMask = 2147483647; files = ( + 51ED41052CF8AF2C007AB814 /* NamedColor+Gradient.swift in Sources */, 6DED17F12CD2641800584BC9 /* OpacityTokenElement.swift in Sources */, 6DED17F02CD25CB000584BC9 /* TokenElement.swift in Sources */, 6DED17EF2CD25B2200584BC9 /* SizeTokenElement.swift in Sources */, @@ -991,7 +988,6 @@ 6D17A22F2CCBF12B00C00512 /* NamedColor+Border.swift in Sources */, 6D17A2302CCBF12B00C00512 /* NamedColor+Chart.swift in Sources */, 6D17A2312CCBF12B00C00512 /* NamedColor+Content.swift in Sources */, - 6D17A2322CCBF12B00C00512 /* NamedColor+OnContent.swift in Sources */, 6D17A2332CCBF12B00C00512 /* NamedColor+Decorative.swift in Sources */, 6D17A2342CCBF12B00C00512 /* NamedColor+Elevation.swift in Sources */, 6D17A22B2CCBF0E200C00512 /* ColorTokenPage.swift in Sources */, @@ -1019,6 +1015,7 @@ isa = PBXSourcesBuildPhase; buildActionMask = 2147483647; files = ( + 515FF21A2CF8924F0057A8C5 /* NamedColor+Gradient.swift in Sources */, 07F75A3D2CC653BD0004F1AD /* NameSpace+PaddingInset.swift in Sources */, 075114DC2CB7D28D00B8B759 /* SizeTokenPage.swift in Sources */, 077CCE592CB426090059CC28 /* DimensionTokenElement.swift in Sources */, @@ -1058,7 +1055,6 @@ 0765B49A2CC15ACE00E69359 /* NamedColor+Border.swift in Sources */, 51087A7B2C46DF9F00160CCF /* Bundle+extension.swift in Sources */, 0765B4962CC159F600E69359 /* NamedColor+Action.swift in Sources */, - 0765B4A22CC15C0500E69359 /* NamedColor+OnContent.swift in Sources */, 0784B2782CCBDD8900299C10 /* NamedTypography+Illustration.swift in Sources */, 077CCE572CB426090059CC28 /* SpaceTokenElement.swift in Sources */, 0735431B2CA18C48001187EA /* TypographyTokenPage.swift in Sources */, diff --git a/Showcase/Showcase/Pages/Tokens/Color/ColorTokenPage.swift b/Showcase/Showcase/Pages/Tokens/Color/ColorTokenPage.swift index c67d5b842..cf9062a01 100644 --- a/Showcase/Showcase/Pages/Tokens/Color/ColorTokenPage.swift +++ b/Showcase/Showcase/Pages/Tokens/Color/ColorTokenPage.swift @@ -53,11 +53,12 @@ struct ColorTokenPage: View { Section { illustrationForAction() } header: { header("Action") } Section { illustrationForAlways() } header: { header("Always") } Section { illustrationForContent() } header: { header("Content") } - Section { illustrationForContentOnBackground() } header: { header("Content On Background") } + Section { illustrationForTransparent() } header: { header("Transparent") } Section { illustrationForBorder() } header: { header("Border") } - Section { illustrationForeElevation() } header: { header("Elevation") } + Section { illustrationForElevation() } header: { header("Elevation") } Section { illustrationForDecorative() } header: { header("Decorative") } Section { illustrationForChart() } header: { header("Chart") } + Section { illustrationForGradient() } header: { header("Gradient") } } .padding(.horizontal, activeTheme.spaceFixedMedium) } @@ -116,9 +117,9 @@ struct ColorTokenPage: View { } } - private func illustrationForContentOnBackground() -> some View { + private func illustrationForTransparent() -> some View { VStack(alignment: .leading, spacing: activeTheme.spaceFixedNone) { - ForEach(NamedColor.ContentOnBg.allCases, id: \.rawValue) { namedColorToken in + ForEach(NamedColor.Transparent.allCases, id: \.rawValue) { namedColorToken in illustration(for: namedColorToken.token(from: activeTheme), name: namedColorToken.rawValue) } } @@ -132,7 +133,7 @@ struct ColorTokenPage: View { } } - private func illustrationForeElevation() -> some View { + private func illustrationForElevation() -> some View { VStack(alignment: .leading, spacing: activeTheme.spaceFixedNone) { ForEach(NamedColor.Elevation.allCases, id: \.rawValue) { namedColorToken in illustration(for: namedColorToken.token(from: activeTheme), name: namedColorToken.rawValue) @@ -140,6 +141,14 @@ struct ColorTokenPage: View { } } + private func illustrationForGradient() -> some View { + VStack(alignment: .leading, spacing: activeTheme.spaceFixedNone) { + ForEach(NamedColor.Gradient.allCases, id: \.rawValue) { namedColorToken in + illustration(for: namedColorToken.token(from: activeTheme), name: namedColorToken.rawValue) + } + } + } + // MARK: Common private helpers @ViewBuilder diff --git a/Showcase/Showcase/Pages/Tokens/Color/NamedColor/NamedColor+Action.swift b/Showcase/Showcase/Pages/Tokens/Color/NamedColor/NamedColor+Action.swift index 1664f8eff..d4ed073c8 100644 --- a/Showcase/Showcase/Pages/Tokens/Color/NamedColor/NamedColor+Action.swift +++ b/Showcase/Showcase/Pages/Tokens/Color/NamedColor/NamedColor+Action.swift @@ -25,7 +25,7 @@ extension NamedColor { case colorActionDisabled case colorActionDisabledOnBgEmphasized case colorActionVisited - case colorActionVistedOnBgEmphasized + case colorActionVisitedOnBgEmphasized case colorActionPrimaryEnabled case colorActionPrimaryEnabledOnBgEmphasized case colorActionPrimaryHover @@ -51,30 +51,6 @@ extension NamedColor { case colorActionNegativePressed case colorActionNegativeLoading case colorActionNegativeFocus - case colorActionOnBgActionDisabled - case colorActionOnBgActionDisabledOnBgEmphasized - case colorActionOnBgActionNegative - case colorActionOnBgActionPrimaryEnabled - case colorActionOnBgActionPrimaryEnabledOnBgEmphasized - case colorActionOnBgActionPrimaryHover - case colorActionOnBgActionPrimaryHoverOnBgEmphasized - case colorActionOnBgActionPrimaryPressed - case colorActionOnBgActionPrimaryPressedOnBgEmphasized - case colorActionOnBgActionPrimaryLoading - case colorActionOnBgActionPrimaryLoadingOnBgEmphasized - case colorActionOnBgActionPrimaryFocus - case colorActionOnBgActionPrimaryFocusOnBgEmphasized - // NOTE: #124 - Following case(s) is / are not managed because not defined values! -// case colorActionOnBgActionSecondaryEnabled -// case colorActionOnBgActionSecondaryEnabledOnBgEmphasized -// case colorActionOnBgActionSecondaryHover -// case colorActionOnBgActionSecondaryHoverOnBgEmphasized -// case colorActionOnBgActionSecondaryPressed -// case colorActionOnBgActionSecondaryPressedOnBgEmphasized -// case colorActionOnBgActionSecondaryLoading -// case colorActionOnBgActionSecondaryLoadingOnBgEmphasized -// case colorActionOnBgActionSecondaryFocus -// case colorActionOnBgActionSecondaryFocusOnBgEmphasized func token(from theme: OUDSTheme) -> MultipleColorSemanticTokens { switch self { @@ -88,8 +64,8 @@ extension NamedColor { return theme.colorActionDisabledOnBgEmphasized case .colorActionVisited: return theme.colorActionVisited - case .colorActionVistedOnBgEmphasized: - return theme.colorActionVistedOnBgEmphasized + case .colorActionVisitedOnBgEmphasized: + return theme.colorActionVisitedOnBgEmphasized case .colorActionPrimaryEnabled: return theme.colorActionPrimaryEnabled case .colorActionPrimaryEnabledOnBgEmphasized: @@ -98,7 +74,6 @@ extension NamedColor { return theme.colorActionPrimaryHover case .colorActionPrimaryHoverOnBgEmphasized: return theme.colorActionPrimaryHoverOnBgEmphasized - // NOTE: #124 - Following case(s) is / are not managed because not defined values! case .colorActionPrimaryPressed: return theme.colorActionPrimaryPressed case .colorActionPrimaryPressedOnBgEmphasized: @@ -141,53 +116,6 @@ extension NamedColor { return theme.colorActionNegativeLoading case .colorActionNegativeFocus: return theme.colorActionNegativeFocus - case .colorActionOnBgActionDisabled: - return theme.colorActionOnBgActionDisabled - case .colorActionOnBgActionDisabledOnBgEmphasized: - return theme.colorActionOnBgActionDisabledOnBgEmphasized - case .colorActionOnBgActionNegative: - return theme.colorActionOnBgActionNegative - case .colorActionOnBgActionPrimaryEnabled: - return theme.colorActionOnBgActionPrimaryEnabled - case .colorActionOnBgActionPrimaryEnabledOnBgEmphasized: - return theme.colorActionOnBgActionPrimaryEnabledOnBgEmphasized - case .colorActionOnBgActionPrimaryHover: - return theme.colorActionOnBgActionPrimaryHover - case .colorActionOnBgActionPrimaryHoverOnBgEmphasized: - return theme.colorActionOnBgActionPrimaryHoverOnBgEmphasized - case .colorActionOnBgActionPrimaryPressed: - return theme.colorActionOnBgActionPrimaryPressed - case .colorActionOnBgActionPrimaryPressedOnBgEmphasized: - return theme.colorActionOnBgActionPrimaryPressedOnBgEmphasized - case .colorActionOnBgActionPrimaryLoading: - return theme.colorActionOnBgActionPrimaryLoading - case .colorActionOnBgActionPrimaryLoadingOnBgEmphasized: - return theme.colorActionOnBgActionPrimaryLoadingOnBgEmphasized - case .colorActionOnBgActionPrimaryFocus: - return theme.colorActionOnBgActionPrimaryFocus - case .colorActionOnBgActionPrimaryFocusOnBgEmphasized: - return theme.colorActionOnBgActionPrimaryFocusOnBgEmphasized - // NOTE: #124 - Following case(s) is / are not managed because not defined values! -// case .colorActionOnBgActionSecondaryEnabled: -// return theme.colorActionOnBgActionSecondaryEnabled -// case .colorActionOnBgActionSecondaryEnabledOnBgEmphasized: -// return theme.colorActionOnBgActionSecondaryEnabledOnBgEmphasized -// case .colorActionOnBgActionSecondaryHover: -// return theme.colorActionOnBgActionSecondaryHover -// case .colorActionOnBgActionSecondaryHoverOnBgEmphasized: -// return theme.colorActionOnBgActionSecondaryHoverOnBgEmphasized -// case .colorActionOnBgActionSecondaryPressed: -// return theme.colorActionOnBgActionSecondaryPressed -// case .colorActionOnBgActionSecondaryPressedOnBgEmphasized: -// return theme.colorActionOnBgActionSecondaryPressedOnBgEmphasized -// case .colorActionOnBgActionSecondaryLoading: -// return theme.colorActionOnBgActionSecondaryLoading -// case .colorActionOnBgActionSecondaryLoadingOnBgEmphasized: -// return theme.colorActionOnBgActionSecondaryLoadingOnBgEmphasized -// case .colorActionOnBgActionSecondaryFocus: -// return theme.colorActionOnBgActionSecondaryFocus -// case .colorActionOnBgActionSecondaryFocusOnBgEmphasized: -// return theme.colorActionOnBgActionSecondaryFocusOnBgEmphasized } } } diff --git a/Showcase/Showcase/Pages/Tokens/Color/NamedColor/NamedColor+Always.swift b/Showcase/Showcase/Pages/Tokens/Color/NamedColor/NamedColor+Always.swift index 22d89feb4..cbffc7489 100644 --- a/Showcase/Showcase/Pages/Tokens/Color/NamedColor/NamedColor+Always.swift +++ b/Showcase/Showcase/Pages/Tokens/Color/NamedColor/NamedColor+Always.swift @@ -24,13 +24,13 @@ extension NamedColor { case colorAlwaysPositive case colorAlwaysInfo case colorAlwaysAccent - case colorAlwaysOnBgBlack - case colorAlwaysOnBgWhite - case colorAlwaysOnBgWarning - case colorAlwaysOnBgNegative - case colorAlwaysOnBgPositive - case colorAlwaysOnBgInfo - case colorAlwaysOnBgAccent + case colorAlwaysOnBlack + case colorAlwaysOnWhite + case colorAlwaysOnWarning + case colorAlwaysOnNegative + case colorAlwaysOnPositive + case colorAlwaysOnInfo + case colorAlwaysOnAccent func token(from theme: OUDSTheme) -> MultipleColorSemanticTokens { switch self { @@ -48,20 +48,20 @@ extension NamedColor { return theme.colorAlwaysInfo case .colorAlwaysAccent: return theme.colorAlwaysAccent - case .colorAlwaysOnBgBlack: - return theme.colorAlwaysOnBgBlack - case .colorAlwaysOnBgWhite: - return theme.colorAlwaysOnBgWhite - case .colorAlwaysOnBgWarning: - return theme.colorAlwaysOnBgWarning - case .colorAlwaysOnBgNegative: - return theme.colorAlwaysOnBgNegative - case .colorAlwaysOnBgPositive: - return theme.colorAlwaysOnBgPositive - case .colorAlwaysOnBgInfo: - return theme.colorAlwaysOnBgInfo - case .colorAlwaysOnBgAccent: - return theme.colorAlwaysOnBgAccent + case .colorAlwaysOnAccent: + return theme.colorAlwaysOnAccent + case .colorAlwaysOnBlack: + return theme.colorAlwaysOnBlack + case .colorAlwaysOnWhite: + return theme.colorAlwaysOnWhite + case .colorAlwaysOnWarning: + return theme.colorAlwaysOnWarning + case .colorAlwaysOnInfo: + return theme.colorAlwaysOnInfo + case .colorAlwaysOnNegative: + return theme.colorAlwaysOnNegative + case .colorAlwaysOnPositive: + return theme.colorAlwaysOnPositive } } } diff --git a/Showcase/Showcase/Pages/Tokens/Color/NamedColor/NamedColor+Background.swift b/Showcase/Showcase/Pages/Tokens/Color/NamedColor/NamedColor+Background.swift index 46bb0a553..1d42d304d 100644 --- a/Showcase/Showcase/Pages/Tokens/Color/NamedColor/NamedColor+Background.swift +++ b/Showcase/Showcase/Pages/Tokens/Color/NamedColor/NamedColor+Background.swift @@ -19,13 +19,9 @@ extension NamedColor { enum Background: String, CaseIterable { case colorBgPrimary case colorBgSecondary - // NOTE: #124 - Following case(s) is / are not managed because not defined values! - // case colorBgTertiary + case colorBgTertiary case colorBgEmphasized case colorBgBrandPrimary - // NOTE: #124 - Following case(s) is / are not managed because not defined values! - // case colorBgBrandSecondary - // case colorBgBrandTertiary case colorBgStatusNeutral case colorBgStatusNeutralOnBgEmphasized case colorBgStatusPositiveMuted @@ -50,18 +46,12 @@ extension NamedColor { return theme.colorBgPrimary case .colorBgSecondary: return theme.colorBgSecondary - // NOTE: #124 - Following case(s) is / are not managed because not defined values! -// case .colorBgTertiary: -// return theme.colorBgTertiary + case .colorBgTertiary: + return theme.colorBgTertiary case .colorBgEmphasized: return theme.colorBgEmphasized case .colorBgBrandPrimary: return theme.colorBgBrandPrimary - // NOTE: #124 - Following case(s) is / are not managed because not defined values! -// case .colorBgBrandSecondary: -// return theme.colorBgBrandSecondary -// case .colorBgBrandTertiary: -// return theme.colorBgBrandTertiary case .colorBgStatusNeutral: return theme.colorBgStatusNeutral case .colorBgStatusNeutralOnBgEmphasized: diff --git a/Showcase/Showcase/Pages/Tokens/Color/NamedColor/NamedColor+Border.swift b/Showcase/Showcase/Pages/Tokens/Color/NamedColor/NamedColor+Border.swift index 90c07a6c5..4ece5ce74 100644 --- a/Showcase/Showcase/Pages/Tokens/Color/NamedColor/NamedColor+Border.swift +++ b/Showcase/Showcase/Pages/Tokens/Color/NamedColor/NamedColor+Border.swift @@ -22,20 +22,11 @@ extension NamedColor { case colorBorderEmphasized case colorBorderEmphasizedOnBgEmphasized case colorBorderFocus + case colorBorderFocusInset + case colorBorderFocusInsetOnBgEmphasized case colorBorderBrandPrimaryOnBgEmphasized case colorBorderBrandPrimary - // NOTE: #124 - Following case(s) is / are not managed because not defined values! - // case colorBorderBrandSecondary - // case colorBorderBrandTertiary - // case colorBorderStatusPositive - // case colorBorderStatusInfo - // case colorBorderStatusWarning - // case colorBorderStatusNegative - // case colorBorderStatusAccent - case colorBorderOnBgBrandPrimary - // NOTE: #124 - Following case(s) is / are not managed because not defined values! - // case colorBorderOnBgBrandSecondary - // case colorBorderOnBgBrandTertiary + case colorBorderOnBrandPrimary func token(from theme: OUDSTheme) -> MultipleColorSemanticTokens { switch self { @@ -49,32 +40,16 @@ extension NamedColor { return theme.colorBorderEmphasizedOnBgEmphasized case .colorBorderFocus: return theme.colorBorderFocus + case .colorBorderFocusInset: + return theme.colorBorderFocusInset + case .colorBorderFocusInsetOnBgEmphasized: + return theme.colorBorderFocusInsetOnBgEmphasized case .colorBorderBrandPrimaryOnBgEmphasized: return theme.colorBorderBrandPrimaryOnBgEmphasized case .colorBorderBrandPrimary: return theme.colorBorderBrandPrimary - // NOTE: #124 - Following case(s) is / are not managed because not defined values! -// case .colorBorderBrandSecondary: -// return theme.colorBorderBrandSecondary -// case .colorBorderBrandTertiary: -// return theme.colorBorderBrandTertiary -// case .colorBorderStatusPositive: -// return theme.colorBorderStatusPositive -// case .colorBorderStatusInfo: -// return theme.colorBorderStatusInfo -// case .colorBorderStatusWarning: -// return theme.colorBorderStatusWarning -// case .colorBorderStatusNegative: -// return theme.colorBorderStatusNegative -// case .colorBorderStatusAccent: -// return theme.colorBorderStatusAccent - case .colorBorderOnBgBrandPrimary: - return theme.colorBorderOnBgBrandPrimary - // NOTE: #124 - Following case(s) is / are not managed because not defined values! -// case .colorBorderOnBgBrandSecondary: -// return theme.colorBorderOnBgBrandSecondary -// case .colorBorderOnBgBrandTertiary: -// return theme.colorBorderOnBgBrandTertiary + case .colorBorderOnBrandPrimary: + return theme.colorBorderOnBrandPrimary } } } diff --git a/Showcase/Showcase/Pages/Tokens/Color/NamedColor/NamedColor+Content.swift b/Showcase/Showcase/Pages/Tokens/Color/NamedColor/NamedColor+Content.swift index 37034dea5..992c1d51e 100644 --- a/Showcase/Showcase/Pages/Tokens/Color/NamedColor/NamedColor+Content.swift +++ b/Showcase/Showcase/Pages/Tokens/Color/NamedColor/NamedColor+Content.swift @@ -15,48 +15,67 @@ import OUDS import OUDSTokensSemantic // swiftlint:disable identifier_name +// swiftlint:disable function_body_length extension NamedColor { enum Content: String, CaseIterable { case colorContentDefault - case colorContentContentDefaultOnBgEmphasized + case colorContentDefaultOnBgEmphasized case colorContentMuted - case colorContentContentMutedOnBgEmphasized + case colorContentMutedOnBgEmphasized case colorContentDisabled - case colorContentContentDisabledOnBgEmphasized - case colorContentBrandPrimary - // NOTE: #124 - Following case(s) is / are not managed because not defined values! - // case colorContentBrandSecondary - // case colorContentBrandTertiary + case colorContentDisabledOnBgEmphasized case colorContentStatusPositive case colorContentStatusInfo case colorContentStatusWarning case colorContentStatusNegative - // NOTE: #124 - Following case(s) is / are not managed because not defined values! - // case colorContentStatusAccent + case colorContentBrandPrimary + case colorContentBrandPrimaryOnBgEmphasized + case colorContentOnActionDisabled + case colorContentOnActionDisabledOnBgEmphasized + case colorContentOnActionNegative + case colorContentOnActionPrimaryEnabled + case colorContentOnActionPrimaryEnabledOnBgEmphasized + case colorContentOnActionPrimaryFocus + case colorContentOnActionPrimaryFocusOnBgEmphasized + case colorContentOnActionPrimaryHover + case colorContentOnActionPrimaryHoverOnBgEmphasized + case colorContentOnActionPrimaryLoading + case colorContentOnActionPrimaryLoadingOnBgEmphasized + case colorContentOnActionPrimaryPressed + case colorContentOnActionPrimaryPressedOnBgEmphasized + case colorContentOnBrandPrimary + case colorContentOnStatusAccentEmphasized + case colorContentOnStatusAccentMuted + case colorContentOnStatusAccentMutedOnBgEmphasized + case colorContentOnStatusInfoEmphasized + case colorContentOnStatusInfoMuted + case colorContentOnStatusInfoMutedOnBgEmphasized + case colorContentOnStatusNegativeEmphasized + case colorContentOnStatusNegativeMuted + case colorContentOnStatusNegativeMutedOnBgEmphasized + case colorContentOnStatusPositiveEmphasized + case colorContentOnStatusPositiveMuted + case colorContentOnStatusPositiveMutedOnBgEmphasized + case colorContentOnStatusWarningEmphasized + case colorContentOnStatusWarningMuted + case colorContentOnStatusWarningMutedOnBgEmphasized func token(from theme: OUDSTheme) -> MultipleColorSemanticTokens { switch self { case .colorContentDefault: return theme.colorContentDefault - case .colorContentContentDefaultOnBgEmphasized: - return theme.colorContentContentDefaultOnBgEmphasized + case .colorContentDefaultOnBgEmphasized: + return theme.colorContentDefaultOnBgEmphasized case .colorContentMuted: return theme.colorContentMuted - case .colorContentContentMutedOnBgEmphasized: - return theme.colorContentContentMutedOnBgEmphasized + case .colorContentMutedOnBgEmphasized: + return theme.colorContentMutedOnBgEmphasized case .colorContentDisabled: return theme.colorContentDisabled - case .colorContentContentDisabledOnBgEmphasized: - return theme.colorContentContentDisabledOnBgEmphasized - case .colorContentBrandPrimary: - return theme.colorContentBrandPrimary - // NOTE: #124 - Following case(s) is / are not managed because not defined values! -// case .colorContentBrandSecondary: -// return theme.colorContentBrandSecondary -// case .colorContentBrandTertiary: -// return theme.colorContentBrandTertiary + case .colorContentDisabledOnBgEmphasized: + return theme.colorContentDisabledOnBgEmphasized case .colorContentStatusPositive: return theme.colorContentStatusPositive case .colorContentStatusInfo: @@ -65,12 +84,72 @@ extension NamedColor { return theme.colorContentStatusWarning case .colorContentStatusNegative: return theme.colorContentStatusNegative - // NOTE: #124 - Following case(s) is / are not managed because not defined values! -// case .colorContentStatusAccent: -// return theme.colorContentStatusAccent + case .colorContentBrandPrimary: + return theme.colorContentBrandPrimary + case .colorContentBrandPrimaryOnBgEmphasized: + return theme.colorContentBrandPrimaryOnBgEmphasized + case .colorContentOnActionDisabled: + return theme.colorContentOnActionDisabled + case .colorContentOnActionDisabledOnBgEmphasized: + return theme.colorContentOnActionDisabledOnBgEmphasized + case .colorContentOnActionNegative: + return theme.colorContentOnActionNegative + case .colorContentOnActionPrimaryEnabled: + return theme.colorContentOnActionPrimaryEnabled + case .colorContentOnActionPrimaryEnabledOnBgEmphasized: + return theme.colorContentOnActionPrimaryEnabledOnBgEmphasized + case .colorContentOnActionPrimaryFocus: + return theme.colorContentOnActionPrimaryFocus + case .colorContentOnActionPrimaryFocusOnBgEmphasized: + return theme.colorContentOnActionPrimaryFocusOnBgEmphasized + case .colorContentOnActionPrimaryHover: + return theme.colorContentOnActionPrimaryHover + case .colorContentOnActionPrimaryHoverOnBgEmphasized: + return theme.colorContentOnActionPrimaryHoverOnBgEmphasized + case .colorContentOnActionPrimaryLoading: + return theme.colorContentOnActionPrimaryLoading + case .colorContentOnActionPrimaryLoadingOnBgEmphasized: + return theme.colorContentOnActionPrimaryLoadingOnBgEmphasized + case .colorContentOnActionPrimaryPressed: + return theme.colorContentOnActionPrimaryPressed + case .colorContentOnActionPrimaryPressedOnBgEmphasized: + return theme.colorContentOnActionPrimaryPressedOnBgEmphasized + case .colorContentOnBrandPrimary: + return theme.colorContentOnBrandPrimary + case .colorContentOnStatusAccentEmphasized: + return theme.colorContentOnStatusAccentEmphasized + case .colorContentOnStatusAccentMuted: + return theme.colorContentOnStatusAccentMuted + case .colorContentOnStatusAccentMutedOnBgEmphasized: + return theme.colorContentOnStatusAccentMutedOnBgEmphasized + case .colorContentOnStatusInfoEmphasized: + return theme.colorContentOnStatusInfoEmphasized + case .colorContentOnStatusInfoMuted: + return theme.colorContentOnStatusInfoMuted + case .colorContentOnStatusInfoMutedOnBgEmphasized: + return theme.colorContentOnStatusInfoMutedOnBgEmphasized + case .colorContentOnStatusNegativeEmphasized: + return theme.colorContentOnStatusNegativeEmphasized + case .colorContentOnStatusNegativeMuted: + return theme.colorContentOnStatusNegativeMuted + case .colorContentOnStatusNegativeMutedOnBgEmphasized: + return theme.colorContentOnStatusNegativeMutedOnBgEmphasized + case .colorContentOnStatusPositiveEmphasized: + return theme.colorContentOnStatusPositiveEmphasized + case .colorContentOnStatusPositiveMuted: + return theme.colorContentOnStatusPositiveMuted + case .colorContentOnStatusPositiveMutedOnBgEmphasized: + return theme.colorContentOnStatusPositiveMutedOnBgEmphasized + case .colorContentOnStatusWarningEmphasized: + return theme.colorContentOnStatusWarningEmphasized + case .colorContentOnStatusWarningMuted: + return theme.colorContentOnStatusWarningMuted + case .colorContentOnStatusWarningMutedOnBgEmphasized: + return theme.colorContentOnStatusWarningMutedOnBgEmphasized } } } } // swiftlint:enable identifier_name +// swiftlint:enable function_body_length diff --git a/Showcase/Showcase/Pages/Tokens/Color/NamedColor/NamedColor+Decorative.swift b/Showcase/Showcase/Pages/Tokens/Color/NamedColor/NamedColor+Decorative.swift index b706fed1c..538cac441 100644 --- a/Showcase/Showcase/Pages/Tokens/Color/NamedColor/NamedColor+Decorative.swift +++ b/Showcase/Showcase/Pages/Tokens/Color/NamedColor/NamedColor+Decorative.swift @@ -19,9 +19,9 @@ import OUDSTokensSemantic extension NamedColor { enum Decorative: String, CaseIterable { - case colorDecorativePrimary - case colorDecorativeSecondary - case colorDecorativeTertiary + case colorDecorativeBrandPrimary + case colorDecorativeBrandSecondary + case colorDecorativeBrandTertiary case colorDecorativeNeutralMuted case colorDecorativeNeutralDefault case colorDecorativeNeutralEmphasized @@ -52,12 +52,12 @@ extension NamedColor { func token(from theme: OUDSTheme) -> MultipleColorSemanticTokens { switch self { - case .colorDecorativePrimary: - return theme.colorDecorativePrimary - case .colorDecorativeSecondary: - return theme.colorDecorativeSecondary - case .colorDecorativeTertiary: - return theme.colorDecorativeTertiary + case .colorDecorativeBrandPrimary: + return theme.colorDecorativeBrandPrimary + case .colorDecorativeBrandSecondary: + return theme.colorDecorativeBrandSecondary + case .colorDecorativeBrandTertiary: + return theme.colorDecorativeBrandTertiary case .colorDecorativeNeutralMuted: return theme.colorDecorativeNeutralMuted case .colorDecorativeNeutralDefault: diff --git a/Showcase/Showcase/Pages/Tokens/Color/NamedColor/NamedColor+Gradient.swift b/Showcase/Showcase/Pages/Tokens/Color/NamedColor/NamedColor+Gradient.swift new file mode 100644 index 000000000..7decdf631 --- /dev/null +++ b/Showcase/Showcase/Pages/Tokens/Color/NamedColor/NamedColor+Gradient.swift @@ -0,0 +1,42 @@ +// +// 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 OUDSTokensSemantic + +// swiftlint:disable identifier_name + +extension NamedColor { + + enum Gradient: String, CaseIterable { + case colorGradientSkeletonMiddle + case colorGradientSkeletonMiddleOnBgEmphasized + case colorGradientSkeletonStartEnd + case colorGradientSkeletonStartEndOnBgEmphasized + + func token(from theme: OUDSTheme) -> MultipleColorSemanticTokens { + switch self { + case .colorGradientSkeletonMiddle: + return theme.colorGradientSkeletonMiddle + case .colorGradientSkeletonMiddleOnBgEmphasized: + return theme.colorGradientSkeletonMiddleOnBgEmphasized + case .colorGradientSkeletonStartEnd: + return theme.colorGradientSkeletonStartEnd + case .colorGradientSkeletonStartEndOnBgEmphasized: + return theme.colorGradientSkeletonStartEndOnBgEmphasized + } + } + } +} + +// swiftlint:enable identifier_name diff --git a/Showcase/Showcase/Pages/Tokens/Color/NamedColor/NamedColor+OnContent.swift b/Showcase/Showcase/Pages/Tokens/Color/NamedColor/NamedColor+OnContent.swift deleted file mode 100644 index d7b252ae1..000000000 --- a/Showcase/Showcase/Pages/Tokens/Color/NamedColor/NamedColor+OnContent.swift +++ /dev/null @@ -1,86 +0,0 @@ -// -// 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 OUDSTokensSemantic - -// swiftlint:disable identifier_name - -extension NamedColor { - - enum ContentOnBg: String, CaseIterable { - case colorContentOnBgPrimary - // NOTE: #124 - Following case(s) is / are not managed because not defined values! - // case colorContentOnBgSecondary - // case colorContentOnBgTertiary - case colorContentOnBgStatusPositiveMuted - case colorContentOnBgStatusPositiveMutedOnBgEmphasized - case colorContentOnBgStatusPositiveEmphasized - case colorContentOnBgStatusInfoMuted - case colorContentOnBgStatusInfoMutedOnBgEmphasized - case colorContentOnBgStatusInfoEmphasized - case colorContentOnBgStatusWarningMuted - case colorContentOnBgStatusWarningMutedOnBgEmphasized - case colorContentOnBgStatusWarningEmphasized - case colorContentOnBgStatusNegativeMuted - case colorContentOnBgStatusNegativeMutedOnBgEmphasized - case colorContentOnBgStatusNegativeEmphasized - case colorContentOnBgStatusAccentMuted - case colorContentOnBgStatusAccentMutedOnBgEmphasized - case colorContentOnBgStatusAccentedEmphasized - - func token(from theme: OUDSTheme) -> MultipleColorSemanticTokens { - switch self { - case .colorContentOnBgPrimary: - return theme.colorContentOnBgPrimary - // NOTE: #124 - Following case(s) is / are not managed because not defined values! -// case .colorContentOnBgSecondary: -// return theme.colorContentOnBgSecondary -// case .colorContentOnBgTertiary: -// return theme.colorContentOnBgTertiary - case .colorContentOnBgStatusPositiveMuted: - return theme.colorContentOnBgStatusPositiveMuted - case .colorContentOnBgStatusPositiveMutedOnBgEmphasized: - return theme.colorContentOnBgStatusPositiveMutedOnBgEmphasized - case .colorContentOnBgStatusPositiveEmphasized: - return theme.colorContentOnBgStatusPositiveEmphasized - case .colorContentOnBgStatusInfoMuted: - return theme.colorContentOnBgStatusInfoMuted - case .colorContentOnBgStatusInfoMutedOnBgEmphasized: - return theme.colorContentOnBgStatusInfoMutedOnBgEmphasized - case .colorContentOnBgStatusInfoEmphasized: - return theme.colorContentOnBgStatusInfoEmphasized - case .colorContentOnBgStatusWarningMuted: - return theme.colorContentOnBgStatusWarningMuted - case .colorContentOnBgStatusWarningMutedOnBgEmphasized: - return theme.colorContentOnBgStatusWarningMutedOnBgEmphasized - case .colorContentOnBgStatusWarningEmphasized: - return theme.colorContentOnBgStatusWarningEmphasized - case .colorContentOnBgStatusNegativeMuted: - return theme.colorContentOnBgStatusNegativeMuted - case .colorContentOnBgStatusNegativeMutedOnBgEmphasized: - return theme.colorContentOnBgStatusNegativeMutedOnBgEmphasized - case .colorContentOnBgStatusNegativeEmphasized: - return theme.colorContentOnBgStatusNegativeEmphasized - case .colorContentOnBgStatusAccentMuted: - return theme.colorContentOnBgStatusAccentMuted - case .colorContentOnBgStatusAccentMutedOnBgEmphasized: - return theme.colorContentOnBgStatusAccentMutedOnBgEmphasized - case .colorContentOnBgStatusAccentedEmphasized: - return theme.colorContentOnBgStatusAccentedEmphasized - } - } - } -} - -// swiftlint:enable identifier_name diff --git a/Showcase/Showcase/Pages/Tokens/Color/NamedColor/NamedColor+Transparent.swift b/Showcase/Showcase/Pages/Tokens/Color/NamedColor/NamedColor+Transparent.swift new file mode 100644 index 000000000..ae5c8b245 --- /dev/null +++ b/Showcase/Showcase/Pages/Tokens/Color/NamedColor/NamedColor+Transparent.swift @@ -0,0 +1,29 @@ +// +// 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 OUDSTokensSemantic + +extension NamedColor { + + enum Transparent: String, CaseIterable { + case colorTransparentDefault + + func token(from theme: OUDSTheme) -> MultipleColorSemanticTokens { + switch self { + case .colorTransparentDefault: + return theme.colorTransparentDefault + } + } + } +} diff --git a/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensBorderUITests/__Snapshots__/OUDSTokenBorderUITests/testAllBordersOrangeThemeDark.borderRadiusDefault.png b/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensBorderUITests/__Snapshots__/OUDSTokenBorderUITests/testAllBordersOrangeThemeDark.borderRadiusDefault.png index 98a6df328..77b02fa45 100644 Binary files a/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensBorderUITests/__Snapshots__/OUDSTokenBorderUITests/testAllBordersOrangeThemeDark.borderRadiusDefault.png and b/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensBorderUITests/__Snapshots__/OUDSTokenBorderUITests/testAllBordersOrangeThemeDark.borderRadiusDefault.png differ diff --git a/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensBorderUITests/__Snapshots__/OUDSTokenBorderUITests/testAllBordersOrangeThemeDark.borderRadiusMedium.png b/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensBorderUITests/__Snapshots__/OUDSTokenBorderUITests/testAllBordersOrangeThemeDark.borderRadiusMedium.png index 39b32cc0c..734f92234 100644 Binary files a/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensBorderUITests/__Snapshots__/OUDSTokenBorderUITests/testAllBordersOrangeThemeDark.borderRadiusMedium.png and b/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensBorderUITests/__Snapshots__/OUDSTokenBorderUITests/testAllBordersOrangeThemeDark.borderRadiusMedium.png differ diff --git a/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensBorderUITests/__Snapshots__/OUDSTokenBorderUITests/testAllBordersOrangeThemeDark.borderRadiusNone.png b/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensBorderUITests/__Snapshots__/OUDSTokenBorderUITests/testAllBordersOrangeThemeDark.borderRadiusNone.png index 492ef8a1b..5b212280f 100644 Binary files a/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensBorderUITests/__Snapshots__/OUDSTokenBorderUITests/testAllBordersOrangeThemeDark.borderRadiusNone.png and b/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensBorderUITests/__Snapshots__/OUDSTokenBorderUITests/testAllBordersOrangeThemeDark.borderRadiusNone.png differ diff --git a/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensBorderUITests/__Snapshots__/OUDSTokenBorderUITests/testAllBordersOrangeThemeDark.borderRadiusShort.png b/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensBorderUITests/__Snapshots__/OUDSTokenBorderUITests/testAllBordersOrangeThemeDark.borderRadiusShort.png index 690673874..69c1b1f2b 100644 Binary files a/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensBorderUITests/__Snapshots__/OUDSTokenBorderUITests/testAllBordersOrangeThemeDark.borderRadiusShort.png and b/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensBorderUITests/__Snapshots__/OUDSTokenBorderUITests/testAllBordersOrangeThemeDark.borderRadiusShort.png differ diff --git a/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensBorderUITests/__Snapshots__/OUDSTokenBorderUITests/testAllBordersOrangeThemeDark.borderRadiusTall.png b/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensBorderUITests/__Snapshots__/OUDSTokenBorderUITests/testAllBordersOrangeThemeDark.borderRadiusTall.png index 8c44a9c42..16db90006 100644 Binary files a/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensBorderUITests/__Snapshots__/OUDSTokenBorderUITests/testAllBordersOrangeThemeDark.borderRadiusTall.png and b/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensBorderUITests/__Snapshots__/OUDSTokenBorderUITests/testAllBordersOrangeThemeDark.borderRadiusTall.png differ diff --git a/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensBorderUITests/__Snapshots__/OUDSTokenBorderUITests/testAllBordersOrangeThemeDark.borderStyleDefault.png b/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensBorderUITests/__Snapshots__/OUDSTokenBorderUITests/testAllBordersOrangeThemeDark.borderStyleDefault.png index fdcb4f8b5..72c844a41 100644 Binary files a/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensBorderUITests/__Snapshots__/OUDSTokenBorderUITests/testAllBordersOrangeThemeDark.borderStyleDefault.png and b/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensBorderUITests/__Snapshots__/OUDSTokenBorderUITests/testAllBordersOrangeThemeDark.borderStyleDefault.png differ diff --git a/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensBorderUITests/__Snapshots__/OUDSTokenBorderUITests/testAllBordersOrangeThemeDark.borderStyleDrag.png b/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensBorderUITests/__Snapshots__/OUDSTokenBorderUITests/testAllBordersOrangeThemeDark.borderStyleDrag.png index 7ab38eab2..069e3b473 100644 Binary files a/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensBorderUITests/__Snapshots__/OUDSTokenBorderUITests/testAllBordersOrangeThemeDark.borderStyleDrag.png and b/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensBorderUITests/__Snapshots__/OUDSTokenBorderUITests/testAllBordersOrangeThemeDark.borderStyleDrag.png differ diff --git a/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensBorderUITests/__Snapshots__/OUDSTokenBorderUITests/testAllBordersOrangeThemeDark.borderWidthDefault.png b/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensBorderUITests/__Snapshots__/OUDSTokenBorderUITests/testAllBordersOrangeThemeDark.borderWidthDefault.png index 4d67196e4..a506aa677 100644 Binary files a/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensBorderUITests/__Snapshots__/OUDSTokenBorderUITests/testAllBordersOrangeThemeDark.borderWidthDefault.png and b/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensBorderUITests/__Snapshots__/OUDSTokenBorderUITests/testAllBordersOrangeThemeDark.borderWidthDefault.png differ diff --git a/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensBorderUITests/__Snapshots__/OUDSTokenBorderUITests/testAllBordersOrangeThemeDark.borderWidthFocus.png b/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensBorderUITests/__Snapshots__/OUDSTokenBorderUITests/testAllBordersOrangeThemeDark.borderWidthFocus.png index fed54bc0b..c131a1fd1 100644 Binary files a/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensBorderUITests/__Snapshots__/OUDSTokenBorderUITests/testAllBordersOrangeThemeDark.borderWidthFocus.png and b/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensBorderUITests/__Snapshots__/OUDSTokenBorderUITests/testAllBordersOrangeThemeDark.borderWidthFocus.png differ diff --git a/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensBorderUITests/__Snapshots__/OUDSTokenBorderUITests/testAllBordersOrangeThemeDark.borderWidthFocusInset.png b/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensBorderUITests/__Snapshots__/OUDSTokenBorderUITests/testAllBordersOrangeThemeDark.borderWidthFocusInset.png index 5f4a28309..d2b1f4482 100644 Binary files a/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensBorderUITests/__Snapshots__/OUDSTokenBorderUITests/testAllBordersOrangeThemeDark.borderWidthFocusInset.png and b/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensBorderUITests/__Snapshots__/OUDSTokenBorderUITests/testAllBordersOrangeThemeDark.borderWidthFocusInset.png differ diff --git a/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensBorderUITests/__Snapshots__/OUDSTokenBorderUITests/testAllBordersOrangeThemeDark.borderWidthMedium.png b/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensBorderUITests/__Snapshots__/OUDSTokenBorderUITests/testAllBordersOrangeThemeDark.borderWidthMedium.png index 2992c1d63..852d12247 100644 Binary files a/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensBorderUITests/__Snapshots__/OUDSTokenBorderUITests/testAllBordersOrangeThemeDark.borderWidthMedium.png and b/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensBorderUITests/__Snapshots__/OUDSTokenBorderUITests/testAllBordersOrangeThemeDark.borderWidthMedium.png differ diff --git a/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensBorderUITests/__Snapshots__/OUDSTokenBorderUITests/testAllBordersOrangeThemeDark.borderWidthNone.png b/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensBorderUITests/__Snapshots__/OUDSTokenBorderUITests/testAllBordersOrangeThemeDark.borderWidthNone.png index acd563fda..ca9a760a9 100644 Binary files a/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensBorderUITests/__Snapshots__/OUDSTokenBorderUITests/testAllBordersOrangeThemeDark.borderWidthNone.png and b/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensBorderUITests/__Snapshots__/OUDSTokenBorderUITests/testAllBordersOrangeThemeDark.borderWidthNone.png differ diff --git a/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensBorderUITests/__Snapshots__/OUDSTokenBorderUITests/testAllBordersOrangeThemeDark.borderWidthThick.png b/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensBorderUITests/__Snapshots__/OUDSTokenBorderUITests/testAllBordersOrangeThemeDark.borderWidthThick.png index bc9b07bd6..d03818e08 100644 Binary files a/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensBorderUITests/__Snapshots__/OUDSTokenBorderUITests/testAllBordersOrangeThemeDark.borderWidthThick.png and b/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensBorderUITests/__Snapshots__/OUDSTokenBorderUITests/testAllBordersOrangeThemeDark.borderWidthThick.png differ diff --git a/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensBorderUITests/__Snapshots__/OUDSTokenBorderUITests/testAllBordersOrangeThemeDark.borderWidthThicker.png b/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensBorderUITests/__Snapshots__/OUDSTokenBorderUITests/testAllBordersOrangeThemeDark.borderWidthThicker.png index 8ba1ead25..b95098e62 100644 Binary files a/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensBorderUITests/__Snapshots__/OUDSTokenBorderUITests/testAllBordersOrangeThemeDark.borderWidthThicker.png and b/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensBorderUITests/__Snapshots__/OUDSTokenBorderUITests/testAllBordersOrangeThemeDark.borderWidthThicker.png differ diff --git a/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensBorderUITests/__Snapshots__/OUDSTokenBorderUITests/testAllBordersOrangeThemeDark.borderWidthThin.png b/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensBorderUITests/__Snapshots__/OUDSTokenBorderUITests/testAllBordersOrangeThemeDark.borderWidthThin.png index a7a7f1156..211fa7bf1 100644 Binary files a/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensBorderUITests/__Snapshots__/OUDSTokenBorderUITests/testAllBordersOrangeThemeDark.borderWidthThin.png and b/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensBorderUITests/__Snapshots__/OUDSTokenBorderUITests/testAllBordersOrangeThemeDark.borderWidthThin.png differ diff --git a/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/OUDSTokensColorUITests.swift b/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/OUDSTokensColorUITests.swift index 9d1377a82..85cc70481 100644 --- a/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/OUDSTokensColorUITests.swift +++ b/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/OUDSTokensColorUITests.swift @@ -39,11 +39,12 @@ final class OUDSTokensColorUITests: XCTestCase { testActionColors(using: colorPage, theme: OrangeTheme(), interfaceStyle: .light, colorScheme: .light) testAlwaysColors(using: colorPage, theme: OrangeTheme(), interfaceStyle: .light, colorScheme: .light) testContentColors(using: colorPage, theme: OrangeTheme(), interfaceStyle: .light, colorScheme: .light) - testContentOnBgColors(using: colorPage, theme: OrangeTheme(), interfaceStyle: .light, colorScheme: .light) + testTransparentColors(using: colorPage, theme: OrangeTheme(), interfaceStyle: .light, colorScheme: .light) testBorderColors(using: colorPage, theme: OrangeTheme(), interfaceStyle: .light, colorScheme: .light) testElevationColors(using: colorPage, theme: OrangeTheme(), interfaceStyle: .light, colorScheme: .light) testDecorativeColors(using: colorPage, theme: OrangeTheme(), interfaceStyle: .light, colorScheme: .light) testChartColors(using: colorPage, theme: OrangeTheme(), interfaceStyle: .light, colorScheme: .light) + testGradientColors(using: colorPage, theme: OrangeTheme(), interfaceStyle: .light, colorScheme: .light) } // MARK: - Orange Theme Dark Mode Color Tests @@ -60,11 +61,12 @@ final class OUDSTokensColorUITests: XCTestCase { testActionColors(using: colorPage, theme: OrangeTheme(), interfaceStyle: .dark, colorScheme: .dark) testAlwaysColors(using: colorPage, theme: OrangeTheme(), interfaceStyle: .dark, colorScheme: .dark) testContentColors(using: colorPage, theme: OrangeTheme(), interfaceStyle: .dark, colorScheme: .dark) - testContentOnBgColors(using: colorPage, theme: OrangeTheme(), interfaceStyle: .dark, colorScheme: .dark) + testTransparentColors(using: colorPage, theme: OrangeTheme(), interfaceStyle: .dark, colorScheme: .light) testBorderColors(using: colorPage, theme: OrangeTheme(), interfaceStyle: .dark, colorScheme: .dark) testElevationColors(using: colorPage, theme: OrangeTheme(), interfaceStyle: .dark, colorScheme: .dark) testDecorativeColors(using: colorPage, theme: OrangeTheme(), interfaceStyle: .dark, colorScheme: .dark) testChartColors(using: colorPage, theme: OrangeTheme(), interfaceStyle: .dark, colorScheme: .dark) + testGradientColors(using: colorPage, theme: OrangeTheme(), interfaceStyle: .dark, colorScheme: .dark) } // MARK: - Inverse Theme Light Mode Color Tests @@ -81,11 +83,12 @@ final class OUDSTokensColorUITests: XCTestCase { testActionColors(using: colorPage, theme: InverseTheme(), interfaceStyle: .light, colorScheme: .light) testAlwaysColors(using: colorPage, theme: InverseTheme(), interfaceStyle: .light, colorScheme: .light) testContentColors(using: colorPage, theme: InverseTheme(), interfaceStyle: .light, colorScheme: .light) - testContentOnBgColors(using: colorPage, theme: InverseTheme(), interfaceStyle: .light, colorScheme: .light) + testTransparentColors(using: colorPage, theme: InverseTheme(), interfaceStyle: .light, colorScheme: .light) testBorderColors(using: colorPage, theme: InverseTheme(), interfaceStyle: .light, colorScheme: .light) testElevationColors(using: colorPage, theme: InverseTheme(), interfaceStyle: .light, colorScheme: .light) testDecorativeColors(using: colorPage, theme: InverseTheme(), interfaceStyle: .light, colorScheme: .light) testChartColors(using: colorPage, theme: InverseTheme(), interfaceStyle: .light, colorScheme: .light) + testGradientColors(using: colorPage, theme: InverseTheme(), interfaceStyle: .light, colorScheme: .light) } // MARK: - Inverse Theme Dark Mode Color Tests @@ -102,11 +105,12 @@ final class OUDSTokensColorUITests: XCTestCase { testActionColors(using: colorPage, theme: InverseTheme(), interfaceStyle: .dark, colorScheme: .dark) testAlwaysColors(using: colorPage, theme: InverseTheme(), interfaceStyle: .dark, colorScheme: .dark) testContentColors(using: colorPage, theme: InverseTheme(), interfaceStyle: .dark, colorScheme: .dark) - testContentOnBgColors(using: colorPage, theme: InverseTheme(), interfaceStyle: .dark, colorScheme: .dark) + testTransparentColors(using: colorPage, theme: InverseTheme(), interfaceStyle: .light, colorScheme: .dark) testBorderColors(using: colorPage, theme: InverseTheme(), interfaceStyle: .dark, colorScheme: .dark) testElevationColors(using: colorPage, theme: InverseTheme(), interfaceStyle: .dark, colorScheme: .dark) testDecorativeColors(using: colorPage, theme: InverseTheme(), interfaceStyle: .dark, colorScheme: .dark) testChartColors(using: colorPage, theme: InverseTheme(), interfaceStyle: .dark, colorScheme: .dark) + testGradientColors(using: colorPage, theme: InverseTheme(), interfaceStyle: .dark, colorScheme: .dark) } // MARK: - Helpers @@ -223,16 +227,44 @@ final class OUDSTokensColorUITests: XCTestCase { } } - /// This function tests colors for the `ContentOnBg` category of the given theme. + /// This function tests colors for the `Transparent` category of the given theme. /// It captures snapshots for each background color in the specified theme and interfaceStyle (light or dark). /// - Parameters: /// - colorPage: The ColorTokenPage instance used to generate illustrations for the colors. /// - theme: The theme (OUDSTheme) from which to retrieve color tokens. /// - interfaceStyle: The user interface style (light or dark) for which to test the colors. /// - colorScheme: The color scheme (light or dark) to be used for testing - @MainActor private func testContentOnBgColors(using colorPage: ColorTokenPage, theme: OUDSTheme, interfaceStyle: UIUserInterfaceStyle, colorScheme: ColorScheme) { - // Iterate through all background color cases defined in NamedColor.ContentOnBg - for color in NamedColor.ContentOnBg.allCases { + @MainActor private func testTransparentColors(using colorPage: ColorTokenPage, theme: OUDSTheme, interfaceStyle: UIUserInterfaceStyle, colorScheme: ColorScheme) { + // Iterate through all background color cases defined in NamedColor.Transparent + for color in NamedColor.Transparent.allCases { + // Retrieve the corresponding color token from the provided theme + let token = color.token(from: theme) + + // Generate the illustration for the specified color token using the colorPage instance + let illustration = colorPage.illustration(for: token, name: color.rawValue) + .background(theme.colorBgPrimary.color(for: colorScheme)) + + // Encapsulate the generated illustration in a UIHostingController for snapshot testing + let hostingVC = UIHostingController(rootView: illustration) + + // Create a unique snapshot name based on the current interfaceStyle (light or dark) and the color's raw value + let snapshotName = "\(theme.name)_\(color.rawValue)_\(interfaceStyle == .light ? "Light" : "Dark")" + + // Capture the snapshot of the illustration with the correct user interface style and save it with the snapshot name + assertSnapshot(of: hostingVC, as: .image(traits: UITraitCollection(userInterfaceStyle: interfaceStyle)), named: snapshotName) + } + } + + /// This function tests colors for the `Gradient` category of the given theme. + /// It captures snapshots for each background color in the specified theme and interfaceStyle (light or dark). + /// - Parameters: + /// - colorPage: The ColorTokenPage instance used to generate illustrations for the colors. + /// - theme: The theme (OUDSTheme) from which to retrieve color tokens. + /// - interfaceStyle: The user interface style (light or dark) for which to test the colors. + /// - colorScheme: The color scheme (light or dark) to be used for testing + @MainActor private func testGradientColors(using colorPage: ColorTokenPage, theme: OUDSTheme, interfaceStyle: UIUserInterfaceStyle, colorScheme: ColorScheme) { + // Iterate through all background color cases defined in NamedColor.Gradient + for color in NamedColor.Gradient.allCases { // Retrieve the corresponding color token from the provided theme let token = color.token(from: theme) diff --git a/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testActionColors-using-theme-interfaceStyle-colorScheme.Inverse_colorActionOnBgActionDisabledOnBgEmphasized_Dark.png b/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testActionColors-using-theme-interfaceStyle-colorScheme.Inverse_colorActionOnBgActionDisabledOnBgEmphasized_Dark.png deleted file mode 100644 index 6f440c75f..000000000 Binary files a/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testActionColors-using-theme-interfaceStyle-colorScheme.Inverse_colorActionOnBgActionDisabledOnBgEmphasized_Dark.png and /dev/null differ diff --git a/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testActionColors-using-theme-interfaceStyle-colorScheme.Inverse_colorActionOnBgActionDisabledOnBgEmphasized_Light.png b/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testActionColors-using-theme-interfaceStyle-colorScheme.Inverse_colorActionOnBgActionDisabledOnBgEmphasized_Light.png deleted file mode 100644 index c1c49b22b..000000000 Binary files a/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testActionColors-using-theme-interfaceStyle-colorScheme.Inverse_colorActionOnBgActionDisabledOnBgEmphasized_Light.png and /dev/null differ diff --git a/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testActionColors-using-theme-interfaceStyle-colorScheme.Inverse_colorActionOnBgActionDisabled_Dark.png b/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testActionColors-using-theme-interfaceStyle-colorScheme.Inverse_colorActionOnBgActionDisabled_Dark.png deleted file mode 100644 index 99dbd459b..000000000 Binary files a/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testActionColors-using-theme-interfaceStyle-colorScheme.Inverse_colorActionOnBgActionDisabled_Dark.png and /dev/null differ diff --git a/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testActionColors-using-theme-interfaceStyle-colorScheme.Inverse_colorActionOnBgActionDisabled_Light.png b/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testActionColors-using-theme-interfaceStyle-colorScheme.Inverse_colorActionOnBgActionDisabled_Light.png deleted file mode 100644 index e00d101cc..000000000 Binary files a/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testActionColors-using-theme-interfaceStyle-colorScheme.Inverse_colorActionOnBgActionDisabled_Light.png and /dev/null differ diff --git a/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testActionColors-using-theme-interfaceStyle-colorScheme.Inverse_colorActionOnBgActionNegative_Dark.png b/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testActionColors-using-theme-interfaceStyle-colorScheme.Inverse_colorActionOnBgActionNegative_Dark.png deleted file mode 100644 index e48aa245a..000000000 Binary files a/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testActionColors-using-theme-interfaceStyle-colorScheme.Inverse_colorActionOnBgActionNegative_Dark.png and /dev/null differ diff --git a/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testActionColors-using-theme-interfaceStyle-colorScheme.Inverse_colorActionOnBgActionNegative_Light.png b/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testActionColors-using-theme-interfaceStyle-colorScheme.Inverse_colorActionOnBgActionNegative_Light.png deleted file mode 100644 index a3b6ace40..000000000 Binary files a/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testActionColors-using-theme-interfaceStyle-colorScheme.Inverse_colorActionOnBgActionNegative_Light.png and /dev/null differ diff --git a/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testActionColors-using-theme-interfaceStyle-colorScheme.Inverse_colorActionOnBgActionPrimaryEnabledOnBgEmphasized_Dark.png b/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testActionColors-using-theme-interfaceStyle-colorScheme.Inverse_colorActionOnBgActionPrimaryEnabledOnBgEmphasized_Dark.png deleted file mode 100644 index 1bd7abb38..000000000 Binary files a/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testActionColors-using-theme-interfaceStyle-colorScheme.Inverse_colorActionOnBgActionPrimaryEnabledOnBgEmphasized_Dark.png and /dev/null differ diff --git a/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testActionColors-using-theme-interfaceStyle-colorScheme.Inverse_colorActionOnBgActionPrimaryEnabledOnBgEmphasized_Light.png b/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testActionColors-using-theme-interfaceStyle-colorScheme.Inverse_colorActionOnBgActionPrimaryEnabledOnBgEmphasized_Light.png deleted file mode 100644 index 45008c453..000000000 Binary files a/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testActionColors-using-theme-interfaceStyle-colorScheme.Inverse_colorActionOnBgActionPrimaryEnabledOnBgEmphasized_Light.png and /dev/null differ diff --git a/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testActionColors-using-theme-interfaceStyle-colorScheme.Inverse_colorActionOnBgActionPrimaryEnabled_Dark.png b/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testActionColors-using-theme-interfaceStyle-colorScheme.Inverse_colorActionOnBgActionPrimaryEnabled_Dark.png deleted file mode 100644 index f5ce2e18c..000000000 Binary files a/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testActionColors-using-theme-interfaceStyle-colorScheme.Inverse_colorActionOnBgActionPrimaryEnabled_Dark.png and /dev/null differ diff --git a/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testActionColors-using-theme-interfaceStyle-colorScheme.Inverse_colorActionOnBgActionPrimaryEnabled_Light.png b/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testActionColors-using-theme-interfaceStyle-colorScheme.Inverse_colorActionOnBgActionPrimaryEnabled_Light.png deleted file mode 100644 index cef572c3e..000000000 Binary files a/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testActionColors-using-theme-interfaceStyle-colorScheme.Inverse_colorActionOnBgActionPrimaryEnabled_Light.png and /dev/null differ diff --git a/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testActionColors-using-theme-interfaceStyle-colorScheme.Inverse_colorActionOnBgActionPrimaryFocusOnBgEmphasized_Dark.png b/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testActionColors-using-theme-interfaceStyle-colorScheme.Inverse_colorActionOnBgActionPrimaryFocusOnBgEmphasized_Dark.png deleted file mode 100644 index b3e30bafc..000000000 Binary files a/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testActionColors-using-theme-interfaceStyle-colorScheme.Inverse_colorActionOnBgActionPrimaryFocusOnBgEmphasized_Dark.png and /dev/null differ diff --git a/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testActionColors-using-theme-interfaceStyle-colorScheme.Inverse_colorActionOnBgActionPrimaryFocusOnBgEmphasized_Light.png b/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testActionColors-using-theme-interfaceStyle-colorScheme.Inverse_colorActionOnBgActionPrimaryFocusOnBgEmphasized_Light.png deleted file mode 100644 index 683c076fb..000000000 Binary files a/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testActionColors-using-theme-interfaceStyle-colorScheme.Inverse_colorActionOnBgActionPrimaryFocusOnBgEmphasized_Light.png and /dev/null differ diff --git a/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testActionColors-using-theme-interfaceStyle-colorScheme.Inverse_colorActionOnBgActionPrimaryFocus_Dark.png b/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testActionColors-using-theme-interfaceStyle-colorScheme.Inverse_colorActionOnBgActionPrimaryFocus_Dark.png deleted file mode 100644 index 081e765a2..000000000 Binary files a/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testActionColors-using-theme-interfaceStyle-colorScheme.Inverse_colorActionOnBgActionPrimaryFocus_Dark.png and /dev/null differ diff --git a/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testActionColors-using-theme-interfaceStyle-colorScheme.Inverse_colorActionOnBgActionPrimaryFocus_Light.png b/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testActionColors-using-theme-interfaceStyle-colorScheme.Inverse_colorActionOnBgActionPrimaryFocus_Light.png deleted file mode 100644 index 20bc68b09..000000000 Binary files a/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testActionColors-using-theme-interfaceStyle-colorScheme.Inverse_colorActionOnBgActionPrimaryFocus_Light.png and /dev/null differ diff --git a/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testActionColors-using-theme-interfaceStyle-colorScheme.Inverse_colorActionOnBgActionPrimaryHoverOnBgEmphasized_Dark.png b/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testActionColors-using-theme-interfaceStyle-colorScheme.Inverse_colorActionOnBgActionPrimaryHoverOnBgEmphasized_Dark.png deleted file mode 100644 index 6b5ea6fd7..000000000 Binary files a/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testActionColors-using-theme-interfaceStyle-colorScheme.Inverse_colorActionOnBgActionPrimaryHoverOnBgEmphasized_Dark.png and /dev/null differ diff --git a/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testActionColors-using-theme-interfaceStyle-colorScheme.Inverse_colorActionOnBgActionPrimaryHoverOnBgEmphasized_Light.png b/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testActionColors-using-theme-interfaceStyle-colorScheme.Inverse_colorActionOnBgActionPrimaryHoverOnBgEmphasized_Light.png deleted file mode 100644 index 0ce834d76..000000000 Binary files a/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testActionColors-using-theme-interfaceStyle-colorScheme.Inverse_colorActionOnBgActionPrimaryHoverOnBgEmphasized_Light.png and /dev/null differ diff --git a/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testActionColors-using-theme-interfaceStyle-colorScheme.Inverse_colorActionOnBgActionPrimaryHover_Dark.png b/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testActionColors-using-theme-interfaceStyle-colorScheme.Inverse_colorActionOnBgActionPrimaryHover_Dark.png deleted file mode 100644 index f7719d0ad..000000000 Binary files a/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testActionColors-using-theme-interfaceStyle-colorScheme.Inverse_colorActionOnBgActionPrimaryHover_Dark.png and /dev/null differ diff --git a/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testActionColors-using-theme-interfaceStyle-colorScheme.Inverse_colorActionOnBgActionPrimaryHover_Light.png b/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testActionColors-using-theme-interfaceStyle-colorScheme.Inverse_colorActionOnBgActionPrimaryHover_Light.png deleted file mode 100644 index 594c79e9f..000000000 Binary files a/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testActionColors-using-theme-interfaceStyle-colorScheme.Inverse_colorActionOnBgActionPrimaryHover_Light.png and /dev/null differ diff --git a/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testActionColors-using-theme-interfaceStyle-colorScheme.Inverse_colorActionOnBgActionPrimaryLoadingOnBgEmphasized_Dark.png b/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testActionColors-using-theme-interfaceStyle-colorScheme.Inverse_colorActionOnBgActionPrimaryLoadingOnBgEmphasized_Dark.png deleted file mode 100644 index 71f38415d..000000000 Binary files a/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testActionColors-using-theme-interfaceStyle-colorScheme.Inverse_colorActionOnBgActionPrimaryLoadingOnBgEmphasized_Dark.png and /dev/null differ diff --git a/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testActionColors-using-theme-interfaceStyle-colorScheme.Inverse_colorActionOnBgActionPrimaryLoadingOnBgEmphasized_Light.png b/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testActionColors-using-theme-interfaceStyle-colorScheme.Inverse_colorActionOnBgActionPrimaryLoadingOnBgEmphasized_Light.png deleted file mode 100644 index 83056f32d..000000000 Binary files a/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testActionColors-using-theme-interfaceStyle-colorScheme.Inverse_colorActionOnBgActionPrimaryLoadingOnBgEmphasized_Light.png and /dev/null differ diff --git a/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testActionColors-using-theme-interfaceStyle-colorScheme.Inverse_colorActionOnBgActionPrimaryLoading_Dark.png b/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testActionColors-using-theme-interfaceStyle-colorScheme.Inverse_colorActionOnBgActionPrimaryLoading_Dark.png deleted file mode 100644 index 1da1c1048..000000000 Binary files a/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testActionColors-using-theme-interfaceStyle-colorScheme.Inverse_colorActionOnBgActionPrimaryLoading_Dark.png and /dev/null differ diff --git a/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testActionColors-using-theme-interfaceStyle-colorScheme.Inverse_colorActionOnBgActionPrimaryLoading_Light.png b/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testActionColors-using-theme-interfaceStyle-colorScheme.Inverse_colorActionOnBgActionPrimaryLoading_Light.png deleted file mode 100644 index 7bd614c67..000000000 Binary files a/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testActionColors-using-theme-interfaceStyle-colorScheme.Inverse_colorActionOnBgActionPrimaryLoading_Light.png and /dev/null differ diff --git a/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testActionColors-using-theme-interfaceStyle-colorScheme.Inverse_colorActionOnBgActionPrimaryPressedOnBgEmphasized_Dark.png b/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testActionColors-using-theme-interfaceStyle-colorScheme.Inverse_colorActionOnBgActionPrimaryPressedOnBgEmphasized_Dark.png deleted file mode 100644 index ad9bd82a2..000000000 Binary files a/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testActionColors-using-theme-interfaceStyle-colorScheme.Inverse_colorActionOnBgActionPrimaryPressedOnBgEmphasized_Dark.png and /dev/null differ diff --git a/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testActionColors-using-theme-interfaceStyle-colorScheme.Inverse_colorActionOnBgActionPrimaryPressedOnBgEmphasized_Light.png b/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testActionColors-using-theme-interfaceStyle-colorScheme.Inverse_colorActionOnBgActionPrimaryPressedOnBgEmphasized_Light.png deleted file mode 100644 index 374b79835..000000000 Binary files a/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testActionColors-using-theme-interfaceStyle-colorScheme.Inverse_colorActionOnBgActionPrimaryPressedOnBgEmphasized_Light.png and /dev/null differ diff --git a/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testActionColors-using-theme-interfaceStyle-colorScheme.Inverse_colorActionOnBgActionPrimaryPressed_Dark.png b/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testActionColors-using-theme-interfaceStyle-colorScheme.Inverse_colorActionOnBgActionPrimaryPressed_Dark.png deleted file mode 100644 index 4b5704f2c..000000000 Binary files a/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testActionColors-using-theme-interfaceStyle-colorScheme.Inverse_colorActionOnBgActionPrimaryPressed_Dark.png and /dev/null differ diff --git a/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testActionColors-using-theme-interfaceStyle-colorScheme.Inverse_colorActionOnBgActionPrimaryPressed_Light.png b/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testActionColors-using-theme-interfaceStyle-colorScheme.Inverse_colorActionOnBgActionPrimaryPressed_Light.png deleted file mode 100644 index 28e418bf3..000000000 Binary files a/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testActionColors-using-theme-interfaceStyle-colorScheme.Inverse_colorActionOnBgActionPrimaryPressed_Light.png and /dev/null differ diff --git a/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testActionColors-using-theme-interfaceStyle-colorScheme.Inverse_colorActionVisitedOnBgEmphasized_Dark.png b/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testActionColors-using-theme-interfaceStyle-colorScheme.Inverse_colorActionVisitedOnBgEmphasized_Dark.png new file mode 100644 index 000000000..ff99f4756 Binary files /dev/null and b/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testActionColors-using-theme-interfaceStyle-colorScheme.Inverse_colorActionVisitedOnBgEmphasized_Dark.png differ diff --git a/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testActionColors-using-theme-interfaceStyle-colorScheme.Inverse_colorActionVisitedOnBgEmphasized_Light.png b/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testActionColors-using-theme-interfaceStyle-colorScheme.Inverse_colorActionVisitedOnBgEmphasized_Light.png new file mode 100644 index 000000000..794cc7578 Binary files /dev/null and b/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testActionColors-using-theme-interfaceStyle-colorScheme.Inverse_colorActionVisitedOnBgEmphasized_Light.png differ diff --git a/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testActionColors-using-theme-interfaceStyle-colorScheme.Inverse_colorActionVistedOnBgEmphasized_Dark.png b/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testActionColors-using-theme-interfaceStyle-colorScheme.Inverse_colorActionVistedOnBgEmphasized_Dark.png deleted file mode 100644 index 5651f5529..000000000 Binary files a/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testActionColors-using-theme-interfaceStyle-colorScheme.Inverse_colorActionVistedOnBgEmphasized_Dark.png and /dev/null differ diff --git a/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testActionColors-using-theme-interfaceStyle-colorScheme.Inverse_colorActionVistedOnBgEmphasized_Light.png b/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testActionColors-using-theme-interfaceStyle-colorScheme.Inverse_colorActionVistedOnBgEmphasized_Light.png deleted file mode 100644 index 1a03d88f7..000000000 Binary files a/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testActionColors-using-theme-interfaceStyle-colorScheme.Inverse_colorActionVistedOnBgEmphasized_Light.png and /dev/null differ diff --git a/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testActionColors-using-theme-interfaceStyle-colorScheme.Orange_colorActionDisabledOnBgEmphasized_Dark.png b/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testActionColors-using-theme-interfaceStyle-colorScheme.Orange_colorActionDisabledOnBgEmphasized_Dark.png index ffb6ddcee..c057df2c4 100644 Binary files a/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testActionColors-using-theme-interfaceStyle-colorScheme.Orange_colorActionDisabledOnBgEmphasized_Dark.png and b/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testActionColors-using-theme-interfaceStyle-colorScheme.Orange_colorActionDisabledOnBgEmphasized_Dark.png differ diff --git a/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testActionColors-using-theme-interfaceStyle-colorScheme.Orange_colorActionDisabled_Dark.png b/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testActionColors-using-theme-interfaceStyle-colorScheme.Orange_colorActionDisabled_Dark.png index f6a3a27b9..e4a420704 100644 Binary files a/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testActionColors-using-theme-interfaceStyle-colorScheme.Orange_colorActionDisabled_Dark.png and b/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testActionColors-using-theme-interfaceStyle-colorScheme.Orange_colorActionDisabled_Dark.png differ diff --git a/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testActionColors-using-theme-interfaceStyle-colorScheme.Orange_colorActionNegativeEnabled_Dark.png b/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testActionColors-using-theme-interfaceStyle-colorScheme.Orange_colorActionNegativeEnabled_Dark.png index 214ceb1c0..255c37607 100644 Binary files a/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testActionColors-using-theme-interfaceStyle-colorScheme.Orange_colorActionNegativeEnabled_Dark.png and b/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testActionColors-using-theme-interfaceStyle-colorScheme.Orange_colorActionNegativeEnabled_Dark.png differ diff --git a/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testActionColors-using-theme-interfaceStyle-colorScheme.Orange_colorActionNegativeFocus_Dark.png b/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testActionColors-using-theme-interfaceStyle-colorScheme.Orange_colorActionNegativeFocus_Dark.png index fc9be7c4a..5dc12efe2 100644 Binary files a/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testActionColors-using-theme-interfaceStyle-colorScheme.Orange_colorActionNegativeFocus_Dark.png and b/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testActionColors-using-theme-interfaceStyle-colorScheme.Orange_colorActionNegativeFocus_Dark.png differ diff --git a/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testActionColors-using-theme-interfaceStyle-colorScheme.Orange_colorActionNegativeHover_Dark.png b/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testActionColors-using-theme-interfaceStyle-colorScheme.Orange_colorActionNegativeHover_Dark.png index 144280549..044079a22 100644 Binary files a/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testActionColors-using-theme-interfaceStyle-colorScheme.Orange_colorActionNegativeHover_Dark.png and b/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testActionColors-using-theme-interfaceStyle-colorScheme.Orange_colorActionNegativeHover_Dark.png differ diff --git a/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testActionColors-using-theme-interfaceStyle-colorScheme.Orange_colorActionNegativeLoading_Dark.png b/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testActionColors-using-theme-interfaceStyle-colorScheme.Orange_colorActionNegativeLoading_Dark.png index cd20197de..35a77ebcd 100644 Binary files a/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testActionColors-using-theme-interfaceStyle-colorScheme.Orange_colorActionNegativeLoading_Dark.png and b/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testActionColors-using-theme-interfaceStyle-colorScheme.Orange_colorActionNegativeLoading_Dark.png differ diff --git a/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testActionColors-using-theme-interfaceStyle-colorScheme.Orange_colorActionNegativePressed_Dark.png b/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testActionColors-using-theme-interfaceStyle-colorScheme.Orange_colorActionNegativePressed_Dark.png index cc273010e..3e2636c70 100644 Binary files a/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testActionColors-using-theme-interfaceStyle-colorScheme.Orange_colorActionNegativePressed_Dark.png and b/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testActionColors-using-theme-interfaceStyle-colorScheme.Orange_colorActionNegativePressed_Dark.png differ diff --git a/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testActionColors-using-theme-interfaceStyle-colorScheme.Orange_colorActionOnBgActionDisabledOnBgEmphasized_Dark.png b/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testActionColors-using-theme-interfaceStyle-colorScheme.Orange_colorActionOnBgActionDisabledOnBgEmphasized_Dark.png deleted file mode 100644 index 7aa61c048..000000000 Binary files a/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testActionColors-using-theme-interfaceStyle-colorScheme.Orange_colorActionOnBgActionDisabledOnBgEmphasized_Dark.png and /dev/null differ diff --git a/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testActionColors-using-theme-interfaceStyle-colorScheme.Orange_colorActionOnBgActionDisabledOnBgEmphasized_Light.png b/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testActionColors-using-theme-interfaceStyle-colorScheme.Orange_colorActionOnBgActionDisabledOnBgEmphasized_Light.png deleted file mode 100644 index 1e1bc7129..000000000 Binary files a/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testActionColors-using-theme-interfaceStyle-colorScheme.Orange_colorActionOnBgActionDisabledOnBgEmphasized_Light.png and /dev/null differ diff --git a/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testActionColors-using-theme-interfaceStyle-colorScheme.Orange_colorActionOnBgActionDisabled_Dark.png b/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testActionColors-using-theme-interfaceStyle-colorScheme.Orange_colorActionOnBgActionDisabled_Dark.png deleted file mode 100644 index 99dbd459b..000000000 Binary files a/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testActionColors-using-theme-interfaceStyle-colorScheme.Orange_colorActionOnBgActionDisabled_Dark.png and /dev/null differ diff --git a/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testActionColors-using-theme-interfaceStyle-colorScheme.Orange_colorActionOnBgActionDisabled_Light.png b/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testActionColors-using-theme-interfaceStyle-colorScheme.Orange_colorActionOnBgActionDisabled_Light.png deleted file mode 100644 index 459bd1adc..000000000 Binary files a/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testActionColors-using-theme-interfaceStyle-colorScheme.Orange_colorActionOnBgActionDisabled_Light.png and /dev/null differ diff --git a/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testActionColors-using-theme-interfaceStyle-colorScheme.Orange_colorActionOnBgActionNegative_Dark.png b/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testActionColors-using-theme-interfaceStyle-colorScheme.Orange_colorActionOnBgActionNegative_Dark.png deleted file mode 100644 index e48aa245a..000000000 Binary files a/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testActionColors-using-theme-interfaceStyle-colorScheme.Orange_colorActionOnBgActionNegative_Dark.png and /dev/null differ diff --git a/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testActionColors-using-theme-interfaceStyle-colorScheme.Orange_colorActionOnBgActionNegative_Light.png b/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testActionColors-using-theme-interfaceStyle-colorScheme.Orange_colorActionOnBgActionNegative_Light.png deleted file mode 100644 index 3b7e2f4e6..000000000 Binary files a/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testActionColors-using-theme-interfaceStyle-colorScheme.Orange_colorActionOnBgActionNegative_Light.png and /dev/null differ diff --git a/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testActionColors-using-theme-interfaceStyle-colorScheme.Orange_colorActionOnBgActionPrimaryEnabledOnBgEmphasized_Dark.png b/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testActionColors-using-theme-interfaceStyle-colorScheme.Orange_colorActionOnBgActionPrimaryEnabledOnBgEmphasized_Dark.png deleted file mode 100644 index c110a385e..000000000 Binary files a/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testActionColors-using-theme-interfaceStyle-colorScheme.Orange_colorActionOnBgActionPrimaryEnabledOnBgEmphasized_Dark.png and /dev/null differ diff --git a/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testActionColors-using-theme-interfaceStyle-colorScheme.Orange_colorActionOnBgActionPrimaryEnabledOnBgEmphasized_Light.png b/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testActionColors-using-theme-interfaceStyle-colorScheme.Orange_colorActionOnBgActionPrimaryEnabledOnBgEmphasized_Light.png deleted file mode 100644 index b6b25989c..000000000 Binary files a/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testActionColors-using-theme-interfaceStyle-colorScheme.Orange_colorActionOnBgActionPrimaryEnabledOnBgEmphasized_Light.png and /dev/null differ diff --git a/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testActionColors-using-theme-interfaceStyle-colorScheme.Orange_colorActionOnBgActionPrimaryEnabled_Dark.png b/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testActionColors-using-theme-interfaceStyle-colorScheme.Orange_colorActionOnBgActionPrimaryEnabled_Dark.png deleted file mode 100644 index f5ce2e18c..000000000 Binary files a/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testActionColors-using-theme-interfaceStyle-colorScheme.Orange_colorActionOnBgActionPrimaryEnabled_Dark.png and /dev/null differ diff --git a/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testActionColors-using-theme-interfaceStyle-colorScheme.Orange_colorActionOnBgActionPrimaryEnabled_Light.png b/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testActionColors-using-theme-interfaceStyle-colorScheme.Orange_colorActionOnBgActionPrimaryEnabled_Light.png deleted file mode 100644 index fbed539ba..000000000 Binary files a/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testActionColors-using-theme-interfaceStyle-colorScheme.Orange_colorActionOnBgActionPrimaryEnabled_Light.png and /dev/null differ diff --git a/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testActionColors-using-theme-interfaceStyle-colorScheme.Orange_colorActionOnBgActionPrimaryFocusOnBgEmphasized_Dark.png b/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testActionColors-using-theme-interfaceStyle-colorScheme.Orange_colorActionOnBgActionPrimaryFocusOnBgEmphasized_Dark.png deleted file mode 100644 index c95028a44..000000000 Binary files a/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testActionColors-using-theme-interfaceStyle-colorScheme.Orange_colorActionOnBgActionPrimaryFocusOnBgEmphasized_Dark.png and /dev/null differ diff --git a/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testActionColors-using-theme-interfaceStyle-colorScheme.Orange_colorActionOnBgActionPrimaryFocusOnBgEmphasized_Light.png b/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testActionColors-using-theme-interfaceStyle-colorScheme.Orange_colorActionOnBgActionPrimaryFocusOnBgEmphasized_Light.png deleted file mode 100644 index 1f150508c..000000000 Binary files a/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testActionColors-using-theme-interfaceStyle-colorScheme.Orange_colorActionOnBgActionPrimaryFocusOnBgEmphasized_Light.png and /dev/null differ diff --git a/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testActionColors-using-theme-interfaceStyle-colorScheme.Orange_colorActionOnBgActionPrimaryFocus_Dark.png b/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testActionColors-using-theme-interfaceStyle-colorScheme.Orange_colorActionOnBgActionPrimaryFocus_Dark.png deleted file mode 100644 index 081e765a2..000000000 Binary files a/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testActionColors-using-theme-interfaceStyle-colorScheme.Orange_colorActionOnBgActionPrimaryFocus_Dark.png and /dev/null differ diff --git a/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testActionColors-using-theme-interfaceStyle-colorScheme.Orange_colorActionOnBgActionPrimaryFocus_Light.png b/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testActionColors-using-theme-interfaceStyle-colorScheme.Orange_colorActionOnBgActionPrimaryFocus_Light.png deleted file mode 100644 index d538ef5d4..000000000 Binary files a/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testActionColors-using-theme-interfaceStyle-colorScheme.Orange_colorActionOnBgActionPrimaryFocus_Light.png and /dev/null differ diff --git a/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testActionColors-using-theme-interfaceStyle-colorScheme.Orange_colorActionOnBgActionPrimaryHoverOnBgEmphasized_Dark.png b/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testActionColors-using-theme-interfaceStyle-colorScheme.Orange_colorActionOnBgActionPrimaryHoverOnBgEmphasized_Dark.png deleted file mode 100644 index a22db4d41..000000000 Binary files a/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testActionColors-using-theme-interfaceStyle-colorScheme.Orange_colorActionOnBgActionPrimaryHoverOnBgEmphasized_Dark.png and /dev/null differ diff --git a/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testActionColors-using-theme-interfaceStyle-colorScheme.Orange_colorActionOnBgActionPrimaryHoverOnBgEmphasized_Light.png b/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testActionColors-using-theme-interfaceStyle-colorScheme.Orange_colorActionOnBgActionPrimaryHoverOnBgEmphasized_Light.png deleted file mode 100644 index d18e36f0d..000000000 Binary files a/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testActionColors-using-theme-interfaceStyle-colorScheme.Orange_colorActionOnBgActionPrimaryHoverOnBgEmphasized_Light.png and /dev/null differ diff --git a/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testActionColors-using-theme-interfaceStyle-colorScheme.Orange_colorActionOnBgActionPrimaryHover_Dark.png b/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testActionColors-using-theme-interfaceStyle-colorScheme.Orange_colorActionOnBgActionPrimaryHover_Dark.png deleted file mode 100644 index f7719d0ad..000000000 Binary files a/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testActionColors-using-theme-interfaceStyle-colorScheme.Orange_colorActionOnBgActionPrimaryHover_Dark.png and /dev/null differ diff --git a/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testActionColors-using-theme-interfaceStyle-colorScheme.Orange_colorActionOnBgActionPrimaryHover_Light.png b/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testActionColors-using-theme-interfaceStyle-colorScheme.Orange_colorActionOnBgActionPrimaryHover_Light.png deleted file mode 100644 index fb61394f5..000000000 Binary files a/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testActionColors-using-theme-interfaceStyle-colorScheme.Orange_colorActionOnBgActionPrimaryHover_Light.png and /dev/null differ diff --git a/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testActionColors-using-theme-interfaceStyle-colorScheme.Orange_colorActionOnBgActionPrimaryLoadingOnBgEmphasized_Dark.png b/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testActionColors-using-theme-interfaceStyle-colorScheme.Orange_colorActionOnBgActionPrimaryLoadingOnBgEmphasized_Dark.png deleted file mode 100644 index 3801491e0..000000000 Binary files a/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testActionColors-using-theme-interfaceStyle-colorScheme.Orange_colorActionOnBgActionPrimaryLoadingOnBgEmphasized_Dark.png and /dev/null differ diff --git a/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testActionColors-using-theme-interfaceStyle-colorScheme.Orange_colorActionOnBgActionPrimaryLoadingOnBgEmphasized_Light.png b/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testActionColors-using-theme-interfaceStyle-colorScheme.Orange_colorActionOnBgActionPrimaryLoadingOnBgEmphasized_Light.png deleted file mode 100644 index 40daac6de..000000000 Binary files a/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testActionColors-using-theme-interfaceStyle-colorScheme.Orange_colorActionOnBgActionPrimaryLoadingOnBgEmphasized_Light.png and /dev/null differ diff --git a/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testActionColors-using-theme-interfaceStyle-colorScheme.Orange_colorActionOnBgActionPrimaryLoading_Dark.png b/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testActionColors-using-theme-interfaceStyle-colorScheme.Orange_colorActionOnBgActionPrimaryLoading_Dark.png deleted file mode 100644 index 1da1c1048..000000000 Binary files a/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testActionColors-using-theme-interfaceStyle-colorScheme.Orange_colorActionOnBgActionPrimaryLoading_Dark.png and /dev/null differ diff --git a/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testActionColors-using-theme-interfaceStyle-colorScheme.Orange_colorActionOnBgActionPrimaryLoading_Light.png b/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testActionColors-using-theme-interfaceStyle-colorScheme.Orange_colorActionOnBgActionPrimaryLoading_Light.png deleted file mode 100644 index e79546c93..000000000 Binary files a/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testActionColors-using-theme-interfaceStyle-colorScheme.Orange_colorActionOnBgActionPrimaryLoading_Light.png and /dev/null differ diff --git a/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testActionColors-using-theme-interfaceStyle-colorScheme.Orange_colorActionOnBgActionPrimaryPressedOnBgEmphasized_Dark.png b/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testActionColors-using-theme-interfaceStyle-colorScheme.Orange_colorActionOnBgActionPrimaryPressedOnBgEmphasized_Dark.png deleted file mode 100644 index dd1e3a1ef..000000000 Binary files a/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testActionColors-using-theme-interfaceStyle-colorScheme.Orange_colorActionOnBgActionPrimaryPressedOnBgEmphasized_Dark.png and /dev/null differ diff --git a/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testActionColors-using-theme-interfaceStyle-colorScheme.Orange_colorActionOnBgActionPrimaryPressedOnBgEmphasized_Light.png b/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testActionColors-using-theme-interfaceStyle-colorScheme.Orange_colorActionOnBgActionPrimaryPressedOnBgEmphasized_Light.png deleted file mode 100644 index 9897cba46..000000000 Binary files a/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testActionColors-using-theme-interfaceStyle-colorScheme.Orange_colorActionOnBgActionPrimaryPressedOnBgEmphasized_Light.png and /dev/null differ diff --git a/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testActionColors-using-theme-interfaceStyle-colorScheme.Orange_colorActionOnBgActionPrimaryPressed_Dark.png b/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testActionColors-using-theme-interfaceStyle-colorScheme.Orange_colorActionOnBgActionPrimaryPressed_Dark.png deleted file mode 100644 index 4b5704f2c..000000000 Binary files a/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testActionColors-using-theme-interfaceStyle-colorScheme.Orange_colorActionOnBgActionPrimaryPressed_Dark.png and /dev/null differ diff --git a/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testActionColors-using-theme-interfaceStyle-colorScheme.Orange_colorActionOnBgActionPrimaryPressed_Light.png b/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testActionColors-using-theme-interfaceStyle-colorScheme.Orange_colorActionOnBgActionPrimaryPressed_Light.png deleted file mode 100644 index 7655d1bb8..000000000 Binary files a/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testActionColors-using-theme-interfaceStyle-colorScheme.Orange_colorActionOnBgActionPrimaryPressed_Light.png and /dev/null differ diff --git a/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testActionColors-using-theme-interfaceStyle-colorScheme.Orange_colorActionPrimaryEnabledOnBgEmphasized_Dark.png b/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testActionColors-using-theme-interfaceStyle-colorScheme.Orange_colorActionPrimaryEnabledOnBgEmphasized_Dark.png index 8009385d5..06ee98417 100644 Binary files a/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testActionColors-using-theme-interfaceStyle-colorScheme.Orange_colorActionPrimaryEnabledOnBgEmphasized_Dark.png and b/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testActionColors-using-theme-interfaceStyle-colorScheme.Orange_colorActionPrimaryEnabledOnBgEmphasized_Dark.png differ diff --git a/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testActionColors-using-theme-interfaceStyle-colorScheme.Orange_colorActionPrimaryEnabled_Dark.png b/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testActionColors-using-theme-interfaceStyle-colorScheme.Orange_colorActionPrimaryEnabled_Dark.png index bea15c449..9eb47175b 100644 Binary files a/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testActionColors-using-theme-interfaceStyle-colorScheme.Orange_colorActionPrimaryEnabled_Dark.png and b/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testActionColors-using-theme-interfaceStyle-colorScheme.Orange_colorActionPrimaryEnabled_Dark.png differ diff --git a/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testActionColors-using-theme-interfaceStyle-colorScheme.Orange_colorActionPrimaryFocusOnBgEmphasized_Dark.png b/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testActionColors-using-theme-interfaceStyle-colorScheme.Orange_colorActionPrimaryFocusOnBgEmphasized_Dark.png index 184cba1a1..538dcc0b2 100644 Binary files a/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testActionColors-using-theme-interfaceStyle-colorScheme.Orange_colorActionPrimaryFocusOnBgEmphasized_Dark.png and b/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testActionColors-using-theme-interfaceStyle-colorScheme.Orange_colorActionPrimaryFocusOnBgEmphasized_Dark.png differ diff --git a/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testActionColors-using-theme-interfaceStyle-colorScheme.Orange_colorActionPrimaryFocus_Dark.png b/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testActionColors-using-theme-interfaceStyle-colorScheme.Orange_colorActionPrimaryFocus_Dark.png index 2647c1da1..ea9127d0f 100644 Binary files a/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testActionColors-using-theme-interfaceStyle-colorScheme.Orange_colorActionPrimaryFocus_Dark.png and b/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testActionColors-using-theme-interfaceStyle-colorScheme.Orange_colorActionPrimaryFocus_Dark.png differ diff --git a/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testActionColors-using-theme-interfaceStyle-colorScheme.Orange_colorActionPrimaryHoverOnBgEmphasized_Dark.png b/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testActionColors-using-theme-interfaceStyle-colorScheme.Orange_colorActionPrimaryHoverOnBgEmphasized_Dark.png index dfc9cfeb8..31fdfd628 100644 Binary files a/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testActionColors-using-theme-interfaceStyle-colorScheme.Orange_colorActionPrimaryHoverOnBgEmphasized_Dark.png and b/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testActionColors-using-theme-interfaceStyle-colorScheme.Orange_colorActionPrimaryHoverOnBgEmphasized_Dark.png differ diff --git a/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testActionColors-using-theme-interfaceStyle-colorScheme.Orange_colorActionPrimaryHoverOnBgEmphasized_Light.png b/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testActionColors-using-theme-interfaceStyle-colorScheme.Orange_colorActionPrimaryHoverOnBgEmphasized_Light.png index febb634e4..46e588ab6 100644 Binary files a/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testActionColors-using-theme-interfaceStyle-colorScheme.Orange_colorActionPrimaryHoverOnBgEmphasized_Light.png and b/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testActionColors-using-theme-interfaceStyle-colorScheme.Orange_colorActionPrimaryHoverOnBgEmphasized_Light.png differ diff --git a/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testActionColors-using-theme-interfaceStyle-colorScheme.Orange_colorActionPrimaryHover_Dark.png b/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testActionColors-using-theme-interfaceStyle-colorScheme.Orange_colorActionPrimaryHover_Dark.png index 0ae17b71a..191ace448 100644 Binary files a/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testActionColors-using-theme-interfaceStyle-colorScheme.Orange_colorActionPrimaryHover_Dark.png and b/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testActionColors-using-theme-interfaceStyle-colorScheme.Orange_colorActionPrimaryHover_Dark.png differ diff --git a/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testActionColors-using-theme-interfaceStyle-colorScheme.Orange_colorActionPrimaryLoadingOnBgEmphasized_Dark.png b/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testActionColors-using-theme-interfaceStyle-colorScheme.Orange_colorActionPrimaryLoadingOnBgEmphasized_Dark.png index cb26992d6..ebd0cfec6 100644 Binary files a/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testActionColors-using-theme-interfaceStyle-colorScheme.Orange_colorActionPrimaryLoadingOnBgEmphasized_Dark.png and b/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testActionColors-using-theme-interfaceStyle-colorScheme.Orange_colorActionPrimaryLoadingOnBgEmphasized_Dark.png differ diff --git a/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testActionColors-using-theme-interfaceStyle-colorScheme.Orange_colorActionPrimaryLoading_Dark.png b/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testActionColors-using-theme-interfaceStyle-colorScheme.Orange_colorActionPrimaryLoading_Dark.png index 0155ea6ce..d1d970fb0 100644 Binary files a/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testActionColors-using-theme-interfaceStyle-colorScheme.Orange_colorActionPrimaryLoading_Dark.png and b/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testActionColors-using-theme-interfaceStyle-colorScheme.Orange_colorActionPrimaryLoading_Dark.png differ diff --git a/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testActionColors-using-theme-interfaceStyle-colorScheme.Orange_colorActionPrimaryPressedOnBgEmphasized_Dark.png b/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testActionColors-using-theme-interfaceStyle-colorScheme.Orange_colorActionPrimaryPressedOnBgEmphasized_Dark.png index 9b86fc947..b514ae13c 100644 Binary files a/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testActionColors-using-theme-interfaceStyle-colorScheme.Orange_colorActionPrimaryPressedOnBgEmphasized_Dark.png and b/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testActionColors-using-theme-interfaceStyle-colorScheme.Orange_colorActionPrimaryPressedOnBgEmphasized_Dark.png differ diff --git a/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testActionColors-using-theme-interfaceStyle-colorScheme.Orange_colorActionPrimaryPressed_Dark.png b/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testActionColors-using-theme-interfaceStyle-colorScheme.Orange_colorActionPrimaryPressed_Dark.png index 0b6f59a6d..23561949d 100644 Binary files a/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testActionColors-using-theme-interfaceStyle-colorScheme.Orange_colorActionPrimaryPressed_Dark.png and b/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testActionColors-using-theme-interfaceStyle-colorScheme.Orange_colorActionPrimaryPressed_Dark.png differ diff --git a/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testActionColors-using-theme-interfaceStyle-colorScheme.Orange_colorActionSecondaryEnabledOnBgEmphasized_Dark.png b/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testActionColors-using-theme-interfaceStyle-colorScheme.Orange_colorActionSecondaryEnabledOnBgEmphasized_Dark.png index 612e959de..e6c36ea61 100644 Binary files a/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testActionColors-using-theme-interfaceStyle-colorScheme.Orange_colorActionSecondaryEnabledOnBgEmphasized_Dark.png and b/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testActionColors-using-theme-interfaceStyle-colorScheme.Orange_colorActionSecondaryEnabledOnBgEmphasized_Dark.png differ diff --git a/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testActionColors-using-theme-interfaceStyle-colorScheme.Orange_colorActionSecondaryEnabled_Dark.png b/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testActionColors-using-theme-interfaceStyle-colorScheme.Orange_colorActionSecondaryEnabled_Dark.png index 9bdce3a80..750b9716c 100644 Binary files a/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testActionColors-using-theme-interfaceStyle-colorScheme.Orange_colorActionSecondaryEnabled_Dark.png and b/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testActionColors-using-theme-interfaceStyle-colorScheme.Orange_colorActionSecondaryEnabled_Dark.png differ diff --git a/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testActionColors-using-theme-interfaceStyle-colorScheme.Orange_colorActionSecondaryFocusOnBgEmphasized_Dark.png b/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testActionColors-using-theme-interfaceStyle-colorScheme.Orange_colorActionSecondaryFocusOnBgEmphasized_Dark.png index 2af4dadbd..c395db12e 100644 Binary files a/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testActionColors-using-theme-interfaceStyle-colorScheme.Orange_colorActionSecondaryFocusOnBgEmphasized_Dark.png and b/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testActionColors-using-theme-interfaceStyle-colorScheme.Orange_colorActionSecondaryFocusOnBgEmphasized_Dark.png differ diff --git a/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testActionColors-using-theme-interfaceStyle-colorScheme.Orange_colorActionSecondaryFocus_Dark.png b/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testActionColors-using-theme-interfaceStyle-colorScheme.Orange_colorActionSecondaryFocus_Dark.png index 43783130d..0092e647f 100644 Binary files a/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testActionColors-using-theme-interfaceStyle-colorScheme.Orange_colorActionSecondaryFocus_Dark.png and b/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testActionColors-using-theme-interfaceStyle-colorScheme.Orange_colorActionSecondaryFocus_Dark.png differ diff --git a/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testActionColors-using-theme-interfaceStyle-colorScheme.Orange_colorActionSecondaryHoverOnBgEmphasized_Dark.png b/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testActionColors-using-theme-interfaceStyle-colorScheme.Orange_colorActionSecondaryHoverOnBgEmphasized_Dark.png index 25e53fc27..f6d9887c1 100644 Binary files a/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testActionColors-using-theme-interfaceStyle-colorScheme.Orange_colorActionSecondaryHoverOnBgEmphasized_Dark.png and b/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testActionColors-using-theme-interfaceStyle-colorScheme.Orange_colorActionSecondaryHoverOnBgEmphasized_Dark.png differ diff --git a/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testActionColors-using-theme-interfaceStyle-colorScheme.Orange_colorActionSecondaryHoverOnBgEmphasized_Light.png b/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testActionColors-using-theme-interfaceStyle-colorScheme.Orange_colorActionSecondaryHoverOnBgEmphasized_Light.png index 350744e6e..568ab01d0 100644 Binary files a/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testActionColors-using-theme-interfaceStyle-colorScheme.Orange_colorActionSecondaryHoverOnBgEmphasized_Light.png and b/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testActionColors-using-theme-interfaceStyle-colorScheme.Orange_colorActionSecondaryHoverOnBgEmphasized_Light.png differ diff --git a/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testActionColors-using-theme-interfaceStyle-colorScheme.Orange_colorActionSecondaryHover_Dark.png b/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testActionColors-using-theme-interfaceStyle-colorScheme.Orange_colorActionSecondaryHover_Dark.png index 56a88cf3f..a6b296b77 100644 Binary files a/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testActionColors-using-theme-interfaceStyle-colorScheme.Orange_colorActionSecondaryHover_Dark.png and b/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testActionColors-using-theme-interfaceStyle-colorScheme.Orange_colorActionSecondaryHover_Dark.png differ diff --git a/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testActionColors-using-theme-interfaceStyle-colorScheme.Orange_colorActionSecondaryLoadingOnBgEmphasized_Dark.png b/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testActionColors-using-theme-interfaceStyle-colorScheme.Orange_colorActionSecondaryLoadingOnBgEmphasized_Dark.png index 623b22c50..39a547323 100644 Binary files a/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testActionColors-using-theme-interfaceStyle-colorScheme.Orange_colorActionSecondaryLoadingOnBgEmphasized_Dark.png and b/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testActionColors-using-theme-interfaceStyle-colorScheme.Orange_colorActionSecondaryLoadingOnBgEmphasized_Dark.png differ diff --git a/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testActionColors-using-theme-interfaceStyle-colorScheme.Orange_colorActionSecondaryLoading_Dark.png b/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testActionColors-using-theme-interfaceStyle-colorScheme.Orange_colorActionSecondaryLoading_Dark.png index 6ebce2a15..40d564a8f 100644 Binary files a/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testActionColors-using-theme-interfaceStyle-colorScheme.Orange_colorActionSecondaryLoading_Dark.png and b/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testActionColors-using-theme-interfaceStyle-colorScheme.Orange_colorActionSecondaryLoading_Dark.png differ diff --git a/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testActionColors-using-theme-interfaceStyle-colorScheme.Orange_colorActionSecondaryPressedOnBgEmphasized_Dark.png b/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testActionColors-using-theme-interfaceStyle-colorScheme.Orange_colorActionSecondaryPressedOnBgEmphasized_Dark.png index 1ff3bae3e..5f8e4f412 100644 Binary files a/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testActionColors-using-theme-interfaceStyle-colorScheme.Orange_colorActionSecondaryPressedOnBgEmphasized_Dark.png and b/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testActionColors-using-theme-interfaceStyle-colorScheme.Orange_colorActionSecondaryPressedOnBgEmphasized_Dark.png differ diff --git a/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testActionColors-using-theme-interfaceStyle-colorScheme.Orange_colorActionSecondaryPressed_Dark.png b/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testActionColors-using-theme-interfaceStyle-colorScheme.Orange_colorActionSecondaryPressed_Dark.png index 6e9cc1c04..8081fe2c8 100644 Binary files a/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testActionColors-using-theme-interfaceStyle-colorScheme.Orange_colorActionSecondaryPressed_Dark.png and b/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testActionColors-using-theme-interfaceStyle-colorScheme.Orange_colorActionSecondaryPressed_Dark.png differ diff --git a/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testActionColors-using-theme-interfaceStyle-colorScheme.Orange_colorActionSelectedOnBgEmphasized_Dark.png b/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testActionColors-using-theme-interfaceStyle-colorScheme.Orange_colorActionSelectedOnBgEmphasized_Dark.png index 6f95a1784..b220dbd1f 100644 Binary files a/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testActionColors-using-theme-interfaceStyle-colorScheme.Orange_colorActionSelectedOnBgEmphasized_Dark.png and b/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testActionColors-using-theme-interfaceStyle-colorScheme.Orange_colorActionSelectedOnBgEmphasized_Dark.png differ diff --git a/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testActionColors-using-theme-interfaceStyle-colorScheme.Orange_colorActionSelected_Dark.png b/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testActionColors-using-theme-interfaceStyle-colorScheme.Orange_colorActionSelected_Dark.png index 732897623..a9d5567c8 100644 Binary files a/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testActionColors-using-theme-interfaceStyle-colorScheme.Orange_colorActionSelected_Dark.png and b/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testActionColors-using-theme-interfaceStyle-colorScheme.Orange_colorActionSelected_Dark.png differ diff --git a/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testActionColors-using-theme-interfaceStyle-colorScheme.Orange_colorActionVisitedOnBgEmphasized_Dark.png b/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testActionColors-using-theme-interfaceStyle-colorScheme.Orange_colorActionVisitedOnBgEmphasized_Dark.png new file mode 100644 index 000000000..befb90445 Binary files /dev/null and b/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testActionColors-using-theme-interfaceStyle-colorScheme.Orange_colorActionVisitedOnBgEmphasized_Dark.png differ diff --git a/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testActionColors-using-theme-interfaceStyle-colorScheme.Orange_colorActionVisitedOnBgEmphasized_Light.png b/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testActionColors-using-theme-interfaceStyle-colorScheme.Orange_colorActionVisitedOnBgEmphasized_Light.png new file mode 100644 index 000000000..d6f8074eb Binary files /dev/null and b/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testActionColors-using-theme-interfaceStyle-colorScheme.Orange_colorActionVisitedOnBgEmphasized_Light.png differ diff --git a/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testActionColors-using-theme-interfaceStyle-colorScheme.Orange_colorActionVisited_Dark.png b/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testActionColors-using-theme-interfaceStyle-colorScheme.Orange_colorActionVisited_Dark.png index 6cb1da189..af5ae26f3 100644 Binary files a/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testActionColors-using-theme-interfaceStyle-colorScheme.Orange_colorActionVisited_Dark.png and b/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testActionColors-using-theme-interfaceStyle-colorScheme.Orange_colorActionVisited_Dark.png differ diff --git a/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testActionColors-using-theme-interfaceStyle-colorScheme.Orange_colorActionVistedOnBgEmphasized_Dark.png b/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testActionColors-using-theme-interfaceStyle-colorScheme.Orange_colorActionVistedOnBgEmphasized_Dark.png deleted file mode 100644 index 8d1ca4f79..000000000 Binary files a/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testActionColors-using-theme-interfaceStyle-colorScheme.Orange_colorActionVistedOnBgEmphasized_Dark.png and /dev/null differ diff --git a/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testActionColors-using-theme-interfaceStyle-colorScheme.Orange_colorActionVistedOnBgEmphasized_Light.png b/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testActionColors-using-theme-interfaceStyle-colorScheme.Orange_colorActionVistedOnBgEmphasized_Light.png deleted file mode 100644 index 828f8c439..000000000 Binary files a/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testActionColors-using-theme-interfaceStyle-colorScheme.Orange_colorActionVistedOnBgEmphasized_Light.png and /dev/null differ diff --git a/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testAlwaysColors-using-theme-interfaceStyle-colorScheme.Inverse_colorAlwaysOnAccent_Dark.png b/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testAlwaysColors-using-theme-interfaceStyle-colorScheme.Inverse_colorAlwaysOnAccent_Dark.png new file mode 100644 index 000000000..05db6401b Binary files /dev/null and b/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testAlwaysColors-using-theme-interfaceStyle-colorScheme.Inverse_colorAlwaysOnAccent_Dark.png differ diff --git a/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testAlwaysColors-using-theme-interfaceStyle-colorScheme.Inverse_colorAlwaysOnAccent_Light.png b/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testAlwaysColors-using-theme-interfaceStyle-colorScheme.Inverse_colorAlwaysOnAccent_Light.png new file mode 100644 index 000000000..69b5df30b Binary files /dev/null and b/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testAlwaysColors-using-theme-interfaceStyle-colorScheme.Inverse_colorAlwaysOnAccent_Light.png differ diff --git a/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testAlwaysColors-using-theme-interfaceStyle-colorScheme.Inverse_colorAlwaysOnBgAccent_Dark.png b/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testAlwaysColors-using-theme-interfaceStyle-colorScheme.Inverse_colorAlwaysOnBgAccent_Dark.png deleted file mode 100644 index f72bd9f68..000000000 Binary files a/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testAlwaysColors-using-theme-interfaceStyle-colorScheme.Inverse_colorAlwaysOnBgAccent_Dark.png and /dev/null differ diff --git a/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testAlwaysColors-using-theme-interfaceStyle-colorScheme.Inverse_colorAlwaysOnBgAccent_Light.png b/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testAlwaysColors-using-theme-interfaceStyle-colorScheme.Inverse_colorAlwaysOnBgAccent_Light.png deleted file mode 100644 index a9c67fda9..000000000 Binary files a/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testAlwaysColors-using-theme-interfaceStyle-colorScheme.Inverse_colorAlwaysOnBgAccent_Light.png and /dev/null differ diff --git a/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testAlwaysColors-using-theme-interfaceStyle-colorScheme.Inverse_colorAlwaysOnBgBlack_Dark.png b/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testAlwaysColors-using-theme-interfaceStyle-colorScheme.Inverse_colorAlwaysOnBgBlack_Dark.png deleted file mode 100644 index 3ea0ff717..000000000 Binary files a/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testAlwaysColors-using-theme-interfaceStyle-colorScheme.Inverse_colorAlwaysOnBgBlack_Dark.png and /dev/null differ diff --git a/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testAlwaysColors-using-theme-interfaceStyle-colorScheme.Inverse_colorAlwaysOnBgBlack_Light.png b/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testAlwaysColors-using-theme-interfaceStyle-colorScheme.Inverse_colorAlwaysOnBgBlack_Light.png deleted file mode 100644 index 90d091c85..000000000 Binary files a/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testAlwaysColors-using-theme-interfaceStyle-colorScheme.Inverse_colorAlwaysOnBgBlack_Light.png and /dev/null differ diff --git a/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testAlwaysColors-using-theme-interfaceStyle-colorScheme.Inverse_colorAlwaysOnBgInfo_Dark.png b/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testAlwaysColors-using-theme-interfaceStyle-colorScheme.Inverse_colorAlwaysOnBgInfo_Dark.png deleted file mode 100644 index 9fabce557..000000000 Binary files a/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testAlwaysColors-using-theme-interfaceStyle-colorScheme.Inverse_colorAlwaysOnBgInfo_Dark.png and /dev/null differ diff --git a/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testAlwaysColors-using-theme-interfaceStyle-colorScheme.Inverse_colorAlwaysOnBgInfo_Light.png b/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testAlwaysColors-using-theme-interfaceStyle-colorScheme.Inverse_colorAlwaysOnBgInfo_Light.png deleted file mode 100644 index f0a496143..000000000 Binary files a/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testAlwaysColors-using-theme-interfaceStyle-colorScheme.Inverse_colorAlwaysOnBgInfo_Light.png and /dev/null differ diff --git a/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testAlwaysColors-using-theme-interfaceStyle-colorScheme.Inverse_colorAlwaysOnBgNegative_Dark.png b/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testAlwaysColors-using-theme-interfaceStyle-colorScheme.Inverse_colorAlwaysOnBgNegative_Dark.png deleted file mode 100644 index 300f70d12..000000000 Binary files a/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testAlwaysColors-using-theme-interfaceStyle-colorScheme.Inverse_colorAlwaysOnBgNegative_Dark.png and /dev/null differ diff --git a/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testAlwaysColors-using-theme-interfaceStyle-colorScheme.Inverse_colorAlwaysOnBgNegative_Light.png b/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testAlwaysColors-using-theme-interfaceStyle-colorScheme.Inverse_colorAlwaysOnBgNegative_Light.png deleted file mode 100644 index 97f3a80c5..000000000 Binary files a/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testAlwaysColors-using-theme-interfaceStyle-colorScheme.Inverse_colorAlwaysOnBgNegative_Light.png and /dev/null differ diff --git a/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testAlwaysColors-using-theme-interfaceStyle-colorScheme.Inverse_colorAlwaysOnBgPositive_Dark.png b/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testAlwaysColors-using-theme-interfaceStyle-colorScheme.Inverse_colorAlwaysOnBgPositive_Dark.png deleted file mode 100644 index 2e23edb85..000000000 Binary files a/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testAlwaysColors-using-theme-interfaceStyle-colorScheme.Inverse_colorAlwaysOnBgPositive_Dark.png and /dev/null differ diff --git a/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testAlwaysColors-using-theme-interfaceStyle-colorScheme.Inverse_colorAlwaysOnBgPositive_Light.png b/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testAlwaysColors-using-theme-interfaceStyle-colorScheme.Inverse_colorAlwaysOnBgPositive_Light.png deleted file mode 100644 index d045fcab9..000000000 Binary files a/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testAlwaysColors-using-theme-interfaceStyle-colorScheme.Inverse_colorAlwaysOnBgPositive_Light.png and /dev/null differ diff --git a/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testAlwaysColors-using-theme-interfaceStyle-colorScheme.Inverse_colorAlwaysOnBgWarning_Dark.png b/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testAlwaysColors-using-theme-interfaceStyle-colorScheme.Inverse_colorAlwaysOnBgWarning_Dark.png deleted file mode 100644 index 12dc705f0..000000000 Binary files a/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testAlwaysColors-using-theme-interfaceStyle-colorScheme.Inverse_colorAlwaysOnBgWarning_Dark.png and /dev/null differ diff --git a/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testAlwaysColors-using-theme-interfaceStyle-colorScheme.Inverse_colorAlwaysOnBgWarning_Light.png b/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testAlwaysColors-using-theme-interfaceStyle-colorScheme.Inverse_colorAlwaysOnBgWarning_Light.png deleted file mode 100644 index d5d3b9dd1..000000000 Binary files a/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testAlwaysColors-using-theme-interfaceStyle-colorScheme.Inverse_colorAlwaysOnBgWarning_Light.png and /dev/null differ diff --git a/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testAlwaysColors-using-theme-interfaceStyle-colorScheme.Inverse_colorAlwaysOnBgWhite_Dark.png b/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testAlwaysColors-using-theme-interfaceStyle-colorScheme.Inverse_colorAlwaysOnBgWhite_Dark.png deleted file mode 100644 index f0ebb7385..000000000 Binary files a/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testAlwaysColors-using-theme-interfaceStyle-colorScheme.Inverse_colorAlwaysOnBgWhite_Dark.png and /dev/null differ diff --git a/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testAlwaysColors-using-theme-interfaceStyle-colorScheme.Inverse_colorAlwaysOnBgWhite_Light.png b/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testAlwaysColors-using-theme-interfaceStyle-colorScheme.Inverse_colorAlwaysOnBgWhite_Light.png deleted file mode 100644 index dce335ec1..000000000 Binary files a/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testAlwaysColors-using-theme-interfaceStyle-colorScheme.Inverse_colorAlwaysOnBgWhite_Light.png and /dev/null differ diff --git a/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testAlwaysColors-using-theme-interfaceStyle-colorScheme.Inverse_colorAlwaysOnBlack_Dark.png b/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testAlwaysColors-using-theme-interfaceStyle-colorScheme.Inverse_colorAlwaysOnBlack_Dark.png new file mode 100644 index 000000000..b49c85967 Binary files /dev/null and b/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testAlwaysColors-using-theme-interfaceStyle-colorScheme.Inverse_colorAlwaysOnBlack_Dark.png differ diff --git a/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testAlwaysColors-using-theme-interfaceStyle-colorScheme.Inverse_colorAlwaysOnBlack_Light.png b/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testAlwaysColors-using-theme-interfaceStyle-colorScheme.Inverse_colorAlwaysOnBlack_Light.png new file mode 100644 index 000000000..6d3fac463 Binary files /dev/null and b/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testAlwaysColors-using-theme-interfaceStyle-colorScheme.Inverse_colorAlwaysOnBlack_Light.png differ diff --git a/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testAlwaysColors-using-theme-interfaceStyle-colorScheme.Inverse_colorAlwaysOnInfo_Dark.png b/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testAlwaysColors-using-theme-interfaceStyle-colorScheme.Inverse_colorAlwaysOnInfo_Dark.png new file mode 100644 index 000000000..27e6b4795 Binary files /dev/null and b/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testAlwaysColors-using-theme-interfaceStyle-colorScheme.Inverse_colorAlwaysOnInfo_Dark.png differ diff --git a/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testAlwaysColors-using-theme-interfaceStyle-colorScheme.Inverse_colorAlwaysOnInfo_Light.png b/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testAlwaysColors-using-theme-interfaceStyle-colorScheme.Inverse_colorAlwaysOnInfo_Light.png new file mode 100644 index 000000000..b1572d342 Binary files /dev/null and b/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testAlwaysColors-using-theme-interfaceStyle-colorScheme.Inverse_colorAlwaysOnInfo_Light.png differ diff --git a/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testAlwaysColors-using-theme-interfaceStyle-colorScheme.Inverse_colorAlwaysOnNegative_Dark.png b/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testAlwaysColors-using-theme-interfaceStyle-colorScheme.Inverse_colorAlwaysOnNegative_Dark.png new file mode 100644 index 000000000..247515a3a Binary files /dev/null and b/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testAlwaysColors-using-theme-interfaceStyle-colorScheme.Inverse_colorAlwaysOnNegative_Dark.png differ diff --git a/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testAlwaysColors-using-theme-interfaceStyle-colorScheme.Inverse_colorAlwaysOnNegative_Light.png b/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testAlwaysColors-using-theme-interfaceStyle-colorScheme.Inverse_colorAlwaysOnNegative_Light.png new file mode 100644 index 000000000..a9707ae98 Binary files /dev/null and b/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testAlwaysColors-using-theme-interfaceStyle-colorScheme.Inverse_colorAlwaysOnNegative_Light.png differ diff --git a/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testAlwaysColors-using-theme-interfaceStyle-colorScheme.Inverse_colorAlwaysOnPositive_Dark.png b/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testAlwaysColors-using-theme-interfaceStyle-colorScheme.Inverse_colorAlwaysOnPositive_Dark.png new file mode 100644 index 000000000..41e717726 Binary files /dev/null and b/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testAlwaysColors-using-theme-interfaceStyle-colorScheme.Inverse_colorAlwaysOnPositive_Dark.png differ diff --git a/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testAlwaysColors-using-theme-interfaceStyle-colorScheme.Inverse_colorAlwaysOnPositive_Light.png b/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testAlwaysColors-using-theme-interfaceStyle-colorScheme.Inverse_colorAlwaysOnPositive_Light.png new file mode 100644 index 000000000..ef9c674bf Binary files /dev/null and b/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testAlwaysColors-using-theme-interfaceStyle-colorScheme.Inverse_colorAlwaysOnPositive_Light.png differ diff --git a/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testAlwaysColors-using-theme-interfaceStyle-colorScheme.Inverse_colorAlwaysOnWarning_Dark.png b/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testAlwaysColors-using-theme-interfaceStyle-colorScheme.Inverse_colorAlwaysOnWarning_Dark.png new file mode 100644 index 000000000..857d11c7d Binary files /dev/null and b/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testAlwaysColors-using-theme-interfaceStyle-colorScheme.Inverse_colorAlwaysOnWarning_Dark.png differ diff --git a/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testAlwaysColors-using-theme-interfaceStyle-colorScheme.Inverse_colorAlwaysOnWarning_Light.png b/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testAlwaysColors-using-theme-interfaceStyle-colorScheme.Inverse_colorAlwaysOnWarning_Light.png new file mode 100644 index 000000000..9e13726f3 Binary files /dev/null and b/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testAlwaysColors-using-theme-interfaceStyle-colorScheme.Inverse_colorAlwaysOnWarning_Light.png differ diff --git a/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testAlwaysColors-using-theme-interfaceStyle-colorScheme.Inverse_colorAlwaysOnWhite_Dark.png b/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testAlwaysColors-using-theme-interfaceStyle-colorScheme.Inverse_colorAlwaysOnWhite_Dark.png new file mode 100644 index 000000000..fb59ae725 Binary files /dev/null and b/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testAlwaysColors-using-theme-interfaceStyle-colorScheme.Inverse_colorAlwaysOnWhite_Dark.png differ diff --git a/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testAlwaysColors-using-theme-interfaceStyle-colorScheme.Inverse_colorAlwaysOnWhite_Light.png b/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testAlwaysColors-using-theme-interfaceStyle-colorScheme.Inverse_colorAlwaysOnWhite_Light.png new file mode 100644 index 000000000..e90086902 Binary files /dev/null and b/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testAlwaysColors-using-theme-interfaceStyle-colorScheme.Inverse_colorAlwaysOnWhite_Light.png differ diff --git a/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testAlwaysColors-using-theme-interfaceStyle-colorScheme.Orange_colorAlwaysAccent_Dark.png b/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testAlwaysColors-using-theme-interfaceStyle-colorScheme.Orange_colorAlwaysAccent_Dark.png index fdff45c38..051cbc583 100644 Binary files a/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testAlwaysColors-using-theme-interfaceStyle-colorScheme.Orange_colorAlwaysAccent_Dark.png and b/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testAlwaysColors-using-theme-interfaceStyle-colorScheme.Orange_colorAlwaysAccent_Dark.png differ diff --git a/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testAlwaysColors-using-theme-interfaceStyle-colorScheme.Orange_colorAlwaysBlack_Dark.png b/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testAlwaysColors-using-theme-interfaceStyle-colorScheme.Orange_colorAlwaysBlack_Dark.png index 2eb3f3c09..530bd7ed0 100644 Binary files a/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testAlwaysColors-using-theme-interfaceStyle-colorScheme.Orange_colorAlwaysBlack_Dark.png and b/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testAlwaysColors-using-theme-interfaceStyle-colorScheme.Orange_colorAlwaysBlack_Dark.png differ diff --git a/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testAlwaysColors-using-theme-interfaceStyle-colorScheme.Orange_colorAlwaysInfo_Dark.png b/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testAlwaysColors-using-theme-interfaceStyle-colorScheme.Orange_colorAlwaysInfo_Dark.png index b21fda3b9..f493da2c6 100644 Binary files a/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testAlwaysColors-using-theme-interfaceStyle-colorScheme.Orange_colorAlwaysInfo_Dark.png and b/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testAlwaysColors-using-theme-interfaceStyle-colorScheme.Orange_colorAlwaysInfo_Dark.png differ diff --git a/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testAlwaysColors-using-theme-interfaceStyle-colorScheme.Orange_colorAlwaysNegative_Dark.png b/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testAlwaysColors-using-theme-interfaceStyle-colorScheme.Orange_colorAlwaysNegative_Dark.png index a91493b05..7ca80ef25 100644 Binary files a/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testAlwaysColors-using-theme-interfaceStyle-colorScheme.Orange_colorAlwaysNegative_Dark.png and b/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testAlwaysColors-using-theme-interfaceStyle-colorScheme.Orange_colorAlwaysNegative_Dark.png differ diff --git a/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testAlwaysColors-using-theme-interfaceStyle-colorScheme.Orange_colorAlwaysOnAccent_Dark.png b/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testAlwaysColors-using-theme-interfaceStyle-colorScheme.Orange_colorAlwaysOnAccent_Dark.png new file mode 100644 index 000000000..1ffe013ad Binary files /dev/null and b/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testAlwaysColors-using-theme-interfaceStyle-colorScheme.Orange_colorAlwaysOnAccent_Dark.png differ diff --git a/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testAlwaysColors-using-theme-interfaceStyle-colorScheme.Orange_colorAlwaysOnAccent_Light.png b/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testAlwaysColors-using-theme-interfaceStyle-colorScheme.Orange_colorAlwaysOnAccent_Light.png new file mode 100644 index 000000000..0c30d8d3c Binary files /dev/null and b/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testAlwaysColors-using-theme-interfaceStyle-colorScheme.Orange_colorAlwaysOnAccent_Light.png differ diff --git a/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testAlwaysColors-using-theme-interfaceStyle-colorScheme.Orange_colorAlwaysOnBgAccent_Dark.png b/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testAlwaysColors-using-theme-interfaceStyle-colorScheme.Orange_colorAlwaysOnBgAccent_Dark.png deleted file mode 100644 index f72bd9f68..000000000 Binary files a/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testAlwaysColors-using-theme-interfaceStyle-colorScheme.Orange_colorAlwaysOnBgAccent_Dark.png and /dev/null differ diff --git a/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testAlwaysColors-using-theme-interfaceStyle-colorScheme.Orange_colorAlwaysOnBgAccent_Light.png b/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testAlwaysColors-using-theme-interfaceStyle-colorScheme.Orange_colorAlwaysOnBgAccent_Light.png deleted file mode 100644 index fe0082a8e..000000000 Binary files a/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testAlwaysColors-using-theme-interfaceStyle-colorScheme.Orange_colorAlwaysOnBgAccent_Light.png and /dev/null differ diff --git a/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testAlwaysColors-using-theme-interfaceStyle-colorScheme.Orange_colorAlwaysOnBgBlack_Dark.png b/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testAlwaysColors-using-theme-interfaceStyle-colorScheme.Orange_colorAlwaysOnBgBlack_Dark.png deleted file mode 100644 index 3ea0ff717..000000000 Binary files a/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testAlwaysColors-using-theme-interfaceStyle-colorScheme.Orange_colorAlwaysOnBgBlack_Dark.png and /dev/null differ diff --git a/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testAlwaysColors-using-theme-interfaceStyle-colorScheme.Orange_colorAlwaysOnBgBlack_Light.png b/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testAlwaysColors-using-theme-interfaceStyle-colorScheme.Orange_colorAlwaysOnBgBlack_Light.png deleted file mode 100644 index 0626645a1..000000000 Binary files a/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testAlwaysColors-using-theme-interfaceStyle-colorScheme.Orange_colorAlwaysOnBgBlack_Light.png and /dev/null differ diff --git a/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testAlwaysColors-using-theme-interfaceStyle-colorScheme.Orange_colorAlwaysOnBgInfo_Dark.png b/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testAlwaysColors-using-theme-interfaceStyle-colorScheme.Orange_colorAlwaysOnBgInfo_Dark.png deleted file mode 100644 index 9fabce557..000000000 Binary files a/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testAlwaysColors-using-theme-interfaceStyle-colorScheme.Orange_colorAlwaysOnBgInfo_Dark.png and /dev/null differ diff --git a/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testAlwaysColors-using-theme-interfaceStyle-colorScheme.Orange_colorAlwaysOnBgInfo_Light.png b/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testAlwaysColors-using-theme-interfaceStyle-colorScheme.Orange_colorAlwaysOnBgInfo_Light.png deleted file mode 100644 index 8b0722e91..000000000 Binary files a/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testAlwaysColors-using-theme-interfaceStyle-colorScheme.Orange_colorAlwaysOnBgInfo_Light.png and /dev/null differ diff --git a/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testAlwaysColors-using-theme-interfaceStyle-colorScheme.Orange_colorAlwaysOnBgNegative_Dark.png b/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testAlwaysColors-using-theme-interfaceStyle-colorScheme.Orange_colorAlwaysOnBgNegative_Dark.png deleted file mode 100644 index 300f70d12..000000000 Binary files a/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testAlwaysColors-using-theme-interfaceStyle-colorScheme.Orange_colorAlwaysOnBgNegative_Dark.png and /dev/null differ diff --git a/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testAlwaysColors-using-theme-interfaceStyle-colorScheme.Orange_colorAlwaysOnBgNegative_Light.png b/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testAlwaysColors-using-theme-interfaceStyle-colorScheme.Orange_colorAlwaysOnBgNegative_Light.png deleted file mode 100644 index 3a479ed2a..000000000 Binary files a/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testAlwaysColors-using-theme-interfaceStyle-colorScheme.Orange_colorAlwaysOnBgNegative_Light.png and /dev/null differ diff --git a/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testAlwaysColors-using-theme-interfaceStyle-colorScheme.Orange_colorAlwaysOnBgPositive_Dark.png b/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testAlwaysColors-using-theme-interfaceStyle-colorScheme.Orange_colorAlwaysOnBgPositive_Dark.png deleted file mode 100644 index 2e23edb85..000000000 Binary files a/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testAlwaysColors-using-theme-interfaceStyle-colorScheme.Orange_colorAlwaysOnBgPositive_Dark.png and /dev/null differ diff --git a/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testAlwaysColors-using-theme-interfaceStyle-colorScheme.Orange_colorAlwaysOnBgPositive_Light.png b/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testAlwaysColors-using-theme-interfaceStyle-colorScheme.Orange_colorAlwaysOnBgPositive_Light.png deleted file mode 100644 index e27c5852c..000000000 Binary files a/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testAlwaysColors-using-theme-interfaceStyle-colorScheme.Orange_colorAlwaysOnBgPositive_Light.png and /dev/null differ diff --git a/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testAlwaysColors-using-theme-interfaceStyle-colorScheme.Orange_colorAlwaysOnBgWarning_Dark.png b/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testAlwaysColors-using-theme-interfaceStyle-colorScheme.Orange_colorAlwaysOnBgWarning_Dark.png deleted file mode 100644 index 12dc705f0..000000000 Binary files a/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testAlwaysColors-using-theme-interfaceStyle-colorScheme.Orange_colorAlwaysOnBgWarning_Dark.png and /dev/null differ diff --git a/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testAlwaysColors-using-theme-interfaceStyle-colorScheme.Orange_colorAlwaysOnBgWarning_Light.png b/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testAlwaysColors-using-theme-interfaceStyle-colorScheme.Orange_colorAlwaysOnBgWarning_Light.png deleted file mode 100644 index 5070a7bcf..000000000 Binary files a/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testAlwaysColors-using-theme-interfaceStyle-colorScheme.Orange_colorAlwaysOnBgWarning_Light.png and /dev/null differ diff --git a/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testAlwaysColors-using-theme-interfaceStyle-colorScheme.Orange_colorAlwaysOnBgWhite_Dark.png b/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testAlwaysColors-using-theme-interfaceStyle-colorScheme.Orange_colorAlwaysOnBgWhite_Dark.png deleted file mode 100644 index f0ebb7385..000000000 Binary files a/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testAlwaysColors-using-theme-interfaceStyle-colorScheme.Orange_colorAlwaysOnBgWhite_Dark.png and /dev/null differ diff --git a/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testAlwaysColors-using-theme-interfaceStyle-colorScheme.Orange_colorAlwaysOnBgWhite_Light.png b/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testAlwaysColors-using-theme-interfaceStyle-colorScheme.Orange_colorAlwaysOnBgWhite_Light.png deleted file mode 100644 index 2939dbbb1..000000000 Binary files a/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testAlwaysColors-using-theme-interfaceStyle-colorScheme.Orange_colorAlwaysOnBgWhite_Light.png and /dev/null differ diff --git a/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testAlwaysColors-using-theme-interfaceStyle-colorScheme.Orange_colorAlwaysOnBlack_Dark.png b/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testAlwaysColors-using-theme-interfaceStyle-colorScheme.Orange_colorAlwaysOnBlack_Dark.png new file mode 100644 index 000000000..4f1f0a047 Binary files /dev/null and b/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testAlwaysColors-using-theme-interfaceStyle-colorScheme.Orange_colorAlwaysOnBlack_Dark.png differ diff --git a/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testAlwaysColors-using-theme-interfaceStyle-colorScheme.Orange_colorAlwaysOnBlack_Light.png b/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testAlwaysColors-using-theme-interfaceStyle-colorScheme.Orange_colorAlwaysOnBlack_Light.png new file mode 100644 index 000000000..f90efe3c6 Binary files /dev/null and b/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testAlwaysColors-using-theme-interfaceStyle-colorScheme.Orange_colorAlwaysOnBlack_Light.png differ diff --git a/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testAlwaysColors-using-theme-interfaceStyle-colorScheme.Orange_colorAlwaysOnInfo_Dark.png b/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testAlwaysColors-using-theme-interfaceStyle-colorScheme.Orange_colorAlwaysOnInfo_Dark.png new file mode 100644 index 000000000..1ced3e32f Binary files /dev/null and b/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testAlwaysColors-using-theme-interfaceStyle-colorScheme.Orange_colorAlwaysOnInfo_Dark.png differ diff --git a/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testAlwaysColors-using-theme-interfaceStyle-colorScheme.Orange_colorAlwaysOnInfo_Light.png b/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testAlwaysColors-using-theme-interfaceStyle-colorScheme.Orange_colorAlwaysOnInfo_Light.png new file mode 100644 index 000000000..d47b5cbd2 Binary files /dev/null and b/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testAlwaysColors-using-theme-interfaceStyle-colorScheme.Orange_colorAlwaysOnInfo_Light.png differ diff --git a/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testAlwaysColors-using-theme-interfaceStyle-colorScheme.Orange_colorAlwaysOnNegative_Dark.png b/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testAlwaysColors-using-theme-interfaceStyle-colorScheme.Orange_colorAlwaysOnNegative_Dark.png new file mode 100644 index 000000000..df4fa112c Binary files /dev/null and b/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testAlwaysColors-using-theme-interfaceStyle-colorScheme.Orange_colorAlwaysOnNegative_Dark.png differ diff --git a/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testAlwaysColors-using-theme-interfaceStyle-colorScheme.Orange_colorAlwaysOnNegative_Light.png b/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testAlwaysColors-using-theme-interfaceStyle-colorScheme.Orange_colorAlwaysOnNegative_Light.png new file mode 100644 index 000000000..fd318121d Binary files /dev/null and b/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testAlwaysColors-using-theme-interfaceStyle-colorScheme.Orange_colorAlwaysOnNegative_Light.png differ diff --git a/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testAlwaysColors-using-theme-interfaceStyle-colorScheme.Orange_colorAlwaysOnPositive_Dark.png b/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testAlwaysColors-using-theme-interfaceStyle-colorScheme.Orange_colorAlwaysOnPositive_Dark.png new file mode 100644 index 000000000..f60a6956f Binary files /dev/null and b/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testAlwaysColors-using-theme-interfaceStyle-colorScheme.Orange_colorAlwaysOnPositive_Dark.png differ diff --git a/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testAlwaysColors-using-theme-interfaceStyle-colorScheme.Orange_colorAlwaysOnPositive_Light.png b/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testAlwaysColors-using-theme-interfaceStyle-colorScheme.Orange_colorAlwaysOnPositive_Light.png new file mode 100644 index 000000000..2463b9d54 Binary files /dev/null and b/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testAlwaysColors-using-theme-interfaceStyle-colorScheme.Orange_colorAlwaysOnPositive_Light.png differ diff --git a/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testAlwaysColors-using-theme-interfaceStyle-colorScheme.Orange_colorAlwaysOnWarning_Dark.png b/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testAlwaysColors-using-theme-interfaceStyle-colorScheme.Orange_colorAlwaysOnWarning_Dark.png new file mode 100644 index 000000000..f6fd1b03e Binary files /dev/null and b/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testAlwaysColors-using-theme-interfaceStyle-colorScheme.Orange_colorAlwaysOnWarning_Dark.png differ diff --git a/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testAlwaysColors-using-theme-interfaceStyle-colorScheme.Orange_colorAlwaysOnWarning_Light.png b/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testAlwaysColors-using-theme-interfaceStyle-colorScheme.Orange_colorAlwaysOnWarning_Light.png new file mode 100644 index 000000000..3d9bbff6a Binary files /dev/null and b/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testAlwaysColors-using-theme-interfaceStyle-colorScheme.Orange_colorAlwaysOnWarning_Light.png differ diff --git a/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testAlwaysColors-using-theme-interfaceStyle-colorScheme.Orange_colorAlwaysOnWhite_Dark.png b/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testAlwaysColors-using-theme-interfaceStyle-colorScheme.Orange_colorAlwaysOnWhite_Dark.png new file mode 100644 index 000000000..3a2153534 Binary files /dev/null and b/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testAlwaysColors-using-theme-interfaceStyle-colorScheme.Orange_colorAlwaysOnWhite_Dark.png differ diff --git a/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testAlwaysColors-using-theme-interfaceStyle-colorScheme.Orange_colorAlwaysOnWhite_Light.png b/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testAlwaysColors-using-theme-interfaceStyle-colorScheme.Orange_colorAlwaysOnWhite_Light.png new file mode 100644 index 000000000..778e33e95 Binary files /dev/null and b/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testAlwaysColors-using-theme-interfaceStyle-colorScheme.Orange_colorAlwaysOnWhite_Light.png differ diff --git a/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testAlwaysColors-using-theme-interfaceStyle-colorScheme.Orange_colorAlwaysPositive_Dark.png b/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testAlwaysColors-using-theme-interfaceStyle-colorScheme.Orange_colorAlwaysPositive_Dark.png index 3557540ae..abec43908 100644 Binary files a/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testAlwaysColors-using-theme-interfaceStyle-colorScheme.Orange_colorAlwaysPositive_Dark.png and b/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testAlwaysColors-using-theme-interfaceStyle-colorScheme.Orange_colorAlwaysPositive_Dark.png differ diff --git a/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testAlwaysColors-using-theme-interfaceStyle-colorScheme.Orange_colorAlwaysWarning_Dark.png b/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testAlwaysColors-using-theme-interfaceStyle-colorScheme.Orange_colorAlwaysWarning_Dark.png index d316556ff..2e679d8a9 100644 Binary files a/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testAlwaysColors-using-theme-interfaceStyle-colorScheme.Orange_colorAlwaysWarning_Dark.png and b/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testAlwaysColors-using-theme-interfaceStyle-colorScheme.Orange_colorAlwaysWarning_Dark.png differ diff --git a/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testAlwaysColors-using-theme-interfaceStyle-colorScheme.Orange_colorAlwaysWhite_Dark.png b/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testAlwaysColors-using-theme-interfaceStyle-colorScheme.Orange_colorAlwaysWhite_Dark.png index bb5092a4b..1766be66c 100644 Binary files a/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testAlwaysColors-using-theme-interfaceStyle-colorScheme.Orange_colorAlwaysWhite_Dark.png and b/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testAlwaysColors-using-theme-interfaceStyle-colorScheme.Orange_colorAlwaysWhite_Dark.png differ diff --git a/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testBackgroundColors-using-theme-interfaceStyle-colorScheme.Inverse_colorBgTertiary_Dark.png b/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testBackgroundColors-using-theme-interfaceStyle-colorScheme.Inverse_colorBgTertiary_Dark.png new file mode 100644 index 000000000..dd54d31bd Binary files /dev/null and b/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testBackgroundColors-using-theme-interfaceStyle-colorScheme.Inverse_colorBgTertiary_Dark.png differ diff --git a/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testBackgroundColors-using-theme-interfaceStyle-colorScheme.Inverse_colorBgTertiary_Light.png b/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testBackgroundColors-using-theme-interfaceStyle-colorScheme.Inverse_colorBgTertiary_Light.png new file mode 100644 index 000000000..9958eb2a9 Binary files /dev/null and b/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testBackgroundColors-using-theme-interfaceStyle-colorScheme.Inverse_colorBgTertiary_Light.png differ diff --git a/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testBackgroundColors-using-theme-interfaceStyle-colorScheme.Orange_colorBgBrandPrimary_Dark.png b/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testBackgroundColors-using-theme-interfaceStyle-colorScheme.Orange_colorBgBrandPrimary_Dark.png index d68ae47b4..727c3d19c 100644 Binary files a/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testBackgroundColors-using-theme-interfaceStyle-colorScheme.Orange_colorBgBrandPrimary_Dark.png and b/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testBackgroundColors-using-theme-interfaceStyle-colorScheme.Orange_colorBgBrandPrimary_Dark.png differ diff --git a/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testBackgroundColors-using-theme-interfaceStyle-colorScheme.Orange_colorBgEmphasized_Dark.png b/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testBackgroundColors-using-theme-interfaceStyle-colorScheme.Orange_colorBgEmphasized_Dark.png index 8568816f0..6d6c81a72 100644 Binary files a/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testBackgroundColors-using-theme-interfaceStyle-colorScheme.Orange_colorBgEmphasized_Dark.png and b/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testBackgroundColors-using-theme-interfaceStyle-colorScheme.Orange_colorBgEmphasized_Dark.png differ diff --git a/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testBackgroundColors-using-theme-interfaceStyle-colorScheme.Orange_colorBgPrimary_Dark.png b/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testBackgroundColors-using-theme-interfaceStyle-colorScheme.Orange_colorBgPrimary_Dark.png index 17ad68f07..978d9b876 100644 Binary files a/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testBackgroundColors-using-theme-interfaceStyle-colorScheme.Orange_colorBgPrimary_Dark.png and b/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testBackgroundColors-using-theme-interfaceStyle-colorScheme.Orange_colorBgPrimary_Dark.png differ diff --git a/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testBackgroundColors-using-theme-interfaceStyle-colorScheme.Orange_colorBgSecondary_Dark.png b/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testBackgroundColors-using-theme-interfaceStyle-colorScheme.Orange_colorBgSecondary_Dark.png index b008eaf23..962520804 100644 Binary files a/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testBackgroundColors-using-theme-interfaceStyle-colorScheme.Orange_colorBgSecondary_Dark.png and b/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testBackgroundColors-using-theme-interfaceStyle-colorScheme.Orange_colorBgSecondary_Dark.png differ diff --git a/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testBackgroundColors-using-theme-interfaceStyle-colorScheme.Orange_colorBgStatusAccentEmphasized_Dark.png b/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testBackgroundColors-using-theme-interfaceStyle-colorScheme.Orange_colorBgStatusAccentEmphasized_Dark.png index 698c444a3..4871e5db9 100644 Binary files a/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testBackgroundColors-using-theme-interfaceStyle-colorScheme.Orange_colorBgStatusAccentEmphasized_Dark.png and b/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testBackgroundColors-using-theme-interfaceStyle-colorScheme.Orange_colorBgStatusAccentEmphasized_Dark.png differ diff --git a/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testBackgroundColors-using-theme-interfaceStyle-colorScheme.Orange_colorBgStatusAccentMutedOnBgEmphasized_Dark.png b/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testBackgroundColors-using-theme-interfaceStyle-colorScheme.Orange_colorBgStatusAccentMutedOnBgEmphasized_Dark.png index 547bd6b44..b8ba0724f 100644 Binary files a/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testBackgroundColors-using-theme-interfaceStyle-colorScheme.Orange_colorBgStatusAccentMutedOnBgEmphasized_Dark.png and b/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testBackgroundColors-using-theme-interfaceStyle-colorScheme.Orange_colorBgStatusAccentMutedOnBgEmphasized_Dark.png differ diff --git a/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testBackgroundColors-using-theme-interfaceStyle-colorScheme.Orange_colorBgStatusAccentMuted_Dark.png b/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testBackgroundColors-using-theme-interfaceStyle-colorScheme.Orange_colorBgStatusAccentMuted_Dark.png index e3985ee27..4186967e3 100644 Binary files a/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testBackgroundColors-using-theme-interfaceStyle-colorScheme.Orange_colorBgStatusAccentMuted_Dark.png and b/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testBackgroundColors-using-theme-interfaceStyle-colorScheme.Orange_colorBgStatusAccentMuted_Dark.png differ diff --git a/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testBackgroundColors-using-theme-interfaceStyle-colorScheme.Orange_colorBgStatusInfoEmphasized_Dark.png b/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testBackgroundColors-using-theme-interfaceStyle-colorScheme.Orange_colorBgStatusInfoEmphasized_Dark.png index 9d1733ad3..dcb7933a3 100644 Binary files a/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testBackgroundColors-using-theme-interfaceStyle-colorScheme.Orange_colorBgStatusInfoEmphasized_Dark.png and b/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testBackgroundColors-using-theme-interfaceStyle-colorScheme.Orange_colorBgStatusInfoEmphasized_Dark.png differ diff --git a/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testBackgroundColors-using-theme-interfaceStyle-colorScheme.Orange_colorBgStatusInfoMutedOnBgEmphasized_Dark.png b/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testBackgroundColors-using-theme-interfaceStyle-colorScheme.Orange_colorBgStatusInfoMutedOnBgEmphasized_Dark.png index abc3e134d..e6ce0867e 100644 Binary files a/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testBackgroundColors-using-theme-interfaceStyle-colorScheme.Orange_colorBgStatusInfoMutedOnBgEmphasized_Dark.png and b/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testBackgroundColors-using-theme-interfaceStyle-colorScheme.Orange_colorBgStatusInfoMutedOnBgEmphasized_Dark.png differ diff --git a/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testBackgroundColors-using-theme-interfaceStyle-colorScheme.Orange_colorBgStatusInfoMuted_Dark.png b/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testBackgroundColors-using-theme-interfaceStyle-colorScheme.Orange_colorBgStatusInfoMuted_Dark.png index a9c6cbf2c..b0c374471 100644 Binary files a/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testBackgroundColors-using-theme-interfaceStyle-colorScheme.Orange_colorBgStatusInfoMuted_Dark.png and b/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testBackgroundColors-using-theme-interfaceStyle-colorScheme.Orange_colorBgStatusInfoMuted_Dark.png differ diff --git a/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testBackgroundColors-using-theme-interfaceStyle-colorScheme.Orange_colorBgStatusNegativeEmphasized_Dark.png b/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testBackgroundColors-using-theme-interfaceStyle-colorScheme.Orange_colorBgStatusNegativeEmphasized_Dark.png index f1900ef90..08faf4f55 100644 Binary files a/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testBackgroundColors-using-theme-interfaceStyle-colorScheme.Orange_colorBgStatusNegativeEmphasized_Dark.png and b/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testBackgroundColors-using-theme-interfaceStyle-colorScheme.Orange_colorBgStatusNegativeEmphasized_Dark.png differ diff --git a/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testBackgroundColors-using-theme-interfaceStyle-colorScheme.Orange_colorBgStatusNegativeMutedOnBgEmphasized_Dark.png b/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testBackgroundColors-using-theme-interfaceStyle-colorScheme.Orange_colorBgStatusNegativeMutedOnBgEmphasized_Dark.png index 485c838fe..19969ea6b 100644 Binary files a/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testBackgroundColors-using-theme-interfaceStyle-colorScheme.Orange_colorBgStatusNegativeMutedOnBgEmphasized_Dark.png and b/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testBackgroundColors-using-theme-interfaceStyle-colorScheme.Orange_colorBgStatusNegativeMutedOnBgEmphasized_Dark.png differ diff --git a/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testBackgroundColors-using-theme-interfaceStyle-colorScheme.Orange_colorBgStatusNegativeMuted_Dark.png b/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testBackgroundColors-using-theme-interfaceStyle-colorScheme.Orange_colorBgStatusNegativeMuted_Dark.png index 023d0db33..763a866fc 100644 Binary files a/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testBackgroundColors-using-theme-interfaceStyle-colorScheme.Orange_colorBgStatusNegativeMuted_Dark.png and b/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testBackgroundColors-using-theme-interfaceStyle-colorScheme.Orange_colorBgStatusNegativeMuted_Dark.png differ diff --git a/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testBackgroundColors-using-theme-interfaceStyle-colorScheme.Orange_colorBgStatusNeutralOnBgEmphasized_Dark.png b/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testBackgroundColors-using-theme-interfaceStyle-colorScheme.Orange_colorBgStatusNeutralOnBgEmphasized_Dark.png index fef5607c5..be2e405d3 100644 Binary files a/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testBackgroundColors-using-theme-interfaceStyle-colorScheme.Orange_colorBgStatusNeutralOnBgEmphasized_Dark.png and b/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testBackgroundColors-using-theme-interfaceStyle-colorScheme.Orange_colorBgStatusNeutralOnBgEmphasized_Dark.png differ diff --git a/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testBackgroundColors-using-theme-interfaceStyle-colorScheme.Orange_colorBgStatusNeutral_Dark.png b/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testBackgroundColors-using-theme-interfaceStyle-colorScheme.Orange_colorBgStatusNeutral_Dark.png index 086902274..4dea522c2 100644 Binary files a/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testBackgroundColors-using-theme-interfaceStyle-colorScheme.Orange_colorBgStatusNeutral_Dark.png and b/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testBackgroundColors-using-theme-interfaceStyle-colorScheme.Orange_colorBgStatusNeutral_Dark.png differ diff --git a/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testBackgroundColors-using-theme-interfaceStyle-colorScheme.Orange_colorBgStatusPositiveEmphasized_Dark.png b/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testBackgroundColors-using-theme-interfaceStyle-colorScheme.Orange_colorBgStatusPositiveEmphasized_Dark.png index 0cd6d8ed9..032794fb5 100644 Binary files a/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testBackgroundColors-using-theme-interfaceStyle-colorScheme.Orange_colorBgStatusPositiveEmphasized_Dark.png and b/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testBackgroundColors-using-theme-interfaceStyle-colorScheme.Orange_colorBgStatusPositiveEmphasized_Dark.png differ diff --git a/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testBackgroundColors-using-theme-interfaceStyle-colorScheme.Orange_colorBgStatusPositiveMutedOnBgEmphasized_Dark.png b/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testBackgroundColors-using-theme-interfaceStyle-colorScheme.Orange_colorBgStatusPositiveMutedOnBgEmphasized_Dark.png index 330c1f4b5..e8b6f4bd7 100644 Binary files a/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testBackgroundColors-using-theme-interfaceStyle-colorScheme.Orange_colorBgStatusPositiveMutedOnBgEmphasized_Dark.png and b/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testBackgroundColors-using-theme-interfaceStyle-colorScheme.Orange_colorBgStatusPositiveMutedOnBgEmphasized_Dark.png differ diff --git a/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testBackgroundColors-using-theme-interfaceStyle-colorScheme.Orange_colorBgStatusPositiveMuted_Dark.png b/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testBackgroundColors-using-theme-interfaceStyle-colorScheme.Orange_colorBgStatusPositiveMuted_Dark.png index f5544143d..f1709fb40 100644 Binary files a/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testBackgroundColors-using-theme-interfaceStyle-colorScheme.Orange_colorBgStatusPositiveMuted_Dark.png and b/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testBackgroundColors-using-theme-interfaceStyle-colorScheme.Orange_colorBgStatusPositiveMuted_Dark.png differ diff --git a/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testBackgroundColors-using-theme-interfaceStyle-colorScheme.Orange_colorBgStatusWarningEmphasized_Dark.png b/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testBackgroundColors-using-theme-interfaceStyle-colorScheme.Orange_colorBgStatusWarningEmphasized_Dark.png index 8455b473b..b267d6a78 100644 Binary files a/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testBackgroundColors-using-theme-interfaceStyle-colorScheme.Orange_colorBgStatusWarningEmphasized_Dark.png and b/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testBackgroundColors-using-theme-interfaceStyle-colorScheme.Orange_colorBgStatusWarningEmphasized_Dark.png differ diff --git a/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testBackgroundColors-using-theme-interfaceStyle-colorScheme.Orange_colorBgStatusWarningMutedOnBgEmphasized_Dark.png b/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testBackgroundColors-using-theme-interfaceStyle-colorScheme.Orange_colorBgStatusWarningMutedOnBgEmphasized_Dark.png index 458a2b379..c18544e4c 100644 Binary files a/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testBackgroundColors-using-theme-interfaceStyle-colorScheme.Orange_colorBgStatusWarningMutedOnBgEmphasized_Dark.png and b/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testBackgroundColors-using-theme-interfaceStyle-colorScheme.Orange_colorBgStatusWarningMutedOnBgEmphasized_Dark.png differ diff --git a/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testBackgroundColors-using-theme-interfaceStyle-colorScheme.Orange_colorBgStatusWarningMuted_Dark.png b/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testBackgroundColors-using-theme-interfaceStyle-colorScheme.Orange_colorBgStatusWarningMuted_Dark.png index 45f2e383f..0764ce33e 100644 Binary files a/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testBackgroundColors-using-theme-interfaceStyle-colorScheme.Orange_colorBgStatusWarningMuted_Dark.png and b/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testBackgroundColors-using-theme-interfaceStyle-colorScheme.Orange_colorBgStatusWarningMuted_Dark.png differ diff --git a/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testBackgroundColors-using-theme-interfaceStyle-colorScheme.Orange_colorBgTertiary_Dark.png b/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testBackgroundColors-using-theme-interfaceStyle-colorScheme.Orange_colorBgTertiary_Dark.png new file mode 100644 index 000000000..aca9e0afa Binary files /dev/null and b/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testBackgroundColors-using-theme-interfaceStyle-colorScheme.Orange_colorBgTertiary_Dark.png differ diff --git a/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testBackgroundColors-using-theme-interfaceStyle-colorScheme.Orange_colorBgTertiary_Light.png b/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testBackgroundColors-using-theme-interfaceStyle-colorScheme.Orange_colorBgTertiary_Light.png new file mode 100644 index 000000000..28b5bc682 Binary files /dev/null and b/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testBackgroundColors-using-theme-interfaceStyle-colorScheme.Orange_colorBgTertiary_Light.png differ diff --git a/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testBorderColors-using-theme-interfaceStyle-colorScheme.Inverse_colorBorderFocusInsetOnBgEmphasized_Dark.png b/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testBorderColors-using-theme-interfaceStyle-colorScheme.Inverse_colorBorderFocusInsetOnBgEmphasized_Dark.png new file mode 100644 index 000000000..680bce3e5 Binary files /dev/null and b/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testBorderColors-using-theme-interfaceStyle-colorScheme.Inverse_colorBorderFocusInsetOnBgEmphasized_Dark.png differ diff --git a/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testBorderColors-using-theme-interfaceStyle-colorScheme.Inverse_colorBorderFocusInsetOnBgEmphasized_Light.png b/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testBorderColors-using-theme-interfaceStyle-colorScheme.Inverse_colorBorderFocusInsetOnBgEmphasized_Light.png new file mode 100644 index 000000000..80db462a1 Binary files /dev/null and b/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testBorderColors-using-theme-interfaceStyle-colorScheme.Inverse_colorBorderFocusInsetOnBgEmphasized_Light.png differ diff --git a/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testBorderColors-using-theme-interfaceStyle-colorScheme.Inverse_colorBorderFocusInset_Dark.png b/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testBorderColors-using-theme-interfaceStyle-colorScheme.Inverse_colorBorderFocusInset_Dark.png new file mode 100644 index 000000000..30d3838b0 Binary files /dev/null and b/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testBorderColors-using-theme-interfaceStyle-colorScheme.Inverse_colorBorderFocusInset_Dark.png differ diff --git a/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testBorderColors-using-theme-interfaceStyle-colorScheme.Inverse_colorBorderFocusInset_Light.png b/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testBorderColors-using-theme-interfaceStyle-colorScheme.Inverse_colorBorderFocusInset_Light.png new file mode 100644 index 000000000..3ccac4ea9 Binary files /dev/null and b/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testBorderColors-using-theme-interfaceStyle-colorScheme.Inverse_colorBorderFocusInset_Light.png differ diff --git a/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testBorderColors-using-theme-interfaceStyle-colorScheme.Inverse_colorBorderOnBgBrandPrimary_Dark.png b/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testBorderColors-using-theme-interfaceStyle-colorScheme.Inverse_colorBorderOnBgBrandPrimary_Dark.png deleted file mode 100644 index 350d9e91e..000000000 Binary files a/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testBorderColors-using-theme-interfaceStyle-colorScheme.Inverse_colorBorderOnBgBrandPrimary_Dark.png and /dev/null differ diff --git a/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testBorderColors-using-theme-interfaceStyle-colorScheme.Inverse_colorBorderOnBgBrandPrimary_Light.png b/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testBorderColors-using-theme-interfaceStyle-colorScheme.Inverse_colorBorderOnBgBrandPrimary_Light.png deleted file mode 100644 index 3f396aed0..000000000 Binary files a/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testBorderColors-using-theme-interfaceStyle-colorScheme.Inverse_colorBorderOnBgBrandPrimary_Light.png and /dev/null differ diff --git a/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testBorderColors-using-theme-interfaceStyle-colorScheme.Inverse_colorBorderOnBrandPrimary_Dark.png b/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testBorderColors-using-theme-interfaceStyle-colorScheme.Inverse_colorBorderOnBrandPrimary_Dark.png new file mode 100644 index 000000000..a3752e0ed Binary files /dev/null and b/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testBorderColors-using-theme-interfaceStyle-colorScheme.Inverse_colorBorderOnBrandPrimary_Dark.png differ diff --git a/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testBorderColors-using-theme-interfaceStyle-colorScheme.Inverse_colorBorderOnBrandPrimary_Light.png b/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testBorderColors-using-theme-interfaceStyle-colorScheme.Inverse_colorBorderOnBrandPrimary_Light.png new file mode 100644 index 000000000..c3863d087 Binary files /dev/null and b/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testBorderColors-using-theme-interfaceStyle-colorScheme.Inverse_colorBorderOnBrandPrimary_Light.png differ diff --git a/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testBorderColors-using-theme-interfaceStyle-colorScheme.Orange_colorBorderBrandPrimaryOnBgEmphasized_Dark.png b/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testBorderColors-using-theme-interfaceStyle-colorScheme.Orange_colorBorderBrandPrimaryOnBgEmphasized_Dark.png index 9c3dc26ca..fd1cbdcfa 100644 Binary files a/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testBorderColors-using-theme-interfaceStyle-colorScheme.Orange_colorBorderBrandPrimaryOnBgEmphasized_Dark.png and b/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testBorderColors-using-theme-interfaceStyle-colorScheme.Orange_colorBorderBrandPrimaryOnBgEmphasized_Dark.png differ diff --git a/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testBorderColors-using-theme-interfaceStyle-colorScheme.Orange_colorBorderBrandPrimary_Dark.png b/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testBorderColors-using-theme-interfaceStyle-colorScheme.Orange_colorBorderBrandPrimary_Dark.png index d60b0f0ad..5f61edae0 100644 Binary files a/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testBorderColors-using-theme-interfaceStyle-colorScheme.Orange_colorBorderBrandPrimary_Dark.png and b/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testBorderColors-using-theme-interfaceStyle-colorScheme.Orange_colorBorderBrandPrimary_Dark.png differ diff --git a/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testBorderColors-using-theme-interfaceStyle-colorScheme.Orange_colorBorderDefaultOnBgEmphasized_Dark.png b/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testBorderColors-using-theme-interfaceStyle-colorScheme.Orange_colorBorderDefaultOnBgEmphasized_Dark.png index 19cd68358..3936cdcad 100644 Binary files a/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testBorderColors-using-theme-interfaceStyle-colorScheme.Orange_colorBorderDefaultOnBgEmphasized_Dark.png and b/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testBorderColors-using-theme-interfaceStyle-colorScheme.Orange_colorBorderDefaultOnBgEmphasized_Dark.png differ diff --git a/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testBorderColors-using-theme-interfaceStyle-colorScheme.Orange_colorBorderDefault_Dark.png b/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testBorderColors-using-theme-interfaceStyle-colorScheme.Orange_colorBorderDefault_Dark.png index c203dadd9..1be6698bb 100644 Binary files a/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testBorderColors-using-theme-interfaceStyle-colorScheme.Orange_colorBorderDefault_Dark.png and b/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testBorderColors-using-theme-interfaceStyle-colorScheme.Orange_colorBorderDefault_Dark.png differ diff --git a/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testBorderColors-using-theme-interfaceStyle-colorScheme.Orange_colorBorderEmphasizedOnBgEmphasized_Dark.png b/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testBorderColors-using-theme-interfaceStyle-colorScheme.Orange_colorBorderEmphasizedOnBgEmphasized_Dark.png index 9a14800ef..e31c25c7c 100644 Binary files a/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testBorderColors-using-theme-interfaceStyle-colorScheme.Orange_colorBorderEmphasizedOnBgEmphasized_Dark.png and b/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testBorderColors-using-theme-interfaceStyle-colorScheme.Orange_colorBorderEmphasizedOnBgEmphasized_Dark.png differ diff --git a/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testBorderColors-using-theme-interfaceStyle-colorScheme.Orange_colorBorderEmphasized_Dark.png b/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testBorderColors-using-theme-interfaceStyle-colorScheme.Orange_colorBorderEmphasized_Dark.png index fb8c12ef0..51df8bf36 100644 Binary files a/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testBorderColors-using-theme-interfaceStyle-colorScheme.Orange_colorBorderEmphasized_Dark.png and b/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testBorderColors-using-theme-interfaceStyle-colorScheme.Orange_colorBorderEmphasized_Dark.png differ diff --git a/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testBorderColors-using-theme-interfaceStyle-colorScheme.Orange_colorBorderFocusInsetOnBgEmphasized_Dark.png b/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testBorderColors-using-theme-interfaceStyle-colorScheme.Orange_colorBorderFocusInsetOnBgEmphasized_Dark.png new file mode 100644 index 000000000..79ed659c2 Binary files /dev/null and b/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testBorderColors-using-theme-interfaceStyle-colorScheme.Orange_colorBorderFocusInsetOnBgEmphasized_Dark.png differ diff --git a/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testBorderColors-using-theme-interfaceStyle-colorScheme.Orange_colorBorderFocusInsetOnBgEmphasized_Light.png b/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testBorderColors-using-theme-interfaceStyle-colorScheme.Orange_colorBorderFocusInsetOnBgEmphasized_Light.png new file mode 100644 index 000000000..0cfa9e619 Binary files /dev/null and b/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testBorderColors-using-theme-interfaceStyle-colorScheme.Orange_colorBorderFocusInsetOnBgEmphasized_Light.png differ diff --git a/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testBorderColors-using-theme-interfaceStyle-colorScheme.Orange_colorBorderFocusInset_Dark.png b/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testBorderColors-using-theme-interfaceStyle-colorScheme.Orange_colorBorderFocusInset_Dark.png new file mode 100644 index 000000000..281f31a17 Binary files /dev/null and b/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testBorderColors-using-theme-interfaceStyle-colorScheme.Orange_colorBorderFocusInset_Dark.png differ diff --git a/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testBorderColors-using-theme-interfaceStyle-colorScheme.Orange_colorBorderFocusInset_Light.png b/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testBorderColors-using-theme-interfaceStyle-colorScheme.Orange_colorBorderFocusInset_Light.png new file mode 100644 index 000000000..471c32212 Binary files /dev/null and b/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testBorderColors-using-theme-interfaceStyle-colorScheme.Orange_colorBorderFocusInset_Light.png differ diff --git a/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testBorderColors-using-theme-interfaceStyle-colorScheme.Orange_colorBorderFocus_Dark.png b/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testBorderColors-using-theme-interfaceStyle-colorScheme.Orange_colorBorderFocus_Dark.png index 4a996fcf1..bfba6c86a 100644 Binary files a/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testBorderColors-using-theme-interfaceStyle-colorScheme.Orange_colorBorderFocus_Dark.png and b/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testBorderColors-using-theme-interfaceStyle-colorScheme.Orange_colorBorderFocus_Dark.png differ diff --git a/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testBorderColors-using-theme-interfaceStyle-colorScheme.Orange_colorBorderFocus_Light.png b/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testBorderColors-using-theme-interfaceStyle-colorScheme.Orange_colorBorderFocus_Light.png index 19f68e829..7a1bca1bc 100644 Binary files a/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testBorderColors-using-theme-interfaceStyle-colorScheme.Orange_colorBorderFocus_Light.png and b/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testBorderColors-using-theme-interfaceStyle-colorScheme.Orange_colorBorderFocus_Light.png differ diff --git a/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testBorderColors-using-theme-interfaceStyle-colorScheme.Orange_colorBorderOnBgBrandPrimary_Dark.png b/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testBorderColors-using-theme-interfaceStyle-colorScheme.Orange_colorBorderOnBgBrandPrimary_Dark.png deleted file mode 100644 index 350d9e91e..000000000 Binary files a/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testBorderColors-using-theme-interfaceStyle-colorScheme.Orange_colorBorderOnBgBrandPrimary_Dark.png and /dev/null differ diff --git a/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testBorderColors-using-theme-interfaceStyle-colorScheme.Orange_colorBorderOnBgBrandPrimary_Light.png b/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testBorderColors-using-theme-interfaceStyle-colorScheme.Orange_colorBorderOnBgBrandPrimary_Light.png deleted file mode 100644 index 2703215a9..000000000 Binary files a/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testBorderColors-using-theme-interfaceStyle-colorScheme.Orange_colorBorderOnBgBrandPrimary_Light.png and /dev/null differ diff --git a/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testBorderColors-using-theme-interfaceStyle-colorScheme.Orange_colorBorderOnBrandPrimary_Dark.png b/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testBorderColors-using-theme-interfaceStyle-colorScheme.Orange_colorBorderOnBrandPrimary_Dark.png new file mode 100644 index 000000000..84a5b76b3 Binary files /dev/null and b/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testBorderColors-using-theme-interfaceStyle-colorScheme.Orange_colorBorderOnBrandPrimary_Dark.png differ diff --git a/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testBorderColors-using-theme-interfaceStyle-colorScheme.Orange_colorBorderOnBrandPrimary_Light.png b/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testBorderColors-using-theme-interfaceStyle-colorScheme.Orange_colorBorderOnBrandPrimary_Light.png new file mode 100644 index 000000000..f9982e1ec Binary files /dev/null and b/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testBorderColors-using-theme-interfaceStyle-colorScheme.Orange_colorBorderOnBrandPrimary_Light.png differ diff --git a/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testChartColors-using-theme-interfaceStyle-colorScheme.Orange_colorChartCategoricalBrand_Dark.png b/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testChartColors-using-theme-interfaceStyle-colorScheme.Orange_colorChartCategoricalBrand_Dark.png index 5f36406c5..85de940f9 100644 Binary files a/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testChartColors-using-theme-interfaceStyle-colorScheme.Orange_colorChartCategoricalBrand_Dark.png and b/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testChartColors-using-theme-interfaceStyle-colorScheme.Orange_colorChartCategoricalBrand_Dark.png differ diff --git a/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testChartColors-using-theme-interfaceStyle-colorScheme.Orange_colorChartCategoricalNegative_Dark.png b/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testChartColors-using-theme-interfaceStyle-colorScheme.Orange_colorChartCategoricalNegative_Dark.png index 14329f97c..0f51601e6 100644 Binary files a/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testChartColors-using-theme-interfaceStyle-colorScheme.Orange_colorChartCategoricalNegative_Dark.png and b/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testChartColors-using-theme-interfaceStyle-colorScheme.Orange_colorChartCategoricalNegative_Dark.png differ diff --git a/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testChartColors-using-theme-interfaceStyle-colorScheme.Orange_colorChartCategoricalNeutral_Dark.png b/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testChartColors-using-theme-interfaceStyle-colorScheme.Orange_colorChartCategoricalNeutral_Dark.png index 19e305582..d829c64ae 100644 Binary files a/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testChartColors-using-theme-interfaceStyle-colorScheme.Orange_colorChartCategoricalNeutral_Dark.png and b/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testChartColors-using-theme-interfaceStyle-colorScheme.Orange_colorChartCategoricalNeutral_Dark.png differ diff --git a/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testChartColors-using-theme-interfaceStyle-colorScheme.Orange_colorChartCategoricalNeutral_Light.png b/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testChartColors-using-theme-interfaceStyle-colorScheme.Orange_colorChartCategoricalNeutral_Light.png index 3d1b7e5f5..6901a5b87 100644 Binary files a/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testChartColors-using-theme-interfaceStyle-colorScheme.Orange_colorChartCategoricalNeutral_Light.png and b/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testChartColors-using-theme-interfaceStyle-colorScheme.Orange_colorChartCategoricalNeutral_Light.png differ diff --git a/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testChartColors-using-theme-interfaceStyle-colorScheme.Orange_colorChartCategoricalPositive_Dark.png b/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testChartColors-using-theme-interfaceStyle-colorScheme.Orange_colorChartCategoricalPositive_Dark.png index 81ecd7d69..76d09e8c4 100644 Binary files a/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testChartColors-using-theme-interfaceStyle-colorScheme.Orange_colorChartCategoricalPositive_Dark.png and b/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testChartColors-using-theme-interfaceStyle-colorScheme.Orange_colorChartCategoricalPositive_Dark.png differ diff --git a/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testChartColors-using-theme-interfaceStyle-colorScheme.Orange_colorChartCategoricalPositive_Light.png b/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testChartColors-using-theme-interfaceStyle-colorScheme.Orange_colorChartCategoricalPositive_Light.png index 7acc4fa90..256e483a9 100644 Binary files a/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testChartColors-using-theme-interfaceStyle-colorScheme.Orange_colorChartCategoricalPositive_Light.png and b/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testChartColors-using-theme-interfaceStyle-colorScheme.Orange_colorChartCategoricalPositive_Light.png differ diff --git a/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testChartColors-using-theme-interfaceStyle-colorScheme.Orange_colorChartCategoricalTier10_Dark.png b/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testChartColors-using-theme-interfaceStyle-colorScheme.Orange_colorChartCategoricalTier10_Dark.png index f2b82be7c..794eacc56 100644 Binary files a/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testChartColors-using-theme-interfaceStyle-colorScheme.Orange_colorChartCategoricalTier10_Dark.png and b/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testChartColors-using-theme-interfaceStyle-colorScheme.Orange_colorChartCategoricalTier10_Dark.png differ diff --git a/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testChartColors-using-theme-interfaceStyle-colorScheme.Orange_colorChartCategoricalTier1_Dark.png b/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testChartColors-using-theme-interfaceStyle-colorScheme.Orange_colorChartCategoricalTier1_Dark.png index 1fa63ed21..615805a40 100644 Binary files a/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testChartColors-using-theme-interfaceStyle-colorScheme.Orange_colorChartCategoricalTier1_Dark.png and b/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testChartColors-using-theme-interfaceStyle-colorScheme.Orange_colorChartCategoricalTier1_Dark.png differ diff --git a/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testChartColors-using-theme-interfaceStyle-colorScheme.Orange_colorChartCategoricalTier2_Dark.png b/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testChartColors-using-theme-interfaceStyle-colorScheme.Orange_colorChartCategoricalTier2_Dark.png index 06c40e4e6..4d289d16d 100644 Binary files a/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testChartColors-using-theme-interfaceStyle-colorScheme.Orange_colorChartCategoricalTier2_Dark.png and b/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testChartColors-using-theme-interfaceStyle-colorScheme.Orange_colorChartCategoricalTier2_Dark.png differ diff --git a/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testChartColors-using-theme-interfaceStyle-colorScheme.Orange_colorChartCategoricalTier3_Dark.png b/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testChartColors-using-theme-interfaceStyle-colorScheme.Orange_colorChartCategoricalTier3_Dark.png index 0b60eafc6..8d43317d3 100644 Binary files a/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testChartColors-using-theme-interfaceStyle-colorScheme.Orange_colorChartCategoricalTier3_Dark.png and b/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testChartColors-using-theme-interfaceStyle-colorScheme.Orange_colorChartCategoricalTier3_Dark.png differ diff --git a/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testChartColors-using-theme-interfaceStyle-colorScheme.Orange_colorChartCategoricalTier4_Dark.png b/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testChartColors-using-theme-interfaceStyle-colorScheme.Orange_colorChartCategoricalTier4_Dark.png index 58563efcd..f93eaf0c4 100644 Binary files a/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testChartColors-using-theme-interfaceStyle-colorScheme.Orange_colorChartCategoricalTier4_Dark.png and b/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testChartColors-using-theme-interfaceStyle-colorScheme.Orange_colorChartCategoricalTier4_Dark.png differ diff --git a/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testChartColors-using-theme-interfaceStyle-colorScheme.Orange_colorChartCategoricalTier5_Dark.png b/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testChartColors-using-theme-interfaceStyle-colorScheme.Orange_colorChartCategoricalTier5_Dark.png index 121ebcaa5..b66e36554 100644 Binary files a/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testChartColors-using-theme-interfaceStyle-colorScheme.Orange_colorChartCategoricalTier5_Dark.png and b/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testChartColors-using-theme-interfaceStyle-colorScheme.Orange_colorChartCategoricalTier5_Dark.png differ diff --git a/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testChartColors-using-theme-interfaceStyle-colorScheme.Orange_colorChartCategoricalTier6_Dark.png b/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testChartColors-using-theme-interfaceStyle-colorScheme.Orange_colorChartCategoricalTier6_Dark.png index d17f49685..0e6af3e42 100644 Binary files a/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testChartColors-using-theme-interfaceStyle-colorScheme.Orange_colorChartCategoricalTier6_Dark.png and b/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testChartColors-using-theme-interfaceStyle-colorScheme.Orange_colorChartCategoricalTier6_Dark.png differ diff --git a/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testChartColors-using-theme-interfaceStyle-colorScheme.Orange_colorChartCategoricalTier7_Dark.png b/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testChartColors-using-theme-interfaceStyle-colorScheme.Orange_colorChartCategoricalTier7_Dark.png index 5efc78418..32bf57fe7 100644 Binary files a/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testChartColors-using-theme-interfaceStyle-colorScheme.Orange_colorChartCategoricalTier7_Dark.png and b/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testChartColors-using-theme-interfaceStyle-colorScheme.Orange_colorChartCategoricalTier7_Dark.png differ diff --git a/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testChartColors-using-theme-interfaceStyle-colorScheme.Orange_colorChartCategoricalTier8_Dark.png b/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testChartColors-using-theme-interfaceStyle-colorScheme.Orange_colorChartCategoricalTier8_Dark.png index 815c1ebbe..8455956bb 100644 Binary files a/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testChartColors-using-theme-interfaceStyle-colorScheme.Orange_colorChartCategoricalTier8_Dark.png and b/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testChartColors-using-theme-interfaceStyle-colorScheme.Orange_colorChartCategoricalTier8_Dark.png differ diff --git a/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testChartColors-using-theme-interfaceStyle-colorScheme.Orange_colorChartCategoricalTier9_Dark.png b/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testChartColors-using-theme-interfaceStyle-colorScheme.Orange_colorChartCategoricalTier9_Dark.png index 6d0c53a56..51c87270b 100644 Binary files a/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testChartColors-using-theme-interfaceStyle-colorScheme.Orange_colorChartCategoricalTier9_Dark.png and b/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testChartColors-using-theme-interfaceStyle-colorScheme.Orange_colorChartCategoricalTier9_Dark.png differ diff --git a/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testChartColors-using-theme-interfaceStyle-colorScheme.Orange_colorChartSequentialAccent1Tint100_Dark.png b/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testChartColors-using-theme-interfaceStyle-colorScheme.Orange_colorChartSequentialAccent1Tint100_Dark.png index ce8de3d4e..52ae04d63 100644 Binary files a/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testChartColors-using-theme-interfaceStyle-colorScheme.Orange_colorChartSequentialAccent1Tint100_Dark.png and b/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testChartColors-using-theme-interfaceStyle-colorScheme.Orange_colorChartSequentialAccent1Tint100_Dark.png differ diff --git a/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testChartColors-using-theme-interfaceStyle-colorScheme.Orange_colorChartSequentialAccent1Tint200_Dark.png b/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testChartColors-using-theme-interfaceStyle-colorScheme.Orange_colorChartSequentialAccent1Tint200_Dark.png index fd77a8c16..b749db973 100644 Binary files a/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testChartColors-using-theme-interfaceStyle-colorScheme.Orange_colorChartSequentialAccent1Tint200_Dark.png and b/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testChartColors-using-theme-interfaceStyle-colorScheme.Orange_colorChartSequentialAccent1Tint200_Dark.png differ diff --git a/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testChartColors-using-theme-interfaceStyle-colorScheme.Orange_colorChartSequentialAccent1Tint300_Dark.png b/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testChartColors-using-theme-interfaceStyle-colorScheme.Orange_colorChartSequentialAccent1Tint300_Dark.png index 73f7fae6d..e2c105834 100644 Binary files a/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testChartColors-using-theme-interfaceStyle-colorScheme.Orange_colorChartSequentialAccent1Tint300_Dark.png and b/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testChartColors-using-theme-interfaceStyle-colorScheme.Orange_colorChartSequentialAccent1Tint300_Dark.png differ diff --git a/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testChartColors-using-theme-interfaceStyle-colorScheme.Orange_colorChartSequentialAccent1Tint400_Dark.png b/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testChartColors-using-theme-interfaceStyle-colorScheme.Orange_colorChartSequentialAccent1Tint400_Dark.png index a5a1c6f91..6f4046539 100644 Binary files a/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testChartColors-using-theme-interfaceStyle-colorScheme.Orange_colorChartSequentialAccent1Tint400_Dark.png and b/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testChartColors-using-theme-interfaceStyle-colorScheme.Orange_colorChartSequentialAccent1Tint400_Dark.png differ diff --git a/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testChartColors-using-theme-interfaceStyle-colorScheme.Orange_colorChartSequentialAccent1Tint500_Dark.png b/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testChartColors-using-theme-interfaceStyle-colorScheme.Orange_colorChartSequentialAccent1Tint500_Dark.png index c077b33ce..2d2e71b35 100644 Binary files a/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testChartColors-using-theme-interfaceStyle-colorScheme.Orange_colorChartSequentialAccent1Tint500_Dark.png and b/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testChartColors-using-theme-interfaceStyle-colorScheme.Orange_colorChartSequentialAccent1Tint500_Dark.png differ diff --git a/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testChartColors-using-theme-interfaceStyle-colorScheme.Orange_colorChartSequentialAccent1Tint600_Dark.png b/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testChartColors-using-theme-interfaceStyle-colorScheme.Orange_colorChartSequentialAccent1Tint600_Dark.png index f66f72544..ad7bd4aaa 100644 Binary files a/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testChartColors-using-theme-interfaceStyle-colorScheme.Orange_colorChartSequentialAccent1Tint600_Dark.png and b/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testChartColors-using-theme-interfaceStyle-colorScheme.Orange_colorChartSequentialAccent1Tint600_Dark.png differ diff --git a/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testChartColors-using-theme-interfaceStyle-colorScheme.Orange_colorChartSequentialAccent1Tint700_Dark.png b/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testChartColors-using-theme-interfaceStyle-colorScheme.Orange_colorChartSequentialAccent1Tint700_Dark.png index 2b43565c6..7b532d777 100644 Binary files a/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testChartColors-using-theme-interfaceStyle-colorScheme.Orange_colorChartSequentialAccent1Tint700_Dark.png and b/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testChartColors-using-theme-interfaceStyle-colorScheme.Orange_colorChartSequentialAccent1Tint700_Dark.png differ diff --git a/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testChartColors-using-theme-interfaceStyle-colorScheme.Orange_colorChartSequentialAccent1Tint800_Dark.png b/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testChartColors-using-theme-interfaceStyle-colorScheme.Orange_colorChartSequentialAccent1Tint800_Dark.png index fa68cb9a5..79e7b07e3 100644 Binary files a/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testChartColors-using-theme-interfaceStyle-colorScheme.Orange_colorChartSequentialAccent1Tint800_Dark.png and b/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testChartColors-using-theme-interfaceStyle-colorScheme.Orange_colorChartSequentialAccent1Tint800_Dark.png differ diff --git a/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testChartColors-using-theme-interfaceStyle-colorScheme.Orange_colorChartSequentialAccent1Tint900_Dark.png b/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testChartColors-using-theme-interfaceStyle-colorScheme.Orange_colorChartSequentialAccent1Tint900_Dark.png index 9b05d9445..6663a16f8 100644 Binary files a/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testChartColors-using-theme-interfaceStyle-colorScheme.Orange_colorChartSequentialAccent1Tint900_Dark.png and b/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testChartColors-using-theme-interfaceStyle-colorScheme.Orange_colorChartSequentialAccent1Tint900_Dark.png differ diff --git a/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testChartColors-using-theme-interfaceStyle-colorScheme.Orange_colorChartSequentialAccent2Tint100_Dark.png b/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testChartColors-using-theme-interfaceStyle-colorScheme.Orange_colorChartSequentialAccent2Tint100_Dark.png index 724c82f1e..a3cb59dbe 100644 Binary files a/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testChartColors-using-theme-interfaceStyle-colorScheme.Orange_colorChartSequentialAccent2Tint100_Dark.png and b/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testChartColors-using-theme-interfaceStyle-colorScheme.Orange_colorChartSequentialAccent2Tint100_Dark.png differ diff --git a/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testChartColors-using-theme-interfaceStyle-colorScheme.Orange_colorChartSequentialAccent2Tint200_Dark.png b/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testChartColors-using-theme-interfaceStyle-colorScheme.Orange_colorChartSequentialAccent2Tint200_Dark.png index 018bfc5c7..ac5c04240 100644 Binary files a/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testChartColors-using-theme-interfaceStyle-colorScheme.Orange_colorChartSequentialAccent2Tint200_Dark.png and b/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testChartColors-using-theme-interfaceStyle-colorScheme.Orange_colorChartSequentialAccent2Tint200_Dark.png differ diff --git a/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testChartColors-using-theme-interfaceStyle-colorScheme.Orange_colorChartSequentialAccent2Tint300_Dark.png b/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testChartColors-using-theme-interfaceStyle-colorScheme.Orange_colorChartSequentialAccent2Tint300_Dark.png index a51e0354a..314e0b1cd 100644 Binary files a/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testChartColors-using-theme-interfaceStyle-colorScheme.Orange_colorChartSequentialAccent2Tint300_Dark.png and b/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testChartColors-using-theme-interfaceStyle-colorScheme.Orange_colorChartSequentialAccent2Tint300_Dark.png differ diff --git a/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testChartColors-using-theme-interfaceStyle-colorScheme.Orange_colorChartSequentialAccent2Tint400_Dark.png b/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testChartColors-using-theme-interfaceStyle-colorScheme.Orange_colorChartSequentialAccent2Tint400_Dark.png index 21a8bc2dc..19807529a 100644 Binary files a/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testChartColors-using-theme-interfaceStyle-colorScheme.Orange_colorChartSequentialAccent2Tint400_Dark.png and b/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testChartColors-using-theme-interfaceStyle-colorScheme.Orange_colorChartSequentialAccent2Tint400_Dark.png differ diff --git a/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testChartColors-using-theme-interfaceStyle-colorScheme.Orange_colorChartSequentialAccent2Tint500_Dark.png b/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testChartColors-using-theme-interfaceStyle-colorScheme.Orange_colorChartSequentialAccent2Tint500_Dark.png index cdf70adf3..4be1a6243 100644 Binary files a/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testChartColors-using-theme-interfaceStyle-colorScheme.Orange_colorChartSequentialAccent2Tint500_Dark.png and b/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testChartColors-using-theme-interfaceStyle-colorScheme.Orange_colorChartSequentialAccent2Tint500_Dark.png differ diff --git a/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testChartColors-using-theme-interfaceStyle-colorScheme.Orange_colorChartSequentialAccent2Tint600_Dark.png b/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testChartColors-using-theme-interfaceStyle-colorScheme.Orange_colorChartSequentialAccent2Tint600_Dark.png index 7488cab8c..6f8dbfddb 100644 Binary files a/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testChartColors-using-theme-interfaceStyle-colorScheme.Orange_colorChartSequentialAccent2Tint600_Dark.png and b/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testChartColors-using-theme-interfaceStyle-colorScheme.Orange_colorChartSequentialAccent2Tint600_Dark.png differ diff --git a/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testChartColors-using-theme-interfaceStyle-colorScheme.Orange_colorChartSequentialAccent2Tint700_Dark.png b/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testChartColors-using-theme-interfaceStyle-colorScheme.Orange_colorChartSequentialAccent2Tint700_Dark.png index e4702ec7c..c81aeccca 100644 Binary files a/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testChartColors-using-theme-interfaceStyle-colorScheme.Orange_colorChartSequentialAccent2Tint700_Dark.png and b/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testChartColors-using-theme-interfaceStyle-colorScheme.Orange_colorChartSequentialAccent2Tint700_Dark.png differ diff --git a/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testChartColors-using-theme-interfaceStyle-colorScheme.Orange_colorChartSequentialAccent2Tint800_Dark.png b/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testChartColors-using-theme-interfaceStyle-colorScheme.Orange_colorChartSequentialAccent2Tint800_Dark.png index 0bdbd9916..1c2fd0f77 100644 Binary files a/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testChartColors-using-theme-interfaceStyle-colorScheme.Orange_colorChartSequentialAccent2Tint800_Dark.png and b/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testChartColors-using-theme-interfaceStyle-colorScheme.Orange_colorChartSequentialAccent2Tint800_Dark.png differ diff --git a/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testChartColors-using-theme-interfaceStyle-colorScheme.Orange_colorChartSequentialAccent2Tint900_Dark.png b/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testChartColors-using-theme-interfaceStyle-colorScheme.Orange_colorChartSequentialAccent2Tint900_Dark.png index 7e20f173a..171998eba 100644 Binary files a/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testChartColors-using-theme-interfaceStyle-colorScheme.Orange_colorChartSequentialAccent2Tint900_Dark.png and b/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testChartColors-using-theme-interfaceStyle-colorScheme.Orange_colorChartSequentialAccent2Tint900_Dark.png differ diff --git a/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testChartColors-using-theme-interfaceStyle-colorScheme.Orange_colorChartSequentialAccent3Tint100_Dark.png b/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testChartColors-using-theme-interfaceStyle-colorScheme.Orange_colorChartSequentialAccent3Tint100_Dark.png index 9170d6bda..38fea2c25 100644 Binary files a/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testChartColors-using-theme-interfaceStyle-colorScheme.Orange_colorChartSequentialAccent3Tint100_Dark.png and b/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testChartColors-using-theme-interfaceStyle-colorScheme.Orange_colorChartSequentialAccent3Tint100_Dark.png differ diff --git a/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testChartColors-using-theme-interfaceStyle-colorScheme.Orange_colorChartSequentialAccent3Tint200_Dark.png b/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testChartColors-using-theme-interfaceStyle-colorScheme.Orange_colorChartSequentialAccent3Tint200_Dark.png index 0a646e990..4b8d2f4c4 100644 Binary files a/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testChartColors-using-theme-interfaceStyle-colorScheme.Orange_colorChartSequentialAccent3Tint200_Dark.png and b/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testChartColors-using-theme-interfaceStyle-colorScheme.Orange_colorChartSequentialAccent3Tint200_Dark.png differ diff --git a/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testChartColors-using-theme-interfaceStyle-colorScheme.Orange_colorChartSequentialAccent3Tint300_Dark.png b/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testChartColors-using-theme-interfaceStyle-colorScheme.Orange_colorChartSequentialAccent3Tint300_Dark.png index 0591218ab..2523e242d 100644 Binary files a/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testChartColors-using-theme-interfaceStyle-colorScheme.Orange_colorChartSequentialAccent3Tint300_Dark.png and b/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testChartColors-using-theme-interfaceStyle-colorScheme.Orange_colorChartSequentialAccent3Tint300_Dark.png differ diff --git a/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testChartColors-using-theme-interfaceStyle-colorScheme.Orange_colorChartSequentialAccent3Tint400_Dark.png b/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testChartColors-using-theme-interfaceStyle-colorScheme.Orange_colorChartSequentialAccent3Tint400_Dark.png index f33666f50..79c29ef3f 100644 Binary files a/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testChartColors-using-theme-interfaceStyle-colorScheme.Orange_colorChartSequentialAccent3Tint400_Dark.png and b/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testChartColors-using-theme-interfaceStyle-colorScheme.Orange_colorChartSequentialAccent3Tint400_Dark.png differ diff --git a/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testChartColors-using-theme-interfaceStyle-colorScheme.Orange_colorChartSequentialAccent3Tint500_Dark.png b/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testChartColors-using-theme-interfaceStyle-colorScheme.Orange_colorChartSequentialAccent3Tint500_Dark.png index f4d4a1933..d87414c0c 100644 Binary files a/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testChartColors-using-theme-interfaceStyle-colorScheme.Orange_colorChartSequentialAccent3Tint500_Dark.png and b/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testChartColors-using-theme-interfaceStyle-colorScheme.Orange_colorChartSequentialAccent3Tint500_Dark.png differ diff --git a/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testChartColors-using-theme-interfaceStyle-colorScheme.Orange_colorChartSequentialAccent3Tint600_Dark.png b/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testChartColors-using-theme-interfaceStyle-colorScheme.Orange_colorChartSequentialAccent3Tint600_Dark.png index 0ee1c5ac3..ae546e154 100644 Binary files a/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testChartColors-using-theme-interfaceStyle-colorScheme.Orange_colorChartSequentialAccent3Tint600_Dark.png and b/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testChartColors-using-theme-interfaceStyle-colorScheme.Orange_colorChartSequentialAccent3Tint600_Dark.png differ diff --git a/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testChartColors-using-theme-interfaceStyle-colorScheme.Orange_colorChartSequentialAccent3Tint700_Dark.png b/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testChartColors-using-theme-interfaceStyle-colorScheme.Orange_colorChartSequentialAccent3Tint700_Dark.png index b0a73710d..77f9ea51e 100644 Binary files a/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testChartColors-using-theme-interfaceStyle-colorScheme.Orange_colorChartSequentialAccent3Tint700_Dark.png and b/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testChartColors-using-theme-interfaceStyle-colorScheme.Orange_colorChartSequentialAccent3Tint700_Dark.png differ diff --git a/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testChartColors-using-theme-interfaceStyle-colorScheme.Orange_colorChartSequentialAccent3Tint800_Dark.png b/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testChartColors-using-theme-interfaceStyle-colorScheme.Orange_colorChartSequentialAccent3Tint800_Dark.png index 4e25b2d04..13759a367 100644 Binary files a/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testChartColors-using-theme-interfaceStyle-colorScheme.Orange_colorChartSequentialAccent3Tint800_Dark.png and b/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testChartColors-using-theme-interfaceStyle-colorScheme.Orange_colorChartSequentialAccent3Tint800_Dark.png differ diff --git a/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testChartColors-using-theme-interfaceStyle-colorScheme.Orange_colorChartSequentialAccent3Tint900_Dark.png b/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testChartColors-using-theme-interfaceStyle-colorScheme.Orange_colorChartSequentialAccent3Tint900_Dark.png index 7fbe90513..836978b9a 100644 Binary files a/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testChartColors-using-theme-interfaceStyle-colorScheme.Orange_colorChartSequentialAccent3Tint900_Dark.png and b/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testChartColors-using-theme-interfaceStyle-colorScheme.Orange_colorChartSequentialAccent3Tint900_Dark.png differ diff --git a/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testChartColors-using-theme-interfaceStyle-colorScheme.Orange_colorChartSequentialAccent4Tint100_Dark.png b/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testChartColors-using-theme-interfaceStyle-colorScheme.Orange_colorChartSequentialAccent4Tint100_Dark.png index 1eba0fbcb..a948b5e17 100644 Binary files a/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testChartColors-using-theme-interfaceStyle-colorScheme.Orange_colorChartSequentialAccent4Tint100_Dark.png and b/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testChartColors-using-theme-interfaceStyle-colorScheme.Orange_colorChartSequentialAccent4Tint100_Dark.png differ diff --git a/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testChartColors-using-theme-interfaceStyle-colorScheme.Orange_colorChartSequentialAccent4Tint200_Dark.png b/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testChartColors-using-theme-interfaceStyle-colorScheme.Orange_colorChartSequentialAccent4Tint200_Dark.png index 5e98a8cf1..2e111da79 100644 Binary files a/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testChartColors-using-theme-interfaceStyle-colorScheme.Orange_colorChartSequentialAccent4Tint200_Dark.png and b/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testChartColors-using-theme-interfaceStyle-colorScheme.Orange_colorChartSequentialAccent4Tint200_Dark.png differ diff --git a/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testChartColors-using-theme-interfaceStyle-colorScheme.Orange_colorChartSequentialAccent4Tint300_Dark.png b/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testChartColors-using-theme-interfaceStyle-colorScheme.Orange_colorChartSequentialAccent4Tint300_Dark.png index 2b5967f0c..85b0282a5 100644 Binary files a/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testChartColors-using-theme-interfaceStyle-colorScheme.Orange_colorChartSequentialAccent4Tint300_Dark.png and b/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testChartColors-using-theme-interfaceStyle-colorScheme.Orange_colorChartSequentialAccent4Tint300_Dark.png differ diff --git a/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testChartColors-using-theme-interfaceStyle-colorScheme.Orange_colorChartSequentialAccent4Tint400_Dark.png b/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testChartColors-using-theme-interfaceStyle-colorScheme.Orange_colorChartSequentialAccent4Tint400_Dark.png index ba92418a1..b3076e4ce 100644 Binary files a/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testChartColors-using-theme-interfaceStyle-colorScheme.Orange_colorChartSequentialAccent4Tint400_Dark.png and b/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testChartColors-using-theme-interfaceStyle-colorScheme.Orange_colorChartSequentialAccent4Tint400_Dark.png differ diff --git a/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testChartColors-using-theme-interfaceStyle-colorScheme.Orange_colorChartSequentialAccent4Tint500_Dark.png b/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testChartColors-using-theme-interfaceStyle-colorScheme.Orange_colorChartSequentialAccent4Tint500_Dark.png index 17ecb346a..83348b7a0 100644 Binary files a/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testChartColors-using-theme-interfaceStyle-colorScheme.Orange_colorChartSequentialAccent4Tint500_Dark.png and b/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testChartColors-using-theme-interfaceStyle-colorScheme.Orange_colorChartSequentialAccent4Tint500_Dark.png differ diff --git a/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testChartColors-using-theme-interfaceStyle-colorScheme.Orange_colorChartSequentialAccent4Tint600_Dark.png b/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testChartColors-using-theme-interfaceStyle-colorScheme.Orange_colorChartSequentialAccent4Tint600_Dark.png index 04b602baf..f992a33ab 100644 Binary files a/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testChartColors-using-theme-interfaceStyle-colorScheme.Orange_colorChartSequentialAccent4Tint600_Dark.png and b/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testChartColors-using-theme-interfaceStyle-colorScheme.Orange_colorChartSequentialAccent4Tint600_Dark.png differ diff --git a/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testChartColors-using-theme-interfaceStyle-colorScheme.Orange_colorChartSequentialAccent4Tint700_Dark.png b/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testChartColors-using-theme-interfaceStyle-colorScheme.Orange_colorChartSequentialAccent4Tint700_Dark.png index 36a267f23..fa4950a52 100644 Binary files a/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testChartColors-using-theme-interfaceStyle-colorScheme.Orange_colorChartSequentialAccent4Tint700_Dark.png and b/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testChartColors-using-theme-interfaceStyle-colorScheme.Orange_colorChartSequentialAccent4Tint700_Dark.png differ diff --git a/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testChartColors-using-theme-interfaceStyle-colorScheme.Orange_colorChartSequentialAccent4Tint800_Dark.png b/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testChartColors-using-theme-interfaceStyle-colorScheme.Orange_colorChartSequentialAccent4Tint800_Dark.png index 5db7cd79f..c0d50070d 100644 Binary files a/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testChartColors-using-theme-interfaceStyle-colorScheme.Orange_colorChartSequentialAccent4Tint800_Dark.png and b/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testChartColors-using-theme-interfaceStyle-colorScheme.Orange_colorChartSequentialAccent4Tint800_Dark.png differ diff --git a/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testChartColors-using-theme-interfaceStyle-colorScheme.Orange_colorChartSequentialAccent4Tint900_Dark.png b/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testChartColors-using-theme-interfaceStyle-colorScheme.Orange_colorChartSequentialAccent4Tint900_Dark.png index 4f31c100b..324434b94 100644 Binary files a/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testChartColors-using-theme-interfaceStyle-colorScheme.Orange_colorChartSequentialAccent4Tint900_Dark.png and b/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testChartColors-using-theme-interfaceStyle-colorScheme.Orange_colorChartSequentialAccent4Tint900_Dark.png differ diff --git a/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testChartColors-using-theme-interfaceStyle-colorScheme.Orange_colorChartSequentialAccent5Tint100_Dark.png b/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testChartColors-using-theme-interfaceStyle-colorScheme.Orange_colorChartSequentialAccent5Tint100_Dark.png index 5903d3a51..d4674f0c4 100644 Binary files a/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testChartColors-using-theme-interfaceStyle-colorScheme.Orange_colorChartSequentialAccent5Tint100_Dark.png and b/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testChartColors-using-theme-interfaceStyle-colorScheme.Orange_colorChartSequentialAccent5Tint100_Dark.png differ diff --git a/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testChartColors-using-theme-interfaceStyle-colorScheme.Orange_colorChartSequentialAccent5Tint100_Light.png b/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testChartColors-using-theme-interfaceStyle-colorScheme.Orange_colorChartSequentialAccent5Tint100_Light.png index fe1cb1cf1..1f2d7ef72 100644 Binary files a/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testChartColors-using-theme-interfaceStyle-colorScheme.Orange_colorChartSequentialAccent5Tint100_Light.png and b/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testChartColors-using-theme-interfaceStyle-colorScheme.Orange_colorChartSequentialAccent5Tint100_Light.png differ diff --git a/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testChartColors-using-theme-interfaceStyle-colorScheme.Orange_colorChartSequentialAccent5Tint200_Dark.png b/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testChartColors-using-theme-interfaceStyle-colorScheme.Orange_colorChartSequentialAccent5Tint200_Dark.png index be00f7ff3..cda69172e 100644 Binary files a/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testChartColors-using-theme-interfaceStyle-colorScheme.Orange_colorChartSequentialAccent5Tint200_Dark.png and b/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testChartColors-using-theme-interfaceStyle-colorScheme.Orange_colorChartSequentialAccent5Tint200_Dark.png differ diff --git a/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testChartColors-using-theme-interfaceStyle-colorScheme.Orange_colorChartSequentialAccent5Tint200_Light.png b/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testChartColors-using-theme-interfaceStyle-colorScheme.Orange_colorChartSequentialAccent5Tint200_Light.png index e40339b3b..f8e8ad791 100644 Binary files a/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testChartColors-using-theme-interfaceStyle-colorScheme.Orange_colorChartSequentialAccent5Tint200_Light.png and b/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testChartColors-using-theme-interfaceStyle-colorScheme.Orange_colorChartSequentialAccent5Tint200_Light.png differ diff --git a/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testChartColors-using-theme-interfaceStyle-colorScheme.Orange_colorChartSequentialAccent5Tint300_Dark.png b/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testChartColors-using-theme-interfaceStyle-colorScheme.Orange_colorChartSequentialAccent5Tint300_Dark.png index 898f7fb82..d65d59fb8 100644 Binary files a/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testChartColors-using-theme-interfaceStyle-colorScheme.Orange_colorChartSequentialAccent5Tint300_Dark.png and b/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testChartColors-using-theme-interfaceStyle-colorScheme.Orange_colorChartSequentialAccent5Tint300_Dark.png differ diff --git a/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testChartColors-using-theme-interfaceStyle-colorScheme.Orange_colorChartSequentialAccent5Tint300_Light.png b/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testChartColors-using-theme-interfaceStyle-colorScheme.Orange_colorChartSequentialAccent5Tint300_Light.png index 314043e2c..7ff2b6270 100644 Binary files a/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testChartColors-using-theme-interfaceStyle-colorScheme.Orange_colorChartSequentialAccent5Tint300_Light.png and b/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testChartColors-using-theme-interfaceStyle-colorScheme.Orange_colorChartSequentialAccent5Tint300_Light.png differ diff --git a/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testChartColors-using-theme-interfaceStyle-colorScheme.Orange_colorChartSequentialAccent5Tint400_Dark.png b/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testChartColors-using-theme-interfaceStyle-colorScheme.Orange_colorChartSequentialAccent5Tint400_Dark.png index 0c963e4b5..d6afdc720 100644 Binary files a/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testChartColors-using-theme-interfaceStyle-colorScheme.Orange_colorChartSequentialAccent5Tint400_Dark.png and b/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testChartColors-using-theme-interfaceStyle-colorScheme.Orange_colorChartSequentialAccent5Tint400_Dark.png differ diff --git a/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testChartColors-using-theme-interfaceStyle-colorScheme.Orange_colorChartSequentialAccent5Tint400_Light.png b/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testChartColors-using-theme-interfaceStyle-colorScheme.Orange_colorChartSequentialAccent5Tint400_Light.png index c660ea2e3..6adb0dd07 100644 Binary files a/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testChartColors-using-theme-interfaceStyle-colorScheme.Orange_colorChartSequentialAccent5Tint400_Light.png and b/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testChartColors-using-theme-interfaceStyle-colorScheme.Orange_colorChartSequentialAccent5Tint400_Light.png differ diff --git a/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testChartColors-using-theme-interfaceStyle-colorScheme.Orange_colorChartSequentialAccent5Tint500_Dark.png b/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testChartColors-using-theme-interfaceStyle-colorScheme.Orange_colorChartSequentialAccent5Tint500_Dark.png index 1ab8af7b5..65db02d4e 100644 Binary files a/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testChartColors-using-theme-interfaceStyle-colorScheme.Orange_colorChartSequentialAccent5Tint500_Dark.png and b/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testChartColors-using-theme-interfaceStyle-colorScheme.Orange_colorChartSequentialAccent5Tint500_Dark.png differ diff --git a/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testChartColors-using-theme-interfaceStyle-colorScheme.Orange_colorChartSequentialAccent5Tint500_Light.png b/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testChartColors-using-theme-interfaceStyle-colorScheme.Orange_colorChartSequentialAccent5Tint500_Light.png index 18a9425f2..a8ffdd4a1 100644 Binary files a/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testChartColors-using-theme-interfaceStyle-colorScheme.Orange_colorChartSequentialAccent5Tint500_Light.png and b/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testChartColors-using-theme-interfaceStyle-colorScheme.Orange_colorChartSequentialAccent5Tint500_Light.png differ diff --git a/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testChartColors-using-theme-interfaceStyle-colorScheme.Orange_colorChartSequentialAccent5Tint600_Dark.png b/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testChartColors-using-theme-interfaceStyle-colorScheme.Orange_colorChartSequentialAccent5Tint600_Dark.png index c2a85981a..ef796c982 100644 Binary files a/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testChartColors-using-theme-interfaceStyle-colorScheme.Orange_colorChartSequentialAccent5Tint600_Dark.png and b/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testChartColors-using-theme-interfaceStyle-colorScheme.Orange_colorChartSequentialAccent5Tint600_Dark.png differ diff --git a/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testChartColors-using-theme-interfaceStyle-colorScheme.Orange_colorChartSequentialAccent5Tint600_Light.png b/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testChartColors-using-theme-interfaceStyle-colorScheme.Orange_colorChartSequentialAccent5Tint600_Light.png index 0c244fbd5..62adf3335 100644 Binary files a/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testChartColors-using-theme-interfaceStyle-colorScheme.Orange_colorChartSequentialAccent5Tint600_Light.png and b/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testChartColors-using-theme-interfaceStyle-colorScheme.Orange_colorChartSequentialAccent5Tint600_Light.png differ diff --git a/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testChartColors-using-theme-interfaceStyle-colorScheme.Orange_colorChartSequentialAccent5Tint700_Dark.png b/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testChartColors-using-theme-interfaceStyle-colorScheme.Orange_colorChartSequentialAccent5Tint700_Dark.png index a5709d436..0cd2891b6 100644 Binary files a/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testChartColors-using-theme-interfaceStyle-colorScheme.Orange_colorChartSequentialAccent5Tint700_Dark.png and b/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testChartColors-using-theme-interfaceStyle-colorScheme.Orange_colorChartSequentialAccent5Tint700_Dark.png differ diff --git a/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testChartColors-using-theme-interfaceStyle-colorScheme.Orange_colorChartSequentialAccent5Tint700_Light.png b/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testChartColors-using-theme-interfaceStyle-colorScheme.Orange_colorChartSequentialAccent5Tint700_Light.png index 3c6911dec..7ed7955c1 100644 Binary files a/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testChartColors-using-theme-interfaceStyle-colorScheme.Orange_colorChartSequentialAccent5Tint700_Light.png and b/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testChartColors-using-theme-interfaceStyle-colorScheme.Orange_colorChartSequentialAccent5Tint700_Light.png differ diff --git a/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testChartColors-using-theme-interfaceStyle-colorScheme.Orange_colorChartSequentialAccent5Tint800_Dark.png b/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testChartColors-using-theme-interfaceStyle-colorScheme.Orange_colorChartSequentialAccent5Tint800_Dark.png index e13eb723c..18b45862c 100644 Binary files a/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testChartColors-using-theme-interfaceStyle-colorScheme.Orange_colorChartSequentialAccent5Tint800_Dark.png and b/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testChartColors-using-theme-interfaceStyle-colorScheme.Orange_colorChartSequentialAccent5Tint800_Dark.png differ diff --git a/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testChartColors-using-theme-interfaceStyle-colorScheme.Orange_colorChartSequentialAccent5Tint800_Light.png b/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testChartColors-using-theme-interfaceStyle-colorScheme.Orange_colorChartSequentialAccent5Tint800_Light.png index f1c9bb74b..c9f87f101 100644 Binary files a/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testChartColors-using-theme-interfaceStyle-colorScheme.Orange_colorChartSequentialAccent5Tint800_Light.png and b/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testChartColors-using-theme-interfaceStyle-colorScheme.Orange_colorChartSequentialAccent5Tint800_Light.png differ diff --git a/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testChartColors-using-theme-interfaceStyle-colorScheme.Orange_colorChartSequentialAccent5Tint900_Dark.png b/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testChartColors-using-theme-interfaceStyle-colorScheme.Orange_colorChartSequentialAccent5Tint900_Dark.png index a292c47f4..b2a2eb11f 100644 Binary files a/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testChartColors-using-theme-interfaceStyle-colorScheme.Orange_colorChartSequentialAccent5Tint900_Dark.png and b/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testChartColors-using-theme-interfaceStyle-colorScheme.Orange_colorChartSequentialAccent5Tint900_Dark.png differ diff --git a/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testChartColors-using-theme-interfaceStyle-colorScheme.Orange_colorChartSequentialAccent5Tint900_Light.png b/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testChartColors-using-theme-interfaceStyle-colorScheme.Orange_colorChartSequentialAccent5Tint900_Light.png index 28e654a95..a0ce8152f 100644 Binary files a/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testChartColors-using-theme-interfaceStyle-colorScheme.Orange_colorChartSequentialAccent5Tint900_Light.png and b/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testChartColors-using-theme-interfaceStyle-colorScheme.Orange_colorChartSequentialAccent5Tint900_Light.png differ diff --git a/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testContentColors-using-theme-interfaceStyle-colorScheme.Inverse_colorContentBrandPrimaryOnBgEmphasized_Dark.png b/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testContentColors-using-theme-interfaceStyle-colorScheme.Inverse_colorContentBrandPrimaryOnBgEmphasized_Dark.png new file mode 100644 index 000000000..2a1d3ba69 Binary files /dev/null and b/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testContentColors-using-theme-interfaceStyle-colorScheme.Inverse_colorContentBrandPrimaryOnBgEmphasized_Dark.png differ diff --git a/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testContentColors-using-theme-interfaceStyle-colorScheme.Inverse_colorContentBrandPrimaryOnBgEmphasized_Light.png b/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testContentColors-using-theme-interfaceStyle-colorScheme.Inverse_colorContentBrandPrimaryOnBgEmphasized_Light.png new file mode 100644 index 000000000..4b0bbd6fd Binary files /dev/null and b/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testContentColors-using-theme-interfaceStyle-colorScheme.Inverse_colorContentBrandPrimaryOnBgEmphasized_Light.png differ diff --git a/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testContentColors-using-theme-interfaceStyle-colorScheme.Inverse_colorContentContentDefaultOnBgEmphasized_Dark.png b/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testContentColors-using-theme-interfaceStyle-colorScheme.Inverse_colorContentContentDefaultOnBgEmphasized_Dark.png deleted file mode 100644 index 1722ec8ff..000000000 Binary files a/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testContentColors-using-theme-interfaceStyle-colorScheme.Inverse_colorContentContentDefaultOnBgEmphasized_Dark.png and /dev/null differ diff --git a/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testContentColors-using-theme-interfaceStyle-colorScheme.Inverse_colorContentContentDefaultOnBgEmphasized_Light.png b/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testContentColors-using-theme-interfaceStyle-colorScheme.Inverse_colorContentContentDefaultOnBgEmphasized_Light.png deleted file mode 100644 index 770612c65..000000000 Binary files a/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testContentColors-using-theme-interfaceStyle-colorScheme.Inverse_colorContentContentDefaultOnBgEmphasized_Light.png and /dev/null differ diff --git a/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testContentColors-using-theme-interfaceStyle-colorScheme.Inverse_colorContentContentDisabledOnBgEmphasized_Dark.png b/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testContentColors-using-theme-interfaceStyle-colorScheme.Inverse_colorContentContentDisabledOnBgEmphasized_Dark.png deleted file mode 100644 index 44f559fc6..000000000 Binary files a/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testContentColors-using-theme-interfaceStyle-colorScheme.Inverse_colorContentContentDisabledOnBgEmphasized_Dark.png and /dev/null differ diff --git a/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testContentColors-using-theme-interfaceStyle-colorScheme.Inverse_colorContentContentDisabledOnBgEmphasized_Light.png b/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testContentColors-using-theme-interfaceStyle-colorScheme.Inverse_colorContentContentDisabledOnBgEmphasized_Light.png deleted file mode 100644 index ebff467cb..000000000 Binary files a/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testContentColors-using-theme-interfaceStyle-colorScheme.Inverse_colorContentContentDisabledOnBgEmphasized_Light.png and /dev/null differ diff --git a/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testContentColors-using-theme-interfaceStyle-colorScheme.Inverse_colorContentContentMutedOnBgEmphasized_Dark.png b/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testContentColors-using-theme-interfaceStyle-colorScheme.Inverse_colorContentContentMutedOnBgEmphasized_Dark.png deleted file mode 100644 index 6ad4c9c5d..000000000 Binary files a/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testContentColors-using-theme-interfaceStyle-colorScheme.Inverse_colorContentContentMutedOnBgEmphasized_Dark.png and /dev/null differ diff --git a/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testContentColors-using-theme-interfaceStyle-colorScheme.Inverse_colorContentContentMutedOnBgEmphasized_Light.png b/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testContentColors-using-theme-interfaceStyle-colorScheme.Inverse_colorContentContentMutedOnBgEmphasized_Light.png deleted file mode 100644 index 515348e88..000000000 Binary files a/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testContentColors-using-theme-interfaceStyle-colorScheme.Inverse_colorContentContentMutedOnBgEmphasized_Light.png and /dev/null differ diff --git a/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testContentColors-using-theme-interfaceStyle-colorScheme.Inverse_colorContentDefaultOnBgEmphasized_Dark.png b/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testContentColors-using-theme-interfaceStyle-colorScheme.Inverse_colorContentDefaultOnBgEmphasized_Dark.png new file mode 100644 index 000000000..824d98437 Binary files /dev/null and b/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testContentColors-using-theme-interfaceStyle-colorScheme.Inverse_colorContentDefaultOnBgEmphasized_Dark.png differ diff --git a/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testContentColors-using-theme-interfaceStyle-colorScheme.Inverse_colorContentDefaultOnBgEmphasized_Light.png b/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testContentColors-using-theme-interfaceStyle-colorScheme.Inverse_colorContentDefaultOnBgEmphasized_Light.png new file mode 100644 index 000000000..222a30fca Binary files /dev/null and b/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testContentColors-using-theme-interfaceStyle-colorScheme.Inverse_colorContentDefaultOnBgEmphasized_Light.png differ diff --git a/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testContentColors-using-theme-interfaceStyle-colorScheme.Inverse_colorContentDisabledOnBgEmphasized_Dark.png b/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testContentColors-using-theme-interfaceStyle-colorScheme.Inverse_colorContentDisabledOnBgEmphasized_Dark.png new file mode 100644 index 000000000..c41c1e84a Binary files /dev/null and b/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testContentColors-using-theme-interfaceStyle-colorScheme.Inverse_colorContentDisabledOnBgEmphasized_Dark.png differ diff --git a/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testContentColors-using-theme-interfaceStyle-colorScheme.Inverse_colorContentDisabledOnBgEmphasized_Light.png b/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testContentColors-using-theme-interfaceStyle-colorScheme.Inverse_colorContentDisabledOnBgEmphasized_Light.png new file mode 100644 index 000000000..2d781337f Binary files /dev/null and b/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testContentColors-using-theme-interfaceStyle-colorScheme.Inverse_colorContentDisabledOnBgEmphasized_Light.png differ diff --git a/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testContentColors-using-theme-interfaceStyle-colorScheme.Inverse_colorContentMutedOnBgEmphasized_Dark.png b/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testContentColors-using-theme-interfaceStyle-colorScheme.Inverse_colorContentMutedOnBgEmphasized_Dark.png new file mode 100644 index 000000000..fb3486f41 Binary files /dev/null and b/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testContentColors-using-theme-interfaceStyle-colorScheme.Inverse_colorContentMutedOnBgEmphasized_Dark.png differ diff --git a/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testContentColors-using-theme-interfaceStyle-colorScheme.Inverse_colorContentMutedOnBgEmphasized_Light.png b/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testContentColors-using-theme-interfaceStyle-colorScheme.Inverse_colorContentMutedOnBgEmphasized_Light.png new file mode 100644 index 000000000..b4f81dd5c Binary files /dev/null and b/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testContentColors-using-theme-interfaceStyle-colorScheme.Inverse_colorContentMutedOnBgEmphasized_Light.png differ diff --git a/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testContentColors-using-theme-interfaceStyle-colorScheme.Inverse_colorContentOnActionDisabledOnBgEmphasized_Dark.png b/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testContentColors-using-theme-interfaceStyle-colorScheme.Inverse_colorContentOnActionDisabledOnBgEmphasized_Dark.png new file mode 100644 index 000000000..90e2475be Binary files /dev/null and b/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testContentColors-using-theme-interfaceStyle-colorScheme.Inverse_colorContentOnActionDisabledOnBgEmphasized_Dark.png differ diff --git a/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testContentColors-using-theme-interfaceStyle-colorScheme.Inverse_colorContentOnActionDisabledOnBgEmphasized_Light.png b/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testContentColors-using-theme-interfaceStyle-colorScheme.Inverse_colorContentOnActionDisabledOnBgEmphasized_Light.png new file mode 100644 index 000000000..ee4df8110 Binary files /dev/null and b/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testContentColors-using-theme-interfaceStyle-colorScheme.Inverse_colorContentOnActionDisabledOnBgEmphasized_Light.png differ diff --git a/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testContentColors-using-theme-interfaceStyle-colorScheme.Inverse_colorContentOnActionDisabled_Dark.png b/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testContentColors-using-theme-interfaceStyle-colorScheme.Inverse_colorContentOnActionDisabled_Dark.png new file mode 100644 index 000000000..8743ceab3 Binary files /dev/null and b/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testContentColors-using-theme-interfaceStyle-colorScheme.Inverse_colorContentOnActionDisabled_Dark.png differ diff --git a/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testContentColors-using-theme-interfaceStyle-colorScheme.Inverse_colorContentOnActionDisabled_Light.png b/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testContentColors-using-theme-interfaceStyle-colorScheme.Inverse_colorContentOnActionDisabled_Light.png new file mode 100644 index 000000000..03a7fd300 Binary files /dev/null and b/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testContentColors-using-theme-interfaceStyle-colorScheme.Inverse_colorContentOnActionDisabled_Light.png differ diff --git a/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testContentColors-using-theme-interfaceStyle-colorScheme.Inverse_colorContentOnActionNegative_Dark.png b/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testContentColors-using-theme-interfaceStyle-colorScheme.Inverse_colorContentOnActionNegative_Dark.png new file mode 100644 index 000000000..ec85ab7ab Binary files /dev/null and b/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testContentColors-using-theme-interfaceStyle-colorScheme.Inverse_colorContentOnActionNegative_Dark.png differ diff --git a/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testContentColors-using-theme-interfaceStyle-colorScheme.Inverse_colorContentOnActionNegative_Light.png b/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testContentColors-using-theme-interfaceStyle-colorScheme.Inverse_colorContentOnActionNegative_Light.png new file mode 100644 index 000000000..a77fbc815 Binary files /dev/null and b/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testContentColors-using-theme-interfaceStyle-colorScheme.Inverse_colorContentOnActionNegative_Light.png differ diff --git a/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testContentColors-using-theme-interfaceStyle-colorScheme.Inverse_colorContentOnActionPrimaryEnabledOnBgEmphasized_Dark.png b/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testContentColors-using-theme-interfaceStyle-colorScheme.Inverse_colorContentOnActionPrimaryEnabledOnBgEmphasized_Dark.png new file mode 100644 index 000000000..0297ead38 Binary files /dev/null and b/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testContentColors-using-theme-interfaceStyle-colorScheme.Inverse_colorContentOnActionPrimaryEnabledOnBgEmphasized_Dark.png differ diff --git a/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testContentColors-using-theme-interfaceStyle-colorScheme.Inverse_colorContentOnActionPrimaryEnabledOnBgEmphasized_Light.png b/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testContentColors-using-theme-interfaceStyle-colorScheme.Inverse_colorContentOnActionPrimaryEnabledOnBgEmphasized_Light.png new file mode 100644 index 000000000..50bf47a51 Binary files /dev/null and b/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testContentColors-using-theme-interfaceStyle-colorScheme.Inverse_colorContentOnActionPrimaryEnabledOnBgEmphasized_Light.png differ diff --git a/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testContentColors-using-theme-interfaceStyle-colorScheme.Inverse_colorContentOnActionPrimaryEnabled_Dark.png b/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testContentColors-using-theme-interfaceStyle-colorScheme.Inverse_colorContentOnActionPrimaryEnabled_Dark.png new file mode 100644 index 000000000..7288efab2 Binary files /dev/null and b/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testContentColors-using-theme-interfaceStyle-colorScheme.Inverse_colorContentOnActionPrimaryEnabled_Dark.png differ diff --git a/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testContentColors-using-theme-interfaceStyle-colorScheme.Inverse_colorContentOnActionPrimaryEnabled_Light.png b/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testContentColors-using-theme-interfaceStyle-colorScheme.Inverse_colorContentOnActionPrimaryEnabled_Light.png new file mode 100644 index 000000000..5a3738a72 Binary files /dev/null and b/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testContentColors-using-theme-interfaceStyle-colorScheme.Inverse_colorContentOnActionPrimaryEnabled_Light.png differ diff --git a/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testContentColors-using-theme-interfaceStyle-colorScheme.Inverse_colorContentOnActionPrimaryFocusOnBgEmphasized_Dark.png b/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testContentColors-using-theme-interfaceStyle-colorScheme.Inverse_colorContentOnActionPrimaryFocusOnBgEmphasized_Dark.png new file mode 100644 index 000000000..587466bcd Binary files /dev/null and b/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testContentColors-using-theme-interfaceStyle-colorScheme.Inverse_colorContentOnActionPrimaryFocusOnBgEmphasized_Dark.png differ diff --git a/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testContentColors-using-theme-interfaceStyle-colorScheme.Inverse_colorContentOnActionPrimaryFocusOnBgEmphasized_Light.png b/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testContentColors-using-theme-interfaceStyle-colorScheme.Inverse_colorContentOnActionPrimaryFocusOnBgEmphasized_Light.png new file mode 100644 index 000000000..132f93dbd Binary files /dev/null and b/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testContentColors-using-theme-interfaceStyle-colorScheme.Inverse_colorContentOnActionPrimaryFocusOnBgEmphasized_Light.png differ diff --git a/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testContentColors-using-theme-interfaceStyle-colorScheme.Inverse_colorContentOnActionPrimaryFocus_Dark.png b/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testContentColors-using-theme-interfaceStyle-colorScheme.Inverse_colorContentOnActionPrimaryFocus_Dark.png new file mode 100644 index 000000000..8461c8139 Binary files /dev/null and b/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testContentColors-using-theme-interfaceStyle-colorScheme.Inverse_colorContentOnActionPrimaryFocus_Dark.png differ diff --git a/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testContentColors-using-theme-interfaceStyle-colorScheme.Inverse_colorContentOnActionPrimaryFocus_Light.png b/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testContentColors-using-theme-interfaceStyle-colorScheme.Inverse_colorContentOnActionPrimaryFocus_Light.png new file mode 100644 index 000000000..d132fe0c5 Binary files /dev/null and b/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testContentColors-using-theme-interfaceStyle-colorScheme.Inverse_colorContentOnActionPrimaryFocus_Light.png differ diff --git a/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testContentColors-using-theme-interfaceStyle-colorScheme.Inverse_colorContentOnActionPrimaryHoverOnBgEmphasized_Dark.png b/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testContentColors-using-theme-interfaceStyle-colorScheme.Inverse_colorContentOnActionPrimaryHoverOnBgEmphasized_Dark.png new file mode 100644 index 000000000..da3ca72f3 Binary files /dev/null and b/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testContentColors-using-theme-interfaceStyle-colorScheme.Inverse_colorContentOnActionPrimaryHoverOnBgEmphasized_Dark.png differ diff --git a/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testContentColors-using-theme-interfaceStyle-colorScheme.Inverse_colorContentOnActionPrimaryHoverOnBgEmphasized_Light.png b/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testContentColors-using-theme-interfaceStyle-colorScheme.Inverse_colorContentOnActionPrimaryHoverOnBgEmphasized_Light.png new file mode 100644 index 000000000..d8c618030 Binary files /dev/null and b/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testContentColors-using-theme-interfaceStyle-colorScheme.Inverse_colorContentOnActionPrimaryHoverOnBgEmphasized_Light.png differ diff --git a/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testContentColors-using-theme-interfaceStyle-colorScheme.Inverse_colorContentOnActionPrimaryHover_Dark.png b/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testContentColors-using-theme-interfaceStyle-colorScheme.Inverse_colorContentOnActionPrimaryHover_Dark.png new file mode 100644 index 000000000..156f07460 Binary files /dev/null and b/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testContentColors-using-theme-interfaceStyle-colorScheme.Inverse_colorContentOnActionPrimaryHover_Dark.png differ diff --git a/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testContentColors-using-theme-interfaceStyle-colorScheme.Inverse_colorContentOnActionPrimaryHover_Light.png b/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testContentColors-using-theme-interfaceStyle-colorScheme.Inverse_colorContentOnActionPrimaryHover_Light.png new file mode 100644 index 000000000..2f6d2ba29 Binary files /dev/null and b/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testContentColors-using-theme-interfaceStyle-colorScheme.Inverse_colorContentOnActionPrimaryHover_Light.png differ diff --git a/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testContentColors-using-theme-interfaceStyle-colorScheme.Inverse_colorContentOnActionPrimaryLoadingOnBgEmphasized_Dark.png b/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testContentColors-using-theme-interfaceStyle-colorScheme.Inverse_colorContentOnActionPrimaryLoadingOnBgEmphasized_Dark.png new file mode 100644 index 000000000..45d7469f8 Binary files /dev/null and b/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testContentColors-using-theme-interfaceStyle-colorScheme.Inverse_colorContentOnActionPrimaryLoadingOnBgEmphasized_Dark.png differ diff --git a/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testContentColors-using-theme-interfaceStyle-colorScheme.Inverse_colorContentOnActionPrimaryLoadingOnBgEmphasized_Light.png b/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testContentColors-using-theme-interfaceStyle-colorScheme.Inverse_colorContentOnActionPrimaryLoadingOnBgEmphasized_Light.png new file mode 100644 index 000000000..3ad68a999 Binary files /dev/null and b/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testContentColors-using-theme-interfaceStyle-colorScheme.Inverse_colorContentOnActionPrimaryLoadingOnBgEmphasized_Light.png differ diff --git a/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testContentColors-using-theme-interfaceStyle-colorScheme.Inverse_colorContentOnActionPrimaryLoading_Dark.png b/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testContentColors-using-theme-interfaceStyle-colorScheme.Inverse_colorContentOnActionPrimaryLoading_Dark.png new file mode 100644 index 000000000..bc68aa99d Binary files /dev/null and b/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testContentColors-using-theme-interfaceStyle-colorScheme.Inverse_colorContentOnActionPrimaryLoading_Dark.png differ diff --git a/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testContentColors-using-theme-interfaceStyle-colorScheme.Inverse_colorContentOnActionPrimaryLoading_Light.png b/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testContentColors-using-theme-interfaceStyle-colorScheme.Inverse_colorContentOnActionPrimaryLoading_Light.png new file mode 100644 index 000000000..d87d870f1 Binary files /dev/null and b/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testContentColors-using-theme-interfaceStyle-colorScheme.Inverse_colorContentOnActionPrimaryLoading_Light.png differ diff --git a/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testContentColors-using-theme-interfaceStyle-colorScheme.Inverse_colorContentOnActionPrimaryPressedOnBgEmphasized_Dark.png b/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testContentColors-using-theme-interfaceStyle-colorScheme.Inverse_colorContentOnActionPrimaryPressedOnBgEmphasized_Dark.png new file mode 100644 index 000000000..7acb8919c Binary files /dev/null and b/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testContentColors-using-theme-interfaceStyle-colorScheme.Inverse_colorContentOnActionPrimaryPressedOnBgEmphasized_Dark.png differ diff --git a/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testContentColors-using-theme-interfaceStyle-colorScheme.Inverse_colorContentOnActionPrimaryPressedOnBgEmphasized_Light.png b/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testContentColors-using-theme-interfaceStyle-colorScheme.Inverse_colorContentOnActionPrimaryPressedOnBgEmphasized_Light.png new file mode 100644 index 000000000..fa8be6a4a Binary files /dev/null and b/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testContentColors-using-theme-interfaceStyle-colorScheme.Inverse_colorContentOnActionPrimaryPressedOnBgEmphasized_Light.png differ diff --git a/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testContentColors-using-theme-interfaceStyle-colorScheme.Inverse_colorContentOnActionPrimaryPressed_Dark.png b/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testContentColors-using-theme-interfaceStyle-colorScheme.Inverse_colorContentOnActionPrimaryPressed_Dark.png new file mode 100644 index 000000000..ae70c0dd6 Binary files /dev/null and b/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testContentColors-using-theme-interfaceStyle-colorScheme.Inverse_colorContentOnActionPrimaryPressed_Dark.png differ diff --git a/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testContentColors-using-theme-interfaceStyle-colorScheme.Inverse_colorContentOnActionPrimaryPressed_Light.png b/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testContentColors-using-theme-interfaceStyle-colorScheme.Inverse_colorContentOnActionPrimaryPressed_Light.png new file mode 100644 index 000000000..e76214825 Binary files /dev/null and b/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testContentColors-using-theme-interfaceStyle-colorScheme.Inverse_colorContentOnActionPrimaryPressed_Light.png differ diff --git a/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testContentColors-using-theme-interfaceStyle-colorScheme.Inverse_colorContentOnBrandPrimary_Dark.png b/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testContentColors-using-theme-interfaceStyle-colorScheme.Inverse_colorContentOnBrandPrimary_Dark.png new file mode 100644 index 000000000..f0a79e28c Binary files /dev/null and b/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testContentColors-using-theme-interfaceStyle-colorScheme.Inverse_colorContentOnBrandPrimary_Dark.png differ diff --git a/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testContentColors-using-theme-interfaceStyle-colorScheme.Inverse_colorContentOnBrandPrimary_Light.png b/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testContentColors-using-theme-interfaceStyle-colorScheme.Inverse_colorContentOnBrandPrimary_Light.png new file mode 100644 index 000000000..4908893fc Binary files /dev/null and b/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testContentColors-using-theme-interfaceStyle-colorScheme.Inverse_colorContentOnBrandPrimary_Light.png differ diff --git a/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testContentColors-using-theme-interfaceStyle-colorScheme.Inverse_colorContentOnStatusAccentEmphasized_Dark.png b/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testContentColors-using-theme-interfaceStyle-colorScheme.Inverse_colorContentOnStatusAccentEmphasized_Dark.png new file mode 100644 index 000000000..fcd88c38d Binary files /dev/null and b/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testContentColors-using-theme-interfaceStyle-colorScheme.Inverse_colorContentOnStatusAccentEmphasized_Dark.png differ diff --git a/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testContentColors-using-theme-interfaceStyle-colorScheme.Inverse_colorContentOnStatusAccentEmphasized_Light.png b/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testContentColors-using-theme-interfaceStyle-colorScheme.Inverse_colorContentOnStatusAccentEmphasized_Light.png new file mode 100644 index 000000000..8ed05323f Binary files /dev/null and b/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testContentColors-using-theme-interfaceStyle-colorScheme.Inverse_colorContentOnStatusAccentEmphasized_Light.png differ diff --git a/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testContentColors-using-theme-interfaceStyle-colorScheme.Inverse_colorContentOnStatusAccentMutedOnBgEmphasized_Dark.png b/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testContentColors-using-theme-interfaceStyle-colorScheme.Inverse_colorContentOnStatusAccentMutedOnBgEmphasized_Dark.png new file mode 100644 index 000000000..ce4c6256a Binary files /dev/null and b/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testContentColors-using-theme-interfaceStyle-colorScheme.Inverse_colorContentOnStatusAccentMutedOnBgEmphasized_Dark.png differ diff --git a/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testContentColors-using-theme-interfaceStyle-colorScheme.Inverse_colorContentOnStatusAccentMutedOnBgEmphasized_Light.png b/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testContentColors-using-theme-interfaceStyle-colorScheme.Inverse_colorContentOnStatusAccentMutedOnBgEmphasized_Light.png new file mode 100644 index 000000000..5c7945f66 Binary files /dev/null and b/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testContentColors-using-theme-interfaceStyle-colorScheme.Inverse_colorContentOnStatusAccentMutedOnBgEmphasized_Light.png differ diff --git a/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testContentColors-using-theme-interfaceStyle-colorScheme.Inverse_colorContentOnStatusAccentMuted_Dark.png b/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testContentColors-using-theme-interfaceStyle-colorScheme.Inverse_colorContentOnStatusAccentMuted_Dark.png new file mode 100644 index 000000000..6f61d3e8e Binary files /dev/null and b/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testContentColors-using-theme-interfaceStyle-colorScheme.Inverse_colorContentOnStatusAccentMuted_Dark.png differ diff --git a/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testContentColors-using-theme-interfaceStyle-colorScheme.Inverse_colorContentOnStatusAccentMuted_Light.png b/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testContentColors-using-theme-interfaceStyle-colorScheme.Inverse_colorContentOnStatusAccentMuted_Light.png new file mode 100644 index 000000000..bb71ab0cd Binary files /dev/null and b/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testContentColors-using-theme-interfaceStyle-colorScheme.Inverse_colorContentOnStatusAccentMuted_Light.png differ diff --git a/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testContentColors-using-theme-interfaceStyle-colorScheme.Inverse_colorContentOnStatusInfoEmphasized_Dark.png b/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testContentColors-using-theme-interfaceStyle-colorScheme.Inverse_colorContentOnStatusInfoEmphasized_Dark.png new file mode 100644 index 000000000..ffd6c0a21 Binary files /dev/null and b/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testContentColors-using-theme-interfaceStyle-colorScheme.Inverse_colorContentOnStatusInfoEmphasized_Dark.png differ diff --git a/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testContentColors-using-theme-interfaceStyle-colorScheme.Inverse_colorContentOnStatusInfoEmphasized_Light.png b/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testContentColors-using-theme-interfaceStyle-colorScheme.Inverse_colorContentOnStatusInfoEmphasized_Light.png new file mode 100644 index 000000000..307d7188c Binary files /dev/null and b/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testContentColors-using-theme-interfaceStyle-colorScheme.Inverse_colorContentOnStatusInfoEmphasized_Light.png differ diff --git a/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testContentColors-using-theme-interfaceStyle-colorScheme.Inverse_colorContentOnStatusInfoMutedOnBgEmphasized_Dark.png b/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testContentColors-using-theme-interfaceStyle-colorScheme.Inverse_colorContentOnStatusInfoMutedOnBgEmphasized_Dark.png new file mode 100644 index 000000000..12abc07c6 Binary files /dev/null and b/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testContentColors-using-theme-interfaceStyle-colorScheme.Inverse_colorContentOnStatusInfoMutedOnBgEmphasized_Dark.png differ diff --git a/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testContentColors-using-theme-interfaceStyle-colorScheme.Inverse_colorContentOnStatusInfoMutedOnBgEmphasized_Light.png b/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testContentColors-using-theme-interfaceStyle-colorScheme.Inverse_colorContentOnStatusInfoMutedOnBgEmphasized_Light.png new file mode 100644 index 000000000..7298c6844 Binary files /dev/null and b/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testContentColors-using-theme-interfaceStyle-colorScheme.Inverse_colorContentOnStatusInfoMutedOnBgEmphasized_Light.png differ diff --git a/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testContentColors-using-theme-interfaceStyle-colorScheme.Inverse_colorContentOnStatusInfoMuted_Dark.png b/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testContentColors-using-theme-interfaceStyle-colorScheme.Inverse_colorContentOnStatusInfoMuted_Dark.png new file mode 100644 index 000000000..20bd121eb Binary files /dev/null and b/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testContentColors-using-theme-interfaceStyle-colorScheme.Inverse_colorContentOnStatusInfoMuted_Dark.png differ diff --git a/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testContentColors-using-theme-interfaceStyle-colorScheme.Inverse_colorContentOnStatusInfoMuted_Light.png b/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testContentColors-using-theme-interfaceStyle-colorScheme.Inverse_colorContentOnStatusInfoMuted_Light.png new file mode 100644 index 000000000..41934c6b2 Binary files /dev/null and b/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testContentColors-using-theme-interfaceStyle-colorScheme.Inverse_colorContentOnStatusInfoMuted_Light.png differ diff --git a/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testContentColors-using-theme-interfaceStyle-colorScheme.Inverse_colorContentOnStatusNegativeEmphasized_Dark.png b/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testContentColors-using-theme-interfaceStyle-colorScheme.Inverse_colorContentOnStatusNegativeEmphasized_Dark.png new file mode 100644 index 000000000..49953e346 Binary files /dev/null and b/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testContentColors-using-theme-interfaceStyle-colorScheme.Inverse_colorContentOnStatusNegativeEmphasized_Dark.png differ diff --git a/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testContentColors-using-theme-interfaceStyle-colorScheme.Inverse_colorContentOnStatusNegativeEmphasized_Light.png b/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testContentColors-using-theme-interfaceStyle-colorScheme.Inverse_colorContentOnStatusNegativeEmphasized_Light.png new file mode 100644 index 000000000..294957ea3 Binary files /dev/null and b/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testContentColors-using-theme-interfaceStyle-colorScheme.Inverse_colorContentOnStatusNegativeEmphasized_Light.png differ diff --git a/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testContentColors-using-theme-interfaceStyle-colorScheme.Inverse_colorContentOnStatusNegativeMutedOnBgEmphasized_Dark.png b/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testContentColors-using-theme-interfaceStyle-colorScheme.Inverse_colorContentOnStatusNegativeMutedOnBgEmphasized_Dark.png new file mode 100644 index 000000000..f019e5b96 Binary files /dev/null and b/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testContentColors-using-theme-interfaceStyle-colorScheme.Inverse_colorContentOnStatusNegativeMutedOnBgEmphasized_Dark.png differ diff --git a/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testContentColors-using-theme-interfaceStyle-colorScheme.Inverse_colorContentOnStatusNegativeMutedOnBgEmphasized_Light.png b/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testContentColors-using-theme-interfaceStyle-colorScheme.Inverse_colorContentOnStatusNegativeMutedOnBgEmphasized_Light.png new file mode 100644 index 000000000..185226cd5 Binary files /dev/null and b/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testContentColors-using-theme-interfaceStyle-colorScheme.Inverse_colorContentOnStatusNegativeMutedOnBgEmphasized_Light.png differ diff --git a/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testContentColors-using-theme-interfaceStyle-colorScheme.Inverse_colorContentOnStatusNegativeMuted_Dark.png b/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testContentColors-using-theme-interfaceStyle-colorScheme.Inverse_colorContentOnStatusNegativeMuted_Dark.png new file mode 100644 index 000000000..350622bd6 Binary files /dev/null and b/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testContentColors-using-theme-interfaceStyle-colorScheme.Inverse_colorContentOnStatusNegativeMuted_Dark.png differ diff --git a/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testContentColors-using-theme-interfaceStyle-colorScheme.Inverse_colorContentOnStatusNegativeMuted_Light.png b/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testContentColors-using-theme-interfaceStyle-colorScheme.Inverse_colorContentOnStatusNegativeMuted_Light.png new file mode 100644 index 000000000..df28aee25 Binary files /dev/null and b/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testContentColors-using-theme-interfaceStyle-colorScheme.Inverse_colorContentOnStatusNegativeMuted_Light.png differ diff --git a/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testContentColors-using-theme-interfaceStyle-colorScheme.Inverse_colorContentOnStatusPositiveEmphasized_Dark.png b/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testContentColors-using-theme-interfaceStyle-colorScheme.Inverse_colorContentOnStatusPositiveEmphasized_Dark.png new file mode 100644 index 000000000..acf93b58d Binary files /dev/null and b/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testContentColors-using-theme-interfaceStyle-colorScheme.Inverse_colorContentOnStatusPositiveEmphasized_Dark.png differ diff --git a/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testContentColors-using-theme-interfaceStyle-colorScheme.Inverse_colorContentOnStatusPositiveEmphasized_Light.png b/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testContentColors-using-theme-interfaceStyle-colorScheme.Inverse_colorContentOnStatusPositiveEmphasized_Light.png new file mode 100644 index 000000000..201a966a9 Binary files /dev/null and b/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testContentColors-using-theme-interfaceStyle-colorScheme.Inverse_colorContentOnStatusPositiveEmphasized_Light.png differ diff --git a/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testContentColors-using-theme-interfaceStyle-colorScheme.Inverse_colorContentOnStatusPositiveMutedOnBgEmphasized_Dark.png b/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testContentColors-using-theme-interfaceStyle-colorScheme.Inverse_colorContentOnStatusPositiveMutedOnBgEmphasized_Dark.png new file mode 100644 index 000000000..fa8b8f992 Binary files /dev/null and b/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testContentColors-using-theme-interfaceStyle-colorScheme.Inverse_colorContentOnStatusPositiveMutedOnBgEmphasized_Dark.png differ diff --git a/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testContentColors-using-theme-interfaceStyle-colorScheme.Inverse_colorContentOnStatusPositiveMutedOnBgEmphasized_Light.png b/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testContentColors-using-theme-interfaceStyle-colorScheme.Inverse_colorContentOnStatusPositiveMutedOnBgEmphasized_Light.png new file mode 100644 index 000000000..a81562ae2 Binary files /dev/null and b/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testContentColors-using-theme-interfaceStyle-colorScheme.Inverse_colorContentOnStatusPositiveMutedOnBgEmphasized_Light.png differ diff --git a/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testContentColors-using-theme-interfaceStyle-colorScheme.Inverse_colorContentOnStatusPositiveMuted_Dark.png b/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testContentColors-using-theme-interfaceStyle-colorScheme.Inverse_colorContentOnStatusPositiveMuted_Dark.png new file mode 100644 index 000000000..6eb482160 Binary files /dev/null and b/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testContentColors-using-theme-interfaceStyle-colorScheme.Inverse_colorContentOnStatusPositiveMuted_Dark.png differ diff --git a/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testContentColors-using-theme-interfaceStyle-colorScheme.Inverse_colorContentOnStatusPositiveMuted_Light.png b/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testContentColors-using-theme-interfaceStyle-colorScheme.Inverse_colorContentOnStatusPositiveMuted_Light.png new file mode 100644 index 000000000..32df98a01 Binary files /dev/null and b/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testContentColors-using-theme-interfaceStyle-colorScheme.Inverse_colorContentOnStatusPositiveMuted_Light.png differ diff --git a/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testContentColors-using-theme-interfaceStyle-colorScheme.Inverse_colorContentOnStatusWarningEmphasized_Dark.png b/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testContentColors-using-theme-interfaceStyle-colorScheme.Inverse_colorContentOnStatusWarningEmphasized_Dark.png new file mode 100644 index 000000000..81f33daee Binary files /dev/null and b/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testContentColors-using-theme-interfaceStyle-colorScheme.Inverse_colorContentOnStatusWarningEmphasized_Dark.png differ diff --git a/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testContentColors-using-theme-interfaceStyle-colorScheme.Inverse_colorContentOnStatusWarningEmphasized_Light.png b/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testContentColors-using-theme-interfaceStyle-colorScheme.Inverse_colorContentOnStatusWarningEmphasized_Light.png new file mode 100644 index 000000000..8c1df0fd7 Binary files /dev/null and b/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testContentColors-using-theme-interfaceStyle-colorScheme.Inverse_colorContentOnStatusWarningEmphasized_Light.png differ diff --git a/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testContentColors-using-theme-interfaceStyle-colorScheme.Inverse_colorContentOnStatusWarningMutedOnBgEmphasized_Dark.png b/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testContentColors-using-theme-interfaceStyle-colorScheme.Inverse_colorContentOnStatusWarningMutedOnBgEmphasized_Dark.png new file mode 100644 index 000000000..92a2f8ccd Binary files /dev/null and b/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testContentColors-using-theme-interfaceStyle-colorScheme.Inverse_colorContentOnStatusWarningMutedOnBgEmphasized_Dark.png differ diff --git a/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testContentColors-using-theme-interfaceStyle-colorScheme.Inverse_colorContentOnStatusWarningMutedOnBgEmphasized_Light.png b/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testContentColors-using-theme-interfaceStyle-colorScheme.Inverse_colorContentOnStatusWarningMutedOnBgEmphasized_Light.png new file mode 100644 index 000000000..af7dbbdc3 Binary files /dev/null and b/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testContentColors-using-theme-interfaceStyle-colorScheme.Inverse_colorContentOnStatusWarningMutedOnBgEmphasized_Light.png differ diff --git a/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testContentColors-using-theme-interfaceStyle-colorScheme.Inverse_colorContentOnStatusWarningMuted_Dark.png b/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testContentColors-using-theme-interfaceStyle-colorScheme.Inverse_colorContentOnStatusWarningMuted_Dark.png new file mode 100644 index 000000000..798d461bc Binary files /dev/null and b/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testContentColors-using-theme-interfaceStyle-colorScheme.Inverse_colorContentOnStatusWarningMuted_Dark.png differ diff --git a/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testContentColors-using-theme-interfaceStyle-colorScheme.Inverse_colorContentOnStatusWarningMuted_Light.png b/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testContentColors-using-theme-interfaceStyle-colorScheme.Inverse_colorContentOnStatusWarningMuted_Light.png new file mode 100644 index 000000000..f037496fa Binary files /dev/null and b/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testContentColors-using-theme-interfaceStyle-colorScheme.Inverse_colorContentOnStatusWarningMuted_Light.png differ diff --git a/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testContentColors-using-theme-interfaceStyle-colorScheme.Orange_colorContentBrandPrimaryOnBgEmphasized_Dark.png b/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testContentColors-using-theme-interfaceStyle-colorScheme.Orange_colorContentBrandPrimaryOnBgEmphasized_Dark.png new file mode 100644 index 000000000..327ab33ae Binary files /dev/null and b/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testContentColors-using-theme-interfaceStyle-colorScheme.Orange_colorContentBrandPrimaryOnBgEmphasized_Dark.png differ diff --git a/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testContentColors-using-theme-interfaceStyle-colorScheme.Orange_colorContentBrandPrimaryOnBgEmphasized_Light.png b/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testContentColors-using-theme-interfaceStyle-colorScheme.Orange_colorContentBrandPrimaryOnBgEmphasized_Light.png new file mode 100644 index 000000000..f66b1bc1a Binary files /dev/null and b/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testContentColors-using-theme-interfaceStyle-colorScheme.Orange_colorContentBrandPrimaryOnBgEmphasized_Light.png differ diff --git a/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testContentColors-using-theme-interfaceStyle-colorScheme.Orange_colorContentBrandPrimary_Dark.png b/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testContentColors-using-theme-interfaceStyle-colorScheme.Orange_colorContentBrandPrimary_Dark.png index b36b808bb..2183d8d34 100644 Binary files a/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testContentColors-using-theme-interfaceStyle-colorScheme.Orange_colorContentBrandPrimary_Dark.png and b/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testContentColors-using-theme-interfaceStyle-colorScheme.Orange_colorContentBrandPrimary_Dark.png differ diff --git a/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testContentColors-using-theme-interfaceStyle-colorScheme.Orange_colorContentContentDefaultOnBgEmphasized_Dark.png b/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testContentColors-using-theme-interfaceStyle-colorScheme.Orange_colorContentContentDefaultOnBgEmphasized_Dark.png deleted file mode 100644 index e2b9a19eb..000000000 Binary files a/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testContentColors-using-theme-interfaceStyle-colorScheme.Orange_colorContentContentDefaultOnBgEmphasized_Dark.png and /dev/null differ diff --git a/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testContentColors-using-theme-interfaceStyle-colorScheme.Orange_colorContentContentDefaultOnBgEmphasized_Light.png b/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testContentColors-using-theme-interfaceStyle-colorScheme.Orange_colorContentContentDefaultOnBgEmphasized_Light.png deleted file mode 100644 index 17386ce8e..000000000 Binary files a/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testContentColors-using-theme-interfaceStyle-colorScheme.Orange_colorContentContentDefaultOnBgEmphasized_Light.png and /dev/null differ diff --git a/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testContentColors-using-theme-interfaceStyle-colorScheme.Orange_colorContentContentDisabledOnBgEmphasized_Dark.png b/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testContentColors-using-theme-interfaceStyle-colorScheme.Orange_colorContentContentDisabledOnBgEmphasized_Dark.png deleted file mode 100644 index 88b169985..000000000 Binary files a/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testContentColors-using-theme-interfaceStyle-colorScheme.Orange_colorContentContentDisabledOnBgEmphasized_Dark.png and /dev/null differ diff --git a/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testContentColors-using-theme-interfaceStyle-colorScheme.Orange_colorContentContentDisabledOnBgEmphasized_Light.png b/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testContentColors-using-theme-interfaceStyle-colorScheme.Orange_colorContentContentDisabledOnBgEmphasized_Light.png deleted file mode 100644 index d44d1de8b..000000000 Binary files a/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testContentColors-using-theme-interfaceStyle-colorScheme.Orange_colorContentContentDisabledOnBgEmphasized_Light.png and /dev/null differ diff --git a/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testContentColors-using-theme-interfaceStyle-colorScheme.Orange_colorContentContentMutedOnBgEmphasized_Dark.png b/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testContentColors-using-theme-interfaceStyle-colorScheme.Orange_colorContentContentMutedOnBgEmphasized_Dark.png deleted file mode 100644 index dbe3aeda1..000000000 Binary files a/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testContentColors-using-theme-interfaceStyle-colorScheme.Orange_colorContentContentMutedOnBgEmphasized_Dark.png and /dev/null differ diff --git a/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testContentColors-using-theme-interfaceStyle-colorScheme.Orange_colorContentContentMutedOnBgEmphasized_Light.png b/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testContentColors-using-theme-interfaceStyle-colorScheme.Orange_colorContentContentMutedOnBgEmphasized_Light.png deleted file mode 100644 index 54ac57e15..000000000 Binary files a/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testContentColors-using-theme-interfaceStyle-colorScheme.Orange_colorContentContentMutedOnBgEmphasized_Light.png and /dev/null differ diff --git a/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testContentColors-using-theme-interfaceStyle-colorScheme.Orange_colorContentDefaultOnBgEmphasized_Dark.png b/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testContentColors-using-theme-interfaceStyle-colorScheme.Orange_colorContentDefaultOnBgEmphasized_Dark.png new file mode 100644 index 000000000..b53ea6690 Binary files /dev/null and b/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testContentColors-using-theme-interfaceStyle-colorScheme.Orange_colorContentDefaultOnBgEmphasized_Dark.png differ diff --git a/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testContentColors-using-theme-interfaceStyle-colorScheme.Orange_colorContentDefaultOnBgEmphasized_Light.png b/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testContentColors-using-theme-interfaceStyle-colorScheme.Orange_colorContentDefaultOnBgEmphasized_Light.png new file mode 100644 index 000000000..e932e1b48 Binary files /dev/null and b/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testContentColors-using-theme-interfaceStyle-colorScheme.Orange_colorContentDefaultOnBgEmphasized_Light.png differ diff --git a/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testContentColors-using-theme-interfaceStyle-colorScheme.Orange_colorContentDefault_Dark.png b/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testContentColors-using-theme-interfaceStyle-colorScheme.Orange_colorContentDefault_Dark.png index 1831c3789..8b9759ff5 100644 Binary files a/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testContentColors-using-theme-interfaceStyle-colorScheme.Orange_colorContentDefault_Dark.png and b/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testContentColors-using-theme-interfaceStyle-colorScheme.Orange_colorContentDefault_Dark.png differ diff --git a/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testContentColors-using-theme-interfaceStyle-colorScheme.Orange_colorContentDisabledOnBgEmphasized_Dark.png b/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testContentColors-using-theme-interfaceStyle-colorScheme.Orange_colorContentDisabledOnBgEmphasized_Dark.png new file mode 100644 index 000000000..6a2398089 Binary files /dev/null and b/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testContentColors-using-theme-interfaceStyle-colorScheme.Orange_colorContentDisabledOnBgEmphasized_Dark.png differ diff --git a/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testContentColors-using-theme-interfaceStyle-colorScheme.Orange_colorContentDisabledOnBgEmphasized_Light.png b/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testContentColors-using-theme-interfaceStyle-colorScheme.Orange_colorContentDisabledOnBgEmphasized_Light.png new file mode 100644 index 000000000..8dd55596f Binary files /dev/null and b/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testContentColors-using-theme-interfaceStyle-colorScheme.Orange_colorContentDisabledOnBgEmphasized_Light.png differ diff --git a/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testContentColors-using-theme-interfaceStyle-colorScheme.Orange_colorContentDisabled_Dark.png b/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testContentColors-using-theme-interfaceStyle-colorScheme.Orange_colorContentDisabled_Dark.png index b8f6e6d60..4d7419f26 100644 Binary files a/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testContentColors-using-theme-interfaceStyle-colorScheme.Orange_colorContentDisabled_Dark.png and b/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testContentColors-using-theme-interfaceStyle-colorScheme.Orange_colorContentDisabled_Dark.png differ diff --git a/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testContentColors-using-theme-interfaceStyle-colorScheme.Orange_colorContentMutedOnBgEmphasized_Dark.png b/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testContentColors-using-theme-interfaceStyle-colorScheme.Orange_colorContentMutedOnBgEmphasized_Dark.png new file mode 100644 index 000000000..8fc434b9a Binary files /dev/null and b/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testContentColors-using-theme-interfaceStyle-colorScheme.Orange_colorContentMutedOnBgEmphasized_Dark.png differ diff --git a/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testContentColors-using-theme-interfaceStyle-colorScheme.Orange_colorContentMutedOnBgEmphasized_Light.png b/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testContentColors-using-theme-interfaceStyle-colorScheme.Orange_colorContentMutedOnBgEmphasized_Light.png new file mode 100644 index 000000000..0aab5ac51 Binary files /dev/null and b/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testContentColors-using-theme-interfaceStyle-colorScheme.Orange_colorContentMutedOnBgEmphasized_Light.png differ diff --git a/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testContentColors-using-theme-interfaceStyle-colorScheme.Orange_colorContentMuted_Dark.png b/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testContentColors-using-theme-interfaceStyle-colorScheme.Orange_colorContentMuted_Dark.png index c762b40a5..eee5f52b8 100644 Binary files a/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testContentColors-using-theme-interfaceStyle-colorScheme.Orange_colorContentMuted_Dark.png and b/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testContentColors-using-theme-interfaceStyle-colorScheme.Orange_colorContentMuted_Dark.png differ diff --git a/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testContentColors-using-theme-interfaceStyle-colorScheme.Orange_colorContentOnActionDisabledOnBgEmphasized_Dark.png b/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testContentColors-using-theme-interfaceStyle-colorScheme.Orange_colorContentOnActionDisabledOnBgEmphasized_Dark.png new file mode 100644 index 000000000..3140db67d Binary files /dev/null and b/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testContentColors-using-theme-interfaceStyle-colorScheme.Orange_colorContentOnActionDisabledOnBgEmphasized_Dark.png differ diff --git a/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testContentColors-using-theme-interfaceStyle-colorScheme.Orange_colorContentOnActionDisabledOnBgEmphasized_Light.png b/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testContentColors-using-theme-interfaceStyle-colorScheme.Orange_colorContentOnActionDisabledOnBgEmphasized_Light.png new file mode 100644 index 000000000..65945cbf3 Binary files /dev/null and b/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testContentColors-using-theme-interfaceStyle-colorScheme.Orange_colorContentOnActionDisabledOnBgEmphasized_Light.png differ diff --git a/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testContentColors-using-theme-interfaceStyle-colorScheme.Orange_colorContentOnActionDisabled_Dark.png b/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testContentColors-using-theme-interfaceStyle-colorScheme.Orange_colorContentOnActionDisabled_Dark.png new file mode 100644 index 000000000..ba63d341a Binary files /dev/null and b/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testContentColors-using-theme-interfaceStyle-colorScheme.Orange_colorContentOnActionDisabled_Dark.png differ diff --git a/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testContentColors-using-theme-interfaceStyle-colorScheme.Orange_colorContentOnActionDisabled_Light.png b/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testContentColors-using-theme-interfaceStyle-colorScheme.Orange_colorContentOnActionDisabled_Light.png new file mode 100644 index 000000000..10a1bb650 Binary files /dev/null and b/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testContentColors-using-theme-interfaceStyle-colorScheme.Orange_colorContentOnActionDisabled_Light.png differ diff --git a/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testContentColors-using-theme-interfaceStyle-colorScheme.Orange_colorContentOnActionNegative_Dark.png b/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testContentColors-using-theme-interfaceStyle-colorScheme.Orange_colorContentOnActionNegative_Dark.png new file mode 100644 index 000000000..32a0f7991 Binary files /dev/null and b/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testContentColors-using-theme-interfaceStyle-colorScheme.Orange_colorContentOnActionNegative_Dark.png differ diff --git a/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testContentColors-using-theme-interfaceStyle-colorScheme.Orange_colorContentOnActionNegative_Light.png b/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testContentColors-using-theme-interfaceStyle-colorScheme.Orange_colorContentOnActionNegative_Light.png new file mode 100644 index 000000000..3f9f4c9be Binary files /dev/null and b/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testContentColors-using-theme-interfaceStyle-colorScheme.Orange_colorContentOnActionNegative_Light.png differ diff --git a/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testContentColors-using-theme-interfaceStyle-colorScheme.Orange_colorContentOnActionPrimaryEnabledOnBgEmphasized_Dark.png b/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testContentColors-using-theme-interfaceStyle-colorScheme.Orange_colorContentOnActionPrimaryEnabledOnBgEmphasized_Dark.png new file mode 100644 index 000000000..4ecc45c7d Binary files /dev/null and b/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testContentColors-using-theme-interfaceStyle-colorScheme.Orange_colorContentOnActionPrimaryEnabledOnBgEmphasized_Dark.png differ diff --git a/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testContentColors-using-theme-interfaceStyle-colorScheme.Orange_colorContentOnActionPrimaryEnabledOnBgEmphasized_Light.png b/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testContentColors-using-theme-interfaceStyle-colorScheme.Orange_colorContentOnActionPrimaryEnabledOnBgEmphasized_Light.png new file mode 100644 index 000000000..3d3cd0f16 Binary files /dev/null and b/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testContentColors-using-theme-interfaceStyle-colorScheme.Orange_colorContentOnActionPrimaryEnabledOnBgEmphasized_Light.png differ diff --git a/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testContentColors-using-theme-interfaceStyle-colorScheme.Orange_colorContentOnActionPrimaryEnabled_Dark.png b/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testContentColors-using-theme-interfaceStyle-colorScheme.Orange_colorContentOnActionPrimaryEnabled_Dark.png new file mode 100644 index 000000000..8c5af460d Binary files /dev/null and b/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testContentColors-using-theme-interfaceStyle-colorScheme.Orange_colorContentOnActionPrimaryEnabled_Dark.png differ diff --git a/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testContentColors-using-theme-interfaceStyle-colorScheme.Orange_colorContentOnActionPrimaryEnabled_Light.png b/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testContentColors-using-theme-interfaceStyle-colorScheme.Orange_colorContentOnActionPrimaryEnabled_Light.png new file mode 100644 index 000000000..f8cd7611e Binary files /dev/null and b/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testContentColors-using-theme-interfaceStyle-colorScheme.Orange_colorContentOnActionPrimaryEnabled_Light.png differ diff --git a/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testContentColors-using-theme-interfaceStyle-colorScheme.Orange_colorContentOnActionPrimaryFocusOnBgEmphasized_Dark.png b/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testContentColors-using-theme-interfaceStyle-colorScheme.Orange_colorContentOnActionPrimaryFocusOnBgEmphasized_Dark.png new file mode 100644 index 000000000..467a96937 Binary files /dev/null and b/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testContentColors-using-theme-interfaceStyle-colorScheme.Orange_colorContentOnActionPrimaryFocusOnBgEmphasized_Dark.png differ diff --git a/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testContentColors-using-theme-interfaceStyle-colorScheme.Orange_colorContentOnActionPrimaryFocusOnBgEmphasized_Light.png b/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testContentColors-using-theme-interfaceStyle-colorScheme.Orange_colorContentOnActionPrimaryFocusOnBgEmphasized_Light.png new file mode 100644 index 000000000..0df667ae6 Binary files /dev/null and b/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testContentColors-using-theme-interfaceStyle-colorScheme.Orange_colorContentOnActionPrimaryFocusOnBgEmphasized_Light.png differ diff --git a/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testContentColors-using-theme-interfaceStyle-colorScheme.Orange_colorContentOnActionPrimaryFocus_Dark.png b/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testContentColors-using-theme-interfaceStyle-colorScheme.Orange_colorContentOnActionPrimaryFocus_Dark.png new file mode 100644 index 000000000..ba03a590c Binary files /dev/null and b/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testContentColors-using-theme-interfaceStyle-colorScheme.Orange_colorContentOnActionPrimaryFocus_Dark.png differ diff --git a/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testContentColors-using-theme-interfaceStyle-colorScheme.Orange_colorContentOnActionPrimaryFocus_Light.png b/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testContentColors-using-theme-interfaceStyle-colorScheme.Orange_colorContentOnActionPrimaryFocus_Light.png new file mode 100644 index 000000000..702f6f614 Binary files /dev/null and b/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testContentColors-using-theme-interfaceStyle-colorScheme.Orange_colorContentOnActionPrimaryFocus_Light.png differ diff --git a/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testContentColors-using-theme-interfaceStyle-colorScheme.Orange_colorContentOnActionPrimaryHoverOnBgEmphasized_Dark.png b/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testContentColors-using-theme-interfaceStyle-colorScheme.Orange_colorContentOnActionPrimaryHoverOnBgEmphasized_Dark.png new file mode 100644 index 000000000..b99c87c87 Binary files /dev/null and b/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testContentColors-using-theme-interfaceStyle-colorScheme.Orange_colorContentOnActionPrimaryHoverOnBgEmphasized_Dark.png differ diff --git a/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testContentColors-using-theme-interfaceStyle-colorScheme.Orange_colorContentOnActionPrimaryHoverOnBgEmphasized_Light.png b/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testContentColors-using-theme-interfaceStyle-colorScheme.Orange_colorContentOnActionPrimaryHoverOnBgEmphasized_Light.png new file mode 100644 index 000000000..85d81da0b Binary files /dev/null and b/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testContentColors-using-theme-interfaceStyle-colorScheme.Orange_colorContentOnActionPrimaryHoverOnBgEmphasized_Light.png differ diff --git a/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testContentColors-using-theme-interfaceStyle-colorScheme.Orange_colorContentOnActionPrimaryHover_Dark.png b/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testContentColors-using-theme-interfaceStyle-colorScheme.Orange_colorContentOnActionPrimaryHover_Dark.png new file mode 100644 index 000000000..874ced3fc Binary files /dev/null and b/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testContentColors-using-theme-interfaceStyle-colorScheme.Orange_colorContentOnActionPrimaryHover_Dark.png differ diff --git a/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testContentColors-using-theme-interfaceStyle-colorScheme.Orange_colorContentOnActionPrimaryHover_Light.png b/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testContentColors-using-theme-interfaceStyle-colorScheme.Orange_colorContentOnActionPrimaryHover_Light.png new file mode 100644 index 000000000..268bd25da Binary files /dev/null and b/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testContentColors-using-theme-interfaceStyle-colorScheme.Orange_colorContentOnActionPrimaryHover_Light.png differ diff --git a/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testContentColors-using-theme-interfaceStyle-colorScheme.Orange_colorContentOnActionPrimaryLoadingOnBgEmphasized_Dark.png b/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testContentColors-using-theme-interfaceStyle-colorScheme.Orange_colorContentOnActionPrimaryLoadingOnBgEmphasized_Dark.png new file mode 100644 index 000000000..05b2c191f Binary files /dev/null and b/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testContentColors-using-theme-interfaceStyle-colorScheme.Orange_colorContentOnActionPrimaryLoadingOnBgEmphasized_Dark.png differ diff --git a/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testContentColors-using-theme-interfaceStyle-colorScheme.Orange_colorContentOnActionPrimaryLoadingOnBgEmphasized_Light.png b/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testContentColors-using-theme-interfaceStyle-colorScheme.Orange_colorContentOnActionPrimaryLoadingOnBgEmphasized_Light.png new file mode 100644 index 000000000..ecfdb2742 Binary files /dev/null and b/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testContentColors-using-theme-interfaceStyle-colorScheme.Orange_colorContentOnActionPrimaryLoadingOnBgEmphasized_Light.png differ diff --git a/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testContentColors-using-theme-interfaceStyle-colorScheme.Orange_colorContentOnActionPrimaryLoading_Dark.png b/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testContentColors-using-theme-interfaceStyle-colorScheme.Orange_colorContentOnActionPrimaryLoading_Dark.png new file mode 100644 index 000000000..97335f77d Binary files /dev/null and b/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testContentColors-using-theme-interfaceStyle-colorScheme.Orange_colorContentOnActionPrimaryLoading_Dark.png differ diff --git a/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testContentColors-using-theme-interfaceStyle-colorScheme.Orange_colorContentOnActionPrimaryLoading_Light.png b/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testContentColors-using-theme-interfaceStyle-colorScheme.Orange_colorContentOnActionPrimaryLoading_Light.png new file mode 100644 index 000000000..f44fda75c Binary files /dev/null and b/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testContentColors-using-theme-interfaceStyle-colorScheme.Orange_colorContentOnActionPrimaryLoading_Light.png differ diff --git a/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testContentColors-using-theme-interfaceStyle-colorScheme.Orange_colorContentOnActionPrimaryPressedOnBgEmphasized_Dark.png b/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testContentColors-using-theme-interfaceStyle-colorScheme.Orange_colorContentOnActionPrimaryPressedOnBgEmphasized_Dark.png new file mode 100644 index 000000000..e9913c7fb Binary files /dev/null and b/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testContentColors-using-theme-interfaceStyle-colorScheme.Orange_colorContentOnActionPrimaryPressedOnBgEmphasized_Dark.png differ diff --git a/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testContentColors-using-theme-interfaceStyle-colorScheme.Orange_colorContentOnActionPrimaryPressedOnBgEmphasized_Light.png b/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testContentColors-using-theme-interfaceStyle-colorScheme.Orange_colorContentOnActionPrimaryPressedOnBgEmphasized_Light.png new file mode 100644 index 000000000..9747586d1 Binary files /dev/null and b/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testContentColors-using-theme-interfaceStyle-colorScheme.Orange_colorContentOnActionPrimaryPressedOnBgEmphasized_Light.png differ diff --git a/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testContentColors-using-theme-interfaceStyle-colorScheme.Orange_colorContentOnActionPrimaryPressed_Dark.png b/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testContentColors-using-theme-interfaceStyle-colorScheme.Orange_colorContentOnActionPrimaryPressed_Dark.png new file mode 100644 index 000000000..da3984959 Binary files /dev/null and b/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testContentColors-using-theme-interfaceStyle-colorScheme.Orange_colorContentOnActionPrimaryPressed_Dark.png differ diff --git a/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testContentColors-using-theme-interfaceStyle-colorScheme.Orange_colorContentOnActionPrimaryPressed_Light.png b/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testContentColors-using-theme-interfaceStyle-colorScheme.Orange_colorContentOnActionPrimaryPressed_Light.png new file mode 100644 index 000000000..efd705f27 Binary files /dev/null and b/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testContentColors-using-theme-interfaceStyle-colorScheme.Orange_colorContentOnActionPrimaryPressed_Light.png differ diff --git a/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testContentColors-using-theme-interfaceStyle-colorScheme.Orange_colorContentOnBrandPrimary_Dark.png b/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testContentColors-using-theme-interfaceStyle-colorScheme.Orange_colorContentOnBrandPrimary_Dark.png new file mode 100644 index 000000000..7e05569bb Binary files /dev/null and b/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testContentColors-using-theme-interfaceStyle-colorScheme.Orange_colorContentOnBrandPrimary_Dark.png differ diff --git a/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testContentColors-using-theme-interfaceStyle-colorScheme.Orange_colorContentOnBrandPrimary_Light.png b/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testContentColors-using-theme-interfaceStyle-colorScheme.Orange_colorContentOnBrandPrimary_Light.png new file mode 100644 index 000000000..9c23f542e Binary files /dev/null and b/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testContentColors-using-theme-interfaceStyle-colorScheme.Orange_colorContentOnBrandPrimary_Light.png differ diff --git a/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testContentColors-using-theme-interfaceStyle-colorScheme.Orange_colorContentOnStatusAccentEmphasized_Dark.png b/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testContentColors-using-theme-interfaceStyle-colorScheme.Orange_colorContentOnStatusAccentEmphasized_Dark.png new file mode 100644 index 000000000..e1ce3ec6e Binary files /dev/null and b/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testContentColors-using-theme-interfaceStyle-colorScheme.Orange_colorContentOnStatusAccentEmphasized_Dark.png differ diff --git a/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testContentColors-using-theme-interfaceStyle-colorScheme.Orange_colorContentOnStatusAccentEmphasized_Light.png b/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testContentColors-using-theme-interfaceStyle-colorScheme.Orange_colorContentOnStatusAccentEmphasized_Light.png new file mode 100644 index 000000000..8abbf9136 Binary files /dev/null and b/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testContentColors-using-theme-interfaceStyle-colorScheme.Orange_colorContentOnStatusAccentEmphasized_Light.png differ diff --git a/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testContentColors-using-theme-interfaceStyle-colorScheme.Orange_colorContentOnStatusAccentMutedOnBgEmphasized_Dark.png b/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testContentColors-using-theme-interfaceStyle-colorScheme.Orange_colorContentOnStatusAccentMutedOnBgEmphasized_Dark.png new file mode 100644 index 000000000..254ff6e59 Binary files /dev/null and b/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testContentColors-using-theme-interfaceStyle-colorScheme.Orange_colorContentOnStatusAccentMutedOnBgEmphasized_Dark.png differ diff --git a/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testContentColors-using-theme-interfaceStyle-colorScheme.Orange_colorContentOnStatusAccentMutedOnBgEmphasized_Light.png b/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testContentColors-using-theme-interfaceStyle-colorScheme.Orange_colorContentOnStatusAccentMutedOnBgEmphasized_Light.png new file mode 100644 index 000000000..62fe8b67e Binary files /dev/null and b/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testContentColors-using-theme-interfaceStyle-colorScheme.Orange_colorContentOnStatusAccentMutedOnBgEmphasized_Light.png differ diff --git a/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testContentColors-using-theme-interfaceStyle-colorScheme.Orange_colorContentOnStatusAccentMuted_Dark.png b/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testContentColors-using-theme-interfaceStyle-colorScheme.Orange_colorContentOnStatusAccentMuted_Dark.png new file mode 100644 index 000000000..ceb0c0318 Binary files /dev/null and b/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testContentColors-using-theme-interfaceStyle-colorScheme.Orange_colorContentOnStatusAccentMuted_Dark.png differ diff --git a/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testContentColors-using-theme-interfaceStyle-colorScheme.Orange_colorContentOnStatusAccentMuted_Light.png b/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testContentColors-using-theme-interfaceStyle-colorScheme.Orange_colorContentOnStatusAccentMuted_Light.png new file mode 100644 index 000000000..50f82e010 Binary files /dev/null and b/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testContentColors-using-theme-interfaceStyle-colorScheme.Orange_colorContentOnStatusAccentMuted_Light.png differ diff --git a/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testContentColors-using-theme-interfaceStyle-colorScheme.Orange_colorContentOnStatusInfoEmphasized_Dark.png b/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testContentColors-using-theme-interfaceStyle-colorScheme.Orange_colorContentOnStatusInfoEmphasized_Dark.png new file mode 100644 index 000000000..564bb7a0f Binary files /dev/null and b/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testContentColors-using-theme-interfaceStyle-colorScheme.Orange_colorContentOnStatusInfoEmphasized_Dark.png differ diff --git a/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testContentColors-using-theme-interfaceStyle-colorScheme.Orange_colorContentOnStatusInfoEmphasized_Light.png b/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testContentColors-using-theme-interfaceStyle-colorScheme.Orange_colorContentOnStatusInfoEmphasized_Light.png new file mode 100644 index 000000000..c651b5c76 Binary files /dev/null and b/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testContentColors-using-theme-interfaceStyle-colorScheme.Orange_colorContentOnStatusInfoEmphasized_Light.png differ diff --git a/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testContentColors-using-theme-interfaceStyle-colorScheme.Orange_colorContentOnStatusInfoMutedOnBgEmphasized_Dark.png b/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testContentColors-using-theme-interfaceStyle-colorScheme.Orange_colorContentOnStatusInfoMutedOnBgEmphasized_Dark.png new file mode 100644 index 000000000..e42b6f6f4 Binary files /dev/null and b/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testContentColors-using-theme-interfaceStyle-colorScheme.Orange_colorContentOnStatusInfoMutedOnBgEmphasized_Dark.png differ diff --git a/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testContentColors-using-theme-interfaceStyle-colorScheme.Orange_colorContentOnStatusInfoMutedOnBgEmphasized_Light.png b/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testContentColors-using-theme-interfaceStyle-colorScheme.Orange_colorContentOnStatusInfoMutedOnBgEmphasized_Light.png new file mode 100644 index 000000000..220f0df15 Binary files /dev/null and b/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testContentColors-using-theme-interfaceStyle-colorScheme.Orange_colorContentOnStatusInfoMutedOnBgEmphasized_Light.png differ diff --git a/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testContentColors-using-theme-interfaceStyle-colorScheme.Orange_colorContentOnStatusInfoMuted_Dark.png b/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testContentColors-using-theme-interfaceStyle-colorScheme.Orange_colorContentOnStatusInfoMuted_Dark.png new file mode 100644 index 000000000..dca0f9216 Binary files /dev/null and b/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testContentColors-using-theme-interfaceStyle-colorScheme.Orange_colorContentOnStatusInfoMuted_Dark.png differ diff --git a/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testContentColors-using-theme-interfaceStyle-colorScheme.Orange_colorContentOnStatusInfoMuted_Light.png b/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testContentColors-using-theme-interfaceStyle-colorScheme.Orange_colorContentOnStatusInfoMuted_Light.png new file mode 100644 index 000000000..60e2216b2 Binary files /dev/null and b/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testContentColors-using-theme-interfaceStyle-colorScheme.Orange_colorContentOnStatusInfoMuted_Light.png differ diff --git a/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testContentColors-using-theme-interfaceStyle-colorScheme.Orange_colorContentOnStatusNegativeEmphasized_Dark.png b/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testContentColors-using-theme-interfaceStyle-colorScheme.Orange_colorContentOnStatusNegativeEmphasized_Dark.png new file mode 100644 index 000000000..44c877556 Binary files /dev/null and b/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testContentColors-using-theme-interfaceStyle-colorScheme.Orange_colorContentOnStatusNegativeEmphasized_Dark.png differ diff --git a/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testContentColors-using-theme-interfaceStyle-colorScheme.Orange_colorContentOnStatusNegativeEmphasized_Light.png b/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testContentColors-using-theme-interfaceStyle-colorScheme.Orange_colorContentOnStatusNegativeEmphasized_Light.png new file mode 100644 index 000000000..8beff624e Binary files /dev/null and b/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testContentColors-using-theme-interfaceStyle-colorScheme.Orange_colorContentOnStatusNegativeEmphasized_Light.png differ diff --git a/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testContentColors-using-theme-interfaceStyle-colorScheme.Orange_colorContentOnStatusNegativeMutedOnBgEmphasized_Dark.png b/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testContentColors-using-theme-interfaceStyle-colorScheme.Orange_colorContentOnStatusNegativeMutedOnBgEmphasized_Dark.png new file mode 100644 index 000000000..819e101b2 Binary files /dev/null and b/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testContentColors-using-theme-interfaceStyle-colorScheme.Orange_colorContentOnStatusNegativeMutedOnBgEmphasized_Dark.png differ diff --git a/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testContentColors-using-theme-interfaceStyle-colorScheme.Orange_colorContentOnStatusNegativeMutedOnBgEmphasized_Light.png b/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testContentColors-using-theme-interfaceStyle-colorScheme.Orange_colorContentOnStatusNegativeMutedOnBgEmphasized_Light.png new file mode 100644 index 000000000..5d646c750 Binary files /dev/null and b/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testContentColors-using-theme-interfaceStyle-colorScheme.Orange_colorContentOnStatusNegativeMutedOnBgEmphasized_Light.png differ diff --git a/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testContentColors-using-theme-interfaceStyle-colorScheme.Orange_colorContentOnStatusNegativeMuted_Dark.png b/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testContentColors-using-theme-interfaceStyle-colorScheme.Orange_colorContentOnStatusNegativeMuted_Dark.png new file mode 100644 index 000000000..64dde3ba7 Binary files /dev/null and b/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testContentColors-using-theme-interfaceStyle-colorScheme.Orange_colorContentOnStatusNegativeMuted_Dark.png differ diff --git a/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testContentColors-using-theme-interfaceStyle-colorScheme.Orange_colorContentOnStatusNegativeMuted_Light.png b/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testContentColors-using-theme-interfaceStyle-colorScheme.Orange_colorContentOnStatusNegativeMuted_Light.png new file mode 100644 index 000000000..8898169f9 Binary files /dev/null and b/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testContentColors-using-theme-interfaceStyle-colorScheme.Orange_colorContentOnStatusNegativeMuted_Light.png differ diff --git a/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testContentColors-using-theme-interfaceStyle-colorScheme.Orange_colorContentOnStatusPositiveEmphasized_Dark.png b/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testContentColors-using-theme-interfaceStyle-colorScheme.Orange_colorContentOnStatusPositiveEmphasized_Dark.png new file mode 100644 index 000000000..37f6e290a Binary files /dev/null and b/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testContentColors-using-theme-interfaceStyle-colorScheme.Orange_colorContentOnStatusPositiveEmphasized_Dark.png differ diff --git a/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testContentColors-using-theme-interfaceStyle-colorScheme.Orange_colorContentOnStatusPositiveEmphasized_Light.png b/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testContentColors-using-theme-interfaceStyle-colorScheme.Orange_colorContentOnStatusPositiveEmphasized_Light.png new file mode 100644 index 000000000..b870d9d72 Binary files /dev/null and b/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testContentColors-using-theme-interfaceStyle-colorScheme.Orange_colorContentOnStatusPositiveEmphasized_Light.png differ diff --git a/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testContentColors-using-theme-interfaceStyle-colorScheme.Orange_colorContentOnStatusPositiveMutedOnBgEmphasized_Dark.png b/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testContentColors-using-theme-interfaceStyle-colorScheme.Orange_colorContentOnStatusPositiveMutedOnBgEmphasized_Dark.png new file mode 100644 index 000000000..8315b5ab6 Binary files /dev/null and b/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testContentColors-using-theme-interfaceStyle-colorScheme.Orange_colorContentOnStatusPositiveMutedOnBgEmphasized_Dark.png differ diff --git a/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testContentColors-using-theme-interfaceStyle-colorScheme.Orange_colorContentOnStatusPositiveMutedOnBgEmphasized_Light.png b/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testContentColors-using-theme-interfaceStyle-colorScheme.Orange_colorContentOnStatusPositiveMutedOnBgEmphasized_Light.png new file mode 100644 index 000000000..3a93a1f5b Binary files /dev/null and b/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testContentColors-using-theme-interfaceStyle-colorScheme.Orange_colorContentOnStatusPositiveMutedOnBgEmphasized_Light.png differ diff --git a/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testContentColors-using-theme-interfaceStyle-colorScheme.Orange_colorContentOnStatusPositiveMuted_Dark.png b/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testContentColors-using-theme-interfaceStyle-colorScheme.Orange_colorContentOnStatusPositiveMuted_Dark.png new file mode 100644 index 000000000..508e72e87 Binary files /dev/null and b/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testContentColors-using-theme-interfaceStyle-colorScheme.Orange_colorContentOnStatusPositiveMuted_Dark.png differ diff --git a/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testContentColors-using-theme-interfaceStyle-colorScheme.Orange_colorContentOnStatusPositiveMuted_Light.png b/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testContentColors-using-theme-interfaceStyle-colorScheme.Orange_colorContentOnStatusPositiveMuted_Light.png new file mode 100644 index 000000000..ef3142a06 Binary files /dev/null and b/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testContentColors-using-theme-interfaceStyle-colorScheme.Orange_colorContentOnStatusPositiveMuted_Light.png differ diff --git a/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testContentColors-using-theme-interfaceStyle-colorScheme.Orange_colorContentOnStatusWarningEmphasized_Dark.png b/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testContentColors-using-theme-interfaceStyle-colorScheme.Orange_colorContentOnStatusWarningEmphasized_Dark.png new file mode 100644 index 000000000..33e53d555 Binary files /dev/null and b/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testContentColors-using-theme-interfaceStyle-colorScheme.Orange_colorContentOnStatusWarningEmphasized_Dark.png differ diff --git a/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testContentColors-using-theme-interfaceStyle-colorScheme.Orange_colorContentOnStatusWarningEmphasized_Light.png b/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testContentColors-using-theme-interfaceStyle-colorScheme.Orange_colorContentOnStatusWarningEmphasized_Light.png new file mode 100644 index 000000000..2833f0d97 Binary files /dev/null and b/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testContentColors-using-theme-interfaceStyle-colorScheme.Orange_colorContentOnStatusWarningEmphasized_Light.png differ diff --git a/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testContentColors-using-theme-interfaceStyle-colorScheme.Orange_colorContentOnStatusWarningMutedOnBgEmphasized_Dark.png b/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testContentColors-using-theme-interfaceStyle-colorScheme.Orange_colorContentOnStatusWarningMutedOnBgEmphasized_Dark.png new file mode 100644 index 000000000..327e74272 Binary files /dev/null and b/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testContentColors-using-theme-interfaceStyle-colorScheme.Orange_colorContentOnStatusWarningMutedOnBgEmphasized_Dark.png differ diff --git a/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testContentColors-using-theme-interfaceStyle-colorScheme.Orange_colorContentOnStatusWarningMutedOnBgEmphasized_Light.png b/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testContentColors-using-theme-interfaceStyle-colorScheme.Orange_colorContentOnStatusWarningMutedOnBgEmphasized_Light.png new file mode 100644 index 000000000..f7e44298f Binary files /dev/null and b/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testContentColors-using-theme-interfaceStyle-colorScheme.Orange_colorContentOnStatusWarningMutedOnBgEmphasized_Light.png differ diff --git a/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testContentColors-using-theme-interfaceStyle-colorScheme.Orange_colorContentOnStatusWarningMuted_Dark.png b/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testContentColors-using-theme-interfaceStyle-colorScheme.Orange_colorContentOnStatusWarningMuted_Dark.png new file mode 100644 index 000000000..dd04359d3 Binary files /dev/null and b/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testContentColors-using-theme-interfaceStyle-colorScheme.Orange_colorContentOnStatusWarningMuted_Dark.png differ diff --git a/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testContentColors-using-theme-interfaceStyle-colorScheme.Orange_colorContentOnStatusWarningMuted_Light.png b/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testContentColors-using-theme-interfaceStyle-colorScheme.Orange_colorContentOnStatusWarningMuted_Light.png new file mode 100644 index 000000000..28a7101f6 Binary files /dev/null and b/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testContentColors-using-theme-interfaceStyle-colorScheme.Orange_colorContentOnStatusWarningMuted_Light.png differ diff --git a/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testContentColors-using-theme-interfaceStyle-colorScheme.Orange_colorContentStatusInfo_Dark.png b/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testContentColors-using-theme-interfaceStyle-colorScheme.Orange_colorContentStatusInfo_Dark.png index c1bf16aa4..a10b9972d 100644 Binary files a/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testContentColors-using-theme-interfaceStyle-colorScheme.Orange_colorContentStatusInfo_Dark.png and b/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testContentColors-using-theme-interfaceStyle-colorScheme.Orange_colorContentStatusInfo_Dark.png differ diff --git a/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testContentColors-using-theme-interfaceStyle-colorScheme.Orange_colorContentStatusNegative_Dark.png b/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testContentColors-using-theme-interfaceStyle-colorScheme.Orange_colorContentStatusNegative_Dark.png index ec45d41ed..9bd0029d7 100644 Binary files a/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testContentColors-using-theme-interfaceStyle-colorScheme.Orange_colorContentStatusNegative_Dark.png and b/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testContentColors-using-theme-interfaceStyle-colorScheme.Orange_colorContentStatusNegative_Dark.png differ diff --git a/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testContentColors-using-theme-interfaceStyle-colorScheme.Orange_colorContentStatusPositive_Dark.png b/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testContentColors-using-theme-interfaceStyle-colorScheme.Orange_colorContentStatusPositive_Dark.png index 8c1e7e0a3..5c875586f 100644 Binary files a/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testContentColors-using-theme-interfaceStyle-colorScheme.Orange_colorContentStatusPositive_Dark.png and b/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testContentColors-using-theme-interfaceStyle-colorScheme.Orange_colorContentStatusPositive_Dark.png differ diff --git a/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testContentColors-using-theme-interfaceStyle-colorScheme.Orange_colorContentStatusWarning_Dark.png b/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testContentColors-using-theme-interfaceStyle-colorScheme.Orange_colorContentStatusWarning_Dark.png index 07523d174..6baa56771 100644 Binary files a/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testContentColors-using-theme-interfaceStyle-colorScheme.Orange_colorContentStatusWarning_Dark.png and b/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testContentColors-using-theme-interfaceStyle-colorScheme.Orange_colorContentStatusWarning_Dark.png differ diff --git a/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testContentOnBgColors-using-theme-interfaceStyle-colorScheme.Inverse_colorContentOnBgPrimary_Dark.png b/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testContentOnBgColors-using-theme-interfaceStyle-colorScheme.Inverse_colorContentOnBgPrimary_Dark.png deleted file mode 100644 index f80d05b4f..000000000 Binary files a/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testContentOnBgColors-using-theme-interfaceStyle-colorScheme.Inverse_colorContentOnBgPrimary_Dark.png and /dev/null differ diff --git a/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testContentOnBgColors-using-theme-interfaceStyle-colorScheme.Inverse_colorContentOnBgPrimary_Light.png b/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testContentOnBgColors-using-theme-interfaceStyle-colorScheme.Inverse_colorContentOnBgPrimary_Light.png deleted file mode 100644 index 8e4de0d51..000000000 Binary files a/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testContentOnBgColors-using-theme-interfaceStyle-colorScheme.Inverse_colorContentOnBgPrimary_Light.png and /dev/null differ diff --git a/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testContentOnBgColors-using-theme-interfaceStyle-colorScheme.Inverse_colorContentOnBgStatusAccentMutedOnBgEmphasized_Dark.png b/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testContentOnBgColors-using-theme-interfaceStyle-colorScheme.Inverse_colorContentOnBgStatusAccentMutedOnBgEmphasized_Dark.png deleted file mode 100644 index 847991c69..000000000 Binary files a/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testContentOnBgColors-using-theme-interfaceStyle-colorScheme.Inverse_colorContentOnBgStatusAccentMutedOnBgEmphasized_Dark.png and /dev/null differ diff --git a/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testContentOnBgColors-using-theme-interfaceStyle-colorScheme.Inverse_colorContentOnBgStatusAccentMutedOnBgEmphasized_Light.png b/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testContentOnBgColors-using-theme-interfaceStyle-colorScheme.Inverse_colorContentOnBgStatusAccentMutedOnBgEmphasized_Light.png deleted file mode 100644 index 784f79854..000000000 Binary files a/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testContentOnBgColors-using-theme-interfaceStyle-colorScheme.Inverse_colorContentOnBgStatusAccentMutedOnBgEmphasized_Light.png and /dev/null differ diff --git a/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testContentOnBgColors-using-theme-interfaceStyle-colorScheme.Inverse_colorContentOnBgStatusAccentMuted_Dark.png b/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testContentOnBgColors-using-theme-interfaceStyle-colorScheme.Inverse_colorContentOnBgStatusAccentMuted_Dark.png deleted file mode 100644 index 36670390e..000000000 Binary files a/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testContentOnBgColors-using-theme-interfaceStyle-colorScheme.Inverse_colorContentOnBgStatusAccentMuted_Dark.png and /dev/null differ diff --git a/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testContentOnBgColors-using-theme-interfaceStyle-colorScheme.Inverse_colorContentOnBgStatusAccentMuted_Light.png b/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testContentOnBgColors-using-theme-interfaceStyle-colorScheme.Inverse_colorContentOnBgStatusAccentMuted_Light.png deleted file mode 100644 index ba22f6ea2..000000000 Binary files a/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testContentOnBgColors-using-theme-interfaceStyle-colorScheme.Inverse_colorContentOnBgStatusAccentMuted_Light.png and /dev/null differ diff --git a/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testContentOnBgColors-using-theme-interfaceStyle-colorScheme.Inverse_colorContentOnBgStatusAccentedEmphasized_Dark.png b/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testContentOnBgColors-using-theme-interfaceStyle-colorScheme.Inverse_colorContentOnBgStatusAccentedEmphasized_Dark.png deleted file mode 100644 index 963862ae4..000000000 Binary files a/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testContentOnBgColors-using-theme-interfaceStyle-colorScheme.Inverse_colorContentOnBgStatusAccentedEmphasized_Dark.png and /dev/null differ diff --git a/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testContentOnBgColors-using-theme-interfaceStyle-colorScheme.Inverse_colorContentOnBgStatusAccentedEmphasized_Light.png b/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testContentOnBgColors-using-theme-interfaceStyle-colorScheme.Inverse_colorContentOnBgStatusAccentedEmphasized_Light.png deleted file mode 100644 index 47081aa1c..000000000 Binary files a/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testContentOnBgColors-using-theme-interfaceStyle-colorScheme.Inverse_colorContentOnBgStatusAccentedEmphasized_Light.png and /dev/null differ diff --git a/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testContentOnBgColors-using-theme-interfaceStyle-colorScheme.Inverse_colorContentOnBgStatusInfoEmphasized_Dark.png b/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testContentOnBgColors-using-theme-interfaceStyle-colorScheme.Inverse_colorContentOnBgStatusInfoEmphasized_Dark.png deleted file mode 100644 index 736f77e54..000000000 Binary files a/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testContentOnBgColors-using-theme-interfaceStyle-colorScheme.Inverse_colorContentOnBgStatusInfoEmphasized_Dark.png and /dev/null differ diff --git a/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testContentOnBgColors-using-theme-interfaceStyle-colorScheme.Inverse_colorContentOnBgStatusInfoEmphasized_Light.png b/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testContentOnBgColors-using-theme-interfaceStyle-colorScheme.Inverse_colorContentOnBgStatusInfoEmphasized_Light.png deleted file mode 100644 index 6ce1eaaeb..000000000 Binary files a/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testContentOnBgColors-using-theme-interfaceStyle-colorScheme.Inverse_colorContentOnBgStatusInfoEmphasized_Light.png and /dev/null differ diff --git a/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testContentOnBgColors-using-theme-interfaceStyle-colorScheme.Inverse_colorContentOnBgStatusInfoMutedOnBgEmphasized_Dark.png b/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testContentOnBgColors-using-theme-interfaceStyle-colorScheme.Inverse_colorContentOnBgStatusInfoMutedOnBgEmphasized_Dark.png deleted file mode 100644 index 7113a96f9..000000000 Binary files a/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testContentOnBgColors-using-theme-interfaceStyle-colorScheme.Inverse_colorContentOnBgStatusInfoMutedOnBgEmphasized_Dark.png and /dev/null differ diff --git a/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testContentOnBgColors-using-theme-interfaceStyle-colorScheme.Inverse_colorContentOnBgStatusInfoMutedOnBgEmphasized_Light.png b/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testContentOnBgColors-using-theme-interfaceStyle-colorScheme.Inverse_colorContentOnBgStatusInfoMutedOnBgEmphasized_Light.png deleted file mode 100644 index 9edf84fa2..000000000 Binary files a/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testContentOnBgColors-using-theme-interfaceStyle-colorScheme.Inverse_colorContentOnBgStatusInfoMutedOnBgEmphasized_Light.png and /dev/null differ diff --git a/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testContentOnBgColors-using-theme-interfaceStyle-colorScheme.Inverse_colorContentOnBgStatusInfoMuted_Dark.png b/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testContentOnBgColors-using-theme-interfaceStyle-colorScheme.Inverse_colorContentOnBgStatusInfoMuted_Dark.png deleted file mode 100644 index 9c5e9c6f0..000000000 Binary files a/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testContentOnBgColors-using-theme-interfaceStyle-colorScheme.Inverse_colorContentOnBgStatusInfoMuted_Dark.png and /dev/null differ diff --git a/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testContentOnBgColors-using-theme-interfaceStyle-colorScheme.Inverse_colorContentOnBgStatusInfoMuted_Light.png b/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testContentOnBgColors-using-theme-interfaceStyle-colorScheme.Inverse_colorContentOnBgStatusInfoMuted_Light.png deleted file mode 100644 index bb4d86d29..000000000 Binary files a/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testContentOnBgColors-using-theme-interfaceStyle-colorScheme.Inverse_colorContentOnBgStatusInfoMuted_Light.png and /dev/null differ diff --git a/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testContentOnBgColors-using-theme-interfaceStyle-colorScheme.Inverse_colorContentOnBgStatusNegativeEmphasized_Dark.png b/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testContentOnBgColors-using-theme-interfaceStyle-colorScheme.Inverse_colorContentOnBgStatusNegativeEmphasized_Dark.png deleted file mode 100644 index d0d6720dc..000000000 Binary files a/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testContentOnBgColors-using-theme-interfaceStyle-colorScheme.Inverse_colorContentOnBgStatusNegativeEmphasized_Dark.png and /dev/null differ diff --git a/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testContentOnBgColors-using-theme-interfaceStyle-colorScheme.Inverse_colorContentOnBgStatusNegativeEmphasized_Light.png b/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testContentOnBgColors-using-theme-interfaceStyle-colorScheme.Inverse_colorContentOnBgStatusNegativeEmphasized_Light.png deleted file mode 100644 index dbd89a79b..000000000 Binary files a/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testContentOnBgColors-using-theme-interfaceStyle-colorScheme.Inverse_colorContentOnBgStatusNegativeEmphasized_Light.png and /dev/null differ diff --git a/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testContentOnBgColors-using-theme-interfaceStyle-colorScheme.Inverse_colorContentOnBgStatusNegativeMutedOnBgEmphasized_Dark.png b/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testContentOnBgColors-using-theme-interfaceStyle-colorScheme.Inverse_colorContentOnBgStatusNegativeMutedOnBgEmphasized_Dark.png deleted file mode 100644 index 5ded4f526..000000000 Binary files a/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testContentOnBgColors-using-theme-interfaceStyle-colorScheme.Inverse_colorContentOnBgStatusNegativeMutedOnBgEmphasized_Dark.png and /dev/null differ diff --git a/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testContentOnBgColors-using-theme-interfaceStyle-colorScheme.Inverse_colorContentOnBgStatusNegativeMutedOnBgEmphasized_Light.png b/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testContentOnBgColors-using-theme-interfaceStyle-colorScheme.Inverse_colorContentOnBgStatusNegativeMutedOnBgEmphasized_Light.png deleted file mode 100644 index ed71bd061..000000000 Binary files a/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testContentOnBgColors-using-theme-interfaceStyle-colorScheme.Inverse_colorContentOnBgStatusNegativeMutedOnBgEmphasized_Light.png and /dev/null differ diff --git a/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testContentOnBgColors-using-theme-interfaceStyle-colorScheme.Inverse_colorContentOnBgStatusNegativeMuted_Dark.png b/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testContentOnBgColors-using-theme-interfaceStyle-colorScheme.Inverse_colorContentOnBgStatusNegativeMuted_Dark.png deleted file mode 100644 index 05a95b434..000000000 Binary files a/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testContentOnBgColors-using-theme-interfaceStyle-colorScheme.Inverse_colorContentOnBgStatusNegativeMuted_Dark.png and /dev/null differ diff --git a/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testContentOnBgColors-using-theme-interfaceStyle-colorScheme.Inverse_colorContentOnBgStatusNegativeMuted_Light.png b/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testContentOnBgColors-using-theme-interfaceStyle-colorScheme.Inverse_colorContentOnBgStatusNegativeMuted_Light.png deleted file mode 100644 index 582bd1f06..000000000 Binary files a/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testContentOnBgColors-using-theme-interfaceStyle-colorScheme.Inverse_colorContentOnBgStatusNegativeMuted_Light.png and /dev/null differ diff --git a/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testContentOnBgColors-using-theme-interfaceStyle-colorScheme.Inverse_colorContentOnBgStatusPositiveEmphasized_Dark.png b/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testContentOnBgColors-using-theme-interfaceStyle-colorScheme.Inverse_colorContentOnBgStatusPositiveEmphasized_Dark.png deleted file mode 100644 index 41c955524..000000000 Binary files a/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testContentOnBgColors-using-theme-interfaceStyle-colorScheme.Inverse_colorContentOnBgStatusPositiveEmphasized_Dark.png and /dev/null differ diff --git a/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testContentOnBgColors-using-theme-interfaceStyle-colorScheme.Inverse_colorContentOnBgStatusPositiveEmphasized_Light.png b/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testContentOnBgColors-using-theme-interfaceStyle-colorScheme.Inverse_colorContentOnBgStatusPositiveEmphasized_Light.png deleted file mode 100644 index 22d1807a2..000000000 Binary files a/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testContentOnBgColors-using-theme-interfaceStyle-colorScheme.Inverse_colorContentOnBgStatusPositiveEmphasized_Light.png and /dev/null differ diff --git a/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testContentOnBgColors-using-theme-interfaceStyle-colorScheme.Inverse_colorContentOnBgStatusPositiveMutedOnBgEmphasized_Dark.png b/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testContentOnBgColors-using-theme-interfaceStyle-colorScheme.Inverse_colorContentOnBgStatusPositiveMutedOnBgEmphasized_Dark.png deleted file mode 100644 index c5932db44..000000000 Binary files a/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testContentOnBgColors-using-theme-interfaceStyle-colorScheme.Inverse_colorContentOnBgStatusPositiveMutedOnBgEmphasized_Dark.png and /dev/null differ diff --git a/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testContentOnBgColors-using-theme-interfaceStyle-colorScheme.Inverse_colorContentOnBgStatusPositiveMutedOnBgEmphasized_Light.png b/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testContentOnBgColors-using-theme-interfaceStyle-colorScheme.Inverse_colorContentOnBgStatusPositiveMutedOnBgEmphasized_Light.png deleted file mode 100644 index f88e87c07..000000000 Binary files a/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testContentOnBgColors-using-theme-interfaceStyle-colorScheme.Inverse_colorContentOnBgStatusPositiveMutedOnBgEmphasized_Light.png and /dev/null differ diff --git a/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testContentOnBgColors-using-theme-interfaceStyle-colorScheme.Inverse_colorContentOnBgStatusPositiveMuted_Dark.png b/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testContentOnBgColors-using-theme-interfaceStyle-colorScheme.Inverse_colorContentOnBgStatusPositiveMuted_Dark.png deleted file mode 100644 index 259d0d0d4..000000000 Binary files a/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testContentOnBgColors-using-theme-interfaceStyle-colorScheme.Inverse_colorContentOnBgStatusPositiveMuted_Dark.png and /dev/null differ diff --git a/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testContentOnBgColors-using-theme-interfaceStyle-colorScheme.Inverse_colorContentOnBgStatusPositiveMuted_Light.png b/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testContentOnBgColors-using-theme-interfaceStyle-colorScheme.Inverse_colorContentOnBgStatusPositiveMuted_Light.png deleted file mode 100644 index 7cec9f986..000000000 Binary files a/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testContentOnBgColors-using-theme-interfaceStyle-colorScheme.Inverse_colorContentOnBgStatusPositiveMuted_Light.png and /dev/null differ diff --git a/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testContentOnBgColors-using-theme-interfaceStyle-colorScheme.Inverse_colorContentOnBgStatusWarningEmphasized_Dark.png b/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testContentOnBgColors-using-theme-interfaceStyle-colorScheme.Inverse_colorContentOnBgStatusWarningEmphasized_Dark.png deleted file mode 100644 index c3e5f97c3..000000000 Binary files a/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testContentOnBgColors-using-theme-interfaceStyle-colorScheme.Inverse_colorContentOnBgStatusWarningEmphasized_Dark.png and /dev/null differ diff --git a/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testContentOnBgColors-using-theme-interfaceStyle-colorScheme.Inverse_colorContentOnBgStatusWarningEmphasized_Light.png b/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testContentOnBgColors-using-theme-interfaceStyle-colorScheme.Inverse_colorContentOnBgStatusWarningEmphasized_Light.png deleted file mode 100644 index bab083aa2..000000000 Binary files a/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testContentOnBgColors-using-theme-interfaceStyle-colorScheme.Inverse_colorContentOnBgStatusWarningEmphasized_Light.png and /dev/null differ diff --git a/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testContentOnBgColors-using-theme-interfaceStyle-colorScheme.Inverse_colorContentOnBgStatusWarningMutedOnBgEmphasized_Dark.png b/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testContentOnBgColors-using-theme-interfaceStyle-colorScheme.Inverse_colorContentOnBgStatusWarningMutedOnBgEmphasized_Dark.png deleted file mode 100644 index fb708301b..000000000 Binary files a/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testContentOnBgColors-using-theme-interfaceStyle-colorScheme.Inverse_colorContentOnBgStatusWarningMutedOnBgEmphasized_Dark.png and /dev/null differ diff --git a/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testContentOnBgColors-using-theme-interfaceStyle-colorScheme.Inverse_colorContentOnBgStatusWarningMutedOnBgEmphasized_Light.png b/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testContentOnBgColors-using-theme-interfaceStyle-colorScheme.Inverse_colorContentOnBgStatusWarningMutedOnBgEmphasized_Light.png deleted file mode 100644 index 28995450b..000000000 Binary files a/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testContentOnBgColors-using-theme-interfaceStyle-colorScheme.Inverse_colorContentOnBgStatusWarningMutedOnBgEmphasized_Light.png and /dev/null differ diff --git a/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testContentOnBgColors-using-theme-interfaceStyle-colorScheme.Inverse_colorContentOnBgStatusWarningMuted_Dark.png b/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testContentOnBgColors-using-theme-interfaceStyle-colorScheme.Inverse_colorContentOnBgStatusWarningMuted_Dark.png deleted file mode 100644 index ca9bf24a9..000000000 Binary files a/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testContentOnBgColors-using-theme-interfaceStyle-colorScheme.Inverse_colorContentOnBgStatusWarningMuted_Dark.png and /dev/null differ diff --git a/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testContentOnBgColors-using-theme-interfaceStyle-colorScheme.Inverse_colorContentOnBgStatusWarningMuted_Light.png b/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testContentOnBgColors-using-theme-interfaceStyle-colorScheme.Inverse_colorContentOnBgStatusWarningMuted_Light.png deleted file mode 100644 index fb4c23640..000000000 Binary files a/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testContentOnBgColors-using-theme-interfaceStyle-colorScheme.Inverse_colorContentOnBgStatusWarningMuted_Light.png and /dev/null differ diff --git a/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testContentOnBgColors-using-theme-interfaceStyle-colorScheme.Orange_colorContentOnBgPrimary_Dark.png b/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testContentOnBgColors-using-theme-interfaceStyle-colorScheme.Orange_colorContentOnBgPrimary_Dark.png deleted file mode 100644 index f80d05b4f..000000000 Binary files a/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testContentOnBgColors-using-theme-interfaceStyle-colorScheme.Orange_colorContentOnBgPrimary_Dark.png and /dev/null differ diff --git a/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testContentOnBgColors-using-theme-interfaceStyle-colorScheme.Orange_colorContentOnBgPrimary_Light.png b/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testContentOnBgColors-using-theme-interfaceStyle-colorScheme.Orange_colorContentOnBgPrimary_Light.png deleted file mode 100644 index d5806e496..000000000 Binary files a/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testContentOnBgColors-using-theme-interfaceStyle-colorScheme.Orange_colorContentOnBgPrimary_Light.png and /dev/null differ diff --git a/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testContentOnBgColors-using-theme-interfaceStyle-colorScheme.Orange_colorContentOnBgStatusAccentMutedOnBgEmphasized_Dark.png b/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testContentOnBgColors-using-theme-interfaceStyle-colorScheme.Orange_colorContentOnBgStatusAccentMutedOnBgEmphasized_Dark.png deleted file mode 100644 index 0d60274ca..000000000 Binary files a/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testContentOnBgColors-using-theme-interfaceStyle-colorScheme.Orange_colorContentOnBgStatusAccentMutedOnBgEmphasized_Dark.png and /dev/null differ diff --git a/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testContentOnBgColors-using-theme-interfaceStyle-colorScheme.Orange_colorContentOnBgStatusAccentMutedOnBgEmphasized_Light.png b/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testContentOnBgColors-using-theme-interfaceStyle-colorScheme.Orange_colorContentOnBgStatusAccentMutedOnBgEmphasized_Light.png deleted file mode 100644 index 2b8f9c82c..000000000 Binary files a/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testContentOnBgColors-using-theme-interfaceStyle-colorScheme.Orange_colorContentOnBgStatusAccentMutedOnBgEmphasized_Light.png and /dev/null differ diff --git a/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testContentOnBgColors-using-theme-interfaceStyle-colorScheme.Orange_colorContentOnBgStatusAccentMuted_Dark.png b/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testContentOnBgColors-using-theme-interfaceStyle-colorScheme.Orange_colorContentOnBgStatusAccentMuted_Dark.png deleted file mode 100644 index 36670390e..000000000 Binary files a/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testContentOnBgColors-using-theme-interfaceStyle-colorScheme.Orange_colorContentOnBgStatusAccentMuted_Dark.png and /dev/null differ diff --git a/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testContentOnBgColors-using-theme-interfaceStyle-colorScheme.Orange_colorContentOnBgStatusAccentMuted_Light.png b/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testContentOnBgColors-using-theme-interfaceStyle-colorScheme.Orange_colorContentOnBgStatusAccentMuted_Light.png deleted file mode 100644 index 4719d7943..000000000 Binary files a/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testContentOnBgColors-using-theme-interfaceStyle-colorScheme.Orange_colorContentOnBgStatusAccentMuted_Light.png and /dev/null differ diff --git a/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testContentOnBgColors-using-theme-interfaceStyle-colorScheme.Orange_colorContentOnBgStatusAccentedEmphasized_Dark.png b/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testContentOnBgColors-using-theme-interfaceStyle-colorScheme.Orange_colorContentOnBgStatusAccentedEmphasized_Dark.png deleted file mode 100644 index 963862ae4..000000000 Binary files a/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testContentOnBgColors-using-theme-interfaceStyle-colorScheme.Orange_colorContentOnBgStatusAccentedEmphasized_Dark.png and /dev/null differ diff --git a/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testContentOnBgColors-using-theme-interfaceStyle-colorScheme.Orange_colorContentOnBgStatusAccentedEmphasized_Light.png b/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testContentOnBgColors-using-theme-interfaceStyle-colorScheme.Orange_colorContentOnBgStatusAccentedEmphasized_Light.png deleted file mode 100644 index f952cfc97..000000000 Binary files a/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testContentOnBgColors-using-theme-interfaceStyle-colorScheme.Orange_colorContentOnBgStatusAccentedEmphasized_Light.png and /dev/null differ diff --git a/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testContentOnBgColors-using-theme-interfaceStyle-colorScheme.Orange_colorContentOnBgStatusInfoEmphasized_Dark.png b/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testContentOnBgColors-using-theme-interfaceStyle-colorScheme.Orange_colorContentOnBgStatusInfoEmphasized_Dark.png deleted file mode 100644 index 736f77e54..000000000 Binary files a/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testContentOnBgColors-using-theme-interfaceStyle-colorScheme.Orange_colorContentOnBgStatusInfoEmphasized_Dark.png and /dev/null differ diff --git a/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testContentOnBgColors-using-theme-interfaceStyle-colorScheme.Orange_colorContentOnBgStatusInfoEmphasized_Light.png b/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testContentOnBgColors-using-theme-interfaceStyle-colorScheme.Orange_colorContentOnBgStatusInfoEmphasized_Light.png deleted file mode 100644 index 9de72a555..000000000 Binary files a/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testContentOnBgColors-using-theme-interfaceStyle-colorScheme.Orange_colorContentOnBgStatusInfoEmphasized_Light.png and /dev/null differ diff --git a/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testContentOnBgColors-using-theme-interfaceStyle-colorScheme.Orange_colorContentOnBgStatusInfoMutedOnBgEmphasized_Dark.png b/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testContentOnBgColors-using-theme-interfaceStyle-colorScheme.Orange_colorContentOnBgStatusInfoMutedOnBgEmphasized_Dark.png deleted file mode 100644 index 7113a96f9..000000000 Binary files a/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testContentOnBgColors-using-theme-interfaceStyle-colorScheme.Orange_colorContentOnBgStatusInfoMutedOnBgEmphasized_Dark.png and /dev/null differ diff --git a/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testContentOnBgColors-using-theme-interfaceStyle-colorScheme.Orange_colorContentOnBgStatusInfoMutedOnBgEmphasized_Light.png b/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testContentOnBgColors-using-theme-interfaceStyle-colorScheme.Orange_colorContentOnBgStatusInfoMutedOnBgEmphasized_Light.png deleted file mode 100644 index d8414a819..000000000 Binary files a/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testContentOnBgColors-using-theme-interfaceStyle-colorScheme.Orange_colorContentOnBgStatusInfoMutedOnBgEmphasized_Light.png and /dev/null differ diff --git a/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testContentOnBgColors-using-theme-interfaceStyle-colorScheme.Orange_colorContentOnBgStatusInfoMuted_Dark.png b/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testContentOnBgColors-using-theme-interfaceStyle-colorScheme.Orange_colorContentOnBgStatusInfoMuted_Dark.png deleted file mode 100644 index 9c5e9c6f0..000000000 Binary files a/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testContentOnBgColors-using-theme-interfaceStyle-colorScheme.Orange_colorContentOnBgStatusInfoMuted_Dark.png and /dev/null differ diff --git a/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testContentOnBgColors-using-theme-interfaceStyle-colorScheme.Orange_colorContentOnBgStatusInfoMuted_Light.png b/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testContentOnBgColors-using-theme-interfaceStyle-colorScheme.Orange_colorContentOnBgStatusInfoMuted_Light.png deleted file mode 100644 index bbc46dc73..000000000 Binary files a/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testContentOnBgColors-using-theme-interfaceStyle-colorScheme.Orange_colorContentOnBgStatusInfoMuted_Light.png and /dev/null differ diff --git a/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testContentOnBgColors-using-theme-interfaceStyle-colorScheme.Orange_colorContentOnBgStatusNegativeEmphasized_Dark.png b/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testContentOnBgColors-using-theme-interfaceStyle-colorScheme.Orange_colorContentOnBgStatusNegativeEmphasized_Dark.png deleted file mode 100644 index d0d6720dc..000000000 Binary files a/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testContentOnBgColors-using-theme-interfaceStyle-colorScheme.Orange_colorContentOnBgStatusNegativeEmphasized_Dark.png and /dev/null differ diff --git a/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testContentOnBgColors-using-theme-interfaceStyle-colorScheme.Orange_colorContentOnBgStatusNegativeEmphasized_Light.png b/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testContentOnBgColors-using-theme-interfaceStyle-colorScheme.Orange_colorContentOnBgStatusNegativeEmphasized_Light.png deleted file mode 100644 index c060e009e..000000000 Binary files a/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testContentOnBgColors-using-theme-interfaceStyle-colorScheme.Orange_colorContentOnBgStatusNegativeEmphasized_Light.png and /dev/null differ diff --git a/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testContentOnBgColors-using-theme-interfaceStyle-colorScheme.Orange_colorContentOnBgStatusNegativeMutedOnBgEmphasized_Dark.png b/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testContentOnBgColors-using-theme-interfaceStyle-colorScheme.Orange_colorContentOnBgStatusNegativeMutedOnBgEmphasized_Dark.png deleted file mode 100644 index 745c5fcd5..000000000 Binary files a/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testContentOnBgColors-using-theme-interfaceStyle-colorScheme.Orange_colorContentOnBgStatusNegativeMutedOnBgEmphasized_Dark.png and /dev/null differ diff --git a/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testContentOnBgColors-using-theme-interfaceStyle-colorScheme.Orange_colorContentOnBgStatusNegativeMutedOnBgEmphasized_Light.png b/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testContentOnBgColors-using-theme-interfaceStyle-colorScheme.Orange_colorContentOnBgStatusNegativeMutedOnBgEmphasized_Light.png deleted file mode 100644 index 712da3aea..000000000 Binary files a/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testContentOnBgColors-using-theme-interfaceStyle-colorScheme.Orange_colorContentOnBgStatusNegativeMutedOnBgEmphasized_Light.png and /dev/null differ diff --git a/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testContentOnBgColors-using-theme-interfaceStyle-colorScheme.Orange_colorContentOnBgStatusNegativeMuted_Dark.png b/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testContentOnBgColors-using-theme-interfaceStyle-colorScheme.Orange_colorContentOnBgStatusNegativeMuted_Dark.png deleted file mode 100644 index 05a95b434..000000000 Binary files a/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testContentOnBgColors-using-theme-interfaceStyle-colorScheme.Orange_colorContentOnBgStatusNegativeMuted_Dark.png and /dev/null differ diff --git a/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testContentOnBgColors-using-theme-interfaceStyle-colorScheme.Orange_colorContentOnBgStatusNegativeMuted_Light.png b/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testContentOnBgColors-using-theme-interfaceStyle-colorScheme.Orange_colorContentOnBgStatusNegativeMuted_Light.png deleted file mode 100644 index e78c4292f..000000000 Binary files a/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testContentOnBgColors-using-theme-interfaceStyle-colorScheme.Orange_colorContentOnBgStatusNegativeMuted_Light.png and /dev/null differ diff --git a/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testContentOnBgColors-using-theme-interfaceStyle-colorScheme.Orange_colorContentOnBgStatusPositiveEmphasized_Dark.png b/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testContentOnBgColors-using-theme-interfaceStyle-colorScheme.Orange_colorContentOnBgStatusPositiveEmphasized_Dark.png deleted file mode 100644 index 41c955524..000000000 Binary files a/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testContentOnBgColors-using-theme-interfaceStyle-colorScheme.Orange_colorContentOnBgStatusPositiveEmphasized_Dark.png and /dev/null differ diff --git a/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testContentOnBgColors-using-theme-interfaceStyle-colorScheme.Orange_colorContentOnBgStatusPositiveEmphasized_Light.png b/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testContentOnBgColors-using-theme-interfaceStyle-colorScheme.Orange_colorContentOnBgStatusPositiveEmphasized_Light.png deleted file mode 100644 index aa08d28a0..000000000 Binary files a/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testContentOnBgColors-using-theme-interfaceStyle-colorScheme.Orange_colorContentOnBgStatusPositiveEmphasized_Light.png and /dev/null differ diff --git a/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testContentOnBgColors-using-theme-interfaceStyle-colorScheme.Orange_colorContentOnBgStatusPositiveMutedOnBgEmphasized_Dark.png b/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testContentOnBgColors-using-theme-interfaceStyle-colorScheme.Orange_colorContentOnBgStatusPositiveMutedOnBgEmphasized_Dark.png deleted file mode 100644 index ad1c4b867..000000000 Binary files a/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testContentOnBgColors-using-theme-interfaceStyle-colorScheme.Orange_colorContentOnBgStatusPositiveMutedOnBgEmphasized_Dark.png and /dev/null differ diff --git a/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testContentOnBgColors-using-theme-interfaceStyle-colorScheme.Orange_colorContentOnBgStatusPositiveMutedOnBgEmphasized_Light.png b/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testContentOnBgColors-using-theme-interfaceStyle-colorScheme.Orange_colorContentOnBgStatusPositiveMutedOnBgEmphasized_Light.png deleted file mode 100644 index 95249c324..000000000 Binary files a/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testContentOnBgColors-using-theme-interfaceStyle-colorScheme.Orange_colorContentOnBgStatusPositiveMutedOnBgEmphasized_Light.png and /dev/null differ diff --git a/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testContentOnBgColors-using-theme-interfaceStyle-colorScheme.Orange_colorContentOnBgStatusPositiveMuted_Dark.png b/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testContentOnBgColors-using-theme-interfaceStyle-colorScheme.Orange_colorContentOnBgStatusPositiveMuted_Dark.png deleted file mode 100644 index 259d0d0d4..000000000 Binary files a/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testContentOnBgColors-using-theme-interfaceStyle-colorScheme.Orange_colorContentOnBgStatusPositiveMuted_Dark.png and /dev/null differ diff --git a/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testContentOnBgColors-using-theme-interfaceStyle-colorScheme.Orange_colorContentOnBgStatusPositiveMuted_Light.png b/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testContentOnBgColors-using-theme-interfaceStyle-colorScheme.Orange_colorContentOnBgStatusPositiveMuted_Light.png deleted file mode 100644 index 8d3a0806f..000000000 Binary files a/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testContentOnBgColors-using-theme-interfaceStyle-colorScheme.Orange_colorContentOnBgStatusPositiveMuted_Light.png and /dev/null differ diff --git a/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testContentOnBgColors-using-theme-interfaceStyle-colorScheme.Orange_colorContentOnBgStatusWarningEmphasized_Dark.png b/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testContentOnBgColors-using-theme-interfaceStyle-colorScheme.Orange_colorContentOnBgStatusWarningEmphasized_Dark.png deleted file mode 100644 index c3e5f97c3..000000000 Binary files a/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testContentOnBgColors-using-theme-interfaceStyle-colorScheme.Orange_colorContentOnBgStatusWarningEmphasized_Dark.png and /dev/null differ diff --git a/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testContentOnBgColors-using-theme-interfaceStyle-colorScheme.Orange_colorContentOnBgStatusWarningEmphasized_Light.png b/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testContentOnBgColors-using-theme-interfaceStyle-colorScheme.Orange_colorContentOnBgStatusWarningEmphasized_Light.png deleted file mode 100644 index 3e7b6431d..000000000 Binary files a/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testContentOnBgColors-using-theme-interfaceStyle-colorScheme.Orange_colorContentOnBgStatusWarningEmphasized_Light.png and /dev/null differ diff --git a/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testContentOnBgColors-using-theme-interfaceStyle-colorScheme.Orange_colorContentOnBgStatusWarningMutedOnBgEmphasized_Dark.png b/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testContentOnBgColors-using-theme-interfaceStyle-colorScheme.Orange_colorContentOnBgStatusWarningMutedOnBgEmphasized_Dark.png deleted file mode 100644 index 8f104dcaa..000000000 Binary files a/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testContentOnBgColors-using-theme-interfaceStyle-colorScheme.Orange_colorContentOnBgStatusWarningMutedOnBgEmphasized_Dark.png and /dev/null differ diff --git a/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testContentOnBgColors-using-theme-interfaceStyle-colorScheme.Orange_colorContentOnBgStatusWarningMutedOnBgEmphasized_Light.png b/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testContentOnBgColors-using-theme-interfaceStyle-colorScheme.Orange_colorContentOnBgStatusWarningMutedOnBgEmphasized_Light.png deleted file mode 100644 index 540f5bb14..000000000 Binary files a/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testContentOnBgColors-using-theme-interfaceStyle-colorScheme.Orange_colorContentOnBgStatusWarningMutedOnBgEmphasized_Light.png and /dev/null differ diff --git a/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testContentOnBgColors-using-theme-interfaceStyle-colorScheme.Orange_colorContentOnBgStatusWarningMuted_Dark.png b/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testContentOnBgColors-using-theme-interfaceStyle-colorScheme.Orange_colorContentOnBgStatusWarningMuted_Dark.png deleted file mode 100644 index ca9bf24a9..000000000 Binary files a/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testContentOnBgColors-using-theme-interfaceStyle-colorScheme.Orange_colorContentOnBgStatusWarningMuted_Dark.png and /dev/null differ diff --git a/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testContentOnBgColors-using-theme-interfaceStyle-colorScheme.Orange_colorContentOnBgStatusWarningMuted_Light.png b/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testContentOnBgColors-using-theme-interfaceStyle-colorScheme.Orange_colorContentOnBgStatusWarningMuted_Light.png deleted file mode 100644 index 58485789a..000000000 Binary files a/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testContentOnBgColors-using-theme-interfaceStyle-colorScheme.Orange_colorContentOnBgStatusWarningMuted_Light.png and /dev/null differ diff --git a/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testDecorativeColors-using-theme-interfaceStyle-colorScheme.Inverse_colorDecorativeBrandPrimary_Dark.png b/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testDecorativeColors-using-theme-interfaceStyle-colorScheme.Inverse_colorDecorativeBrandPrimary_Dark.png new file mode 100644 index 000000000..cc5662b11 Binary files /dev/null and b/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testDecorativeColors-using-theme-interfaceStyle-colorScheme.Inverse_colorDecorativeBrandPrimary_Dark.png differ diff --git a/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testDecorativeColors-using-theme-interfaceStyle-colorScheme.Inverse_colorDecorativeBrandPrimary_Light.png b/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testDecorativeColors-using-theme-interfaceStyle-colorScheme.Inverse_colorDecorativeBrandPrimary_Light.png new file mode 100644 index 000000000..7780026e0 Binary files /dev/null and b/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testDecorativeColors-using-theme-interfaceStyle-colorScheme.Inverse_colorDecorativeBrandPrimary_Light.png differ diff --git a/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testDecorativeColors-using-theme-interfaceStyle-colorScheme.Inverse_colorDecorativeBrandSecondary_Dark.png b/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testDecorativeColors-using-theme-interfaceStyle-colorScheme.Inverse_colorDecorativeBrandSecondary_Dark.png new file mode 100644 index 000000000..eb5946967 Binary files /dev/null and b/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testDecorativeColors-using-theme-interfaceStyle-colorScheme.Inverse_colorDecorativeBrandSecondary_Dark.png differ diff --git a/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testDecorativeColors-using-theme-interfaceStyle-colorScheme.Inverse_colorDecorativeBrandSecondary_Light.png b/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testDecorativeColors-using-theme-interfaceStyle-colorScheme.Inverse_colorDecorativeBrandSecondary_Light.png new file mode 100644 index 000000000..8395da73a Binary files /dev/null and b/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testDecorativeColors-using-theme-interfaceStyle-colorScheme.Inverse_colorDecorativeBrandSecondary_Light.png differ diff --git a/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testDecorativeColors-using-theme-interfaceStyle-colorScheme.Inverse_colorDecorativeBrandTertiary_Dark.png b/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testDecorativeColors-using-theme-interfaceStyle-colorScheme.Inverse_colorDecorativeBrandTertiary_Dark.png new file mode 100644 index 000000000..6db26675e Binary files /dev/null and b/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testDecorativeColors-using-theme-interfaceStyle-colorScheme.Inverse_colorDecorativeBrandTertiary_Dark.png differ diff --git a/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testDecorativeColors-using-theme-interfaceStyle-colorScheme.Inverse_colorDecorativeBrandTertiary_Light.png b/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testDecorativeColors-using-theme-interfaceStyle-colorScheme.Inverse_colorDecorativeBrandTertiary_Light.png new file mode 100644 index 000000000..34d0c427b Binary files /dev/null and b/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testDecorativeColors-using-theme-interfaceStyle-colorScheme.Inverse_colorDecorativeBrandTertiary_Light.png differ diff --git a/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testDecorativeColors-using-theme-interfaceStyle-colorScheme.Inverse_colorDecorativePrimary_Dark.png b/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testDecorativeColors-using-theme-interfaceStyle-colorScheme.Inverse_colorDecorativePrimary_Dark.png deleted file mode 100644 index 4f8637f53..000000000 Binary files a/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testDecorativeColors-using-theme-interfaceStyle-colorScheme.Inverse_colorDecorativePrimary_Dark.png and /dev/null differ diff --git a/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testDecorativeColors-using-theme-interfaceStyle-colorScheme.Inverse_colorDecorativePrimary_Light.png b/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testDecorativeColors-using-theme-interfaceStyle-colorScheme.Inverse_colorDecorativePrimary_Light.png deleted file mode 100644 index 0445b008c..000000000 Binary files a/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testDecorativeColors-using-theme-interfaceStyle-colorScheme.Inverse_colorDecorativePrimary_Light.png and /dev/null differ diff --git a/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testDecorativeColors-using-theme-interfaceStyle-colorScheme.Inverse_colorDecorativeSecondary_Dark.png b/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testDecorativeColors-using-theme-interfaceStyle-colorScheme.Inverse_colorDecorativeSecondary_Dark.png deleted file mode 100644 index 254c3eb7b..000000000 Binary files a/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testDecorativeColors-using-theme-interfaceStyle-colorScheme.Inverse_colorDecorativeSecondary_Dark.png and /dev/null differ diff --git a/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testDecorativeColors-using-theme-interfaceStyle-colorScheme.Inverse_colorDecorativeSecondary_Light.png b/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testDecorativeColors-using-theme-interfaceStyle-colorScheme.Inverse_colorDecorativeSecondary_Light.png deleted file mode 100644 index 79436dcd4..000000000 Binary files a/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testDecorativeColors-using-theme-interfaceStyle-colorScheme.Inverse_colorDecorativeSecondary_Light.png and /dev/null differ diff --git a/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testDecorativeColors-using-theme-interfaceStyle-colorScheme.Inverse_colorDecorativeTertiary_Dark.png b/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testDecorativeColors-using-theme-interfaceStyle-colorScheme.Inverse_colorDecorativeTertiary_Dark.png deleted file mode 100644 index cb6365e40..000000000 Binary files a/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testDecorativeColors-using-theme-interfaceStyle-colorScheme.Inverse_colorDecorativeTertiary_Dark.png and /dev/null differ diff --git a/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testDecorativeColors-using-theme-interfaceStyle-colorScheme.Inverse_colorDecorativeTertiary_Light.png b/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testDecorativeColors-using-theme-interfaceStyle-colorScheme.Inverse_colorDecorativeTertiary_Light.png deleted file mode 100644 index 96965e32e..000000000 Binary files a/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testDecorativeColors-using-theme-interfaceStyle-colorScheme.Inverse_colorDecorativeTertiary_Light.png and /dev/null differ diff --git a/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testDecorativeColors-using-theme-interfaceStyle-colorScheme.Orange_colorDecorativeAccent1Default_Dark.png b/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testDecorativeColors-using-theme-interfaceStyle-colorScheme.Orange_colorDecorativeAccent1Default_Dark.png index 343b39f96..14782f6bd 100644 Binary files a/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testDecorativeColors-using-theme-interfaceStyle-colorScheme.Orange_colorDecorativeAccent1Default_Dark.png and b/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testDecorativeColors-using-theme-interfaceStyle-colorScheme.Orange_colorDecorativeAccent1Default_Dark.png differ diff --git a/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testDecorativeColors-using-theme-interfaceStyle-colorScheme.Orange_colorDecorativeAccent1Emphasized_Dark.png b/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testDecorativeColors-using-theme-interfaceStyle-colorScheme.Orange_colorDecorativeAccent1Emphasized_Dark.png index 9cb8426b8..f5709f037 100644 Binary files a/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testDecorativeColors-using-theme-interfaceStyle-colorScheme.Orange_colorDecorativeAccent1Emphasized_Dark.png and b/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testDecorativeColors-using-theme-interfaceStyle-colorScheme.Orange_colorDecorativeAccent1Emphasized_Dark.png differ diff --git a/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testDecorativeColors-using-theme-interfaceStyle-colorScheme.Orange_colorDecorativeAccent1Muted_Dark.png b/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testDecorativeColors-using-theme-interfaceStyle-colorScheme.Orange_colorDecorativeAccent1Muted_Dark.png index 80bc968c4..85a7e7a79 100644 Binary files a/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testDecorativeColors-using-theme-interfaceStyle-colorScheme.Orange_colorDecorativeAccent1Muted_Dark.png and b/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testDecorativeColors-using-theme-interfaceStyle-colorScheme.Orange_colorDecorativeAccent1Muted_Dark.png differ diff --git a/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testDecorativeColors-using-theme-interfaceStyle-colorScheme.Orange_colorDecorativeAccent2Default_Dark.png b/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testDecorativeColors-using-theme-interfaceStyle-colorScheme.Orange_colorDecorativeAccent2Default_Dark.png index 3a70ae314..5b61df6c4 100644 Binary files a/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testDecorativeColors-using-theme-interfaceStyle-colorScheme.Orange_colorDecorativeAccent2Default_Dark.png and b/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testDecorativeColors-using-theme-interfaceStyle-colorScheme.Orange_colorDecorativeAccent2Default_Dark.png differ diff --git a/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testDecorativeColors-using-theme-interfaceStyle-colorScheme.Orange_colorDecorativeAccent2Emphasized_Dark.png b/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testDecorativeColors-using-theme-interfaceStyle-colorScheme.Orange_colorDecorativeAccent2Emphasized_Dark.png index e8074d4ac..cea12799c 100644 Binary files a/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testDecorativeColors-using-theme-interfaceStyle-colorScheme.Orange_colorDecorativeAccent2Emphasized_Dark.png and b/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testDecorativeColors-using-theme-interfaceStyle-colorScheme.Orange_colorDecorativeAccent2Emphasized_Dark.png differ diff --git a/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testDecorativeColors-using-theme-interfaceStyle-colorScheme.Orange_colorDecorativeAccent2Muted_Dark.png b/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testDecorativeColors-using-theme-interfaceStyle-colorScheme.Orange_colorDecorativeAccent2Muted_Dark.png index eb5a1b948..a451f94b2 100644 Binary files a/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testDecorativeColors-using-theme-interfaceStyle-colorScheme.Orange_colorDecorativeAccent2Muted_Dark.png and b/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testDecorativeColors-using-theme-interfaceStyle-colorScheme.Orange_colorDecorativeAccent2Muted_Dark.png differ diff --git a/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testDecorativeColors-using-theme-interfaceStyle-colorScheme.Orange_colorDecorativeAccent3Default_Dark.png b/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testDecorativeColors-using-theme-interfaceStyle-colorScheme.Orange_colorDecorativeAccent3Default_Dark.png index fdfcc36ea..4de040252 100644 Binary files a/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testDecorativeColors-using-theme-interfaceStyle-colorScheme.Orange_colorDecorativeAccent3Default_Dark.png and b/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testDecorativeColors-using-theme-interfaceStyle-colorScheme.Orange_colorDecorativeAccent3Default_Dark.png differ diff --git a/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testDecorativeColors-using-theme-interfaceStyle-colorScheme.Orange_colorDecorativeAccent3Emphasized_Dark.png b/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testDecorativeColors-using-theme-interfaceStyle-colorScheme.Orange_colorDecorativeAccent3Emphasized_Dark.png index dc5f60fea..18768d988 100644 Binary files a/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testDecorativeColors-using-theme-interfaceStyle-colorScheme.Orange_colorDecorativeAccent3Emphasized_Dark.png and b/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testDecorativeColors-using-theme-interfaceStyle-colorScheme.Orange_colorDecorativeAccent3Emphasized_Dark.png differ diff --git a/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testDecorativeColors-using-theme-interfaceStyle-colorScheme.Orange_colorDecorativeAccent3Muted_Dark.png b/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testDecorativeColors-using-theme-interfaceStyle-colorScheme.Orange_colorDecorativeAccent3Muted_Dark.png index 4ea6efcef..317778940 100644 Binary files a/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testDecorativeColors-using-theme-interfaceStyle-colorScheme.Orange_colorDecorativeAccent3Muted_Dark.png and b/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testDecorativeColors-using-theme-interfaceStyle-colorScheme.Orange_colorDecorativeAccent3Muted_Dark.png differ diff --git a/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testDecorativeColors-using-theme-interfaceStyle-colorScheme.Orange_colorDecorativeAccent4Default_Dark.png b/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testDecorativeColors-using-theme-interfaceStyle-colorScheme.Orange_colorDecorativeAccent4Default_Dark.png index 3ee98fd80..5b7c8f561 100644 Binary files a/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testDecorativeColors-using-theme-interfaceStyle-colorScheme.Orange_colorDecorativeAccent4Default_Dark.png and b/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testDecorativeColors-using-theme-interfaceStyle-colorScheme.Orange_colorDecorativeAccent4Default_Dark.png differ diff --git a/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testDecorativeColors-using-theme-interfaceStyle-colorScheme.Orange_colorDecorativeAccent4Emphasized_Dark.png b/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testDecorativeColors-using-theme-interfaceStyle-colorScheme.Orange_colorDecorativeAccent4Emphasized_Dark.png index 5c9a20750..fe151b6ed 100644 Binary files a/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testDecorativeColors-using-theme-interfaceStyle-colorScheme.Orange_colorDecorativeAccent4Emphasized_Dark.png and b/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testDecorativeColors-using-theme-interfaceStyle-colorScheme.Orange_colorDecorativeAccent4Emphasized_Dark.png differ diff --git a/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testDecorativeColors-using-theme-interfaceStyle-colorScheme.Orange_colorDecorativeAccent4Muted_Dark.png b/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testDecorativeColors-using-theme-interfaceStyle-colorScheme.Orange_colorDecorativeAccent4Muted_Dark.png index 66f403555..f61363d91 100644 Binary files a/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testDecorativeColors-using-theme-interfaceStyle-colorScheme.Orange_colorDecorativeAccent4Muted_Dark.png and b/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testDecorativeColors-using-theme-interfaceStyle-colorScheme.Orange_colorDecorativeAccent4Muted_Dark.png differ diff --git a/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testDecorativeColors-using-theme-interfaceStyle-colorScheme.Orange_colorDecorativeAccent5Default_Dark.png b/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testDecorativeColors-using-theme-interfaceStyle-colorScheme.Orange_colorDecorativeAccent5Default_Dark.png index a95517972..28fe15030 100644 Binary files a/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testDecorativeColors-using-theme-interfaceStyle-colorScheme.Orange_colorDecorativeAccent5Default_Dark.png and b/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testDecorativeColors-using-theme-interfaceStyle-colorScheme.Orange_colorDecorativeAccent5Default_Dark.png differ diff --git a/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testDecorativeColors-using-theme-interfaceStyle-colorScheme.Orange_colorDecorativeAccent5Emphasized_Dark.png b/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testDecorativeColors-using-theme-interfaceStyle-colorScheme.Orange_colorDecorativeAccent5Emphasized_Dark.png index d86857a01..85f58815f 100644 Binary files a/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testDecorativeColors-using-theme-interfaceStyle-colorScheme.Orange_colorDecorativeAccent5Emphasized_Dark.png and b/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testDecorativeColors-using-theme-interfaceStyle-colorScheme.Orange_colorDecorativeAccent5Emphasized_Dark.png differ diff --git a/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testDecorativeColors-using-theme-interfaceStyle-colorScheme.Orange_colorDecorativeAccent5Muted_Dark.png b/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testDecorativeColors-using-theme-interfaceStyle-colorScheme.Orange_colorDecorativeAccent5Muted_Dark.png index 1a1e5f206..50087e04f 100644 Binary files a/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testDecorativeColors-using-theme-interfaceStyle-colorScheme.Orange_colorDecorativeAccent5Muted_Dark.png and b/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testDecorativeColors-using-theme-interfaceStyle-colorScheme.Orange_colorDecorativeAccent5Muted_Dark.png differ diff --git a/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testDecorativeColors-using-theme-interfaceStyle-colorScheme.Orange_colorDecorativeBrandPrimary_Dark.png b/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testDecorativeColors-using-theme-interfaceStyle-colorScheme.Orange_colorDecorativeBrandPrimary_Dark.png new file mode 100644 index 000000000..08fbddd6f Binary files /dev/null and b/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testDecorativeColors-using-theme-interfaceStyle-colorScheme.Orange_colorDecorativeBrandPrimary_Dark.png differ diff --git a/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testDecorativeColors-using-theme-interfaceStyle-colorScheme.Orange_colorDecorativeBrandPrimary_Light.png b/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testDecorativeColors-using-theme-interfaceStyle-colorScheme.Orange_colorDecorativeBrandPrimary_Light.png new file mode 100644 index 000000000..a9f8b4f8e Binary files /dev/null and b/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testDecorativeColors-using-theme-interfaceStyle-colorScheme.Orange_colorDecorativeBrandPrimary_Light.png differ diff --git a/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testDecorativeColors-using-theme-interfaceStyle-colorScheme.Orange_colorDecorativeBrandSecondary_Dark.png b/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testDecorativeColors-using-theme-interfaceStyle-colorScheme.Orange_colorDecorativeBrandSecondary_Dark.png new file mode 100644 index 000000000..b655c4c28 Binary files /dev/null and b/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testDecorativeColors-using-theme-interfaceStyle-colorScheme.Orange_colorDecorativeBrandSecondary_Dark.png differ diff --git a/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testDecorativeColors-using-theme-interfaceStyle-colorScheme.Orange_colorDecorativeBrandSecondary_Light.png b/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testDecorativeColors-using-theme-interfaceStyle-colorScheme.Orange_colorDecorativeBrandSecondary_Light.png new file mode 100644 index 000000000..9a5d8ae20 Binary files /dev/null and b/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testDecorativeColors-using-theme-interfaceStyle-colorScheme.Orange_colorDecorativeBrandSecondary_Light.png differ diff --git a/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testDecorativeColors-using-theme-interfaceStyle-colorScheme.Orange_colorDecorativeBrandTertiary_Dark.png b/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testDecorativeColors-using-theme-interfaceStyle-colorScheme.Orange_colorDecorativeBrandTertiary_Dark.png new file mode 100644 index 000000000..40730b3c1 Binary files /dev/null and b/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testDecorativeColors-using-theme-interfaceStyle-colorScheme.Orange_colorDecorativeBrandTertiary_Dark.png differ diff --git a/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testDecorativeColors-using-theme-interfaceStyle-colorScheme.Orange_colorDecorativeBrandTertiary_Light.png b/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testDecorativeColors-using-theme-interfaceStyle-colorScheme.Orange_colorDecorativeBrandTertiary_Light.png new file mode 100644 index 000000000..43c7aeb07 Binary files /dev/null and b/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testDecorativeColors-using-theme-interfaceStyle-colorScheme.Orange_colorDecorativeBrandTertiary_Light.png differ diff --git a/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testDecorativeColors-using-theme-interfaceStyle-colorScheme.Orange_colorDecorativeNeutralDefault_Dark.png b/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testDecorativeColors-using-theme-interfaceStyle-colorScheme.Orange_colorDecorativeNeutralDefault_Dark.png index a9c73ed85..ab6941083 100644 Binary files a/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testDecorativeColors-using-theme-interfaceStyle-colorScheme.Orange_colorDecorativeNeutralDefault_Dark.png and b/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testDecorativeColors-using-theme-interfaceStyle-colorScheme.Orange_colorDecorativeNeutralDefault_Dark.png differ diff --git a/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testDecorativeColors-using-theme-interfaceStyle-colorScheme.Orange_colorDecorativeNeutralDefault_Light.png b/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testDecorativeColors-using-theme-interfaceStyle-colorScheme.Orange_colorDecorativeNeutralDefault_Light.png index 0d9293690..dd1765878 100644 Binary files a/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testDecorativeColors-using-theme-interfaceStyle-colorScheme.Orange_colorDecorativeNeutralDefault_Light.png and b/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testDecorativeColors-using-theme-interfaceStyle-colorScheme.Orange_colorDecorativeNeutralDefault_Light.png differ diff --git a/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testDecorativeColors-using-theme-interfaceStyle-colorScheme.Orange_colorDecorativeNeutralEmphasized_Dark.png b/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testDecorativeColors-using-theme-interfaceStyle-colorScheme.Orange_colorDecorativeNeutralEmphasized_Dark.png index f7fe1d813..c668934c0 100644 Binary files a/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testDecorativeColors-using-theme-interfaceStyle-colorScheme.Orange_colorDecorativeNeutralEmphasized_Dark.png and b/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testDecorativeColors-using-theme-interfaceStyle-colorScheme.Orange_colorDecorativeNeutralEmphasized_Dark.png differ diff --git a/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testDecorativeColors-using-theme-interfaceStyle-colorScheme.Orange_colorDecorativeNeutralMuted_Dark.png b/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testDecorativeColors-using-theme-interfaceStyle-colorScheme.Orange_colorDecorativeNeutralMuted_Dark.png index 17ac18ee0..d53293300 100644 Binary files a/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testDecorativeColors-using-theme-interfaceStyle-colorScheme.Orange_colorDecorativeNeutralMuted_Dark.png and b/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testDecorativeColors-using-theme-interfaceStyle-colorScheme.Orange_colorDecorativeNeutralMuted_Dark.png differ diff --git a/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testDecorativeColors-using-theme-interfaceStyle-colorScheme.Orange_colorDecorativePrimary_Dark.png b/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testDecorativeColors-using-theme-interfaceStyle-colorScheme.Orange_colorDecorativePrimary_Dark.png deleted file mode 100644 index 4f8637f53..000000000 Binary files a/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testDecorativeColors-using-theme-interfaceStyle-colorScheme.Orange_colorDecorativePrimary_Dark.png and /dev/null differ diff --git a/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testDecorativeColors-using-theme-interfaceStyle-colorScheme.Orange_colorDecorativePrimary_Light.png b/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testDecorativeColors-using-theme-interfaceStyle-colorScheme.Orange_colorDecorativePrimary_Light.png deleted file mode 100644 index 02aa2840c..000000000 Binary files a/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testDecorativeColors-using-theme-interfaceStyle-colorScheme.Orange_colorDecorativePrimary_Light.png and /dev/null differ diff --git a/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testDecorativeColors-using-theme-interfaceStyle-colorScheme.Orange_colorDecorativeSecondary_Dark.png b/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testDecorativeColors-using-theme-interfaceStyle-colorScheme.Orange_colorDecorativeSecondary_Dark.png deleted file mode 100644 index 988f527f5..000000000 Binary files a/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testDecorativeColors-using-theme-interfaceStyle-colorScheme.Orange_colorDecorativeSecondary_Dark.png and /dev/null differ diff --git a/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testDecorativeColors-using-theme-interfaceStyle-colorScheme.Orange_colorDecorativeSecondary_Light.png b/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testDecorativeColors-using-theme-interfaceStyle-colorScheme.Orange_colorDecorativeSecondary_Light.png deleted file mode 100644 index cfe2d5fc6..000000000 Binary files a/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testDecorativeColors-using-theme-interfaceStyle-colorScheme.Orange_colorDecorativeSecondary_Light.png and /dev/null differ diff --git a/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testDecorativeColors-using-theme-interfaceStyle-colorScheme.Orange_colorDecorativeSkinTint100_Dark.png b/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testDecorativeColors-using-theme-interfaceStyle-colorScheme.Orange_colorDecorativeSkinTint100_Dark.png index c8484e110..bd475da65 100644 Binary files a/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testDecorativeColors-using-theme-interfaceStyle-colorScheme.Orange_colorDecorativeSkinTint100_Dark.png and b/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testDecorativeColors-using-theme-interfaceStyle-colorScheme.Orange_colorDecorativeSkinTint100_Dark.png differ diff --git a/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testDecorativeColors-using-theme-interfaceStyle-colorScheme.Orange_colorDecorativeSkinTint200_Dark.png b/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testDecorativeColors-using-theme-interfaceStyle-colorScheme.Orange_colorDecorativeSkinTint200_Dark.png index 649f52f16..c96948b1e 100644 Binary files a/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testDecorativeColors-using-theme-interfaceStyle-colorScheme.Orange_colorDecorativeSkinTint200_Dark.png and b/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testDecorativeColors-using-theme-interfaceStyle-colorScheme.Orange_colorDecorativeSkinTint200_Dark.png differ diff --git a/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testDecorativeColors-using-theme-interfaceStyle-colorScheme.Orange_colorDecorativeSkinTint300_Dark.png b/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testDecorativeColors-using-theme-interfaceStyle-colorScheme.Orange_colorDecorativeSkinTint300_Dark.png index f294967bc..b289ae187 100644 Binary files a/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testDecorativeColors-using-theme-interfaceStyle-colorScheme.Orange_colorDecorativeSkinTint300_Dark.png and b/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testDecorativeColors-using-theme-interfaceStyle-colorScheme.Orange_colorDecorativeSkinTint300_Dark.png differ diff --git a/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testDecorativeColors-using-theme-interfaceStyle-colorScheme.Orange_colorDecorativeSkinTint400_Dark.png b/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testDecorativeColors-using-theme-interfaceStyle-colorScheme.Orange_colorDecorativeSkinTint400_Dark.png index d00bc6a28..51992cc6c 100644 Binary files a/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testDecorativeColors-using-theme-interfaceStyle-colorScheme.Orange_colorDecorativeSkinTint400_Dark.png and b/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testDecorativeColors-using-theme-interfaceStyle-colorScheme.Orange_colorDecorativeSkinTint400_Dark.png differ diff --git a/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testDecorativeColors-using-theme-interfaceStyle-colorScheme.Orange_colorDecorativeSkinTint500_Dark.png b/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testDecorativeColors-using-theme-interfaceStyle-colorScheme.Orange_colorDecorativeSkinTint500_Dark.png index 60bb675c6..00c4b02ec 100644 Binary files a/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testDecorativeColors-using-theme-interfaceStyle-colorScheme.Orange_colorDecorativeSkinTint500_Dark.png and b/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testDecorativeColors-using-theme-interfaceStyle-colorScheme.Orange_colorDecorativeSkinTint500_Dark.png differ diff --git a/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testDecorativeColors-using-theme-interfaceStyle-colorScheme.Orange_colorDecorativeSkinTint600_Dark.png b/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testDecorativeColors-using-theme-interfaceStyle-colorScheme.Orange_colorDecorativeSkinTint600_Dark.png index 5688d6451..96f107f0c 100644 Binary files a/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testDecorativeColors-using-theme-interfaceStyle-colorScheme.Orange_colorDecorativeSkinTint600_Dark.png and b/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testDecorativeColors-using-theme-interfaceStyle-colorScheme.Orange_colorDecorativeSkinTint600_Dark.png differ diff --git a/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testDecorativeColors-using-theme-interfaceStyle-colorScheme.Orange_colorDecorativeSkinTint700_Dark.png b/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testDecorativeColors-using-theme-interfaceStyle-colorScheme.Orange_colorDecorativeSkinTint700_Dark.png index 9b50a0630..e4583d501 100644 Binary files a/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testDecorativeColors-using-theme-interfaceStyle-colorScheme.Orange_colorDecorativeSkinTint700_Dark.png and b/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testDecorativeColors-using-theme-interfaceStyle-colorScheme.Orange_colorDecorativeSkinTint700_Dark.png differ diff --git a/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testDecorativeColors-using-theme-interfaceStyle-colorScheme.Orange_colorDecorativeSkinTint800_Dark.png b/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testDecorativeColors-using-theme-interfaceStyle-colorScheme.Orange_colorDecorativeSkinTint800_Dark.png index da6ec7f7c..11a05c59b 100644 Binary files a/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testDecorativeColors-using-theme-interfaceStyle-colorScheme.Orange_colorDecorativeSkinTint800_Dark.png and b/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testDecorativeColors-using-theme-interfaceStyle-colorScheme.Orange_colorDecorativeSkinTint800_Dark.png differ diff --git a/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testDecorativeColors-using-theme-interfaceStyle-colorScheme.Orange_colorDecorativeSkinTint900_Dark.png b/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testDecorativeColors-using-theme-interfaceStyle-colorScheme.Orange_colorDecorativeSkinTint900_Dark.png index bea727549..47f6885bd 100644 Binary files a/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testDecorativeColors-using-theme-interfaceStyle-colorScheme.Orange_colorDecorativeSkinTint900_Dark.png and b/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testDecorativeColors-using-theme-interfaceStyle-colorScheme.Orange_colorDecorativeSkinTint900_Dark.png differ diff --git a/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testDecorativeColors-using-theme-interfaceStyle-colorScheme.Orange_colorDecorativeTertiary_Dark.png b/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testDecorativeColors-using-theme-interfaceStyle-colorScheme.Orange_colorDecorativeTertiary_Dark.png deleted file mode 100644 index dd1e19ee3..000000000 Binary files a/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testDecorativeColors-using-theme-interfaceStyle-colorScheme.Orange_colorDecorativeTertiary_Dark.png and /dev/null differ diff --git a/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testDecorativeColors-using-theme-interfaceStyle-colorScheme.Orange_colorDecorativeTertiary_Light.png b/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testDecorativeColors-using-theme-interfaceStyle-colorScheme.Orange_colorDecorativeTertiary_Light.png deleted file mode 100644 index f1f7219fb..000000000 Binary files a/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testDecorativeColors-using-theme-interfaceStyle-colorScheme.Orange_colorDecorativeTertiary_Light.png and /dev/null differ diff --git a/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testElevationColors-using-theme-interfaceStyle-colorScheme.Orange_colorElevationDragOnBgEmphasized_Dark.png b/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testElevationColors-using-theme-interfaceStyle-colorScheme.Orange_colorElevationDragOnBgEmphasized_Dark.png index 885ec82a9..f0a07ba57 100644 Binary files a/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testElevationColors-using-theme-interfaceStyle-colorScheme.Orange_colorElevationDragOnBgEmphasized_Dark.png and b/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testElevationColors-using-theme-interfaceStyle-colorScheme.Orange_colorElevationDragOnBgEmphasized_Dark.png differ diff --git a/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testElevationColors-using-theme-interfaceStyle-colorScheme.Orange_colorElevationDragOnBgSecondary_Dark.png b/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testElevationColors-using-theme-interfaceStyle-colorScheme.Orange_colorElevationDragOnBgSecondary_Dark.png index 50ef24228..f84d87f88 100644 Binary files a/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testElevationColors-using-theme-interfaceStyle-colorScheme.Orange_colorElevationDragOnBgSecondary_Dark.png and b/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testElevationColors-using-theme-interfaceStyle-colorScheme.Orange_colorElevationDragOnBgSecondary_Dark.png differ diff --git a/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testElevationColors-using-theme-interfaceStyle-colorScheme.Orange_colorElevationDrag_Dark.png b/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testElevationColors-using-theme-interfaceStyle-colorScheme.Orange_colorElevationDrag_Dark.png index 897c5d3ac..f74376fef 100644 Binary files a/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testElevationColors-using-theme-interfaceStyle-colorScheme.Orange_colorElevationDrag_Dark.png and b/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testElevationColors-using-theme-interfaceStyle-colorScheme.Orange_colorElevationDrag_Dark.png differ diff --git a/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testElevationColors-using-theme-interfaceStyle-colorScheme.Orange_colorElevationModal_Dark.png b/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testElevationColors-using-theme-interfaceStyle-colorScheme.Orange_colorElevationModal_Dark.png index 244967877..5d523b023 100644 Binary files a/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testElevationColors-using-theme-interfaceStyle-colorScheme.Orange_colorElevationModal_Dark.png and b/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testElevationColors-using-theme-interfaceStyle-colorScheme.Orange_colorElevationModal_Dark.png differ diff --git a/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testElevationColors-using-theme-interfaceStyle-colorScheme.Orange_colorElevationOverlayDefaultOnBgEmphasized_Dark.png b/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testElevationColors-using-theme-interfaceStyle-colorScheme.Orange_colorElevationOverlayDefaultOnBgEmphasized_Dark.png index 80beba42c..b5fe803d8 100644 Binary files a/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testElevationColors-using-theme-interfaceStyle-colorScheme.Orange_colorElevationOverlayDefaultOnBgEmphasized_Dark.png and b/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testElevationColors-using-theme-interfaceStyle-colorScheme.Orange_colorElevationOverlayDefaultOnBgEmphasized_Dark.png differ diff --git a/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testElevationColors-using-theme-interfaceStyle-colorScheme.Orange_colorElevationOverlayDefaultOnBgSecondary_Dark.png b/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testElevationColors-using-theme-interfaceStyle-colorScheme.Orange_colorElevationOverlayDefaultOnBgSecondary_Dark.png index 8be544ab9..cc338ecda 100644 Binary files a/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testElevationColors-using-theme-interfaceStyle-colorScheme.Orange_colorElevationOverlayDefaultOnBgSecondary_Dark.png and b/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testElevationColors-using-theme-interfaceStyle-colorScheme.Orange_colorElevationOverlayDefaultOnBgSecondary_Dark.png differ diff --git a/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testElevationColors-using-theme-interfaceStyle-colorScheme.Orange_colorElevationOverlayDefault_Dark.png b/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testElevationColors-using-theme-interfaceStyle-colorScheme.Orange_colorElevationOverlayDefault_Dark.png index 844ec9a74..41e2746bc 100644 Binary files a/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testElevationColors-using-theme-interfaceStyle-colorScheme.Orange_colorElevationOverlayDefault_Dark.png and b/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testElevationColors-using-theme-interfaceStyle-colorScheme.Orange_colorElevationOverlayDefault_Dark.png differ diff --git a/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testElevationColors-using-theme-interfaceStyle-colorScheme.Orange_colorElevationOverlayEmphasizedOnBgEmphasized_Dark.png b/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testElevationColors-using-theme-interfaceStyle-colorScheme.Orange_colorElevationOverlayEmphasizedOnBgEmphasized_Dark.png index b4561ffd2..f2a33ddfa 100644 Binary files a/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testElevationColors-using-theme-interfaceStyle-colorScheme.Orange_colorElevationOverlayEmphasizedOnBgEmphasized_Dark.png and b/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testElevationColors-using-theme-interfaceStyle-colorScheme.Orange_colorElevationOverlayEmphasizedOnBgEmphasized_Dark.png differ diff --git a/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testElevationColors-using-theme-interfaceStyle-colorScheme.Orange_colorElevationOverlayEmphasizedOnBgSecondary_Dark.png b/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testElevationColors-using-theme-interfaceStyle-colorScheme.Orange_colorElevationOverlayEmphasizedOnBgSecondary_Dark.png index 1a73e92d1..26c1d08f7 100644 Binary files a/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testElevationColors-using-theme-interfaceStyle-colorScheme.Orange_colorElevationOverlayEmphasizedOnBgSecondary_Dark.png and b/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testElevationColors-using-theme-interfaceStyle-colorScheme.Orange_colorElevationOverlayEmphasizedOnBgSecondary_Dark.png differ diff --git a/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testElevationColors-using-theme-interfaceStyle-colorScheme.Orange_colorElevationOverlayEmphasized_Dark.png b/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testElevationColors-using-theme-interfaceStyle-colorScheme.Orange_colorElevationOverlayEmphasized_Dark.png index 752d645f7..1f1fb3e83 100644 Binary files a/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testElevationColors-using-theme-interfaceStyle-colorScheme.Orange_colorElevationOverlayEmphasized_Dark.png and b/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testElevationColors-using-theme-interfaceStyle-colorScheme.Orange_colorElevationOverlayEmphasized_Dark.png differ diff --git a/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testElevationColors-using-theme-interfaceStyle-colorScheme.Orange_colorElevationRaisedOnBgEmphasized_Dark.png b/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testElevationColors-using-theme-interfaceStyle-colorScheme.Orange_colorElevationRaisedOnBgEmphasized_Dark.png index 6a6741437..8ff0b5848 100644 Binary files a/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testElevationColors-using-theme-interfaceStyle-colorScheme.Orange_colorElevationRaisedOnBgEmphasized_Dark.png and b/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testElevationColors-using-theme-interfaceStyle-colorScheme.Orange_colorElevationRaisedOnBgEmphasized_Dark.png differ diff --git a/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testElevationColors-using-theme-interfaceStyle-colorScheme.Orange_colorElevationRaisedOnBgSecondary_Dark.png b/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testElevationColors-using-theme-interfaceStyle-colorScheme.Orange_colorElevationRaisedOnBgSecondary_Dark.png index f027e311f..992ef4f19 100644 Binary files a/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testElevationColors-using-theme-interfaceStyle-colorScheme.Orange_colorElevationRaisedOnBgSecondary_Dark.png and b/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testElevationColors-using-theme-interfaceStyle-colorScheme.Orange_colorElevationRaisedOnBgSecondary_Dark.png differ diff --git a/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testElevationColors-using-theme-interfaceStyle-colorScheme.Orange_colorElevationRaised_Dark.png b/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testElevationColors-using-theme-interfaceStyle-colorScheme.Orange_colorElevationRaised_Dark.png index 4c6b3560c..03b744fca 100644 Binary files a/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testElevationColors-using-theme-interfaceStyle-colorScheme.Orange_colorElevationRaised_Dark.png and b/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testElevationColors-using-theme-interfaceStyle-colorScheme.Orange_colorElevationRaised_Dark.png differ diff --git a/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testGradientColors-using-theme-interfaceStyle-colorScheme.Inverse_colorGradientSkeletonMiddleOnBgEmphasized_Dark.png b/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testGradientColors-using-theme-interfaceStyle-colorScheme.Inverse_colorGradientSkeletonMiddleOnBgEmphasized_Dark.png new file mode 100644 index 000000000..45993fa11 Binary files /dev/null and b/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testGradientColors-using-theme-interfaceStyle-colorScheme.Inverse_colorGradientSkeletonMiddleOnBgEmphasized_Dark.png differ diff --git a/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testGradientColors-using-theme-interfaceStyle-colorScheme.Inverse_colorGradientSkeletonMiddleOnBgEmphasized_Light.png b/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testGradientColors-using-theme-interfaceStyle-colorScheme.Inverse_colorGradientSkeletonMiddleOnBgEmphasized_Light.png new file mode 100644 index 000000000..7b0861e77 Binary files /dev/null and b/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testGradientColors-using-theme-interfaceStyle-colorScheme.Inverse_colorGradientSkeletonMiddleOnBgEmphasized_Light.png differ diff --git a/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testGradientColors-using-theme-interfaceStyle-colorScheme.Inverse_colorGradientSkeletonMiddle_Dark.png b/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testGradientColors-using-theme-interfaceStyle-colorScheme.Inverse_colorGradientSkeletonMiddle_Dark.png new file mode 100644 index 000000000..a8aa1187a Binary files /dev/null and b/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testGradientColors-using-theme-interfaceStyle-colorScheme.Inverse_colorGradientSkeletonMiddle_Dark.png differ diff --git a/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testGradientColors-using-theme-interfaceStyle-colorScheme.Inverse_colorGradientSkeletonMiddle_Light.png b/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testGradientColors-using-theme-interfaceStyle-colorScheme.Inverse_colorGradientSkeletonMiddle_Light.png new file mode 100644 index 000000000..a99bde9d6 Binary files /dev/null and b/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testGradientColors-using-theme-interfaceStyle-colorScheme.Inverse_colorGradientSkeletonMiddle_Light.png differ diff --git a/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testGradientColors-using-theme-interfaceStyle-colorScheme.Inverse_colorGradientSkeletonStartEndOnBgEmphasized_Dark.png b/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testGradientColors-using-theme-interfaceStyle-colorScheme.Inverse_colorGradientSkeletonStartEndOnBgEmphasized_Dark.png new file mode 100644 index 000000000..f8db1dc02 Binary files /dev/null and b/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testGradientColors-using-theme-interfaceStyle-colorScheme.Inverse_colorGradientSkeletonStartEndOnBgEmphasized_Dark.png differ diff --git a/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testGradientColors-using-theme-interfaceStyle-colorScheme.Inverse_colorGradientSkeletonStartEndOnBgEmphasized_Light.png b/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testGradientColors-using-theme-interfaceStyle-colorScheme.Inverse_colorGradientSkeletonStartEndOnBgEmphasized_Light.png new file mode 100644 index 000000000..4e6bcd218 Binary files /dev/null and b/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testGradientColors-using-theme-interfaceStyle-colorScheme.Inverse_colorGradientSkeletonStartEndOnBgEmphasized_Light.png differ diff --git a/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testGradientColors-using-theme-interfaceStyle-colorScheme.Inverse_colorGradientSkeletonStartEnd_Dark.png b/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testGradientColors-using-theme-interfaceStyle-colorScheme.Inverse_colorGradientSkeletonStartEnd_Dark.png new file mode 100644 index 000000000..264e03b6e Binary files /dev/null and b/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testGradientColors-using-theme-interfaceStyle-colorScheme.Inverse_colorGradientSkeletonStartEnd_Dark.png differ diff --git a/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testGradientColors-using-theme-interfaceStyle-colorScheme.Inverse_colorGradientSkeletonStartEnd_Light.png b/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testGradientColors-using-theme-interfaceStyle-colorScheme.Inverse_colorGradientSkeletonStartEnd_Light.png new file mode 100644 index 000000000..e8e039371 Binary files /dev/null and b/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testGradientColors-using-theme-interfaceStyle-colorScheme.Inverse_colorGradientSkeletonStartEnd_Light.png differ diff --git a/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testGradientColors-using-theme-interfaceStyle-colorScheme.Orange_colorGradientSkeletonMiddleOnBgEmphasized_Dark.png b/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testGradientColors-using-theme-interfaceStyle-colorScheme.Orange_colorGradientSkeletonMiddleOnBgEmphasized_Dark.png new file mode 100644 index 000000000..214681f11 Binary files /dev/null and b/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testGradientColors-using-theme-interfaceStyle-colorScheme.Orange_colorGradientSkeletonMiddleOnBgEmphasized_Dark.png differ diff --git a/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testGradientColors-using-theme-interfaceStyle-colorScheme.Orange_colorGradientSkeletonMiddleOnBgEmphasized_Light.png b/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testGradientColors-using-theme-interfaceStyle-colorScheme.Orange_colorGradientSkeletonMiddleOnBgEmphasized_Light.png new file mode 100644 index 000000000..2e0c451a4 Binary files /dev/null and b/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testGradientColors-using-theme-interfaceStyle-colorScheme.Orange_colorGradientSkeletonMiddleOnBgEmphasized_Light.png differ diff --git a/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testGradientColors-using-theme-interfaceStyle-colorScheme.Orange_colorGradientSkeletonMiddle_Dark.png b/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testGradientColors-using-theme-interfaceStyle-colorScheme.Orange_colorGradientSkeletonMiddle_Dark.png new file mode 100644 index 000000000..bfc9a72e9 Binary files /dev/null and b/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testGradientColors-using-theme-interfaceStyle-colorScheme.Orange_colorGradientSkeletonMiddle_Dark.png differ diff --git a/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testGradientColors-using-theme-interfaceStyle-colorScheme.Orange_colorGradientSkeletonMiddle_Light.png b/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testGradientColors-using-theme-interfaceStyle-colorScheme.Orange_colorGradientSkeletonMiddle_Light.png new file mode 100644 index 000000000..9e9489786 Binary files /dev/null and b/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testGradientColors-using-theme-interfaceStyle-colorScheme.Orange_colorGradientSkeletonMiddle_Light.png differ diff --git a/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testGradientColors-using-theme-interfaceStyle-colorScheme.Orange_colorGradientSkeletonStartEndOnBgEmphasized_Dark.png b/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testGradientColors-using-theme-interfaceStyle-colorScheme.Orange_colorGradientSkeletonStartEndOnBgEmphasized_Dark.png new file mode 100644 index 000000000..0d961e064 Binary files /dev/null and b/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testGradientColors-using-theme-interfaceStyle-colorScheme.Orange_colorGradientSkeletonStartEndOnBgEmphasized_Dark.png differ diff --git a/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testGradientColors-using-theme-interfaceStyle-colorScheme.Orange_colorGradientSkeletonStartEndOnBgEmphasized_Light.png b/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testGradientColors-using-theme-interfaceStyle-colorScheme.Orange_colorGradientSkeletonStartEndOnBgEmphasized_Light.png new file mode 100644 index 000000000..1e58ad7a8 Binary files /dev/null and b/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testGradientColors-using-theme-interfaceStyle-colorScheme.Orange_colorGradientSkeletonStartEndOnBgEmphasized_Light.png differ diff --git a/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testGradientColors-using-theme-interfaceStyle-colorScheme.Orange_colorGradientSkeletonStartEnd_Dark.png b/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testGradientColors-using-theme-interfaceStyle-colorScheme.Orange_colorGradientSkeletonStartEnd_Dark.png new file mode 100644 index 000000000..4f3bc203f Binary files /dev/null and b/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testGradientColors-using-theme-interfaceStyle-colorScheme.Orange_colorGradientSkeletonStartEnd_Dark.png differ diff --git a/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testGradientColors-using-theme-interfaceStyle-colorScheme.Orange_colorGradientSkeletonStartEnd_Light.png b/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testGradientColors-using-theme-interfaceStyle-colorScheme.Orange_colorGradientSkeletonStartEnd_Light.png new file mode 100644 index 000000000..364b121e1 Binary files /dev/null and b/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testGradientColors-using-theme-interfaceStyle-colorScheme.Orange_colorGradientSkeletonStartEnd_Light.png differ diff --git a/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testTransparentColors-using-theme-interfaceStyle-colorScheme.Inverse_colorTransparentDefault_Light.png b/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testTransparentColors-using-theme-interfaceStyle-colorScheme.Inverse_colorTransparentDefault_Light.png new file mode 100644 index 000000000..3099610f8 Binary files /dev/null and b/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testTransparentColors-using-theme-interfaceStyle-colorScheme.Inverse_colorTransparentDefault_Light.png differ diff --git a/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testTransparentColors-using-theme-interfaceStyle-colorScheme.Orange_colorTransparentDefault_Dark.png b/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testTransparentColors-using-theme-interfaceStyle-colorScheme.Orange_colorTransparentDefault_Dark.png new file mode 100644 index 000000000..e63b52499 Binary files /dev/null and b/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testTransparentColors-using-theme-interfaceStyle-colorScheme.Orange_colorTransparentDefault_Dark.png differ diff --git a/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testTransparentColors-using-theme-interfaceStyle-colorScheme.Orange_colorTransparentDefault_Light.png b/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testTransparentColors-using-theme-interfaceStyle-colorScheme.Orange_colorTransparentDefault_Light.png new file mode 100644 index 000000000..7ee8ab239 Binary files /dev/null and b/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensColorUITests/__Snapshots__/OUDSTokensColorUITests/testTransparentColors-using-theme-interfaceStyle-colorScheme.Orange_colorTransparentDefault_Light.png differ diff --git a/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensDimensionUITests/Size/__Snapshots__/OUDSTokensSizeUITests/testAllSizeInverseThemeDark.sizeIconDecorativeMedium.png b/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensDimensionUITests/Size/__Snapshots__/OUDSTokensSizeUITests/testAllSizeInverseThemeDark.sizeIconDecorativeMedium.png index 70321c3c0..1e69650c6 100644 Binary files a/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensDimensionUITests/Size/__Snapshots__/OUDSTokensSizeUITests/testAllSizeInverseThemeDark.sizeIconDecorativeMedium.png and b/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensDimensionUITests/Size/__Snapshots__/OUDSTokensSizeUITests/testAllSizeInverseThemeDark.sizeIconDecorativeMedium.png differ diff --git a/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensDimensionUITests/Size/__Snapshots__/OUDSTokensSizeUITests/testAllSizeInverseThemeDark.sizeIconDecorativeShort.png b/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensDimensionUITests/Size/__Snapshots__/OUDSTokensSizeUITests/testAllSizeInverseThemeDark.sizeIconDecorativeShort.png index 30f54248c..d928be4b8 100644 Binary files a/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensDimensionUITests/Size/__Snapshots__/OUDSTokensSizeUITests/testAllSizeInverseThemeDark.sizeIconDecorativeShort.png and b/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensDimensionUITests/Size/__Snapshots__/OUDSTokensSizeUITests/testAllSizeInverseThemeDark.sizeIconDecorativeShort.png differ diff --git a/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensDimensionUITests/Size/__Snapshots__/OUDSTokensSizeUITests/testAllSizeInverseThemeDark.sizeIconDecorativeShorter.png b/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensDimensionUITests/Size/__Snapshots__/OUDSTokensSizeUITests/testAllSizeInverseThemeDark.sizeIconDecorativeShorter.png index bfcc4d7f9..c953c1291 100644 Binary files a/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensDimensionUITests/Size/__Snapshots__/OUDSTokensSizeUITests/testAllSizeInverseThemeDark.sizeIconDecorativeShorter.png and b/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensDimensionUITests/Size/__Snapshots__/OUDSTokensSizeUITests/testAllSizeInverseThemeDark.sizeIconDecorativeShorter.png differ diff --git a/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensDimensionUITests/Size/__Snapshots__/OUDSTokensSizeUITests/testAllSizeInverseThemeDark.sizeIconDecorativeShortest.png b/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensDimensionUITests/Size/__Snapshots__/OUDSTokensSizeUITests/testAllSizeInverseThemeDark.sizeIconDecorativeShortest.png index 57e3b2ed7..248aaaff7 100644 Binary files a/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensDimensionUITests/Size/__Snapshots__/OUDSTokensSizeUITests/testAllSizeInverseThemeDark.sizeIconDecorativeShortest.png and b/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensDimensionUITests/Size/__Snapshots__/OUDSTokensSizeUITests/testAllSizeInverseThemeDark.sizeIconDecorativeShortest.png differ diff --git a/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensDimensionUITests/Size/__Snapshots__/OUDSTokensSizeUITests/testAllSizeInverseThemeDark.sizeIconDecorativeTall.png b/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensDimensionUITests/Size/__Snapshots__/OUDSTokensSizeUITests/testAllSizeInverseThemeDark.sizeIconDecorativeTall.png index a1bb5f1c7..44b905645 100644 Binary files a/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensDimensionUITests/Size/__Snapshots__/OUDSTokensSizeUITests/testAllSizeInverseThemeDark.sizeIconDecorativeTall.png and b/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensDimensionUITests/Size/__Snapshots__/OUDSTokensSizeUITests/testAllSizeInverseThemeDark.sizeIconDecorativeTall.png differ diff --git a/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensDimensionUITests/Size/__Snapshots__/OUDSTokensSizeUITests/testAllSizeInverseThemeDark.sizeIconDecorativeTaller.png b/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensDimensionUITests/Size/__Snapshots__/OUDSTokensSizeUITests/testAllSizeInverseThemeDark.sizeIconDecorativeTaller.png index 269547277..56f5066cc 100644 Binary files a/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensDimensionUITests/Size/__Snapshots__/OUDSTokensSizeUITests/testAllSizeInverseThemeDark.sizeIconDecorativeTaller.png and b/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensDimensionUITests/Size/__Snapshots__/OUDSTokensSizeUITests/testAllSizeInverseThemeDark.sizeIconDecorativeTaller.png differ diff --git a/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensDimensionUITests/Size/__Snapshots__/OUDSTokensSizeUITests/testAllSizeInverseThemeDark.sizeIconDecorativeTallest.png b/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensDimensionUITests/Size/__Snapshots__/OUDSTokensSizeUITests/testAllSizeInverseThemeDark.sizeIconDecorativeTallest.png index f259472d2..f7004faca 100644 Binary files a/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensDimensionUITests/Size/__Snapshots__/OUDSTokensSizeUITests/testAllSizeInverseThemeDark.sizeIconDecorativeTallest.png and b/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensDimensionUITests/Size/__Snapshots__/OUDSTokensSizeUITests/testAllSizeInverseThemeDark.sizeIconDecorativeTallest.png differ diff --git a/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensDimensionUITests/Size/__Snapshots__/OUDSTokensSizeUITests/testAllSizesOrangeThemeDark.sizeIconDecorativeMedium.png b/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensDimensionUITests/Size/__Snapshots__/OUDSTokensSizeUITests/testAllSizesOrangeThemeDark.sizeIconDecorativeMedium.png index 40f752cff..21339978f 100644 Binary files a/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensDimensionUITests/Size/__Snapshots__/OUDSTokensSizeUITests/testAllSizesOrangeThemeDark.sizeIconDecorativeMedium.png and b/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensDimensionUITests/Size/__Snapshots__/OUDSTokensSizeUITests/testAllSizesOrangeThemeDark.sizeIconDecorativeMedium.png differ diff --git a/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensDimensionUITests/Size/__Snapshots__/OUDSTokensSizeUITests/testAllSizesOrangeThemeDark.sizeIconDecorativeShort.png b/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensDimensionUITests/Size/__Snapshots__/OUDSTokensSizeUITests/testAllSizesOrangeThemeDark.sizeIconDecorativeShort.png index 1783f5cdb..22b622434 100644 Binary files a/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensDimensionUITests/Size/__Snapshots__/OUDSTokensSizeUITests/testAllSizesOrangeThemeDark.sizeIconDecorativeShort.png and b/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensDimensionUITests/Size/__Snapshots__/OUDSTokensSizeUITests/testAllSizesOrangeThemeDark.sizeIconDecorativeShort.png differ diff --git a/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensDimensionUITests/Size/__Snapshots__/OUDSTokensSizeUITests/testAllSizesOrangeThemeDark.sizeIconDecorativeShorter.png b/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensDimensionUITests/Size/__Snapshots__/OUDSTokensSizeUITests/testAllSizesOrangeThemeDark.sizeIconDecorativeShorter.png index d1991941a..12e82f664 100644 Binary files a/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensDimensionUITests/Size/__Snapshots__/OUDSTokensSizeUITests/testAllSizesOrangeThemeDark.sizeIconDecorativeShorter.png and b/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensDimensionUITests/Size/__Snapshots__/OUDSTokensSizeUITests/testAllSizesOrangeThemeDark.sizeIconDecorativeShorter.png differ diff --git a/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensDimensionUITests/Size/__Snapshots__/OUDSTokensSizeUITests/testAllSizesOrangeThemeDark.sizeIconDecorativeShortest.png b/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensDimensionUITests/Size/__Snapshots__/OUDSTokensSizeUITests/testAllSizesOrangeThemeDark.sizeIconDecorativeShortest.png index 774c980fb..846c145f2 100644 Binary files a/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensDimensionUITests/Size/__Snapshots__/OUDSTokensSizeUITests/testAllSizesOrangeThemeDark.sizeIconDecorativeShortest.png and b/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensDimensionUITests/Size/__Snapshots__/OUDSTokensSizeUITests/testAllSizesOrangeThemeDark.sizeIconDecorativeShortest.png differ diff --git a/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensDimensionUITests/Size/__Snapshots__/OUDSTokensSizeUITests/testAllSizesOrangeThemeDark.sizeIconDecorativeTall.png b/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensDimensionUITests/Size/__Snapshots__/OUDSTokensSizeUITests/testAllSizesOrangeThemeDark.sizeIconDecorativeTall.png index 8feb33085..4136a8ff9 100644 Binary files a/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensDimensionUITests/Size/__Snapshots__/OUDSTokensSizeUITests/testAllSizesOrangeThemeDark.sizeIconDecorativeTall.png and b/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensDimensionUITests/Size/__Snapshots__/OUDSTokensSizeUITests/testAllSizesOrangeThemeDark.sizeIconDecorativeTall.png differ diff --git a/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensDimensionUITests/Size/__Snapshots__/OUDSTokensSizeUITests/testAllSizesOrangeThemeDark.sizeIconDecorativeTaller.png b/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensDimensionUITests/Size/__Snapshots__/OUDSTokensSizeUITests/testAllSizesOrangeThemeDark.sizeIconDecorativeTaller.png index 47dabc526..313df65c0 100644 Binary files a/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensDimensionUITests/Size/__Snapshots__/OUDSTokensSizeUITests/testAllSizesOrangeThemeDark.sizeIconDecorativeTaller.png and b/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensDimensionUITests/Size/__Snapshots__/OUDSTokensSizeUITests/testAllSizesOrangeThemeDark.sizeIconDecorativeTaller.png differ diff --git a/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensDimensionUITests/Size/__Snapshots__/OUDSTokensSizeUITests/testAllSizesOrangeThemeDark.sizeIconDecorativeTallest.png b/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensDimensionUITests/Size/__Snapshots__/OUDSTokensSizeUITests/testAllSizesOrangeThemeDark.sizeIconDecorativeTallest.png index 9ec8110fe..559925978 100644 Binary files a/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensDimensionUITests/Size/__Snapshots__/OUDSTokensSizeUITests/testAllSizesOrangeThemeDark.sizeIconDecorativeTallest.png and b/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensDimensionUITests/Size/__Snapshots__/OUDSTokensSizeUITests/testAllSizesOrangeThemeDark.sizeIconDecorativeTallest.png differ diff --git a/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensDimensionUITests/Size/__Snapshots__/OUDSTokensSizeUITests/testAllSizesOrangeThemeDark.sizeIconWithBodyLargeMedium.png b/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensDimensionUITests/Size/__Snapshots__/OUDSTokensSizeUITests/testAllSizesOrangeThemeDark.sizeIconWithBodyLargeMedium.png index 75a002219..efce7a90f 100644 Binary files a/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensDimensionUITests/Size/__Snapshots__/OUDSTokensSizeUITests/testAllSizesOrangeThemeDark.sizeIconWithBodyLargeMedium.png and b/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensDimensionUITests/Size/__Snapshots__/OUDSTokensSizeUITests/testAllSizesOrangeThemeDark.sizeIconWithBodyLargeMedium.png differ diff --git a/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensDimensionUITests/Size/__Snapshots__/OUDSTokensSizeUITests/testAllSizesOrangeThemeDark.sizeIconWithBodyLargeShort.png b/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensDimensionUITests/Size/__Snapshots__/OUDSTokensSizeUITests/testAllSizesOrangeThemeDark.sizeIconWithBodyLargeShort.png index a59e6b4b3..df65bb315 100644 Binary files a/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensDimensionUITests/Size/__Snapshots__/OUDSTokensSizeUITests/testAllSizesOrangeThemeDark.sizeIconWithBodyLargeShort.png and b/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensDimensionUITests/Size/__Snapshots__/OUDSTokensSizeUITests/testAllSizesOrangeThemeDark.sizeIconWithBodyLargeShort.png differ diff --git a/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensDimensionUITests/Size/__Snapshots__/OUDSTokensSizeUITests/testAllSizesOrangeThemeDark.sizeIconWithBodyLargeTall.png b/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensDimensionUITests/Size/__Snapshots__/OUDSTokensSizeUITests/testAllSizesOrangeThemeDark.sizeIconWithBodyLargeTall.png index 0232aa244..c07734e1c 100644 Binary files a/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensDimensionUITests/Size/__Snapshots__/OUDSTokensSizeUITests/testAllSizesOrangeThemeDark.sizeIconWithBodyLargeTall.png and b/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensDimensionUITests/Size/__Snapshots__/OUDSTokensSizeUITests/testAllSizesOrangeThemeDark.sizeIconWithBodyLargeTall.png differ diff --git a/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensDimensionUITests/Size/__Snapshots__/OUDSTokensSizeUITests/testAllSizesOrangeThemeDark.sizeIconWithBodyMediumMedium.png b/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensDimensionUITests/Size/__Snapshots__/OUDSTokensSizeUITests/testAllSizesOrangeThemeDark.sizeIconWithBodyMediumMedium.png index 7c0df6124..e0137f8ac 100644 Binary files a/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensDimensionUITests/Size/__Snapshots__/OUDSTokensSizeUITests/testAllSizesOrangeThemeDark.sizeIconWithBodyMediumMedium.png and b/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensDimensionUITests/Size/__Snapshots__/OUDSTokensSizeUITests/testAllSizesOrangeThemeDark.sizeIconWithBodyMediumMedium.png differ diff --git a/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensDimensionUITests/Size/__Snapshots__/OUDSTokensSizeUITests/testAllSizesOrangeThemeDark.sizeIconWithBodyMediumShort.png b/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensDimensionUITests/Size/__Snapshots__/OUDSTokensSizeUITests/testAllSizesOrangeThemeDark.sizeIconWithBodyMediumShort.png index a1ac29ac4..d50296a96 100644 Binary files a/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensDimensionUITests/Size/__Snapshots__/OUDSTokensSizeUITests/testAllSizesOrangeThemeDark.sizeIconWithBodyMediumShort.png and b/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensDimensionUITests/Size/__Snapshots__/OUDSTokensSizeUITests/testAllSizesOrangeThemeDark.sizeIconWithBodyMediumShort.png differ diff --git a/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensDimensionUITests/Size/__Snapshots__/OUDSTokensSizeUITests/testAllSizesOrangeThemeDark.sizeIconWithBodyMediumTall.png b/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensDimensionUITests/Size/__Snapshots__/OUDSTokensSizeUITests/testAllSizesOrangeThemeDark.sizeIconWithBodyMediumTall.png index bcaa58863..48bc55a96 100644 Binary files a/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensDimensionUITests/Size/__Snapshots__/OUDSTokensSizeUITests/testAllSizesOrangeThemeDark.sizeIconWithBodyMediumTall.png and b/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensDimensionUITests/Size/__Snapshots__/OUDSTokensSizeUITests/testAllSizesOrangeThemeDark.sizeIconWithBodyMediumTall.png differ diff --git a/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensDimensionUITests/Size/__Snapshots__/OUDSTokensSizeUITests/testAllSizesOrangeThemeDark.sizeIconWithBodySmallMedium.png b/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensDimensionUITests/Size/__Snapshots__/OUDSTokensSizeUITests/testAllSizesOrangeThemeDark.sizeIconWithBodySmallMedium.png index 792323645..651012064 100644 Binary files a/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensDimensionUITests/Size/__Snapshots__/OUDSTokensSizeUITests/testAllSizesOrangeThemeDark.sizeIconWithBodySmallMedium.png and b/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensDimensionUITests/Size/__Snapshots__/OUDSTokensSizeUITests/testAllSizesOrangeThemeDark.sizeIconWithBodySmallMedium.png differ diff --git a/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensDimensionUITests/Size/__Snapshots__/OUDSTokensSizeUITests/testAllSizesOrangeThemeDark.sizeIconWithBodySmallShort.png b/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensDimensionUITests/Size/__Snapshots__/OUDSTokensSizeUITests/testAllSizesOrangeThemeDark.sizeIconWithBodySmallShort.png index 0f350ece5..3f2839bf9 100644 Binary files a/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensDimensionUITests/Size/__Snapshots__/OUDSTokensSizeUITests/testAllSizesOrangeThemeDark.sizeIconWithBodySmallShort.png and b/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensDimensionUITests/Size/__Snapshots__/OUDSTokensSizeUITests/testAllSizesOrangeThemeDark.sizeIconWithBodySmallShort.png differ diff --git a/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensDimensionUITests/Size/__Snapshots__/OUDSTokensSizeUITests/testAllSizesOrangeThemeDark.sizeIconWithBodySmallTall.png b/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensDimensionUITests/Size/__Snapshots__/OUDSTokensSizeUITests/testAllSizesOrangeThemeDark.sizeIconWithBodySmallTall.png index 99f5cea65..f7d2d5d35 100644 Binary files a/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensDimensionUITests/Size/__Snapshots__/OUDSTokensSizeUITests/testAllSizesOrangeThemeDark.sizeIconWithBodySmallTall.png and b/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensDimensionUITests/Size/__Snapshots__/OUDSTokensSizeUITests/testAllSizesOrangeThemeDark.sizeIconWithBodySmallTall.png differ diff --git a/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensDimensionUITests/Size/__Snapshots__/OUDSTokensSizeUITests/testAllSizesOrangeThemeDark.sizeIconWithHeadingLargeMedium.png b/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensDimensionUITests/Size/__Snapshots__/OUDSTokensSizeUITests/testAllSizesOrangeThemeDark.sizeIconWithHeadingLargeMedium.png index 1c30381ec..9a99b369f 100644 Binary files a/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensDimensionUITests/Size/__Snapshots__/OUDSTokensSizeUITests/testAllSizesOrangeThemeDark.sizeIconWithHeadingLargeMedium.png and b/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensDimensionUITests/Size/__Snapshots__/OUDSTokensSizeUITests/testAllSizesOrangeThemeDark.sizeIconWithHeadingLargeMedium.png differ diff --git a/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensDimensionUITests/Size/__Snapshots__/OUDSTokensSizeUITests/testAllSizesOrangeThemeDark.sizeIconWithHeadingLargeShort.png b/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensDimensionUITests/Size/__Snapshots__/OUDSTokensSizeUITests/testAllSizesOrangeThemeDark.sizeIconWithHeadingLargeShort.png index 3531aa940..47f51f998 100644 Binary files a/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensDimensionUITests/Size/__Snapshots__/OUDSTokensSizeUITests/testAllSizesOrangeThemeDark.sizeIconWithHeadingLargeShort.png and b/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensDimensionUITests/Size/__Snapshots__/OUDSTokensSizeUITests/testAllSizesOrangeThemeDark.sizeIconWithHeadingLargeShort.png differ diff --git a/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensDimensionUITests/Size/__Snapshots__/OUDSTokensSizeUITests/testAllSizesOrangeThemeDark.sizeIconWithHeadingLargeTall.png b/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensDimensionUITests/Size/__Snapshots__/OUDSTokensSizeUITests/testAllSizesOrangeThemeDark.sizeIconWithHeadingLargeTall.png index e9244b84b..d6ed7d4da 100644 Binary files a/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensDimensionUITests/Size/__Snapshots__/OUDSTokensSizeUITests/testAllSizesOrangeThemeDark.sizeIconWithHeadingLargeTall.png and b/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensDimensionUITests/Size/__Snapshots__/OUDSTokensSizeUITests/testAllSizesOrangeThemeDark.sizeIconWithHeadingLargeTall.png differ diff --git a/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensDimensionUITests/Size/__Snapshots__/OUDSTokensSizeUITests/testAllSizesOrangeThemeDark.sizeIconWithHeadingMediumMedium.png b/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensDimensionUITests/Size/__Snapshots__/OUDSTokensSizeUITests/testAllSizesOrangeThemeDark.sizeIconWithHeadingMediumMedium.png index e370cfe6e..8dd9bc5c8 100644 Binary files a/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensDimensionUITests/Size/__Snapshots__/OUDSTokensSizeUITests/testAllSizesOrangeThemeDark.sizeIconWithHeadingMediumMedium.png and b/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensDimensionUITests/Size/__Snapshots__/OUDSTokensSizeUITests/testAllSizesOrangeThemeDark.sizeIconWithHeadingMediumMedium.png differ diff --git a/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensDimensionUITests/Size/__Snapshots__/OUDSTokensSizeUITests/testAllSizesOrangeThemeDark.sizeIconWithHeadingMediumShort.png b/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensDimensionUITests/Size/__Snapshots__/OUDSTokensSizeUITests/testAllSizesOrangeThemeDark.sizeIconWithHeadingMediumShort.png index 780f440d7..07f6240f1 100644 Binary files a/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensDimensionUITests/Size/__Snapshots__/OUDSTokensSizeUITests/testAllSizesOrangeThemeDark.sizeIconWithHeadingMediumShort.png and b/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensDimensionUITests/Size/__Snapshots__/OUDSTokensSizeUITests/testAllSizesOrangeThemeDark.sizeIconWithHeadingMediumShort.png differ diff --git a/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensDimensionUITests/Size/__Snapshots__/OUDSTokensSizeUITests/testAllSizesOrangeThemeDark.sizeIconWithHeadingMediumTall.png b/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensDimensionUITests/Size/__Snapshots__/OUDSTokensSizeUITests/testAllSizesOrangeThemeDark.sizeIconWithHeadingMediumTall.png index 866694ac1..cc8af29f0 100644 Binary files a/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensDimensionUITests/Size/__Snapshots__/OUDSTokensSizeUITests/testAllSizesOrangeThemeDark.sizeIconWithHeadingMediumTall.png and b/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensDimensionUITests/Size/__Snapshots__/OUDSTokensSizeUITests/testAllSizesOrangeThemeDark.sizeIconWithHeadingMediumTall.png differ diff --git a/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensDimensionUITests/Size/__Snapshots__/OUDSTokensSizeUITests/testAllSizesOrangeThemeDark.sizeIconWithHeadingSmallMedium.png b/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensDimensionUITests/Size/__Snapshots__/OUDSTokensSizeUITests/testAllSizesOrangeThemeDark.sizeIconWithHeadingSmallMedium.png index 25915936a..67cd1441f 100644 Binary files a/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensDimensionUITests/Size/__Snapshots__/OUDSTokensSizeUITests/testAllSizesOrangeThemeDark.sizeIconWithHeadingSmallMedium.png and b/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensDimensionUITests/Size/__Snapshots__/OUDSTokensSizeUITests/testAllSizesOrangeThemeDark.sizeIconWithHeadingSmallMedium.png differ diff --git a/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensDimensionUITests/Size/__Snapshots__/OUDSTokensSizeUITests/testAllSizesOrangeThemeDark.sizeIconWithHeadingSmallShort.png b/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensDimensionUITests/Size/__Snapshots__/OUDSTokensSizeUITests/testAllSizesOrangeThemeDark.sizeIconWithHeadingSmallShort.png index 65104371c..ac61d5f3d 100644 Binary files a/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensDimensionUITests/Size/__Snapshots__/OUDSTokensSizeUITests/testAllSizesOrangeThemeDark.sizeIconWithHeadingSmallShort.png and b/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensDimensionUITests/Size/__Snapshots__/OUDSTokensSizeUITests/testAllSizesOrangeThemeDark.sizeIconWithHeadingSmallShort.png differ diff --git a/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensDimensionUITests/Size/__Snapshots__/OUDSTokensSizeUITests/testAllSizesOrangeThemeDark.sizeIconWithHeadingSmallTall.png b/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensDimensionUITests/Size/__Snapshots__/OUDSTokensSizeUITests/testAllSizesOrangeThemeDark.sizeIconWithHeadingSmallTall.png index 598a101da..e3f1d7cd0 100644 Binary files a/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensDimensionUITests/Size/__Snapshots__/OUDSTokensSizeUITests/testAllSizesOrangeThemeDark.sizeIconWithHeadingSmallTall.png and b/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensDimensionUITests/Size/__Snapshots__/OUDSTokensSizeUITests/testAllSizesOrangeThemeDark.sizeIconWithHeadingSmallTall.png differ diff --git a/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensDimensionUITests/Size/__Snapshots__/OUDSTokensSizeUITests/testAllSizesOrangeThemeDark.sizeIconWithHeadingXlargeMedium.png b/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensDimensionUITests/Size/__Snapshots__/OUDSTokensSizeUITests/testAllSizesOrangeThemeDark.sizeIconWithHeadingXlargeMedium.png index 7006361c8..698512b7c 100644 Binary files a/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensDimensionUITests/Size/__Snapshots__/OUDSTokensSizeUITests/testAllSizesOrangeThemeDark.sizeIconWithHeadingXlargeMedium.png and b/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensDimensionUITests/Size/__Snapshots__/OUDSTokensSizeUITests/testAllSizesOrangeThemeDark.sizeIconWithHeadingXlargeMedium.png differ diff --git a/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensDimensionUITests/Size/__Snapshots__/OUDSTokensSizeUITests/testAllSizesOrangeThemeDark.sizeIconWithHeadingXlargeShort.png b/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensDimensionUITests/Size/__Snapshots__/OUDSTokensSizeUITests/testAllSizesOrangeThemeDark.sizeIconWithHeadingXlargeShort.png index 0a1213295..ba50c8f1b 100644 Binary files a/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensDimensionUITests/Size/__Snapshots__/OUDSTokensSizeUITests/testAllSizesOrangeThemeDark.sizeIconWithHeadingXlargeShort.png and b/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensDimensionUITests/Size/__Snapshots__/OUDSTokensSizeUITests/testAllSizesOrangeThemeDark.sizeIconWithHeadingXlargeShort.png differ diff --git a/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensDimensionUITests/Size/__Snapshots__/OUDSTokensSizeUITests/testAllSizesOrangeThemeDark.sizeIconWithHeadingXlargeTall.png b/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensDimensionUITests/Size/__Snapshots__/OUDSTokensSizeUITests/testAllSizesOrangeThemeDark.sizeIconWithHeadingXlargeTall.png index a66b787e3..d0dc9129f 100644 Binary files a/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensDimensionUITests/Size/__Snapshots__/OUDSTokensSizeUITests/testAllSizesOrangeThemeDark.sizeIconWithHeadingXlargeTall.png and b/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensDimensionUITests/Size/__Snapshots__/OUDSTokensSizeUITests/testAllSizesOrangeThemeDark.sizeIconWithHeadingXlargeTall.png differ diff --git a/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensDimensionUITests/Size/__Snapshots__/OUDSTokensSizeUITests/testAllSizesOrangeThemeDark.sizeIconWithLabelLargeSizeMedium.png b/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensDimensionUITests/Size/__Snapshots__/OUDSTokensSizeUITests/testAllSizesOrangeThemeDark.sizeIconWithLabelLargeSizeMedium.png index 0a8191cfa..e9b6196cc 100644 Binary files a/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensDimensionUITests/Size/__Snapshots__/OUDSTokensSizeUITests/testAllSizesOrangeThemeDark.sizeIconWithLabelLargeSizeMedium.png and b/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensDimensionUITests/Size/__Snapshots__/OUDSTokensSizeUITests/testAllSizesOrangeThemeDark.sizeIconWithLabelLargeSizeMedium.png differ diff --git a/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensDimensionUITests/Size/__Snapshots__/OUDSTokensSizeUITests/testAllSizesOrangeThemeDark.sizeIconWithLabelLargeSizeShort.png b/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensDimensionUITests/Size/__Snapshots__/OUDSTokensSizeUITests/testAllSizesOrangeThemeDark.sizeIconWithLabelLargeSizeShort.png index 792538959..e685ffd4c 100644 Binary files a/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensDimensionUITests/Size/__Snapshots__/OUDSTokensSizeUITests/testAllSizesOrangeThemeDark.sizeIconWithLabelLargeSizeShort.png and b/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensDimensionUITests/Size/__Snapshots__/OUDSTokensSizeUITests/testAllSizesOrangeThemeDark.sizeIconWithLabelLargeSizeShort.png differ diff --git a/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensDimensionUITests/Size/__Snapshots__/OUDSTokensSizeUITests/testAllSizesOrangeThemeDark.sizeIconWithLabelLargeSizeShorter.png b/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensDimensionUITests/Size/__Snapshots__/OUDSTokensSizeUITests/testAllSizesOrangeThemeDark.sizeIconWithLabelLargeSizeShorter.png index ed51e72ec..59397100c 100644 Binary files a/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensDimensionUITests/Size/__Snapshots__/OUDSTokensSizeUITests/testAllSizesOrangeThemeDark.sizeIconWithLabelLargeSizeShorter.png and b/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensDimensionUITests/Size/__Snapshots__/OUDSTokensSizeUITests/testAllSizesOrangeThemeDark.sizeIconWithLabelLargeSizeShorter.png differ diff --git a/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensDimensionUITests/Size/__Snapshots__/OUDSTokensSizeUITests/testAllSizesOrangeThemeDark.sizeIconWithLabelLargeSizeTall.png b/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensDimensionUITests/Size/__Snapshots__/OUDSTokensSizeUITests/testAllSizesOrangeThemeDark.sizeIconWithLabelLargeSizeTall.png index eb39e85e7..1bf16683a 100644 Binary files a/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensDimensionUITests/Size/__Snapshots__/OUDSTokensSizeUITests/testAllSizesOrangeThemeDark.sizeIconWithLabelLargeSizeTall.png and b/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensDimensionUITests/Size/__Snapshots__/OUDSTokensSizeUITests/testAllSizesOrangeThemeDark.sizeIconWithLabelLargeSizeTall.png differ diff --git a/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensDimensionUITests/Size/__Snapshots__/OUDSTokensSizeUITests/testAllSizesOrangeThemeDark.sizeIconWithLabelLargeSizeTaller.png b/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensDimensionUITests/Size/__Snapshots__/OUDSTokensSizeUITests/testAllSizesOrangeThemeDark.sizeIconWithLabelLargeSizeTaller.png index 99b753359..2da841ceb 100644 Binary files a/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensDimensionUITests/Size/__Snapshots__/OUDSTokensSizeUITests/testAllSizesOrangeThemeDark.sizeIconWithLabelLargeSizeTaller.png and b/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensDimensionUITests/Size/__Snapshots__/OUDSTokensSizeUITests/testAllSizesOrangeThemeDark.sizeIconWithLabelLargeSizeTaller.png differ diff --git a/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensDimensionUITests/Size/__Snapshots__/OUDSTokensSizeUITests/testAllSizesOrangeThemeDark.sizeIconWithLabelMediumSizeMedium.png b/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensDimensionUITests/Size/__Snapshots__/OUDSTokensSizeUITests/testAllSizesOrangeThemeDark.sizeIconWithLabelMediumSizeMedium.png index 0a939e114..fe62c967b 100644 Binary files a/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensDimensionUITests/Size/__Snapshots__/OUDSTokensSizeUITests/testAllSizesOrangeThemeDark.sizeIconWithLabelMediumSizeMedium.png and b/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensDimensionUITests/Size/__Snapshots__/OUDSTokensSizeUITests/testAllSizesOrangeThemeDark.sizeIconWithLabelMediumSizeMedium.png differ diff --git a/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensDimensionUITests/Size/__Snapshots__/OUDSTokensSizeUITests/testAllSizesOrangeThemeDark.sizeIconWithLabelMediumSizeShort.png b/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensDimensionUITests/Size/__Snapshots__/OUDSTokensSizeUITests/testAllSizesOrangeThemeDark.sizeIconWithLabelMediumSizeShort.png index 10498fbd1..e3c57c669 100644 Binary files a/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensDimensionUITests/Size/__Snapshots__/OUDSTokensSizeUITests/testAllSizesOrangeThemeDark.sizeIconWithLabelMediumSizeShort.png and b/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensDimensionUITests/Size/__Snapshots__/OUDSTokensSizeUITests/testAllSizesOrangeThemeDark.sizeIconWithLabelMediumSizeShort.png differ diff --git a/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensDimensionUITests/Size/__Snapshots__/OUDSTokensSizeUITests/testAllSizesOrangeThemeDark.sizeIconWithLabelMediumSizeTall.png b/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensDimensionUITests/Size/__Snapshots__/OUDSTokensSizeUITests/testAllSizesOrangeThemeDark.sizeIconWithLabelMediumSizeTall.png index 8b44f6b50..de83b4f14 100644 Binary files a/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensDimensionUITests/Size/__Snapshots__/OUDSTokensSizeUITests/testAllSizesOrangeThemeDark.sizeIconWithLabelMediumSizeTall.png and b/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensDimensionUITests/Size/__Snapshots__/OUDSTokensSizeUITests/testAllSizesOrangeThemeDark.sizeIconWithLabelMediumSizeTall.png differ diff --git a/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensDimensionUITests/Size/__Snapshots__/OUDSTokensSizeUITests/testAllSizesOrangeThemeDark.sizeIconWithLabelSmallSizeMedium.png b/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensDimensionUITests/Size/__Snapshots__/OUDSTokensSizeUITests/testAllSizesOrangeThemeDark.sizeIconWithLabelSmallSizeMedium.png index 0e830704d..e8738469f 100644 Binary files a/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensDimensionUITests/Size/__Snapshots__/OUDSTokensSizeUITests/testAllSizesOrangeThemeDark.sizeIconWithLabelSmallSizeMedium.png and b/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensDimensionUITests/Size/__Snapshots__/OUDSTokensSizeUITests/testAllSizesOrangeThemeDark.sizeIconWithLabelSmallSizeMedium.png differ diff --git a/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensDimensionUITests/Size/__Snapshots__/OUDSTokensSizeUITests/testAllSizesOrangeThemeDark.sizeIconWithLabelSmallSizeShort.png b/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensDimensionUITests/Size/__Snapshots__/OUDSTokensSizeUITests/testAllSizesOrangeThemeDark.sizeIconWithLabelSmallSizeShort.png index 84940456b..66bd4a9b9 100644 Binary files a/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensDimensionUITests/Size/__Snapshots__/OUDSTokensSizeUITests/testAllSizesOrangeThemeDark.sizeIconWithLabelSmallSizeShort.png and b/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensDimensionUITests/Size/__Snapshots__/OUDSTokensSizeUITests/testAllSizesOrangeThemeDark.sizeIconWithLabelSmallSizeShort.png differ diff --git a/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensDimensionUITests/Size/__Snapshots__/OUDSTokensSizeUITests/testAllSizesOrangeThemeDark.sizeIconWithLabelSmallSizeTall.png b/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensDimensionUITests/Size/__Snapshots__/OUDSTokensSizeUITests/testAllSizesOrangeThemeDark.sizeIconWithLabelSmallSizeTall.png index c0a96d231..197e98b26 100644 Binary files a/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensDimensionUITests/Size/__Snapshots__/OUDSTokensSizeUITests/testAllSizesOrangeThemeDark.sizeIconWithLabelSmallSizeTall.png and b/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensDimensionUITests/Size/__Snapshots__/OUDSTokensSizeUITests/testAllSizesOrangeThemeDark.sizeIconWithLabelSmallSizeTall.png differ diff --git a/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensDimensionUITests/Size/__Snapshots__/OUDSTokensSizeUITests/testAllSizesOrangeThemeDark.sizeIconWithLabelXlargeSizeMedium.png b/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensDimensionUITests/Size/__Snapshots__/OUDSTokensSizeUITests/testAllSizesOrangeThemeDark.sizeIconWithLabelXlargeSizeMedium.png index 628283a6a..a74b897e4 100644 Binary files a/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensDimensionUITests/Size/__Snapshots__/OUDSTokensSizeUITests/testAllSizesOrangeThemeDark.sizeIconWithLabelXlargeSizeMedium.png and b/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensDimensionUITests/Size/__Snapshots__/OUDSTokensSizeUITests/testAllSizesOrangeThemeDark.sizeIconWithLabelXlargeSizeMedium.png differ diff --git a/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensDimensionUITests/Size/__Snapshots__/OUDSTokensSizeUITests/testAllSizesOrangeThemeDark.sizeIconWithLabelXlargeSizeShort.png b/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensDimensionUITests/Size/__Snapshots__/OUDSTokensSizeUITests/testAllSizesOrangeThemeDark.sizeIconWithLabelXlargeSizeShort.png index 765d8cb15..17c55d0f3 100644 Binary files a/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensDimensionUITests/Size/__Snapshots__/OUDSTokensSizeUITests/testAllSizesOrangeThemeDark.sizeIconWithLabelXlargeSizeShort.png and b/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensDimensionUITests/Size/__Snapshots__/OUDSTokensSizeUITests/testAllSizesOrangeThemeDark.sizeIconWithLabelXlargeSizeShort.png differ diff --git a/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensDimensionUITests/Size/__Snapshots__/OUDSTokensSizeUITests/testAllSizesOrangeThemeDark.sizeIconWithLabelXlargeSizeTall.png b/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensDimensionUITests/Size/__Snapshots__/OUDSTokensSizeUITests/testAllSizesOrangeThemeDark.sizeIconWithLabelXlargeSizeTall.png index c985142f4..7cefa1651 100644 Binary files a/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensDimensionUITests/Size/__Snapshots__/OUDSTokensSizeUITests/testAllSizesOrangeThemeDark.sizeIconWithLabelXlargeSizeTall.png and b/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensDimensionUITests/Size/__Snapshots__/OUDSTokensSizeUITests/testAllSizesOrangeThemeDark.sizeIconWithLabelXlargeSizeTall.png differ diff --git a/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensDimensionUITests/Space/__Snapshots__/OUDSTokensSpaceUITests/testFixedSpacing-using-theme-interfaceStyle-colorScheme.Orange_spaceFixedHuge_Dark.png b/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensDimensionUITests/Space/__Snapshots__/OUDSTokensSpaceUITests/testFixedSpacing-using-theme-interfaceStyle-colorScheme.Orange_spaceFixedHuge_Dark.png index 9018d8b77..aa07c8091 100644 Binary files a/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensDimensionUITests/Space/__Snapshots__/OUDSTokensSpaceUITests/testFixedSpacing-using-theme-interfaceStyle-colorScheme.Orange_spaceFixedHuge_Dark.png and b/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensDimensionUITests/Space/__Snapshots__/OUDSTokensSpaceUITests/testFixedSpacing-using-theme-interfaceStyle-colorScheme.Orange_spaceFixedHuge_Dark.png differ diff --git a/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensDimensionUITests/Space/__Snapshots__/OUDSTokensSpaceUITests/testFixedSpacing-using-theme-interfaceStyle-colorScheme.Orange_spaceFixedJumbo_Dark.png b/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensDimensionUITests/Space/__Snapshots__/OUDSTokensSpaceUITests/testFixedSpacing-using-theme-interfaceStyle-colorScheme.Orange_spaceFixedJumbo_Dark.png index 7437c5634..9434095f4 100644 Binary files a/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensDimensionUITests/Space/__Snapshots__/OUDSTokensSpaceUITests/testFixedSpacing-using-theme-interfaceStyle-colorScheme.Orange_spaceFixedJumbo_Dark.png and b/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensDimensionUITests/Space/__Snapshots__/OUDSTokensSpaceUITests/testFixedSpacing-using-theme-interfaceStyle-colorScheme.Orange_spaceFixedJumbo_Dark.png differ diff --git a/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensDimensionUITests/Space/__Snapshots__/OUDSTokensSpaceUITests/testFixedSpacing-using-theme-interfaceStyle-colorScheme.Orange_spaceFixedMedium_Dark.png b/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensDimensionUITests/Space/__Snapshots__/OUDSTokensSpaceUITests/testFixedSpacing-using-theme-interfaceStyle-colorScheme.Orange_spaceFixedMedium_Dark.png index 4c5a3d44c..04430347c 100644 Binary files a/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensDimensionUITests/Space/__Snapshots__/OUDSTokensSpaceUITests/testFixedSpacing-using-theme-interfaceStyle-colorScheme.Orange_spaceFixedMedium_Dark.png and b/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensDimensionUITests/Space/__Snapshots__/OUDSTokensSpaceUITests/testFixedSpacing-using-theme-interfaceStyle-colorScheme.Orange_spaceFixedMedium_Dark.png differ diff --git a/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensDimensionUITests/Space/__Snapshots__/OUDSTokensSpaceUITests/testFixedSpacing-using-theme-interfaceStyle-colorScheme.Orange_spaceFixedNone_Dark.png b/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensDimensionUITests/Space/__Snapshots__/OUDSTokensSpaceUITests/testFixedSpacing-using-theme-interfaceStyle-colorScheme.Orange_spaceFixedNone_Dark.png index c89f177b2..bf85ab3e8 100644 Binary files a/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensDimensionUITests/Space/__Snapshots__/OUDSTokensSpaceUITests/testFixedSpacing-using-theme-interfaceStyle-colorScheme.Orange_spaceFixedNone_Dark.png and b/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensDimensionUITests/Space/__Snapshots__/OUDSTokensSpaceUITests/testFixedSpacing-using-theme-interfaceStyle-colorScheme.Orange_spaceFixedNone_Dark.png differ diff --git a/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensDimensionUITests/Space/__Snapshots__/OUDSTokensSpaceUITests/testFixedSpacing-using-theme-interfaceStyle-colorScheme.Orange_spaceFixedShort_Dark.png b/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensDimensionUITests/Space/__Snapshots__/OUDSTokensSpaceUITests/testFixedSpacing-using-theme-interfaceStyle-colorScheme.Orange_spaceFixedShort_Dark.png index dc0a8874a..3eae3a993 100644 Binary files a/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensDimensionUITests/Space/__Snapshots__/OUDSTokensSpaceUITests/testFixedSpacing-using-theme-interfaceStyle-colorScheme.Orange_spaceFixedShort_Dark.png and b/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensDimensionUITests/Space/__Snapshots__/OUDSTokensSpaceUITests/testFixedSpacing-using-theme-interfaceStyle-colorScheme.Orange_spaceFixedShort_Dark.png differ diff --git a/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensDimensionUITests/Space/__Snapshots__/OUDSTokensSpaceUITests/testFixedSpacing-using-theme-interfaceStyle-colorScheme.Orange_spaceFixedShorter_Dark.png b/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensDimensionUITests/Space/__Snapshots__/OUDSTokensSpaceUITests/testFixedSpacing-using-theme-interfaceStyle-colorScheme.Orange_spaceFixedShorter_Dark.png index b5c39b184..077b17263 100644 Binary files a/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensDimensionUITests/Space/__Snapshots__/OUDSTokensSpaceUITests/testFixedSpacing-using-theme-interfaceStyle-colorScheme.Orange_spaceFixedShorter_Dark.png and b/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensDimensionUITests/Space/__Snapshots__/OUDSTokensSpaceUITests/testFixedSpacing-using-theme-interfaceStyle-colorScheme.Orange_spaceFixedShorter_Dark.png differ diff --git a/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensDimensionUITests/Space/__Snapshots__/OUDSTokensSpaceUITests/testFixedSpacing-using-theme-interfaceStyle-colorScheme.Orange_spaceFixedShortest_Dark.png b/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensDimensionUITests/Space/__Snapshots__/OUDSTokensSpaceUITests/testFixedSpacing-using-theme-interfaceStyle-colorScheme.Orange_spaceFixedShortest_Dark.png index 8907ab6f3..dad63e85d 100644 Binary files a/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensDimensionUITests/Space/__Snapshots__/OUDSTokensSpaceUITests/testFixedSpacing-using-theme-interfaceStyle-colorScheme.Orange_spaceFixedShortest_Dark.png and b/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensDimensionUITests/Space/__Snapshots__/OUDSTokensSpaceUITests/testFixedSpacing-using-theme-interfaceStyle-colorScheme.Orange_spaceFixedShortest_Dark.png differ diff --git a/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensDimensionUITests/Space/__Snapshots__/OUDSTokensSpaceUITests/testFixedSpacing-using-theme-interfaceStyle-colorScheme.Orange_spaceFixedSmash_Dark.png b/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensDimensionUITests/Space/__Snapshots__/OUDSTokensSpaceUITests/testFixedSpacing-using-theme-interfaceStyle-colorScheme.Orange_spaceFixedSmash_Dark.png index eed8a325a..841492117 100644 Binary files a/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensDimensionUITests/Space/__Snapshots__/OUDSTokensSpaceUITests/testFixedSpacing-using-theme-interfaceStyle-colorScheme.Orange_spaceFixedSmash_Dark.png and b/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensDimensionUITests/Space/__Snapshots__/OUDSTokensSpaceUITests/testFixedSpacing-using-theme-interfaceStyle-colorScheme.Orange_spaceFixedSmash_Dark.png differ diff --git a/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensDimensionUITests/Space/__Snapshots__/OUDSTokensSpaceUITests/testFixedSpacing-using-theme-interfaceStyle-colorScheme.Orange_spaceFixedSpacious_Dark.png b/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensDimensionUITests/Space/__Snapshots__/OUDSTokensSpaceUITests/testFixedSpacing-using-theme-interfaceStyle-colorScheme.Orange_spaceFixedSpacious_Dark.png index 121a93a48..5076ee69e 100644 Binary files a/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensDimensionUITests/Space/__Snapshots__/OUDSTokensSpaceUITests/testFixedSpacing-using-theme-interfaceStyle-colorScheme.Orange_spaceFixedSpacious_Dark.png and b/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensDimensionUITests/Space/__Snapshots__/OUDSTokensSpaceUITests/testFixedSpacing-using-theme-interfaceStyle-colorScheme.Orange_spaceFixedSpacious_Dark.png differ diff --git a/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensDimensionUITests/Space/__Snapshots__/OUDSTokensSpaceUITests/testFixedSpacing-using-theme-interfaceStyle-colorScheme.Orange_spaceFixedTall_Dark.png b/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensDimensionUITests/Space/__Snapshots__/OUDSTokensSpaceUITests/testFixedSpacing-using-theme-interfaceStyle-colorScheme.Orange_spaceFixedTall_Dark.png index 7ac597165..7b4875415 100644 Binary files a/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensDimensionUITests/Space/__Snapshots__/OUDSTokensSpaceUITests/testFixedSpacing-using-theme-interfaceStyle-colorScheme.Orange_spaceFixedTall_Dark.png and b/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensDimensionUITests/Space/__Snapshots__/OUDSTokensSpaceUITests/testFixedSpacing-using-theme-interfaceStyle-colorScheme.Orange_spaceFixedTall_Dark.png differ diff --git a/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensDimensionUITests/Space/__Snapshots__/OUDSTokensSpaceUITests/testFixedSpacing-using-theme-interfaceStyle-colorScheme.Orange_spaceFixedTaller_Dark.png b/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensDimensionUITests/Space/__Snapshots__/OUDSTokensSpaceUITests/testFixedSpacing-using-theme-interfaceStyle-colorScheme.Orange_spaceFixedTaller_Dark.png index 0027755f9..8c3a61ab3 100644 Binary files a/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensDimensionUITests/Space/__Snapshots__/OUDSTokensSpaceUITests/testFixedSpacing-using-theme-interfaceStyle-colorScheme.Orange_spaceFixedTaller_Dark.png and b/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensDimensionUITests/Space/__Snapshots__/OUDSTokensSpaceUITests/testFixedSpacing-using-theme-interfaceStyle-colorScheme.Orange_spaceFixedTaller_Dark.png differ diff --git a/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensDimensionUITests/Space/__Snapshots__/OUDSTokensSpaceUITests/testFixedSpacing-using-theme-interfaceStyle-colorScheme.Orange_spaceFixedTallest_Dark.png b/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensDimensionUITests/Space/__Snapshots__/OUDSTokensSpaceUITests/testFixedSpacing-using-theme-interfaceStyle-colorScheme.Orange_spaceFixedTallest_Dark.png index dc0de56a4..c293d9f0a 100644 Binary files a/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensDimensionUITests/Space/__Snapshots__/OUDSTokensSpaceUITests/testFixedSpacing-using-theme-interfaceStyle-colorScheme.Orange_spaceFixedTallest_Dark.png and b/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensDimensionUITests/Space/__Snapshots__/OUDSTokensSpaceUITests/testFixedSpacing-using-theme-interfaceStyle-colorScheme.Orange_spaceFixedTallest_Dark.png differ diff --git a/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensDimensionUITests/Space/__Snapshots__/OUDSTokensSpaceUITests/testGapInline-using-theme-interfaceStyle-colorScheme.Orange_spaceColumnGapMedium_Dark.png b/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensDimensionUITests/Space/__Snapshots__/OUDSTokensSpaceUITests/testGapInline-using-theme-interfaceStyle-colorScheme.Orange_spaceColumnGapMedium_Dark.png index cb9e00c0c..c3d65d958 100644 Binary files a/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensDimensionUITests/Space/__Snapshots__/OUDSTokensSpaceUITests/testGapInline-using-theme-interfaceStyle-colorScheme.Orange_spaceColumnGapMedium_Dark.png and b/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensDimensionUITests/Space/__Snapshots__/OUDSTokensSpaceUITests/testGapInline-using-theme-interfaceStyle-colorScheme.Orange_spaceColumnGapMedium_Dark.png differ diff --git a/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensDimensionUITests/Space/__Snapshots__/OUDSTokensSpaceUITests/testGapInline-using-theme-interfaceStyle-colorScheme.Orange_spaceColumnGapNone_Dark.png b/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensDimensionUITests/Space/__Snapshots__/OUDSTokensSpaceUITests/testGapInline-using-theme-interfaceStyle-colorScheme.Orange_spaceColumnGapNone_Dark.png index cbefc4082..6b4129b4c 100644 Binary files a/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensDimensionUITests/Space/__Snapshots__/OUDSTokensSpaceUITests/testGapInline-using-theme-interfaceStyle-colorScheme.Orange_spaceColumnGapNone_Dark.png and b/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensDimensionUITests/Space/__Snapshots__/OUDSTokensSpaceUITests/testGapInline-using-theme-interfaceStyle-colorScheme.Orange_spaceColumnGapNone_Dark.png differ diff --git a/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensDimensionUITests/Space/__Snapshots__/OUDSTokensSpaceUITests/testGapInline-using-theme-interfaceStyle-colorScheme.Orange_spaceColumnGapShort_Dark.png b/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensDimensionUITests/Space/__Snapshots__/OUDSTokensSpaceUITests/testGapInline-using-theme-interfaceStyle-colorScheme.Orange_spaceColumnGapShort_Dark.png index 777197fc1..caabd1da5 100644 Binary files a/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensDimensionUITests/Space/__Snapshots__/OUDSTokensSpaceUITests/testGapInline-using-theme-interfaceStyle-colorScheme.Orange_spaceColumnGapShort_Dark.png and b/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensDimensionUITests/Space/__Snapshots__/OUDSTokensSpaceUITests/testGapInline-using-theme-interfaceStyle-colorScheme.Orange_spaceColumnGapShort_Dark.png differ diff --git a/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensDimensionUITests/Space/__Snapshots__/OUDSTokensSpaceUITests/testGapInline-using-theme-interfaceStyle-colorScheme.Orange_spaceColumnGapShorter_Dark.png b/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensDimensionUITests/Space/__Snapshots__/OUDSTokensSpaceUITests/testGapInline-using-theme-interfaceStyle-colorScheme.Orange_spaceColumnGapShorter_Dark.png index dadf9a798..ead52583b 100644 Binary files a/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensDimensionUITests/Space/__Snapshots__/OUDSTokensSpaceUITests/testGapInline-using-theme-interfaceStyle-colorScheme.Orange_spaceColumnGapShorter_Dark.png and b/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensDimensionUITests/Space/__Snapshots__/OUDSTokensSpaceUITests/testGapInline-using-theme-interfaceStyle-colorScheme.Orange_spaceColumnGapShorter_Dark.png differ diff --git a/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensDimensionUITests/Space/__Snapshots__/OUDSTokensSpaceUITests/testGapInline-using-theme-interfaceStyle-colorScheme.Orange_spaceColumnGapTall_Dark.png b/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensDimensionUITests/Space/__Snapshots__/OUDSTokensSpaceUITests/testGapInline-using-theme-interfaceStyle-colorScheme.Orange_spaceColumnGapTall_Dark.png index 9605ae179..0ea2534ed 100644 Binary files a/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensDimensionUITests/Space/__Snapshots__/OUDSTokensSpaceUITests/testGapInline-using-theme-interfaceStyle-colorScheme.Orange_spaceColumnGapTall_Dark.png and b/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensDimensionUITests/Space/__Snapshots__/OUDSTokensSpaceUITests/testGapInline-using-theme-interfaceStyle-colorScheme.Orange_spaceColumnGapTall_Dark.png differ diff --git a/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensDimensionUITests/Space/__Snapshots__/OUDSTokensSpaceUITests/testGapInline-using-theme-interfaceStyle-colorScheme.Orange_spaceColumnGapTaller_Dark.png b/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensDimensionUITests/Space/__Snapshots__/OUDSTokensSpaceUITests/testGapInline-using-theme-interfaceStyle-colorScheme.Orange_spaceColumnGapTaller_Dark.png index b4f1be03d..5c3b9b151 100644 Binary files a/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensDimensionUITests/Space/__Snapshots__/OUDSTokensSpaceUITests/testGapInline-using-theme-interfaceStyle-colorScheme.Orange_spaceColumnGapTaller_Dark.png and b/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensDimensionUITests/Space/__Snapshots__/OUDSTokensSpaceUITests/testGapInline-using-theme-interfaceStyle-colorScheme.Orange_spaceColumnGapTaller_Dark.png differ diff --git a/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensDimensionUITests/Space/__Snapshots__/OUDSTokensSpaceUITests/testGapStack-using-theme-interfaceStyle-colorScheme.Orange_spaceRowGapMedium_Dark.png b/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensDimensionUITests/Space/__Snapshots__/OUDSTokensSpaceUITests/testGapStack-using-theme-interfaceStyle-colorScheme.Orange_spaceRowGapMedium_Dark.png index 07916df22..1bdcef469 100644 Binary files a/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensDimensionUITests/Space/__Snapshots__/OUDSTokensSpaceUITests/testGapStack-using-theme-interfaceStyle-colorScheme.Orange_spaceRowGapMedium_Dark.png and b/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensDimensionUITests/Space/__Snapshots__/OUDSTokensSpaceUITests/testGapStack-using-theme-interfaceStyle-colorScheme.Orange_spaceRowGapMedium_Dark.png differ diff --git a/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensDimensionUITests/Space/__Snapshots__/OUDSTokensSpaceUITests/testGapStack-using-theme-interfaceStyle-colorScheme.Orange_spaceRowGapNone_Dark.png b/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensDimensionUITests/Space/__Snapshots__/OUDSTokensSpaceUITests/testGapStack-using-theme-interfaceStyle-colorScheme.Orange_spaceRowGapNone_Dark.png index 574b7f499..c43f8780b 100644 Binary files a/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensDimensionUITests/Space/__Snapshots__/OUDSTokensSpaceUITests/testGapStack-using-theme-interfaceStyle-colorScheme.Orange_spaceRowGapNone_Dark.png and b/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensDimensionUITests/Space/__Snapshots__/OUDSTokensSpaceUITests/testGapStack-using-theme-interfaceStyle-colorScheme.Orange_spaceRowGapNone_Dark.png differ diff --git a/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensDimensionUITests/Space/__Snapshots__/OUDSTokensSpaceUITests/testGapStack-using-theme-interfaceStyle-colorScheme.Orange_spaceRowGapShort_Dark.png b/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensDimensionUITests/Space/__Snapshots__/OUDSTokensSpaceUITests/testGapStack-using-theme-interfaceStyle-colorScheme.Orange_spaceRowGapShort_Dark.png index a1e4ca26d..3a5c85b9d 100644 Binary files a/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensDimensionUITests/Space/__Snapshots__/OUDSTokensSpaceUITests/testGapStack-using-theme-interfaceStyle-colorScheme.Orange_spaceRowGapShort_Dark.png and b/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensDimensionUITests/Space/__Snapshots__/OUDSTokensSpaceUITests/testGapStack-using-theme-interfaceStyle-colorScheme.Orange_spaceRowGapShort_Dark.png differ diff --git a/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensDimensionUITests/Space/__Snapshots__/OUDSTokensSpaceUITests/testGapStack-using-theme-interfaceStyle-colorScheme.Orange_spaceRowGapShorter_Dark.png b/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensDimensionUITests/Space/__Snapshots__/OUDSTokensSpaceUITests/testGapStack-using-theme-interfaceStyle-colorScheme.Orange_spaceRowGapShorter_Dark.png index 0aad9de4f..976012f3b 100644 Binary files a/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensDimensionUITests/Space/__Snapshots__/OUDSTokensSpaceUITests/testGapStack-using-theme-interfaceStyle-colorScheme.Orange_spaceRowGapShorter_Dark.png and b/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensDimensionUITests/Space/__Snapshots__/OUDSTokensSpaceUITests/testGapStack-using-theme-interfaceStyle-colorScheme.Orange_spaceRowGapShorter_Dark.png differ diff --git a/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensDimensionUITests/Space/__Snapshots__/OUDSTokensSpaceUITests/testGapStack-using-theme-interfaceStyle-colorScheme.Orange_spaceRowGapShortest_Dark.png b/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensDimensionUITests/Space/__Snapshots__/OUDSTokensSpaceUITests/testGapStack-using-theme-interfaceStyle-colorScheme.Orange_spaceRowGapShortest_Dark.png index 88f7d66d3..28efa6fa1 100644 Binary files a/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensDimensionUITests/Space/__Snapshots__/OUDSTokensSpaceUITests/testGapStack-using-theme-interfaceStyle-colorScheme.Orange_spaceRowGapShortest_Dark.png and b/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensDimensionUITests/Space/__Snapshots__/OUDSTokensSpaceUITests/testGapStack-using-theme-interfaceStyle-colorScheme.Orange_spaceRowGapShortest_Dark.png differ diff --git a/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensDimensionUITests/Space/__Snapshots__/OUDSTokensSpaceUITests/testGapStack-using-theme-interfaceStyle-colorScheme.Orange_spaceRowGapTall_Dark.png b/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensDimensionUITests/Space/__Snapshots__/OUDSTokensSpaceUITests/testGapStack-using-theme-interfaceStyle-colorScheme.Orange_spaceRowGapTall_Dark.png index 3080435d2..899887d04 100644 Binary files a/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensDimensionUITests/Space/__Snapshots__/OUDSTokensSpaceUITests/testGapStack-using-theme-interfaceStyle-colorScheme.Orange_spaceRowGapTall_Dark.png and b/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensDimensionUITests/Space/__Snapshots__/OUDSTokensSpaceUITests/testGapStack-using-theme-interfaceStyle-colorScheme.Orange_spaceRowGapTall_Dark.png differ diff --git a/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensDimensionUITests/Space/__Snapshots__/OUDSTokensSpaceUITests/testPaddingInline-using-theme-interfaceStyle-colorScheme.Orange_spacePaddingInlineMedium_Dark.png b/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensDimensionUITests/Space/__Snapshots__/OUDSTokensSpaceUITests/testPaddingInline-using-theme-interfaceStyle-colorScheme.Orange_spacePaddingInlineMedium_Dark.png index c679e1058..76be7a4ae 100644 Binary files a/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensDimensionUITests/Space/__Snapshots__/OUDSTokensSpaceUITests/testPaddingInline-using-theme-interfaceStyle-colorScheme.Orange_spacePaddingInlineMedium_Dark.png and b/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensDimensionUITests/Space/__Snapshots__/OUDSTokensSpaceUITests/testPaddingInline-using-theme-interfaceStyle-colorScheme.Orange_spacePaddingInlineMedium_Dark.png differ diff --git a/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensDimensionUITests/Space/__Snapshots__/OUDSTokensSpaceUITests/testPaddingInline-using-theme-interfaceStyle-colorScheme.Orange_spacePaddingInlineNone_Dark.png b/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensDimensionUITests/Space/__Snapshots__/OUDSTokensSpaceUITests/testPaddingInline-using-theme-interfaceStyle-colorScheme.Orange_spacePaddingInlineNone_Dark.png index 5eaafd4b9..5d5e5e652 100644 Binary files a/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensDimensionUITests/Space/__Snapshots__/OUDSTokensSpaceUITests/testPaddingInline-using-theme-interfaceStyle-colorScheme.Orange_spacePaddingInlineNone_Dark.png and b/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensDimensionUITests/Space/__Snapshots__/OUDSTokensSpaceUITests/testPaddingInline-using-theme-interfaceStyle-colorScheme.Orange_spacePaddingInlineNone_Dark.png differ diff --git a/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensDimensionUITests/Space/__Snapshots__/OUDSTokensSpaceUITests/testPaddingInline-using-theme-interfaceStyle-colorScheme.Orange_spacePaddingInlineShort_Dark.png b/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensDimensionUITests/Space/__Snapshots__/OUDSTokensSpaceUITests/testPaddingInline-using-theme-interfaceStyle-colorScheme.Orange_spacePaddingInlineShort_Dark.png index 86a324153..972cc82be 100644 Binary files a/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensDimensionUITests/Space/__Snapshots__/OUDSTokensSpaceUITests/testPaddingInline-using-theme-interfaceStyle-colorScheme.Orange_spacePaddingInlineShort_Dark.png and b/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensDimensionUITests/Space/__Snapshots__/OUDSTokensSpaceUITests/testPaddingInline-using-theme-interfaceStyle-colorScheme.Orange_spacePaddingInlineShort_Dark.png differ diff --git a/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensDimensionUITests/Space/__Snapshots__/OUDSTokensSpaceUITests/testPaddingInline-using-theme-interfaceStyle-colorScheme.Orange_spacePaddingInlineShorter_Dark.png b/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensDimensionUITests/Space/__Snapshots__/OUDSTokensSpaceUITests/testPaddingInline-using-theme-interfaceStyle-colorScheme.Orange_spacePaddingInlineShorter_Dark.png index d48782f0d..cc17e986e 100644 Binary files a/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensDimensionUITests/Space/__Snapshots__/OUDSTokensSpaceUITests/testPaddingInline-using-theme-interfaceStyle-colorScheme.Orange_spacePaddingInlineShorter_Dark.png and b/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensDimensionUITests/Space/__Snapshots__/OUDSTokensSpaceUITests/testPaddingInline-using-theme-interfaceStyle-colorScheme.Orange_spacePaddingInlineShorter_Dark.png differ diff --git a/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensDimensionUITests/Space/__Snapshots__/OUDSTokensSpaceUITests/testPaddingInline-using-theme-interfaceStyle-colorScheme.Orange_spacePaddingInlineTall_Dark.png b/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensDimensionUITests/Space/__Snapshots__/OUDSTokensSpaceUITests/testPaddingInline-using-theme-interfaceStyle-colorScheme.Orange_spacePaddingInlineTall_Dark.png index 396e4c96a..12c263f74 100644 Binary files a/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensDimensionUITests/Space/__Snapshots__/OUDSTokensSpaceUITests/testPaddingInline-using-theme-interfaceStyle-colorScheme.Orange_spacePaddingInlineTall_Dark.png and b/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensDimensionUITests/Space/__Snapshots__/OUDSTokensSpaceUITests/testPaddingInline-using-theme-interfaceStyle-colorScheme.Orange_spacePaddingInlineTall_Dark.png differ diff --git a/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensDimensionUITests/Space/__Snapshots__/OUDSTokensSpaceUITests/testPaddingInline-using-theme-interfaceStyle-colorScheme.Orange_spacePaddingInlineTaller_Dark.png b/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensDimensionUITests/Space/__Snapshots__/OUDSTokensSpaceUITests/testPaddingInline-using-theme-interfaceStyle-colorScheme.Orange_spacePaddingInlineTaller_Dark.png index 481ba6342..dd655bd1c 100644 Binary files a/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensDimensionUITests/Space/__Snapshots__/OUDSTokensSpaceUITests/testPaddingInline-using-theme-interfaceStyle-colorScheme.Orange_spacePaddingInlineTaller_Dark.png and b/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensDimensionUITests/Space/__Snapshots__/OUDSTokensSpaceUITests/testPaddingInline-using-theme-interfaceStyle-colorScheme.Orange_spacePaddingInlineTaller_Dark.png differ diff --git a/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensDimensionUITests/Space/__Snapshots__/OUDSTokensSpaceUITests/testPaddingInline-using-theme-interfaceStyle-colorScheme.Orange_spacePaddingInlineTallest_Dark.png b/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensDimensionUITests/Space/__Snapshots__/OUDSTokensSpaceUITests/testPaddingInline-using-theme-interfaceStyle-colorScheme.Orange_spacePaddingInlineTallest_Dark.png index d48a82c18..2ea5b9d09 100644 Binary files a/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensDimensionUITests/Space/__Snapshots__/OUDSTokensSpaceUITests/testPaddingInline-using-theme-interfaceStyle-colorScheme.Orange_spacePaddingInlineTallest_Dark.png and b/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensDimensionUITests/Space/__Snapshots__/OUDSTokensSpaceUITests/testPaddingInline-using-theme-interfaceStyle-colorScheme.Orange_spacePaddingInlineTallest_Dark.png differ diff --git a/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensDimensionUITests/Space/__Snapshots__/OUDSTokensSpaceUITests/testPaddingInlineWithArrow-using-theme-interfaceStyle-colorScheme.Orange_spacePaddingInlineWithArrowMedium_Dark.png b/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensDimensionUITests/Space/__Snapshots__/OUDSTokensSpaceUITests/testPaddingInlineWithArrow-using-theme-interfaceStyle-colorScheme.Orange_spacePaddingInlineWithArrowMedium_Dark.png index 2e573232f..1c5c2346a 100644 Binary files a/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensDimensionUITests/Space/__Snapshots__/OUDSTokensSpaceUITests/testPaddingInlineWithArrow-using-theme-interfaceStyle-colorScheme.Orange_spacePaddingInlineWithArrowMedium_Dark.png and b/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensDimensionUITests/Space/__Snapshots__/OUDSTokensSpaceUITests/testPaddingInlineWithArrow-using-theme-interfaceStyle-colorScheme.Orange_spacePaddingInlineWithArrowMedium_Dark.png differ diff --git a/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensDimensionUITests/Space/__Snapshots__/OUDSTokensSpaceUITests/testPaddingInlineWithArrow-using-theme-interfaceStyle-colorScheme.Orange_spacePaddingInlineWithArrowNone_Dark.png b/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensDimensionUITests/Space/__Snapshots__/OUDSTokensSpaceUITests/testPaddingInlineWithArrow-using-theme-interfaceStyle-colorScheme.Orange_spacePaddingInlineWithArrowNone_Dark.png index 40484f049..77f17c5ee 100644 Binary files a/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensDimensionUITests/Space/__Snapshots__/OUDSTokensSpaceUITests/testPaddingInlineWithArrow-using-theme-interfaceStyle-colorScheme.Orange_spacePaddingInlineWithArrowNone_Dark.png and b/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensDimensionUITests/Space/__Snapshots__/OUDSTokensSpaceUITests/testPaddingInlineWithArrow-using-theme-interfaceStyle-colorScheme.Orange_spacePaddingInlineWithArrowNone_Dark.png differ diff --git a/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensDimensionUITests/Space/__Snapshots__/OUDSTokensSpaceUITests/testPaddingInlineWithArrow-using-theme-interfaceStyle-colorScheme.Orange_spacePaddingInlineWithArrowShort_Dark.png b/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensDimensionUITests/Space/__Snapshots__/OUDSTokensSpaceUITests/testPaddingInlineWithArrow-using-theme-interfaceStyle-colorScheme.Orange_spacePaddingInlineWithArrowShort_Dark.png index 7d2dad38b..2d34e553f 100644 Binary files a/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensDimensionUITests/Space/__Snapshots__/OUDSTokensSpaceUITests/testPaddingInlineWithArrow-using-theme-interfaceStyle-colorScheme.Orange_spacePaddingInlineWithArrowShort_Dark.png and b/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensDimensionUITests/Space/__Snapshots__/OUDSTokensSpaceUITests/testPaddingInlineWithArrow-using-theme-interfaceStyle-colorScheme.Orange_spacePaddingInlineWithArrowShort_Dark.png differ diff --git a/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensDimensionUITests/Space/__Snapshots__/OUDSTokensSpaceUITests/testPaddingInlineWithArrow-using-theme-interfaceStyle-colorScheme.Orange_spacePaddingInlineWithArrowShorter_Dark.png b/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensDimensionUITests/Space/__Snapshots__/OUDSTokensSpaceUITests/testPaddingInlineWithArrow-using-theme-interfaceStyle-colorScheme.Orange_spacePaddingInlineWithArrowShorter_Dark.png index e29ab84d8..14d7f982e 100644 Binary files a/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensDimensionUITests/Space/__Snapshots__/OUDSTokensSpaceUITests/testPaddingInlineWithArrow-using-theme-interfaceStyle-colorScheme.Orange_spacePaddingInlineWithArrowShorter_Dark.png and b/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensDimensionUITests/Space/__Snapshots__/OUDSTokensSpaceUITests/testPaddingInlineWithArrow-using-theme-interfaceStyle-colorScheme.Orange_spacePaddingInlineWithArrowShorter_Dark.png differ diff --git a/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensDimensionUITests/Space/__Snapshots__/OUDSTokensSpaceUITests/testPaddingInlineWithArrow-using-theme-interfaceStyle-colorScheme.Orange_spacePaddingInlineWithArrowShortest_Dark.png b/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensDimensionUITests/Space/__Snapshots__/OUDSTokensSpaceUITests/testPaddingInlineWithArrow-using-theme-interfaceStyle-colorScheme.Orange_spacePaddingInlineWithArrowShortest_Dark.png index ce247294c..2ed899a90 100644 Binary files a/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensDimensionUITests/Space/__Snapshots__/OUDSTokensSpaceUITests/testPaddingInlineWithArrow-using-theme-interfaceStyle-colorScheme.Orange_spacePaddingInlineWithArrowShortest_Dark.png and b/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensDimensionUITests/Space/__Snapshots__/OUDSTokensSpaceUITests/testPaddingInlineWithArrow-using-theme-interfaceStyle-colorScheme.Orange_spacePaddingInlineWithArrowShortest_Dark.png differ diff --git a/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensDimensionUITests/Space/__Snapshots__/OUDSTokensSpaceUITests/testPaddingInlineWithArrow-using-theme-interfaceStyle-colorScheme.Orange_spacePaddingInlineWithArrowTall_Dark.png b/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensDimensionUITests/Space/__Snapshots__/OUDSTokensSpaceUITests/testPaddingInlineWithArrow-using-theme-interfaceStyle-colorScheme.Orange_spacePaddingInlineWithArrowTall_Dark.png index 6c75ada4f..58acbb3ca 100644 Binary files a/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensDimensionUITests/Space/__Snapshots__/OUDSTokensSpaceUITests/testPaddingInlineWithArrow-using-theme-interfaceStyle-colorScheme.Orange_spacePaddingInlineWithArrowTall_Dark.png and b/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensDimensionUITests/Space/__Snapshots__/OUDSTokensSpaceUITests/testPaddingInlineWithArrow-using-theme-interfaceStyle-colorScheme.Orange_spacePaddingInlineWithArrowTall_Dark.png differ diff --git a/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensDimensionUITests/Space/__Snapshots__/OUDSTokensSpaceUITests/testPaddingInlineWithArrow-using-theme-interfaceStyle-colorScheme.Orange_spacePaddingInlineWithArrowTaller_Dark.png b/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensDimensionUITests/Space/__Snapshots__/OUDSTokensSpaceUITests/testPaddingInlineWithArrow-using-theme-interfaceStyle-colorScheme.Orange_spacePaddingInlineWithArrowTaller_Dark.png index c86cd725d..9591d0bdf 100644 Binary files a/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensDimensionUITests/Space/__Snapshots__/OUDSTokensSpaceUITests/testPaddingInlineWithArrow-using-theme-interfaceStyle-colorScheme.Orange_spacePaddingInlineWithArrowTaller_Dark.png and b/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensDimensionUITests/Space/__Snapshots__/OUDSTokensSpaceUITests/testPaddingInlineWithArrow-using-theme-interfaceStyle-colorScheme.Orange_spacePaddingInlineWithArrowTaller_Dark.png differ diff --git a/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensDimensionUITests/Space/__Snapshots__/OUDSTokensSpaceUITests/testPaddingInlineWithArrow-using-theme-interfaceStyle-colorScheme.Orange_spacePaddingInlineWithArrowTallest_Dark.png b/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensDimensionUITests/Space/__Snapshots__/OUDSTokensSpaceUITests/testPaddingInlineWithArrow-using-theme-interfaceStyle-colorScheme.Orange_spacePaddingInlineWithArrowTallest_Dark.png index c6f1c5052..bffb26699 100644 Binary files a/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensDimensionUITests/Space/__Snapshots__/OUDSTokensSpaceUITests/testPaddingInlineWithArrow-using-theme-interfaceStyle-colorScheme.Orange_spacePaddingInlineWithArrowTallest_Dark.png and b/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensDimensionUITests/Space/__Snapshots__/OUDSTokensSpaceUITests/testPaddingInlineWithArrow-using-theme-interfaceStyle-colorScheme.Orange_spacePaddingInlineWithArrowTallest_Dark.png differ diff --git a/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensDimensionUITests/Space/__Snapshots__/OUDSTokensSpaceUITests/testPaddingInlineWithIcon-using-theme-interfaceStyle-colorScheme.Orange_spacePaddingInlineWithIconMedium_Dark.png b/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensDimensionUITests/Space/__Snapshots__/OUDSTokensSpaceUITests/testPaddingInlineWithIcon-using-theme-interfaceStyle-colorScheme.Orange_spacePaddingInlineWithIconMedium_Dark.png index daf10453d..101f17ce4 100644 Binary files a/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensDimensionUITests/Space/__Snapshots__/OUDSTokensSpaceUITests/testPaddingInlineWithIcon-using-theme-interfaceStyle-colorScheme.Orange_spacePaddingInlineWithIconMedium_Dark.png and b/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensDimensionUITests/Space/__Snapshots__/OUDSTokensSpaceUITests/testPaddingInlineWithIcon-using-theme-interfaceStyle-colorScheme.Orange_spacePaddingInlineWithIconMedium_Dark.png differ diff --git a/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensDimensionUITests/Space/__Snapshots__/OUDSTokensSpaceUITests/testPaddingInlineWithIcon-using-theme-interfaceStyle-colorScheme.Orange_spacePaddingInlineWithIconNone_Dark.png b/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensDimensionUITests/Space/__Snapshots__/OUDSTokensSpaceUITests/testPaddingInlineWithIcon-using-theme-interfaceStyle-colorScheme.Orange_spacePaddingInlineWithIconNone_Dark.png index 80fcbc7ac..deed92905 100644 Binary files a/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensDimensionUITests/Space/__Snapshots__/OUDSTokensSpaceUITests/testPaddingInlineWithIcon-using-theme-interfaceStyle-colorScheme.Orange_spacePaddingInlineWithIconNone_Dark.png and b/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensDimensionUITests/Space/__Snapshots__/OUDSTokensSpaceUITests/testPaddingInlineWithIcon-using-theme-interfaceStyle-colorScheme.Orange_spacePaddingInlineWithIconNone_Dark.png differ diff --git a/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensDimensionUITests/Space/__Snapshots__/OUDSTokensSpaceUITests/testPaddingInlineWithIcon-using-theme-interfaceStyle-colorScheme.Orange_spacePaddingInlineWithIconShort_Dark.png b/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensDimensionUITests/Space/__Snapshots__/OUDSTokensSpaceUITests/testPaddingInlineWithIcon-using-theme-interfaceStyle-colorScheme.Orange_spacePaddingInlineWithIconShort_Dark.png index c9e529b54..158d2909f 100644 Binary files a/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensDimensionUITests/Space/__Snapshots__/OUDSTokensSpaceUITests/testPaddingInlineWithIcon-using-theme-interfaceStyle-colorScheme.Orange_spacePaddingInlineWithIconShort_Dark.png and b/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensDimensionUITests/Space/__Snapshots__/OUDSTokensSpaceUITests/testPaddingInlineWithIcon-using-theme-interfaceStyle-colorScheme.Orange_spacePaddingInlineWithIconShort_Dark.png differ diff --git a/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensDimensionUITests/Space/__Snapshots__/OUDSTokensSpaceUITests/testPaddingInlineWithIcon-using-theme-interfaceStyle-colorScheme.Orange_spacePaddingInlineWithIconShorter_Dark.png b/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensDimensionUITests/Space/__Snapshots__/OUDSTokensSpaceUITests/testPaddingInlineWithIcon-using-theme-interfaceStyle-colorScheme.Orange_spacePaddingInlineWithIconShorter_Dark.png index 7be76570a..6322945d5 100644 Binary files a/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensDimensionUITests/Space/__Snapshots__/OUDSTokensSpaceUITests/testPaddingInlineWithIcon-using-theme-interfaceStyle-colorScheme.Orange_spacePaddingInlineWithIconShorter_Dark.png and b/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensDimensionUITests/Space/__Snapshots__/OUDSTokensSpaceUITests/testPaddingInlineWithIcon-using-theme-interfaceStyle-colorScheme.Orange_spacePaddingInlineWithIconShorter_Dark.png differ diff --git a/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensDimensionUITests/Space/__Snapshots__/OUDSTokensSpaceUITests/testPaddingInlineWithIcon-using-theme-interfaceStyle-colorScheme.Orange_spacePaddingInlineWithIconShortest_Dark.png b/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensDimensionUITests/Space/__Snapshots__/OUDSTokensSpaceUITests/testPaddingInlineWithIcon-using-theme-interfaceStyle-colorScheme.Orange_spacePaddingInlineWithIconShortest_Dark.png index 75403397f..73c3ace4f 100644 Binary files a/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensDimensionUITests/Space/__Snapshots__/OUDSTokensSpaceUITests/testPaddingInlineWithIcon-using-theme-interfaceStyle-colorScheme.Orange_spacePaddingInlineWithIconShortest_Dark.png and b/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensDimensionUITests/Space/__Snapshots__/OUDSTokensSpaceUITests/testPaddingInlineWithIcon-using-theme-interfaceStyle-colorScheme.Orange_spacePaddingInlineWithIconShortest_Dark.png differ diff --git a/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensDimensionUITests/Space/__Snapshots__/OUDSTokensSpaceUITests/testPaddingInlineWithIcon-using-theme-interfaceStyle-colorScheme.Orange_spacePaddingInlineWithIconTall_Dark.png b/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensDimensionUITests/Space/__Snapshots__/OUDSTokensSpaceUITests/testPaddingInlineWithIcon-using-theme-interfaceStyle-colorScheme.Orange_spacePaddingInlineWithIconTall_Dark.png index 055ce3462..d2baaa04e 100644 Binary files a/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensDimensionUITests/Space/__Snapshots__/OUDSTokensSpaceUITests/testPaddingInlineWithIcon-using-theme-interfaceStyle-colorScheme.Orange_spacePaddingInlineWithIconTall_Dark.png and b/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensDimensionUITests/Space/__Snapshots__/OUDSTokensSpaceUITests/testPaddingInlineWithIcon-using-theme-interfaceStyle-colorScheme.Orange_spacePaddingInlineWithIconTall_Dark.png differ diff --git a/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensDimensionUITests/Space/__Snapshots__/OUDSTokensSpaceUITests/testPaddingInlineWithIcon-using-theme-interfaceStyle-colorScheme.Orange_spacePaddingInlineWithIconTaller_Dark.png b/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensDimensionUITests/Space/__Snapshots__/OUDSTokensSpaceUITests/testPaddingInlineWithIcon-using-theme-interfaceStyle-colorScheme.Orange_spacePaddingInlineWithIconTaller_Dark.png index 94cc43f2c..794666b3b 100644 Binary files a/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensDimensionUITests/Space/__Snapshots__/OUDSTokensSpaceUITests/testPaddingInlineWithIcon-using-theme-interfaceStyle-colorScheme.Orange_spacePaddingInlineWithIconTaller_Dark.png and b/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensDimensionUITests/Space/__Snapshots__/OUDSTokensSpaceUITests/testPaddingInlineWithIcon-using-theme-interfaceStyle-colorScheme.Orange_spacePaddingInlineWithIconTaller_Dark.png differ diff --git a/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensDimensionUITests/Space/__Snapshots__/OUDSTokensSpaceUITests/testPaddingInlineWithIcon-using-theme-interfaceStyle-colorScheme.Orange_spacePaddingInlineWithIconTallest_Dark.png b/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensDimensionUITests/Space/__Snapshots__/OUDSTokensSpaceUITests/testPaddingInlineWithIcon-using-theme-interfaceStyle-colorScheme.Orange_spacePaddingInlineWithIconTallest_Dark.png index 5e62b8db6..2a59022b0 100644 Binary files a/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensDimensionUITests/Space/__Snapshots__/OUDSTokensSpaceUITests/testPaddingInlineWithIcon-using-theme-interfaceStyle-colorScheme.Orange_spacePaddingInlineWithIconTallest_Dark.png and b/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensDimensionUITests/Space/__Snapshots__/OUDSTokensSpaceUITests/testPaddingInlineWithIcon-using-theme-interfaceStyle-colorScheme.Orange_spacePaddingInlineWithIconTallest_Dark.png differ diff --git a/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensDimensionUITests/Space/__Snapshots__/OUDSTokensSpaceUITests/testPaddingInset-using-theme-interfaceStyle-colorScheme.Orange_spaceInsetMedium_Dark.png b/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensDimensionUITests/Space/__Snapshots__/OUDSTokensSpaceUITests/testPaddingInset-using-theme-interfaceStyle-colorScheme.Orange_spaceInsetMedium_Dark.png index a59b785fb..a0a535df2 100644 Binary files a/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensDimensionUITests/Space/__Snapshots__/OUDSTokensSpaceUITests/testPaddingInset-using-theme-interfaceStyle-colorScheme.Orange_spaceInsetMedium_Dark.png and b/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensDimensionUITests/Space/__Snapshots__/OUDSTokensSpaceUITests/testPaddingInset-using-theme-interfaceStyle-colorScheme.Orange_spaceInsetMedium_Dark.png differ diff --git a/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensDimensionUITests/Space/__Snapshots__/OUDSTokensSpaceUITests/testPaddingInset-using-theme-interfaceStyle-colorScheme.Orange_spaceInsetNone_Dark.png b/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensDimensionUITests/Space/__Snapshots__/OUDSTokensSpaceUITests/testPaddingInset-using-theme-interfaceStyle-colorScheme.Orange_spaceInsetNone_Dark.png index a2603c87c..b5dd66d15 100644 Binary files a/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensDimensionUITests/Space/__Snapshots__/OUDSTokensSpaceUITests/testPaddingInset-using-theme-interfaceStyle-colorScheme.Orange_spaceInsetNone_Dark.png and b/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensDimensionUITests/Space/__Snapshots__/OUDSTokensSpaceUITests/testPaddingInset-using-theme-interfaceStyle-colorScheme.Orange_spaceInsetNone_Dark.png differ diff --git a/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensDimensionUITests/Space/__Snapshots__/OUDSTokensSpaceUITests/testPaddingInset-using-theme-interfaceStyle-colorScheme.Orange_spaceInsetShort_Dark.png b/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensDimensionUITests/Space/__Snapshots__/OUDSTokensSpaceUITests/testPaddingInset-using-theme-interfaceStyle-colorScheme.Orange_spaceInsetShort_Dark.png index 95473c74a..af5e581b5 100644 Binary files a/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensDimensionUITests/Space/__Snapshots__/OUDSTokensSpaceUITests/testPaddingInset-using-theme-interfaceStyle-colorScheme.Orange_spaceInsetShort_Dark.png and b/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensDimensionUITests/Space/__Snapshots__/OUDSTokensSpaceUITests/testPaddingInset-using-theme-interfaceStyle-colorScheme.Orange_spaceInsetShort_Dark.png differ diff --git a/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensDimensionUITests/Space/__Snapshots__/OUDSTokensSpaceUITests/testPaddingInset-using-theme-interfaceStyle-colorScheme.Orange_spaceInsetShorter_Dark.png b/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensDimensionUITests/Space/__Snapshots__/OUDSTokensSpaceUITests/testPaddingInset-using-theme-interfaceStyle-colorScheme.Orange_spaceInsetShorter_Dark.png index fb955d9e5..0dfb9518c 100644 Binary files a/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensDimensionUITests/Space/__Snapshots__/OUDSTokensSpaceUITests/testPaddingInset-using-theme-interfaceStyle-colorScheme.Orange_spaceInsetShorter_Dark.png and b/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensDimensionUITests/Space/__Snapshots__/OUDSTokensSpaceUITests/testPaddingInset-using-theme-interfaceStyle-colorScheme.Orange_spaceInsetShorter_Dark.png differ diff --git a/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensDimensionUITests/Space/__Snapshots__/OUDSTokensSpaceUITests/testPaddingInset-using-theme-interfaceStyle-colorScheme.Orange_spaceInsetShortest_Dark.png b/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensDimensionUITests/Space/__Snapshots__/OUDSTokensSpaceUITests/testPaddingInset-using-theme-interfaceStyle-colorScheme.Orange_spaceInsetShortest_Dark.png index 2ac29affe..e464d847a 100644 Binary files a/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensDimensionUITests/Space/__Snapshots__/OUDSTokensSpaceUITests/testPaddingInset-using-theme-interfaceStyle-colorScheme.Orange_spaceInsetShortest_Dark.png and b/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensDimensionUITests/Space/__Snapshots__/OUDSTokensSpaceUITests/testPaddingInset-using-theme-interfaceStyle-colorScheme.Orange_spaceInsetShortest_Dark.png differ diff --git a/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensDimensionUITests/Space/__Snapshots__/OUDSTokensSpaceUITests/testPaddingInset-using-theme-interfaceStyle-colorScheme.Orange_spaceInsetSmash_Dark.png b/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensDimensionUITests/Space/__Snapshots__/OUDSTokensSpaceUITests/testPaddingInset-using-theme-interfaceStyle-colorScheme.Orange_spaceInsetSmash_Dark.png index b7a93548b..387d6a04b 100644 Binary files a/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensDimensionUITests/Space/__Snapshots__/OUDSTokensSpaceUITests/testPaddingInset-using-theme-interfaceStyle-colorScheme.Orange_spaceInsetSmash_Dark.png and b/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensDimensionUITests/Space/__Snapshots__/OUDSTokensSpaceUITests/testPaddingInset-using-theme-interfaceStyle-colorScheme.Orange_spaceInsetSmash_Dark.png differ diff --git a/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensDimensionUITests/Space/__Snapshots__/OUDSTokensSpaceUITests/testPaddingInset-using-theme-interfaceStyle-colorScheme.Orange_spaceInsetSpacious_Dark.png b/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensDimensionUITests/Space/__Snapshots__/OUDSTokensSpaceUITests/testPaddingInset-using-theme-interfaceStyle-colorScheme.Orange_spaceInsetSpacious_Dark.png index ac63b6dae..caf6a6fe4 100644 Binary files a/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensDimensionUITests/Space/__Snapshots__/OUDSTokensSpaceUITests/testPaddingInset-using-theme-interfaceStyle-colorScheme.Orange_spaceInsetSpacious_Dark.png and b/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensDimensionUITests/Space/__Snapshots__/OUDSTokensSpaceUITests/testPaddingInset-using-theme-interfaceStyle-colorScheme.Orange_spaceInsetSpacious_Dark.png differ diff --git a/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensDimensionUITests/Space/__Snapshots__/OUDSTokensSpaceUITests/testPaddingInset-using-theme-interfaceStyle-colorScheme.Orange_spaceInsetTall_Dark.png b/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensDimensionUITests/Space/__Snapshots__/OUDSTokensSpaceUITests/testPaddingInset-using-theme-interfaceStyle-colorScheme.Orange_spaceInsetTall_Dark.png index 1cec8e27e..8f8a370a8 100644 Binary files a/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensDimensionUITests/Space/__Snapshots__/OUDSTokensSpaceUITests/testPaddingInset-using-theme-interfaceStyle-colorScheme.Orange_spaceInsetTall_Dark.png and b/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensDimensionUITests/Space/__Snapshots__/OUDSTokensSpaceUITests/testPaddingInset-using-theme-interfaceStyle-colorScheme.Orange_spaceInsetTall_Dark.png differ diff --git a/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensDimensionUITests/Space/__Snapshots__/OUDSTokensSpaceUITests/testPaddingInset-using-theme-interfaceStyle-colorScheme.Orange_spaceInsetTaller_Dark.png b/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensDimensionUITests/Space/__Snapshots__/OUDSTokensSpaceUITests/testPaddingInset-using-theme-interfaceStyle-colorScheme.Orange_spaceInsetTaller_Dark.png index 5fd3b4583..a604a2d9c 100644 Binary files a/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensDimensionUITests/Space/__Snapshots__/OUDSTokensSpaceUITests/testPaddingInset-using-theme-interfaceStyle-colorScheme.Orange_spaceInsetTaller_Dark.png and b/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensDimensionUITests/Space/__Snapshots__/OUDSTokensSpaceUITests/testPaddingInset-using-theme-interfaceStyle-colorScheme.Orange_spaceInsetTaller_Dark.png differ diff --git a/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensDimensionUITests/Space/__Snapshots__/OUDSTokensSpaceUITests/testPaddingInset-using-theme-interfaceStyle-colorScheme.Orange_spaceInsetTallest_Dark.png b/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensDimensionUITests/Space/__Snapshots__/OUDSTokensSpaceUITests/testPaddingInset-using-theme-interfaceStyle-colorScheme.Orange_spaceInsetTallest_Dark.png index 7e08178ac..b7af700cf 100644 Binary files a/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensDimensionUITests/Space/__Snapshots__/OUDSTokensSpaceUITests/testPaddingInset-using-theme-interfaceStyle-colorScheme.Orange_spaceInsetTallest_Dark.png and b/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensDimensionUITests/Space/__Snapshots__/OUDSTokensSpaceUITests/testPaddingInset-using-theme-interfaceStyle-colorScheme.Orange_spaceInsetTallest_Dark.png differ diff --git a/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensDimensionUITests/Space/__Snapshots__/OUDSTokensSpaceUITests/testPaddingStack-using-theme-interfaceStyle-colorScheme.Orange_spacePaddingBlockMedium_Dark.png b/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensDimensionUITests/Space/__Snapshots__/OUDSTokensSpaceUITests/testPaddingStack-using-theme-interfaceStyle-colorScheme.Orange_spacePaddingBlockMedium_Dark.png index 0edb18fa5..d5c12a9ea 100644 Binary files a/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensDimensionUITests/Space/__Snapshots__/OUDSTokensSpaceUITests/testPaddingStack-using-theme-interfaceStyle-colorScheme.Orange_spacePaddingBlockMedium_Dark.png and b/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensDimensionUITests/Space/__Snapshots__/OUDSTokensSpaceUITests/testPaddingStack-using-theme-interfaceStyle-colorScheme.Orange_spacePaddingBlockMedium_Dark.png differ diff --git a/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensDimensionUITests/Space/__Snapshots__/OUDSTokensSpaceUITests/testPaddingStack-using-theme-interfaceStyle-colorScheme.Orange_spacePaddingBlockNone_Dark.png b/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensDimensionUITests/Space/__Snapshots__/OUDSTokensSpaceUITests/testPaddingStack-using-theme-interfaceStyle-colorScheme.Orange_spacePaddingBlockNone_Dark.png index 3d4386301..10bbb3a4c 100644 Binary files a/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensDimensionUITests/Space/__Snapshots__/OUDSTokensSpaceUITests/testPaddingStack-using-theme-interfaceStyle-colorScheme.Orange_spacePaddingBlockNone_Dark.png and b/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensDimensionUITests/Space/__Snapshots__/OUDSTokensSpaceUITests/testPaddingStack-using-theme-interfaceStyle-colorScheme.Orange_spacePaddingBlockNone_Dark.png differ diff --git a/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensDimensionUITests/Space/__Snapshots__/OUDSTokensSpaceUITests/testPaddingStack-using-theme-interfaceStyle-colorScheme.Orange_spacePaddingBlockShort_Dark.png b/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensDimensionUITests/Space/__Snapshots__/OUDSTokensSpaceUITests/testPaddingStack-using-theme-interfaceStyle-colorScheme.Orange_spacePaddingBlockShort_Dark.png index 208a8e727..ff4500f07 100644 Binary files a/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensDimensionUITests/Space/__Snapshots__/OUDSTokensSpaceUITests/testPaddingStack-using-theme-interfaceStyle-colorScheme.Orange_spacePaddingBlockShort_Dark.png and b/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensDimensionUITests/Space/__Snapshots__/OUDSTokensSpaceUITests/testPaddingStack-using-theme-interfaceStyle-colorScheme.Orange_spacePaddingBlockShort_Dark.png differ diff --git a/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensDimensionUITests/Space/__Snapshots__/OUDSTokensSpaceUITests/testPaddingStack-using-theme-interfaceStyle-colorScheme.Orange_spacePaddingBlockShorter_Dark.png b/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensDimensionUITests/Space/__Snapshots__/OUDSTokensSpaceUITests/testPaddingStack-using-theme-interfaceStyle-colorScheme.Orange_spacePaddingBlockShorter_Dark.png index cbc110039..947bc0f7e 100644 Binary files a/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensDimensionUITests/Space/__Snapshots__/OUDSTokensSpaceUITests/testPaddingStack-using-theme-interfaceStyle-colorScheme.Orange_spacePaddingBlockShorter_Dark.png and b/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensDimensionUITests/Space/__Snapshots__/OUDSTokensSpaceUITests/testPaddingStack-using-theme-interfaceStyle-colorScheme.Orange_spacePaddingBlockShorter_Dark.png differ diff --git a/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensDimensionUITests/Space/__Snapshots__/OUDSTokensSpaceUITests/testPaddingStack-using-theme-interfaceStyle-colorScheme.Orange_spacePaddingBlockTall_Dark.png b/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensDimensionUITests/Space/__Snapshots__/OUDSTokensSpaceUITests/testPaddingStack-using-theme-interfaceStyle-colorScheme.Orange_spacePaddingBlockTall_Dark.png index 52fb18e20..ee4c34332 100644 Binary files a/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensDimensionUITests/Space/__Snapshots__/OUDSTokensSpaceUITests/testPaddingStack-using-theme-interfaceStyle-colorScheme.Orange_spacePaddingBlockTall_Dark.png and b/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensDimensionUITests/Space/__Snapshots__/OUDSTokensSpaceUITests/testPaddingStack-using-theme-interfaceStyle-colorScheme.Orange_spacePaddingBlockTall_Dark.png differ diff --git a/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensDimensionUITests/Space/__Snapshots__/OUDSTokensSpaceUITests/testPaddingStack-using-theme-interfaceStyle-colorScheme.Orange_spacePaddingBlockTaller_Dark.png b/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensDimensionUITests/Space/__Snapshots__/OUDSTokensSpaceUITests/testPaddingStack-using-theme-interfaceStyle-colorScheme.Orange_spacePaddingBlockTaller_Dark.png index 40d1fcaac..6a3f115aa 100644 Binary files a/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensDimensionUITests/Space/__Snapshots__/OUDSTokensSpaceUITests/testPaddingStack-using-theme-interfaceStyle-colorScheme.Orange_spacePaddingBlockTaller_Dark.png and b/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensDimensionUITests/Space/__Snapshots__/OUDSTokensSpaceUITests/testPaddingStack-using-theme-interfaceStyle-colorScheme.Orange_spacePaddingBlockTaller_Dark.png differ diff --git a/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensDimensionUITests/Space/__Snapshots__/OUDSTokensSpaceUITests/testPaddingStack-using-theme-interfaceStyle-colorScheme.Orange_spacePaddingBlockTallest_Dark.png b/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensDimensionUITests/Space/__Snapshots__/OUDSTokensSpaceUITests/testPaddingStack-using-theme-interfaceStyle-colorScheme.Orange_spacePaddingBlockTallest_Dark.png index 5fbcc3169..cc7fed0ff 100644 Binary files a/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensDimensionUITests/Space/__Snapshots__/OUDSTokensSpaceUITests/testPaddingStack-using-theme-interfaceStyle-colorScheme.Orange_spacePaddingBlockTallest_Dark.png and b/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensDimensionUITests/Space/__Snapshots__/OUDSTokensSpaceUITests/testPaddingStack-using-theme-interfaceStyle-colorScheme.Orange_spacePaddingBlockTallest_Dark.png differ diff --git a/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensDimensionUITests/Space/__Snapshots__/OUDSTokensSpaceUITests/testScaledSpaces-using-theme-interfaceStyle-colorScheme.Orange_spaceScaledMedium_Dark.png b/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensDimensionUITests/Space/__Snapshots__/OUDSTokensSpaceUITests/testScaledSpaces-using-theme-interfaceStyle-colorScheme.Orange_spaceScaledMedium_Dark.png index 8fff7377f..e469c1828 100644 Binary files a/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensDimensionUITests/Space/__Snapshots__/OUDSTokensSpaceUITests/testScaledSpaces-using-theme-interfaceStyle-colorScheme.Orange_spaceScaledMedium_Dark.png and b/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensDimensionUITests/Space/__Snapshots__/OUDSTokensSpaceUITests/testScaledSpaces-using-theme-interfaceStyle-colorScheme.Orange_spaceScaledMedium_Dark.png differ diff --git a/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensDimensionUITests/Space/__Snapshots__/OUDSTokensSpaceUITests/testScaledSpaces-using-theme-interfaceStyle-colorScheme.Orange_spaceScaledNone_Dark.png b/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensDimensionUITests/Space/__Snapshots__/OUDSTokensSpaceUITests/testScaledSpaces-using-theme-interfaceStyle-colorScheme.Orange_spaceScaledNone_Dark.png index a615a47d8..9431d80ac 100644 Binary files a/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensDimensionUITests/Space/__Snapshots__/OUDSTokensSpaceUITests/testScaledSpaces-using-theme-interfaceStyle-colorScheme.Orange_spaceScaledNone_Dark.png and b/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensDimensionUITests/Space/__Snapshots__/OUDSTokensSpaceUITests/testScaledSpaces-using-theme-interfaceStyle-colorScheme.Orange_spaceScaledNone_Dark.png differ diff --git a/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensDimensionUITests/Space/__Snapshots__/OUDSTokensSpaceUITests/testScaledSpaces-using-theme-interfaceStyle-colorScheme.Orange_spaceScaledShort_Dark.png b/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensDimensionUITests/Space/__Snapshots__/OUDSTokensSpaceUITests/testScaledSpaces-using-theme-interfaceStyle-colorScheme.Orange_spaceScaledShort_Dark.png index c0913eff6..c61f353a9 100644 Binary files a/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensDimensionUITests/Space/__Snapshots__/OUDSTokensSpaceUITests/testScaledSpaces-using-theme-interfaceStyle-colorScheme.Orange_spaceScaledShort_Dark.png and b/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensDimensionUITests/Space/__Snapshots__/OUDSTokensSpaceUITests/testScaledSpaces-using-theme-interfaceStyle-colorScheme.Orange_spaceScaledShort_Dark.png differ diff --git a/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensDimensionUITests/Space/__Snapshots__/OUDSTokensSpaceUITests/testScaledSpaces-using-theme-interfaceStyle-colorScheme.Orange_spaceScaledShorter_Dark.png b/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensDimensionUITests/Space/__Snapshots__/OUDSTokensSpaceUITests/testScaledSpaces-using-theme-interfaceStyle-colorScheme.Orange_spaceScaledShorter_Dark.png index 38995ef29..852931a7f 100644 Binary files a/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensDimensionUITests/Space/__Snapshots__/OUDSTokensSpaceUITests/testScaledSpaces-using-theme-interfaceStyle-colorScheme.Orange_spaceScaledShorter_Dark.png and b/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensDimensionUITests/Space/__Snapshots__/OUDSTokensSpaceUITests/testScaledSpaces-using-theme-interfaceStyle-colorScheme.Orange_spaceScaledShorter_Dark.png differ diff --git a/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensDimensionUITests/Space/__Snapshots__/OUDSTokensSpaceUITests/testScaledSpaces-using-theme-interfaceStyle-colorScheme.Orange_spaceScaledShortest_Dark.png b/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensDimensionUITests/Space/__Snapshots__/OUDSTokensSpaceUITests/testScaledSpaces-using-theme-interfaceStyle-colorScheme.Orange_spaceScaledShortest_Dark.png index a3b518d36..94e4ccf59 100644 Binary files a/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensDimensionUITests/Space/__Snapshots__/OUDSTokensSpaceUITests/testScaledSpaces-using-theme-interfaceStyle-colorScheme.Orange_spaceScaledShortest_Dark.png and b/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensDimensionUITests/Space/__Snapshots__/OUDSTokensSpaceUITests/testScaledSpaces-using-theme-interfaceStyle-colorScheme.Orange_spaceScaledShortest_Dark.png differ diff --git a/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensDimensionUITests/Space/__Snapshots__/OUDSTokensSpaceUITests/testScaledSpaces-using-theme-interfaceStyle-colorScheme.Orange_spaceScaledSmash_Dark.png b/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensDimensionUITests/Space/__Snapshots__/OUDSTokensSpaceUITests/testScaledSpaces-using-theme-interfaceStyle-colorScheme.Orange_spaceScaledSmash_Dark.png index 3b6b08b83..1f2222542 100644 Binary files a/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensDimensionUITests/Space/__Snapshots__/OUDSTokensSpaceUITests/testScaledSpaces-using-theme-interfaceStyle-colorScheme.Orange_spaceScaledSmash_Dark.png and b/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensDimensionUITests/Space/__Snapshots__/OUDSTokensSpaceUITests/testScaledSpaces-using-theme-interfaceStyle-colorScheme.Orange_spaceScaledSmash_Dark.png differ diff --git a/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensDimensionUITests/Space/__Snapshots__/OUDSTokensSpaceUITests/testScaledSpaces-using-theme-interfaceStyle-colorScheme.Orange_spaceScaledSpacious_Dark.png b/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensDimensionUITests/Space/__Snapshots__/OUDSTokensSpaceUITests/testScaledSpaces-using-theme-interfaceStyle-colorScheme.Orange_spaceScaledSpacious_Dark.png index 532198b28..93ca118a6 100644 Binary files a/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensDimensionUITests/Space/__Snapshots__/OUDSTokensSpaceUITests/testScaledSpaces-using-theme-interfaceStyle-colorScheme.Orange_spaceScaledSpacious_Dark.png and b/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensDimensionUITests/Space/__Snapshots__/OUDSTokensSpaceUITests/testScaledSpaces-using-theme-interfaceStyle-colorScheme.Orange_spaceScaledSpacious_Dark.png differ diff --git a/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensDimensionUITests/Space/__Snapshots__/OUDSTokensSpaceUITests/testScaledSpaces-using-theme-interfaceStyle-colorScheme.Orange_spaceScaledTall_Dark.png b/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensDimensionUITests/Space/__Snapshots__/OUDSTokensSpaceUITests/testScaledSpaces-using-theme-interfaceStyle-colorScheme.Orange_spaceScaledTall_Dark.png index fbbed6b30..322ec3b68 100644 Binary files a/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensDimensionUITests/Space/__Snapshots__/OUDSTokensSpaceUITests/testScaledSpaces-using-theme-interfaceStyle-colorScheme.Orange_spaceScaledTall_Dark.png and b/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensDimensionUITests/Space/__Snapshots__/OUDSTokensSpaceUITests/testScaledSpaces-using-theme-interfaceStyle-colorScheme.Orange_spaceScaledTall_Dark.png differ diff --git a/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensDimensionUITests/Space/__Snapshots__/OUDSTokensSpaceUITests/testScaledSpaces-using-theme-interfaceStyle-colorScheme.Orange_spaceScaledTaller_Dark.png b/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensDimensionUITests/Space/__Snapshots__/OUDSTokensSpaceUITests/testScaledSpaces-using-theme-interfaceStyle-colorScheme.Orange_spaceScaledTaller_Dark.png index 48244206c..527d1b0a6 100644 Binary files a/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensDimensionUITests/Space/__Snapshots__/OUDSTokensSpaceUITests/testScaledSpaces-using-theme-interfaceStyle-colorScheme.Orange_spaceScaledTaller_Dark.png and b/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensDimensionUITests/Space/__Snapshots__/OUDSTokensSpaceUITests/testScaledSpaces-using-theme-interfaceStyle-colorScheme.Orange_spaceScaledTaller_Dark.png differ diff --git a/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensDimensionUITests/Space/__Snapshots__/OUDSTokensSpaceUITests/testScaledSpaces-using-theme-interfaceStyle-colorScheme.Orange_spaceScaledTallest_Dark.png b/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensDimensionUITests/Space/__Snapshots__/OUDSTokensSpaceUITests/testScaledSpaces-using-theme-interfaceStyle-colorScheme.Orange_spaceScaledTallest_Dark.png index 830936ec9..9a255e885 100644 Binary files a/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensDimensionUITests/Space/__Snapshots__/OUDSTokensSpaceUITests/testScaledSpaces-using-theme-interfaceStyle-colorScheme.Orange_spaceScaledTallest_Dark.png and b/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensDimensionUITests/Space/__Snapshots__/OUDSTokensSpaceUITests/testScaledSpaces-using-theme-interfaceStyle-colorScheme.Orange_spaceScaledTallest_Dark.png differ diff --git a/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensElevationUITests/__Snapshots__/OUDSTokensElevationUITests/testAllElevationsOrangeThemeDark.elevationDrag.png b/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensElevationUITests/__Snapshots__/OUDSTokensElevationUITests/testAllElevationsOrangeThemeDark.elevationDrag.png index 6649a312d..f3db860b6 100644 Binary files a/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensElevationUITests/__Snapshots__/OUDSTokensElevationUITests/testAllElevationsOrangeThemeDark.elevationDrag.png and b/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensElevationUITests/__Snapshots__/OUDSTokensElevationUITests/testAllElevationsOrangeThemeDark.elevationDrag.png differ diff --git a/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensElevationUITests/__Snapshots__/OUDSTokensElevationUITests/testAllElevationsOrangeThemeDark.elevationNone.png b/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensElevationUITests/__Snapshots__/OUDSTokensElevationUITests/testAllElevationsOrangeThemeDark.elevationNone.png index 5d65479ed..1bed9474d 100644 Binary files a/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensElevationUITests/__Snapshots__/OUDSTokensElevationUITests/testAllElevationsOrangeThemeDark.elevationNone.png and b/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensElevationUITests/__Snapshots__/OUDSTokensElevationUITests/testAllElevationsOrangeThemeDark.elevationNone.png differ diff --git a/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensElevationUITests/__Snapshots__/OUDSTokensElevationUITests/testAllElevationsOrangeThemeDark.elevationOverlayDefault.png b/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensElevationUITests/__Snapshots__/OUDSTokensElevationUITests/testAllElevationsOrangeThemeDark.elevationOverlayDefault.png index 26f343e63..0071fba04 100644 Binary files a/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensElevationUITests/__Snapshots__/OUDSTokensElevationUITests/testAllElevationsOrangeThemeDark.elevationOverlayDefault.png and b/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensElevationUITests/__Snapshots__/OUDSTokensElevationUITests/testAllElevationsOrangeThemeDark.elevationOverlayDefault.png differ diff --git a/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensElevationUITests/__Snapshots__/OUDSTokensElevationUITests/testAllElevationsOrangeThemeDark.elevationOverlayEmphasized.png b/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensElevationUITests/__Snapshots__/OUDSTokensElevationUITests/testAllElevationsOrangeThemeDark.elevationOverlayEmphasized.png index ea9199e47..73d479b74 100644 Binary files a/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensElevationUITests/__Snapshots__/OUDSTokensElevationUITests/testAllElevationsOrangeThemeDark.elevationOverlayEmphasized.png and b/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensElevationUITests/__Snapshots__/OUDSTokensElevationUITests/testAllElevationsOrangeThemeDark.elevationOverlayEmphasized.png differ diff --git a/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensElevationUITests/__Snapshots__/OUDSTokensElevationUITests/testAllElevationsOrangeThemeDark.elevationRaised.png b/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensElevationUITests/__Snapshots__/OUDSTokensElevationUITests/testAllElevationsOrangeThemeDark.elevationRaised.png index 251220c85..fc1b52f04 100644 Binary files a/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensElevationUITests/__Snapshots__/OUDSTokensElevationUITests/testAllElevationsOrangeThemeDark.elevationRaised.png and b/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensElevationUITests/__Snapshots__/OUDSTokensElevationUITests/testAllElevationsOrangeThemeDark.elevationRaised.png differ diff --git a/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensElevationUITests/__Snapshots__/OUDSTokensElevationUITests/testAllElevationsOrangeThemeDark.elevationStickyDefault.png b/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensElevationUITests/__Snapshots__/OUDSTokensElevationUITests/testAllElevationsOrangeThemeDark.elevationStickyDefault.png index 32dfa4f0e..361123f3a 100644 Binary files a/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensElevationUITests/__Snapshots__/OUDSTokensElevationUITests/testAllElevationsOrangeThemeDark.elevationStickyDefault.png and b/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensElevationUITests/__Snapshots__/OUDSTokensElevationUITests/testAllElevationsOrangeThemeDark.elevationStickyDefault.png differ diff --git a/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensElevationUITests/__Snapshots__/OUDSTokensElevationUITests/testAllElevationsOrangeThemeDark.elevationStickyEmphasized.png b/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensElevationUITests/__Snapshots__/OUDSTokensElevationUITests/testAllElevationsOrangeThemeDark.elevationStickyEmphasized.png index a1c7e5460..097f4cf0e 100644 Binary files a/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensElevationUITests/__Snapshots__/OUDSTokensElevationUITests/testAllElevationsOrangeThemeDark.elevationStickyEmphasized.png and b/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensElevationUITests/__Snapshots__/OUDSTokensElevationUITests/testAllElevationsOrangeThemeDark.elevationStickyEmphasized.png differ diff --git a/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensElevationUITests/__Snapshots__/OUDSTokensElevationUITests/testAllElevationsOrangeThemeDark.elevationStickyNavigationScrolled.png b/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensElevationUITests/__Snapshots__/OUDSTokensElevationUITests/testAllElevationsOrangeThemeDark.elevationStickyNavigationScrolled.png index c6e73785e..8a5de60e9 100644 Binary files a/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensElevationUITests/__Snapshots__/OUDSTokensElevationUITests/testAllElevationsOrangeThemeDark.elevationStickyNavigationScrolled.png and b/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensElevationUITests/__Snapshots__/OUDSTokensElevationUITests/testAllElevationsOrangeThemeDark.elevationStickyNavigationScrolled.png differ diff --git a/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensOpacityUITests/__Snapshots__/OUDSTokensOpacityUITests/testAllOpacitiesOrangeThemeDark.opacityMedium.png b/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensOpacityUITests/__Snapshots__/OUDSTokensOpacityUITests/testAllOpacitiesOrangeThemeDark.opacityMedium.png index c987708f2..c94589435 100644 Binary files a/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensOpacityUITests/__Snapshots__/OUDSTokensOpacityUITests/testAllOpacitiesOrangeThemeDark.opacityMedium.png and b/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensOpacityUITests/__Snapshots__/OUDSTokensOpacityUITests/testAllOpacitiesOrangeThemeDark.opacityMedium.png differ diff --git a/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensOpacityUITests/__Snapshots__/OUDSTokensOpacityUITests/testAllOpacitiesOrangeThemeDark.opacityOpaque.png b/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensOpacityUITests/__Snapshots__/OUDSTokensOpacityUITests/testAllOpacitiesOrangeThemeDark.opacityOpaque.png index 1ab1f56cc..1b379c978 100644 Binary files a/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensOpacityUITests/__Snapshots__/OUDSTokensOpacityUITests/testAllOpacitiesOrangeThemeDark.opacityOpaque.png and b/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensOpacityUITests/__Snapshots__/OUDSTokensOpacityUITests/testAllOpacitiesOrangeThemeDark.opacityOpaque.png differ diff --git a/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensOpacityUITests/__Snapshots__/OUDSTokensOpacityUITests/testAllOpacitiesOrangeThemeDark.opacityStrong.png b/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensOpacityUITests/__Snapshots__/OUDSTokensOpacityUITests/testAllOpacitiesOrangeThemeDark.opacityStrong.png index f0306aded..a2ff55cc1 100644 Binary files a/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensOpacityUITests/__Snapshots__/OUDSTokensOpacityUITests/testAllOpacitiesOrangeThemeDark.opacityStrong.png and b/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensOpacityUITests/__Snapshots__/OUDSTokensOpacityUITests/testAllOpacitiesOrangeThemeDark.opacityStrong.png differ diff --git a/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensOpacityUITests/__Snapshots__/OUDSTokensOpacityUITests/testAllOpacitiesOrangeThemeDark.opacityTransparent.png b/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensOpacityUITests/__Snapshots__/OUDSTokensOpacityUITests/testAllOpacitiesOrangeThemeDark.opacityTransparent.png index 106cef6fc..fa1478506 100644 Binary files a/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensOpacityUITests/__Snapshots__/OUDSTokensOpacityUITests/testAllOpacitiesOrangeThemeDark.opacityTransparent.png and b/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensOpacityUITests/__Snapshots__/OUDSTokensOpacityUITests/testAllOpacitiesOrangeThemeDark.opacityTransparent.png differ diff --git a/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensOpacityUITests/__Snapshots__/OUDSTokensOpacityUITests/testAllOpacitiesOrangeThemeDark.opacityWeak.png b/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensOpacityUITests/__Snapshots__/OUDSTokensOpacityUITests/testAllOpacitiesOrangeThemeDark.opacityWeak.png index 95874e4de..08b7a3dbe 100644 Binary files a/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensOpacityUITests/__Snapshots__/OUDSTokensOpacityUITests/testAllOpacitiesOrangeThemeDark.opacityWeak.png and b/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensOpacityUITests/__Snapshots__/OUDSTokensOpacityUITests/testAllOpacitiesOrangeThemeDark.opacityWeak.png differ diff --git a/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensOpacityUITests/__Snapshots__/OUDSTokensOpacityUITests/testAllOpacitiesOrangeThemeDark.opacityWeaker.png b/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensOpacityUITests/__Snapshots__/OUDSTokensOpacityUITests/testAllOpacitiesOrangeThemeDark.opacityWeaker.png index 7170d060a..6073f7247 100644 Binary files a/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensOpacityUITests/__Snapshots__/OUDSTokensOpacityUITests/testAllOpacitiesOrangeThemeDark.opacityWeaker.png and b/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensOpacityUITests/__Snapshots__/OUDSTokensOpacityUITests/testAllOpacitiesOrangeThemeDark.opacityWeaker.png differ diff --git a/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensTypographyUITests/__Snapshots__/OUDSTypographyUITests/testAllTypographiesOrangeThemeDark.bodyDefaultLarge.png b/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensTypographyUITests/__Snapshots__/OUDSTypographyUITests/testAllTypographiesOrangeThemeDark.bodyDefaultLarge.png index 15d594214..43b702ebc 100644 Binary files a/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensTypographyUITests/__Snapshots__/OUDSTypographyUITests/testAllTypographiesOrangeThemeDark.bodyDefaultLarge.png and b/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensTypographyUITests/__Snapshots__/OUDSTypographyUITests/testAllTypographiesOrangeThemeDark.bodyDefaultLarge.png differ diff --git a/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensTypographyUITests/__Snapshots__/OUDSTypographyUITests/testAllTypographiesOrangeThemeDark.bodyDefaultMedium.png b/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensTypographyUITests/__Snapshots__/OUDSTypographyUITests/testAllTypographiesOrangeThemeDark.bodyDefaultMedium.png index 4e4a3dcf9..04324ed0d 100644 Binary files a/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensTypographyUITests/__Snapshots__/OUDSTypographyUITests/testAllTypographiesOrangeThemeDark.bodyDefaultMedium.png and b/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensTypographyUITests/__Snapshots__/OUDSTypographyUITests/testAllTypographiesOrangeThemeDark.bodyDefaultMedium.png differ diff --git a/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensTypographyUITests/__Snapshots__/OUDSTypographyUITests/testAllTypographiesOrangeThemeDark.bodyDefaultSmall.png b/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensTypographyUITests/__Snapshots__/OUDSTypographyUITests/testAllTypographiesOrangeThemeDark.bodyDefaultSmall.png index 2dc7b80f8..7e01d269b 100644 Binary files a/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensTypographyUITests/__Snapshots__/OUDSTypographyUITests/testAllTypographiesOrangeThemeDark.bodyDefaultSmall.png and b/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensTypographyUITests/__Snapshots__/OUDSTypographyUITests/testAllTypographiesOrangeThemeDark.bodyDefaultSmall.png differ diff --git a/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensTypographyUITests/__Snapshots__/OUDSTypographyUITests/testAllTypographiesOrangeThemeDark.bodyStrongLarge.png b/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensTypographyUITests/__Snapshots__/OUDSTypographyUITests/testAllTypographiesOrangeThemeDark.bodyStrongLarge.png index 0061d76f9..b7f1c60d6 100644 Binary files a/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensTypographyUITests/__Snapshots__/OUDSTypographyUITests/testAllTypographiesOrangeThemeDark.bodyStrongLarge.png and b/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensTypographyUITests/__Snapshots__/OUDSTypographyUITests/testAllTypographiesOrangeThemeDark.bodyStrongLarge.png differ diff --git a/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensTypographyUITests/__Snapshots__/OUDSTypographyUITests/testAllTypographiesOrangeThemeDark.bodyStrongMedium.png b/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensTypographyUITests/__Snapshots__/OUDSTypographyUITests/testAllTypographiesOrangeThemeDark.bodyStrongMedium.png index 0c4876815..1ef3314cd 100644 Binary files a/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensTypographyUITests/__Snapshots__/OUDSTypographyUITests/testAllTypographiesOrangeThemeDark.bodyStrongMedium.png and b/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensTypographyUITests/__Snapshots__/OUDSTypographyUITests/testAllTypographiesOrangeThemeDark.bodyStrongMedium.png differ diff --git a/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensTypographyUITests/__Snapshots__/OUDSTypographyUITests/testAllTypographiesOrangeThemeDark.bodyStrongSmall.png b/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensTypographyUITests/__Snapshots__/OUDSTypographyUITests/testAllTypographiesOrangeThemeDark.bodyStrongSmall.png index 8fd8f68b9..d6740d308 100644 Binary files a/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensTypographyUITests/__Snapshots__/OUDSTypographyUITests/testAllTypographiesOrangeThemeDark.bodyStrongSmall.png and b/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensTypographyUITests/__Snapshots__/OUDSTypographyUITests/testAllTypographiesOrangeThemeDark.bodyStrongSmall.png differ diff --git a/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensTypographyUITests/__Snapshots__/OUDSTypographyUITests/testAllTypographiesOrangeThemeDark.codeMedium.png b/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensTypographyUITests/__Snapshots__/OUDSTypographyUITests/testAllTypographiesOrangeThemeDark.codeMedium.png index ba3e9dfe3..e4fcfd945 100644 Binary files a/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensTypographyUITests/__Snapshots__/OUDSTypographyUITests/testAllTypographiesOrangeThemeDark.codeMedium.png and b/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensTypographyUITests/__Snapshots__/OUDSTypographyUITests/testAllTypographiesOrangeThemeDark.codeMedium.png differ diff --git a/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensTypographyUITests/__Snapshots__/OUDSTypographyUITests/testAllTypographiesOrangeThemeDark.codeSmall.png b/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensTypographyUITests/__Snapshots__/OUDSTypographyUITests/testAllTypographiesOrangeThemeDark.codeSmall.png index a5ef3cbbb..2b5b629b3 100644 Binary files a/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensTypographyUITests/__Snapshots__/OUDSTypographyUITests/testAllTypographiesOrangeThemeDark.codeSmall.png and b/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensTypographyUITests/__Snapshots__/OUDSTypographyUITests/testAllTypographiesOrangeThemeDark.codeSmall.png differ diff --git a/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensTypographyUITests/__Snapshots__/OUDSTypographyUITests/testAllTypographiesOrangeThemeDark.displayLarge.png b/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensTypographyUITests/__Snapshots__/OUDSTypographyUITests/testAllTypographiesOrangeThemeDark.displayLarge.png index f9bb1f3f0..e21d5a863 100644 Binary files a/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensTypographyUITests/__Snapshots__/OUDSTypographyUITests/testAllTypographiesOrangeThemeDark.displayLarge.png and b/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensTypographyUITests/__Snapshots__/OUDSTypographyUITests/testAllTypographiesOrangeThemeDark.displayLarge.png differ diff --git a/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensTypographyUITests/__Snapshots__/OUDSTypographyUITests/testAllTypographiesOrangeThemeDark.displayMedium.png b/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensTypographyUITests/__Snapshots__/OUDSTypographyUITests/testAllTypographiesOrangeThemeDark.displayMedium.png index 776e22d58..79f63362a 100644 Binary files a/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensTypographyUITests/__Snapshots__/OUDSTypographyUITests/testAllTypographiesOrangeThemeDark.displayMedium.png and b/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensTypographyUITests/__Snapshots__/OUDSTypographyUITests/testAllTypographiesOrangeThemeDark.displayMedium.png differ diff --git a/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensTypographyUITests/__Snapshots__/OUDSTypographyUITests/testAllTypographiesOrangeThemeDark.displaySmall.png b/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensTypographyUITests/__Snapshots__/OUDSTypographyUITests/testAllTypographiesOrangeThemeDark.displaySmall.png index dfcd1b5c1..4e4b56034 100644 Binary files a/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensTypographyUITests/__Snapshots__/OUDSTypographyUITests/testAllTypographiesOrangeThemeDark.displaySmall.png and b/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensTypographyUITests/__Snapshots__/OUDSTypographyUITests/testAllTypographiesOrangeThemeDark.displaySmall.png differ diff --git a/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensTypographyUITests/__Snapshots__/OUDSTypographyUITests/testAllTypographiesOrangeThemeDark.headingLarge.png b/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensTypographyUITests/__Snapshots__/OUDSTypographyUITests/testAllTypographiesOrangeThemeDark.headingLarge.png index 2504f351a..7a0e380c6 100644 Binary files a/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensTypographyUITests/__Snapshots__/OUDSTypographyUITests/testAllTypographiesOrangeThemeDark.headingLarge.png and b/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensTypographyUITests/__Snapshots__/OUDSTypographyUITests/testAllTypographiesOrangeThemeDark.headingLarge.png differ diff --git a/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensTypographyUITests/__Snapshots__/OUDSTypographyUITests/testAllTypographiesOrangeThemeDark.headingMedium.png b/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensTypographyUITests/__Snapshots__/OUDSTypographyUITests/testAllTypographiesOrangeThemeDark.headingMedium.png index b9b89a6f1..f28d4f5ad 100644 Binary files a/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensTypographyUITests/__Snapshots__/OUDSTypographyUITests/testAllTypographiesOrangeThemeDark.headingMedium.png and b/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensTypographyUITests/__Snapshots__/OUDSTypographyUITests/testAllTypographiesOrangeThemeDark.headingMedium.png differ diff --git a/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensTypographyUITests/__Snapshots__/OUDSTypographyUITests/testAllTypographiesOrangeThemeDark.headingSmall.png b/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensTypographyUITests/__Snapshots__/OUDSTypographyUITests/testAllTypographiesOrangeThemeDark.headingSmall.png index 28600d7dc..4fc6771d7 100644 Binary files a/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensTypographyUITests/__Snapshots__/OUDSTypographyUITests/testAllTypographiesOrangeThemeDark.headingSmall.png and b/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensTypographyUITests/__Snapshots__/OUDSTypographyUITests/testAllTypographiesOrangeThemeDark.headingSmall.png differ diff --git a/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensTypographyUITests/__Snapshots__/OUDSTypographyUITests/testAllTypographiesOrangeThemeDark.headingXLarge.png b/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensTypographyUITests/__Snapshots__/OUDSTypographyUITests/testAllTypographiesOrangeThemeDark.headingXLarge.png index 9a05423ae..d7265f740 100644 Binary files a/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensTypographyUITests/__Snapshots__/OUDSTypographyUITests/testAllTypographiesOrangeThemeDark.headingXLarge.png and b/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensTypographyUITests/__Snapshots__/OUDSTypographyUITests/testAllTypographiesOrangeThemeDark.headingXLarge.png differ diff --git a/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensTypographyUITests/__Snapshots__/OUDSTypographyUITests/testAllTypographiesOrangeThemeDark.labelDefaultLarge.png b/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensTypographyUITests/__Snapshots__/OUDSTypographyUITests/testAllTypographiesOrangeThemeDark.labelDefaultLarge.png index 48a35d7ab..4b42e73d4 100644 Binary files a/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensTypographyUITests/__Snapshots__/OUDSTypographyUITests/testAllTypographiesOrangeThemeDark.labelDefaultLarge.png and b/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensTypographyUITests/__Snapshots__/OUDSTypographyUITests/testAllTypographiesOrangeThemeDark.labelDefaultLarge.png differ diff --git a/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensTypographyUITests/__Snapshots__/OUDSTypographyUITests/testAllTypographiesOrangeThemeDark.labelDefaultMedium.png b/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensTypographyUITests/__Snapshots__/OUDSTypographyUITests/testAllTypographiesOrangeThemeDark.labelDefaultMedium.png index b71e5dd52..88994a9aa 100644 Binary files a/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensTypographyUITests/__Snapshots__/OUDSTypographyUITests/testAllTypographiesOrangeThemeDark.labelDefaultMedium.png and b/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensTypographyUITests/__Snapshots__/OUDSTypographyUITests/testAllTypographiesOrangeThemeDark.labelDefaultMedium.png differ diff --git a/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensTypographyUITests/__Snapshots__/OUDSTypographyUITests/testAllTypographiesOrangeThemeDark.labelDefaultSmall.png b/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensTypographyUITests/__Snapshots__/OUDSTypographyUITests/testAllTypographiesOrangeThemeDark.labelDefaultSmall.png index fe4879398..445779d2d 100644 Binary files a/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensTypographyUITests/__Snapshots__/OUDSTypographyUITests/testAllTypographiesOrangeThemeDark.labelDefaultSmall.png and b/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensTypographyUITests/__Snapshots__/OUDSTypographyUITests/testAllTypographiesOrangeThemeDark.labelDefaultSmall.png differ diff --git a/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensTypographyUITests/__Snapshots__/OUDSTypographyUITests/testAllTypographiesOrangeThemeDark.labelDefaultXLarge.png b/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensTypographyUITests/__Snapshots__/OUDSTypographyUITests/testAllTypographiesOrangeThemeDark.labelDefaultXLarge.png index 4627d23b7..9d5df5c05 100644 Binary files a/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensTypographyUITests/__Snapshots__/OUDSTypographyUITests/testAllTypographiesOrangeThemeDark.labelDefaultXLarge.png and b/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensTypographyUITests/__Snapshots__/OUDSTypographyUITests/testAllTypographiesOrangeThemeDark.labelDefaultXLarge.png differ diff --git a/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensTypographyUITests/__Snapshots__/OUDSTypographyUITests/testAllTypographiesOrangeThemeDark.labelStrongLarge.png b/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensTypographyUITests/__Snapshots__/OUDSTypographyUITests/testAllTypographiesOrangeThemeDark.labelStrongLarge.png index 20086f4cc..82c903fa5 100644 Binary files a/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensTypographyUITests/__Snapshots__/OUDSTypographyUITests/testAllTypographiesOrangeThemeDark.labelStrongLarge.png and b/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensTypographyUITests/__Snapshots__/OUDSTypographyUITests/testAllTypographiesOrangeThemeDark.labelStrongLarge.png differ diff --git a/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensTypographyUITests/__Snapshots__/OUDSTypographyUITests/testAllTypographiesOrangeThemeDark.labelStrongMedium.png b/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensTypographyUITests/__Snapshots__/OUDSTypographyUITests/testAllTypographiesOrangeThemeDark.labelStrongMedium.png index c54b99fdb..24795de4d 100644 Binary files a/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensTypographyUITests/__Snapshots__/OUDSTypographyUITests/testAllTypographiesOrangeThemeDark.labelStrongMedium.png and b/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensTypographyUITests/__Snapshots__/OUDSTypographyUITests/testAllTypographiesOrangeThemeDark.labelStrongMedium.png differ diff --git a/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensTypographyUITests/__Snapshots__/OUDSTypographyUITests/testAllTypographiesOrangeThemeDark.labelStrongSmall.png b/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensTypographyUITests/__Snapshots__/OUDSTypographyUITests/testAllTypographiesOrangeThemeDark.labelStrongSmall.png index 55150fa1a..7be49126e 100644 Binary files a/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensTypographyUITests/__Snapshots__/OUDSTypographyUITests/testAllTypographiesOrangeThemeDark.labelStrongSmall.png and b/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensTypographyUITests/__Snapshots__/OUDSTypographyUITests/testAllTypographiesOrangeThemeDark.labelStrongSmall.png differ diff --git a/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensTypographyUITests/__Snapshots__/OUDSTypographyUITests/testAllTypographiesOrangeThemeDark.labelStrongXLarge.png b/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensTypographyUITests/__Snapshots__/OUDSTypographyUITests/testAllTypographiesOrangeThemeDark.labelStrongXLarge.png index bf268612a..3a9efd73e 100644 Binary files a/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensTypographyUITests/__Snapshots__/OUDSTypographyUITests/testAllTypographiesOrangeThemeDark.labelStrongXLarge.png and b/Showcase/ShowcaseTests/__Snapshots__/OUDSTokensTypographyUITests/__Snapshots__/OUDSTypographyUITests/testAllTypographiesOrangeThemeDark.labelStrongXLarge.png differ