diff --git a/CHANGELOG.md b/CHANGELOG.md index ed61f1e52..c3be95ba2 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -6,6 +6,10 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased](https://github.com/Orange-OpenSource/ouds-ios-design-system-toolbox/compare/0.17.0...develop) +### Changed + +- [Library] Button version 3.0 (add brand hierarchy and rounded property, update minimal variant) (Orange-OpenSource/ouds-ios#887) + ## [0.17.0](https://github.com/Orange-OpenSource/ouds-ios-design-system-toolbox/compare/0.16.0...0.17.0) - 2025-07-24 ### Added diff --git a/DesignToolbox/DesignToolbox.xcworkspace/xcshareddata/swiftpm/Package.resolved b/DesignToolbox/DesignToolbox.xcworkspace/xcshareddata/swiftpm/Package.resolved index 87b09f498..b1eb8a5e4 100644 --- a/DesignToolbox/DesignToolbox.xcworkspace/xcshareddata/swiftpm/Package.resolved +++ b/DesignToolbox/DesignToolbox.xcworkspace/xcshareddata/swiftpm/Package.resolved @@ -1,5 +1,5 @@ { - "originHash" : "6ea3d37f1306824a57aceca4318954b015df152cccfd354b173dfe326870c15b", + "originHash" : "f1077ed1a4a433b6099e51253a74930cbc64e0355c0ff5e0fda3820ff40da339", "pins" : [ { "identity" : "accessibility-statement-lib-ios", @@ -11,21 +11,30 @@ } }, { - "identity" : "ouds-ios", + "identity" : "swift-custom-dump", "kind" : "remoteSourceControl", - "location" : "https://github.com/Orange-OpenSource/ouds-ios", + "location" : "https://github.com/pointfreeco/swift-custom-dump", "state" : { - "branch" : "develop", - "revision" : "f1b99bd7fee0572ce6b423f2a651cd3739829909" + "revision" : "82645ec760917961cfa08c9c0c7104a57a0fa4b1", + "version" : "1.3.3" } }, { - "identity" : "swift-custom-dump", + "identity" : "swift-docc-plugin", "kind" : "remoteSourceControl", - "location" : "https://github.com/pointfreeco/swift-custom-dump", + "location" : "https://github.com/swiftlang/swift-docc-plugin", "state" : { - "revision" : "82645ec760917961cfa08c9c0c7104a57a0fa4b1", - "version" : "1.3.3" + "revision" : "3e4f133a77e644a5812911a0513aeb7288b07d06", + "version" : "1.4.5" + } + }, + { + "identity" : "swift-docc-symbolkit", + "kind" : "remoteSourceControl", + "location" : "https://github.com/swiftlang/swift-docc-symbolkit", + "state" : { + "revision" : "b45d1f2ed151d057b54504d653e0da5552844e34", + "version" : "1.0.0" } }, { @@ -46,6 +55,24 @@ "version" : "600.0.1" } }, + { + "identity" : "swiftformat", + "kind" : "remoteSourceControl", + "location" : "https://github.com/nicklockwood/SwiftFormat", + "state" : { + "revision" : "b83a8f132ff5430f3b6ff7d912baa407caea9e29", + "version" : "0.57.2" + } + }, + { + "identity" : "swiftlintplugins", + "kind" : "remoteSourceControl", + "location" : "https://github.com/SimplyDanny/SwiftLintPlugins", + "state" : { + "revision" : "8545ddf4de043e6f2051c5cf204f39ef778ebf6b", + "version" : "0.59.1" + } + }, { "identity" : "xctest-dynamic-overlay", "kind" : "remoteSourceControl", diff --git a/DesignToolbox/DesignToolbox/Pages/Components/Button/ButtonConfigurationView.swift b/DesignToolbox/DesignToolbox/Pages/Components/Button/ButtonConfigurationView.swift index acbc3be58..b47cf9606 100644 --- a/DesignToolbox/DesignToolbox/Pages/Components/Button/ButtonConfigurationView.swift +++ b/DesignToolbox/DesignToolbox/Pages/Components/Button/ButtonConfigurationView.swift @@ -39,6 +39,10 @@ final class ButtonConfigurationModel: ComponentConfiguration { didSet { updateCode() } } + @Published var rounded: Bool { + didSet { updateCode() } + } + // MARK: Initializer override init() { @@ -47,13 +51,18 @@ final class ButtonConfigurationModel: ComponentConfiguration { layout = .textOnly hierarchy = .default style = .default + rounded = false } deinit {} // MARK: Component Configuration - private var disableCode: String { + private var roundedCodePattern: String { + rounded ? ".environment(\\.oudsRoundedButton, true)" : "" + } + + private var disableCodePattern: String { if case .default = style { ".disabled(\(enabled ? "false" : "true"))" } else { @@ -71,22 +80,22 @@ final class ButtonConfigurationModel: ComponentConfiguration { code = """ OUDSButton(text: \"Button\", hierarchy: .\(hierarchy.description.lowercased()), style: .\(style.description.lowercased())) {} - \(disableCode) - \(coloredSurfaceCodeModifier) + \(disableCodePattern) + \(coloredSurfaceCodeModifier)\(roundedCodePattern) """ case .iconOnly: code = """ OUDSButton(icon: Image(\"ic_heart\"), hierarchy: .\(hierarchy.description.lowercased()), style: .\(style.description.lowercased())) {} - \(disableCode) - \(coloredSurfaceCodeModifier) + \(disableCodePattern) + \(coloredSurfaceCodeModifier)\(roundedCodePattern) """ case .textAndIcon: code = """ OUDSButton(icon: Image(\"ic_heart\", text: \"Button\"), hierarchy: .\(hierarchy.description.lowercased()), style: .\(style.description.lowercased())) {} - \(disableCode) - \(coloredSurfaceCodeModifier) + \(disableCodePattern) + \(coloredSurfaceCodeModifier)\(roundedCodePattern) """ } } @@ -134,7 +143,7 @@ extension OUDSButton.Style: @retroactive CaseIterable, @retroactive CustomString // MARK: Button hierarchy extension extension OUDSButton.Hierarchy: @retroactive CaseIterable, @retroactive CustomStringConvertible { - public nonisolated(unsafe) static let allCases: [OUDSButton.Hierarchy] = [.default, .strong, .minimal, .negative] + public nonisolated(unsafe) static let allCases: [OUDSButton.Hierarchy] = [.default, .strong, .brand, .minimal, .negative] // Note: Not localized because it is a technical name public var description: String { @@ -143,6 +152,8 @@ extension OUDSButton.Hierarchy: @retroactive CaseIterable, @retroactive CustomSt "Default" case .strong: "Strong" + case .brand: + "Brand" case .minimal: "Minimal" case .negative: @@ -168,6 +179,8 @@ struct ButtonConfigurationView: View { .disabled(configurationModel.style != .default) OUDSSwitchItem("app_components_common_onColoredSurface_label", isOn: $configurationModel.onColoredSurface) + + OUDSSwitchItem("app_components_button_rounded_label", isOn: $configurationModel.rounded) } DesignToolboxChoicePicker(title: "app_components_button_hierarchy_label", diff --git a/DesignToolbox/DesignToolbox/Pages/Components/Button/ButtonPage.swift b/DesignToolbox/DesignToolbox/Pages/Components/Button/ButtonPage.swift index 18996bb3e..e8442ed77 100644 --- a/DesignToolbox/DesignToolbox/Pages/Components/Button/ButtonPage.swift +++ b/DesignToolbox/DesignToolbox/Pages/Components/Button/ButtonPage.swift @@ -46,8 +46,8 @@ private struct ButtonDemo: View { HStack(alignment: .center) { Spacer() - // It is not allowed to place a Negative button on colored surface - if configurationModel.hierarchy == .negative, configurationModel.onColoredSurface { + // It is not allowed to place a Negative or Brand button on colored surface + if configurationModel.onColoredSurface, configurationModel.hierarchy == .negative || configurationModel.hierarchy == .brand { Text("app_components_button_negative_hierary_notAllowed_text") } else { switch configurationModel.layout { @@ -56,15 +56,18 @@ private struct ButtonDemo: View { accessibilityLabel: "app_components_button_icon_a11y".localized(), hierarchy: configurationModel.hierarchy, style: configurationModel.style) {} + .environment(\.oudsRoundedButton, configurationModel.rounded) case .textOnly: OUDSButton(text: configurationModel.text, hierarchy: configurationModel.hierarchy, style: configurationModel.style) {} + .environment(\.oudsRoundedButton, configurationModel.rounded) case .textAndIcon: OUDSButton(icon: Image(decorative: "ic_heart"), text: configurationModel.text, hierarchy: configurationModel.hierarchy, style: configurationModel.style) {} + .environment(\.oudsRoundedButton, configurationModel.rounded) } } diff --git a/DesignToolbox/DesignToolbox/Resources/Localizable.xcstrings b/DesignToolbox/DesignToolbox/Resources/Localizable.xcstrings index 7596d2638..d32aaa089 100644 --- a/DesignToolbox/DesignToolbox/Resources/Localizable.xcstrings +++ b/DesignToolbox/DesignToolbox/Resources/Localizable.xcstrings @@ -1323,6 +1323,31 @@ } } }, + "app_components_button_rounded_label" : { + "comment" : "Component - Button", + "extractionState" : "manual", + "localizations" : { + "ar" : { + "stringUnit" : { + "state" : "translated", + "value" : "Rounded" + } + }, + "en" : { + "stringUnit" : { + "state" : "translated", + "value" : "Rounded" + } + }, + "fr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Rounded" + } + } + }, + "shouldTranslate" : false + }, "app_components_checkbox_checkboxItem_label" : { "comment" : "Component - Checkbox", "extractionState" : "manual", diff --git a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/ButtonUITestsTestCase.swift b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/ButtonUITestsTestCase.swift index a54324a26..b11aaec6b 100644 --- a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/ButtonUITestsTestCase.swift +++ b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/ButtonUITestsTestCase.swift @@ -39,17 +39,33 @@ open class ButtonUITestsTestCase: XCTestCase { @MainActor func testAllButtons(theme: OUDSTheme, interfaceStyle: UIUserInterfaceStyle) { for hierarchy in OUDSButton.Hierarchy.allCases { for layout in ButtonTest.Layout.allCases { - testButton(theme: theme, interfaceStyle: interfaceStyle, a11yContrast: .normal, layout: layout, hierarchy: hierarchy, disabled: false, onColoredSurface: false) - testButton(theme: theme, interfaceStyle: interfaceStyle, a11yContrast: .normal, layout: layout, hierarchy: hierarchy, disabled: true, onColoredSurface: false) - testButton(theme: theme, interfaceStyle: interfaceStyle, a11yContrast: .high, layout: layout, hierarchy: hierarchy, disabled: false, onColoredSurface: false) - testButton(theme: theme, interfaceStyle: interfaceStyle, a11yContrast: .high, layout: layout, hierarchy: hierarchy, disabled: true, onColoredSurface: false) + for rounded in [true, false] { + for disabled in [true, false] { + testButton(theme: theme, + interfaceStyle: interfaceStyle, + a11yContrast: .normal, + layout: layout, + hierarchy: hierarchy, + disabled: disabled, + rounded: rounded, + onColoredSurface: false) + testButton(theme: theme, + interfaceStyle: interfaceStyle, + a11yContrast: .high, + layout: layout, + hierarchy: hierarchy, + disabled: disabled, + rounded: rounded, + onColoredSurface: false) + } + } } } } /// This function tests all buttons configuration for the given themen and color schemes on aa colored surface (the `colorSurfaceBrandPrimary` token) /// - /// **/!\ It does not text the hover and pressed states.** + /// **/!\ It does not test the hover and pressed states.** /// **The loading style is not tested yet as we face troubles with animations and snapshots.** /// /// It iterates through all button `hierarchy`, for all `style` with* textOnly, textAndIcon and iconOnly layouts* @@ -59,13 +75,29 @@ open class ButtonUITestsTestCase: XCTestCase { /// - theme: The theme (`OUDSTheme) from which to retrieve color tokens. /// - interfaceStyle: The user interface style (light or dark) for which to test the colors. @MainActor func testAllButtonsOnColoredSurface(theme: OUDSTheme, interfaceStyle: UIUserInterfaceStyle) { - // Skip test for negative hierarchy because it is not allowed on colored surface - for hierarchy in OUDSButton.Hierarchy.allCases where hierarchy != .negative { + // Skip test for negative and brand hierarchy because it is not allowed on colored surface + for hierarchy in OUDSButton.Hierarchy.allCases where hierarchy != .negative && hierarchy != .brand { for layout in ButtonTest.Layout.allCases { - testButton(theme: theme, interfaceStyle: interfaceStyle, a11yContrast: .normal, layout: layout, hierarchy: hierarchy, disabled: false, onColoredSurface: true) - testButton(theme: theme, interfaceStyle: interfaceStyle, a11yContrast: .normal, layout: layout, hierarchy: hierarchy, disabled: true, onColoredSurface: true) - testButton(theme: theme, interfaceStyle: interfaceStyle, a11yContrast: .high, layout: layout, hierarchy: hierarchy, disabled: false, onColoredSurface: true) - testButton(theme: theme, interfaceStyle: interfaceStyle, a11yContrast: .high, layout: layout, hierarchy: hierarchy, disabled: true, onColoredSurface: true) + for rounded in [true, false] { + for disabled in [true, false] { + testButton(theme: theme, + interfaceStyle: interfaceStyle, + a11yContrast: .normal, + layout: layout, + hierarchy: hierarchy, + disabled: disabled, + rounded: rounded, + onColoredSurface: true) + testButton(theme: theme, + interfaceStyle: interfaceStyle, + a11yContrast: .high, + layout: layout, + hierarchy: hierarchy, + disabled: disabled, + rounded: rounded, + onColoredSurface: true) + } + } } } } @@ -85,6 +117,7 @@ open class ButtonUITestsTestCase: XCTestCase { /// - layout: the layout of the button /// - hierarchy; the hierarchy of the button /// - disabled: the disabled flag + /// - rounded: a flag to activate rounded behavior /// - onColoredSurface: a flag to know if button is on a colored surface or not @MainActor private func testButton(theme: OUDSTheme, interfaceStyle: UIUserInterfaceStyle, @@ -92,6 +125,7 @@ open class ButtonUITestsTestCase: XCTestCase { layout: ButtonTest.Layout, hierarchy: OUDSButton.Hierarchy, disabled: Bool, + rounded: Bool = false, onColoredSurface: Bool = false) { // Generate the illustration for the specified configuration @@ -99,13 +133,15 @@ open class ButtonUITestsTestCase: XCTestCase { ButtonTest(layout: layout, hierarchy: hierarchy, style: .default, onColoredSurface: onColoredSurface) .background(theme.colors.colorBgPrimary.color(for: interfaceStyle == .light ? .light : .dark)) .disabled(disabled) + .environment(\.oudsRoundedButton, rounded) } // Create a unique snapshot name based on the current configuration let testName = "test_\(theme.name)Theme_\(interfaceStyle == .light ? "Light" : "Dark")_\(a11yContrast == .high ? "HighContrast" : "")" let coloredSurfacePatern = onColoredSurface ? "ColoredSurface_" : "" let disabledPatern = disabled ? "_Disabled" : "" - let name = "\(coloredSurfacePatern)\(layout.rawValue.camelCase)_\(hierarchy.description)_\(OUDSButton.Style.default.description)\(disabledPatern)" + let roundedPattern = rounded ? "_Rounded" : "" + let name = "\(coloredSurfacePatern)\(layout.rawValue.camelCase)_\(hierarchy.description)_\(OUDSButton.Style.default.description)\(disabledPatern)\(roundedPattern)" // Capture the snapshot of the illustration with the correct user interface style and save it with the snapshot name assertIllustration(illustration, diff --git a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_Orange-Business-ToolsTheme_Dark_.ColoredSurface_Icon_Default_Default_Disabled_Rounded.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_Orange-Business-ToolsTheme_Dark_.ColoredSurface_Icon_Default_Default_Disabled_Rounded.png new file mode 100644 index 000000000..746e47fb0 Binary files /dev/null and b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_Orange-Business-ToolsTheme_Dark_.ColoredSurface_Icon_Default_Default_Disabled_Rounded.png differ diff --git a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_Orange-Business-ToolsTheme_Dark_.ColoredSurface_Icon_Default_Default_Rounded.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_Orange-Business-ToolsTheme_Dark_.ColoredSurface_Icon_Default_Default_Rounded.png new file mode 100644 index 000000000..e5f1b2d41 Binary files /dev/null and b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_Orange-Business-ToolsTheme_Dark_.ColoredSurface_Icon_Default_Default_Rounded.png differ diff --git a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_Orange-Business-ToolsTheme_Dark_.ColoredSurface_Icon_Minimal_Default_Disabled_Rounded.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_Orange-Business-ToolsTheme_Dark_.ColoredSurface_Icon_Minimal_Default_Disabled_Rounded.png new file mode 100644 index 000000000..cd7ce7c5d Binary files /dev/null and b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_Orange-Business-ToolsTheme_Dark_.ColoredSurface_Icon_Minimal_Default_Disabled_Rounded.png differ diff --git a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_Orange-Business-ToolsTheme_Dark_.ColoredSurface_Icon_Minimal_Default_Rounded.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_Orange-Business-ToolsTheme_Dark_.ColoredSurface_Icon_Minimal_Default_Rounded.png new file mode 100644 index 000000000..81f9ca72c Binary files /dev/null and b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_Orange-Business-ToolsTheme_Dark_.ColoredSurface_Icon_Minimal_Default_Rounded.png differ diff --git a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_Orange-Business-ToolsTheme_Dark_.ColoredSurface_Icon_Strong_Default_Disabled_Rounded.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_Orange-Business-ToolsTheme_Dark_.ColoredSurface_Icon_Strong_Default_Disabled_Rounded.png new file mode 100644 index 000000000..71782f1e6 Binary files /dev/null and b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_Orange-Business-ToolsTheme_Dark_.ColoredSurface_Icon_Strong_Default_Disabled_Rounded.png differ diff --git a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_Orange-Business-ToolsTheme_Dark_.ColoredSurface_Icon_Strong_Default_Rounded.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_Orange-Business-ToolsTheme_Dark_.ColoredSurface_Icon_Strong_Default_Rounded.png new file mode 100644 index 000000000..1dabe11f3 Binary files /dev/null and b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_Orange-Business-ToolsTheme_Dark_.ColoredSurface_Icon_Strong_Default_Rounded.png differ diff --git a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_Orange-Business-ToolsTheme_Dark_.ColoredSurface_TextAndIcon_Default_Default_Disabled_Rounded.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_Orange-Business-ToolsTheme_Dark_.ColoredSurface_TextAndIcon_Default_Default_Disabled_Rounded.png new file mode 100644 index 000000000..37ea5d66b Binary files /dev/null and b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_Orange-Business-ToolsTheme_Dark_.ColoredSurface_TextAndIcon_Default_Default_Disabled_Rounded.png differ diff --git a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_Orange-Business-ToolsTheme_Dark_.ColoredSurface_TextAndIcon_Default_Default_Rounded.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_Orange-Business-ToolsTheme_Dark_.ColoredSurface_TextAndIcon_Default_Default_Rounded.png new file mode 100644 index 000000000..8662ece0d Binary files /dev/null and b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_Orange-Business-ToolsTheme_Dark_.ColoredSurface_TextAndIcon_Default_Default_Rounded.png differ diff --git a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_Orange-Business-ToolsTheme_Dark_.ColoredSurface_TextAndIcon_Minimal_Default_Disabled_Rounded.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_Orange-Business-ToolsTheme_Dark_.ColoredSurface_TextAndIcon_Minimal_Default_Disabled_Rounded.png new file mode 100644 index 000000000..16078fb3a Binary files /dev/null and b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_Orange-Business-ToolsTheme_Dark_.ColoredSurface_TextAndIcon_Minimal_Default_Disabled_Rounded.png differ diff --git a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_Orange-Business-ToolsTheme_Dark_.ColoredSurface_TextAndIcon_Minimal_Default_Rounded.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_Orange-Business-ToolsTheme_Dark_.ColoredSurface_TextAndIcon_Minimal_Default_Rounded.png new file mode 100644 index 000000000..b763bf5a4 Binary files /dev/null and b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_Orange-Business-ToolsTheme_Dark_.ColoredSurface_TextAndIcon_Minimal_Default_Rounded.png differ diff --git a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_Orange-Business-ToolsTheme_Dark_.ColoredSurface_TextAndIcon_Strong_Default_Disabled_Rounded.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_Orange-Business-ToolsTheme_Dark_.ColoredSurface_TextAndIcon_Strong_Default_Disabled_Rounded.png new file mode 100644 index 000000000..7bbae20fe Binary files /dev/null and b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_Orange-Business-ToolsTheme_Dark_.ColoredSurface_TextAndIcon_Strong_Default_Disabled_Rounded.png differ diff --git a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_Orange-Business-ToolsTheme_Dark_.ColoredSurface_TextAndIcon_Strong_Default_Rounded.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_Orange-Business-ToolsTheme_Dark_.ColoredSurface_TextAndIcon_Strong_Default_Rounded.png new file mode 100644 index 000000000..821867516 Binary files /dev/null and b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_Orange-Business-ToolsTheme_Dark_.ColoredSurface_TextAndIcon_Strong_Default_Rounded.png differ diff --git a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_Orange-Business-ToolsTheme_Dark_.ColoredSurface_Text_Default_Default_Disabled_Rounded.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_Orange-Business-ToolsTheme_Dark_.ColoredSurface_Text_Default_Default_Disabled_Rounded.png new file mode 100644 index 000000000..cc7bf222f Binary files /dev/null and b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_Orange-Business-ToolsTheme_Dark_.ColoredSurface_Text_Default_Default_Disabled_Rounded.png differ diff --git a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_Orange-Business-ToolsTheme_Dark_.ColoredSurface_Text_Default_Default_Rounded.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_Orange-Business-ToolsTheme_Dark_.ColoredSurface_Text_Default_Default_Rounded.png new file mode 100644 index 000000000..d7cc6c449 Binary files /dev/null and b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_Orange-Business-ToolsTheme_Dark_.ColoredSurface_Text_Default_Default_Rounded.png differ diff --git a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_Orange-Business-ToolsTheme_Dark_.ColoredSurface_Text_Minimal_Default_Disabled_Rounded.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_Orange-Business-ToolsTheme_Dark_.ColoredSurface_Text_Minimal_Default_Disabled_Rounded.png new file mode 100644 index 000000000..a98430ce5 Binary files /dev/null and b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_Orange-Business-ToolsTheme_Dark_.ColoredSurface_Text_Minimal_Default_Disabled_Rounded.png differ diff --git a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_Orange-Business-ToolsTheme_Dark_.ColoredSurface_Text_Minimal_Default_Rounded.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_Orange-Business-ToolsTheme_Dark_.ColoredSurface_Text_Minimal_Default_Rounded.png new file mode 100644 index 000000000..d90cac5dd Binary files /dev/null and b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_Orange-Business-ToolsTheme_Dark_.ColoredSurface_Text_Minimal_Default_Rounded.png differ diff --git a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_Orange-Business-ToolsTheme_Dark_.ColoredSurface_Text_Strong_Default_Disabled_Rounded.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_Orange-Business-ToolsTheme_Dark_.ColoredSurface_Text_Strong_Default_Disabled_Rounded.png new file mode 100644 index 000000000..a41e861dc Binary files /dev/null and b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_Orange-Business-ToolsTheme_Dark_.ColoredSurface_Text_Strong_Default_Disabled_Rounded.png differ diff --git a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_Orange-Business-ToolsTheme_Dark_.ColoredSurface_Text_Strong_Default_Rounded.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_Orange-Business-ToolsTheme_Dark_.ColoredSurface_Text_Strong_Default_Rounded.png new file mode 100644 index 000000000..e3a5682b1 Binary files /dev/null and b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_Orange-Business-ToolsTheme_Dark_.ColoredSurface_Text_Strong_Default_Rounded.png differ diff --git a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_Orange-Business-ToolsTheme_Dark_.Icon_Brand_Default.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_Orange-Business-ToolsTheme_Dark_.Icon_Brand_Default.png new file mode 100644 index 000000000..81f9ca72c Binary files /dev/null and b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_Orange-Business-ToolsTheme_Dark_.Icon_Brand_Default.png differ diff --git a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_Orange-Business-ToolsTheme_Dark_.Icon_Brand_Default_Disabled.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_Orange-Business-ToolsTheme_Dark_.Icon_Brand_Default_Disabled.png new file mode 100644 index 000000000..8cca6f1bb Binary files /dev/null and b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_Orange-Business-ToolsTheme_Dark_.Icon_Brand_Default_Disabled.png differ diff --git a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_Orange-Business-ToolsTheme_Dark_.Icon_Brand_Default_Disabled_Rounded.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_Orange-Business-ToolsTheme_Dark_.Icon_Brand_Default_Disabled_Rounded.png new file mode 100644 index 000000000..e67764649 Binary files /dev/null and b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_Orange-Business-ToolsTheme_Dark_.Icon_Brand_Default_Disabled_Rounded.png differ diff --git a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_Orange-Business-ToolsTheme_Dark_.Icon_Brand_Default_Rounded.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_Orange-Business-ToolsTheme_Dark_.Icon_Brand_Default_Rounded.png new file mode 100644 index 000000000..d554412f3 Binary files /dev/null and b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_Orange-Business-ToolsTheme_Dark_.Icon_Brand_Default_Rounded.png differ diff --git a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_Orange-Business-ToolsTheme_Dark_.Icon_Default_Default_Disabled_Rounded.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_Orange-Business-ToolsTheme_Dark_.Icon_Default_Default_Disabled_Rounded.png new file mode 100644 index 000000000..bd7014afe Binary files /dev/null and b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_Orange-Business-ToolsTheme_Dark_.Icon_Default_Default_Disabled_Rounded.png differ diff --git a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_Orange-Business-ToolsTheme_Dark_.Icon_Default_Default_Rounded.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_Orange-Business-ToolsTheme_Dark_.Icon_Default_Default_Rounded.png new file mode 100644 index 000000000..09410a493 Binary files /dev/null and b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_Orange-Business-ToolsTheme_Dark_.Icon_Default_Default_Rounded.png differ diff --git a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_Orange-Business-ToolsTheme_Dark_.Icon_Minimal_Default.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_Orange-Business-ToolsTheme_Dark_.Icon_Minimal_Default.png index 984ca6c78..50c2d6849 100644 Binary files a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_Orange-Business-ToolsTheme_Dark_.Icon_Minimal_Default.png and b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_Orange-Business-ToolsTheme_Dark_.Icon_Minimal_Default.png differ diff --git a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_Orange-Business-ToolsTheme_Dark_.Icon_Minimal_Default_Disabled.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_Orange-Business-ToolsTheme_Dark_.Icon_Minimal_Default_Disabled.png index e0e26f7f1..a0418486d 100644 Binary files a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_Orange-Business-ToolsTheme_Dark_.Icon_Minimal_Default_Disabled.png and b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_Orange-Business-ToolsTheme_Dark_.Icon_Minimal_Default_Disabled.png differ diff --git a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_Orange-Business-ToolsTheme_Dark_.Icon_Minimal_Default_Disabled_Rounded.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_Orange-Business-ToolsTheme_Dark_.Icon_Minimal_Default_Disabled_Rounded.png new file mode 100644 index 000000000..a0418486d Binary files /dev/null and b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_Orange-Business-ToolsTheme_Dark_.Icon_Minimal_Default_Disabled_Rounded.png differ diff --git a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_Orange-Business-ToolsTheme_Dark_.Icon_Minimal_Default_Rounded.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_Orange-Business-ToolsTheme_Dark_.Icon_Minimal_Default_Rounded.png new file mode 100644 index 000000000..50c2d6849 Binary files /dev/null and b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_Orange-Business-ToolsTheme_Dark_.Icon_Minimal_Default_Rounded.png differ diff --git a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_Orange-Business-ToolsTheme_Dark_.Icon_Negative_Default_Disabled_Rounded.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_Orange-Business-ToolsTheme_Dark_.Icon_Negative_Default_Disabled_Rounded.png new file mode 100644 index 000000000..e67764649 Binary files /dev/null and b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_Orange-Business-ToolsTheme_Dark_.Icon_Negative_Default_Disabled_Rounded.png differ diff --git a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_Orange-Business-ToolsTheme_Dark_.Icon_Negative_Default_Rounded.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_Orange-Business-ToolsTheme_Dark_.Icon_Negative_Default_Rounded.png new file mode 100644 index 000000000..a13fe10f6 Binary files /dev/null and b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_Orange-Business-ToolsTheme_Dark_.Icon_Negative_Default_Rounded.png differ diff --git a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_Orange-Business-ToolsTheme_Dark_.Icon_Strong_Default_Disabled_Rounded.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_Orange-Business-ToolsTheme_Dark_.Icon_Strong_Default_Disabled_Rounded.png new file mode 100644 index 000000000..e67764649 Binary files /dev/null and b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_Orange-Business-ToolsTheme_Dark_.Icon_Strong_Default_Disabled_Rounded.png differ diff --git a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_Orange-Business-ToolsTheme_Dark_.Icon_Strong_Default_Rounded.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_Orange-Business-ToolsTheme_Dark_.Icon_Strong_Default_Rounded.png new file mode 100644 index 000000000..87c51139f Binary files /dev/null and b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_Orange-Business-ToolsTheme_Dark_.Icon_Strong_Default_Rounded.png differ diff --git a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_Orange-Business-ToolsTheme_Dark_.TextAndIcon_Brand_Default.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_Orange-Business-ToolsTheme_Dark_.TextAndIcon_Brand_Default.png new file mode 100644 index 000000000..b763bf5a4 Binary files /dev/null and b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_Orange-Business-ToolsTheme_Dark_.TextAndIcon_Brand_Default.png differ diff --git a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_Orange-Business-ToolsTheme_Dark_.TextAndIcon_Brand_Default_Disabled.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_Orange-Business-ToolsTheme_Dark_.TextAndIcon_Brand_Default_Disabled.png new file mode 100644 index 000000000..1cf851524 Binary files /dev/null and b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_Orange-Business-ToolsTheme_Dark_.TextAndIcon_Brand_Default_Disabled.png differ diff --git a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_Orange-Business-ToolsTheme_Dark_.TextAndIcon_Brand_Default_Disabled_Rounded.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_Orange-Business-ToolsTheme_Dark_.TextAndIcon_Brand_Default_Disabled_Rounded.png new file mode 100644 index 000000000..e4da8894d Binary files /dev/null and b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_Orange-Business-ToolsTheme_Dark_.TextAndIcon_Brand_Default_Disabled_Rounded.png differ diff --git a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_Orange-Business-ToolsTheme_Dark_.TextAndIcon_Brand_Default_Rounded.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_Orange-Business-ToolsTheme_Dark_.TextAndIcon_Brand_Default_Rounded.png new file mode 100644 index 000000000..c07d243ee Binary files /dev/null and b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_Orange-Business-ToolsTheme_Dark_.TextAndIcon_Brand_Default_Rounded.png differ diff --git a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_Orange-Business-ToolsTheme_Dark_.TextAndIcon_Default_Default_Disabled_Rounded.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_Orange-Business-ToolsTheme_Dark_.TextAndIcon_Default_Default_Disabled_Rounded.png new file mode 100644 index 000000000..13e46e546 Binary files /dev/null and b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_Orange-Business-ToolsTheme_Dark_.TextAndIcon_Default_Default_Disabled_Rounded.png differ diff --git a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_Orange-Business-ToolsTheme_Dark_.TextAndIcon_Default_Default_Rounded.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_Orange-Business-ToolsTheme_Dark_.TextAndIcon_Default_Default_Rounded.png new file mode 100644 index 000000000..3188e9075 Binary files /dev/null and b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_Orange-Business-ToolsTheme_Dark_.TextAndIcon_Default_Default_Rounded.png differ diff --git a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_Orange-Business-ToolsTheme_Dark_.TextAndIcon_Minimal_Default.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_Orange-Business-ToolsTheme_Dark_.TextAndIcon_Minimal_Default.png index e5656cc4a..c60a6f40f 100644 Binary files a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_Orange-Business-ToolsTheme_Dark_.TextAndIcon_Minimal_Default.png and b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_Orange-Business-ToolsTheme_Dark_.TextAndIcon_Minimal_Default.png differ diff --git a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_Orange-Business-ToolsTheme_Dark_.TextAndIcon_Minimal_Default_Disabled.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_Orange-Business-ToolsTheme_Dark_.TextAndIcon_Minimal_Default_Disabled.png index c96af4b55..23fd76516 100644 Binary files a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_Orange-Business-ToolsTheme_Dark_.TextAndIcon_Minimal_Default_Disabled.png and b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_Orange-Business-ToolsTheme_Dark_.TextAndIcon_Minimal_Default_Disabled.png differ diff --git a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_Orange-Business-ToolsTheme_Dark_.TextAndIcon_Minimal_Default_Disabled_Rounded.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_Orange-Business-ToolsTheme_Dark_.TextAndIcon_Minimal_Default_Disabled_Rounded.png new file mode 100644 index 000000000..23fd76516 Binary files /dev/null and b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_Orange-Business-ToolsTheme_Dark_.TextAndIcon_Minimal_Default_Disabled_Rounded.png differ diff --git a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_Orange-Business-ToolsTheme_Dark_.TextAndIcon_Minimal_Default_Rounded.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_Orange-Business-ToolsTheme_Dark_.TextAndIcon_Minimal_Default_Rounded.png new file mode 100644 index 000000000..c60a6f40f Binary files /dev/null and b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_Orange-Business-ToolsTheme_Dark_.TextAndIcon_Minimal_Default_Rounded.png differ diff --git a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_Orange-Business-ToolsTheme_Dark_.TextAndIcon_Negative_Default_Disabled_Rounded.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_Orange-Business-ToolsTheme_Dark_.TextAndIcon_Negative_Default_Disabled_Rounded.png new file mode 100644 index 000000000..e4da8894d Binary files /dev/null and b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_Orange-Business-ToolsTheme_Dark_.TextAndIcon_Negative_Default_Disabled_Rounded.png differ diff --git a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_Orange-Business-ToolsTheme_Dark_.TextAndIcon_Negative_Default_Rounded.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_Orange-Business-ToolsTheme_Dark_.TextAndIcon_Negative_Default_Rounded.png new file mode 100644 index 000000000..ffe68fa60 Binary files /dev/null and b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_Orange-Business-ToolsTheme_Dark_.TextAndIcon_Negative_Default_Rounded.png differ diff --git a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_Orange-Business-ToolsTheme_Dark_.TextAndIcon_Strong_Default_Disabled_Rounded.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_Orange-Business-ToolsTheme_Dark_.TextAndIcon_Strong_Default_Disabled_Rounded.png new file mode 100644 index 000000000..e4da8894d Binary files /dev/null and b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_Orange-Business-ToolsTheme_Dark_.TextAndIcon_Strong_Default_Disabled_Rounded.png differ diff --git a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_Orange-Business-ToolsTheme_Dark_.TextAndIcon_Strong_Default_Rounded.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_Orange-Business-ToolsTheme_Dark_.TextAndIcon_Strong_Default_Rounded.png new file mode 100644 index 000000000..4731f796d Binary files /dev/null and b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_Orange-Business-ToolsTheme_Dark_.TextAndIcon_Strong_Default_Rounded.png differ diff --git a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_Orange-Business-ToolsTheme_Dark_.Text_Brand_Default.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_Orange-Business-ToolsTheme_Dark_.Text_Brand_Default.png new file mode 100644 index 000000000..d90cac5dd Binary files /dev/null and b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_Orange-Business-ToolsTheme_Dark_.Text_Brand_Default.png differ diff --git a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_Orange-Business-ToolsTheme_Dark_.Text_Brand_Default_Disabled.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_Orange-Business-ToolsTheme_Dark_.Text_Brand_Default_Disabled.png new file mode 100644 index 000000000..1d9b6f3d7 Binary files /dev/null and b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_Orange-Business-ToolsTheme_Dark_.Text_Brand_Default_Disabled.png differ diff --git a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_Orange-Business-ToolsTheme_Dark_.Text_Brand_Default_Disabled_Rounded.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_Orange-Business-ToolsTheme_Dark_.Text_Brand_Default_Disabled_Rounded.png new file mode 100644 index 000000000..fc487b544 Binary files /dev/null and b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_Orange-Business-ToolsTheme_Dark_.Text_Brand_Default_Disabled_Rounded.png differ diff --git a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_Orange-Business-ToolsTheme_Dark_.Text_Brand_Default_Rounded.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_Orange-Business-ToolsTheme_Dark_.Text_Brand_Default_Rounded.png new file mode 100644 index 000000000..fe2718a0e Binary files /dev/null and b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_Orange-Business-ToolsTheme_Dark_.Text_Brand_Default_Rounded.png differ diff --git a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_Orange-Business-ToolsTheme_Dark_.Text_Default_Default_Disabled_Rounded.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_Orange-Business-ToolsTheme_Dark_.Text_Default_Default_Disabled_Rounded.png new file mode 100644 index 000000000..b06879450 Binary files /dev/null and b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_Orange-Business-ToolsTheme_Dark_.Text_Default_Default_Disabled_Rounded.png differ diff --git a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_Orange-Business-ToolsTheme_Dark_.Text_Default_Default_Rounded.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_Orange-Business-ToolsTheme_Dark_.Text_Default_Default_Rounded.png new file mode 100644 index 000000000..b395c9dd8 Binary files /dev/null and b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_Orange-Business-ToolsTheme_Dark_.Text_Default_Default_Rounded.png differ diff --git a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_Orange-Business-ToolsTheme_Dark_.Text_Minimal_Default.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_Orange-Business-ToolsTheme_Dark_.Text_Minimal_Default.png index 86a018a6e..9b2a4d06f 100644 Binary files a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_Orange-Business-ToolsTheme_Dark_.Text_Minimal_Default.png and b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_Orange-Business-ToolsTheme_Dark_.Text_Minimal_Default.png differ diff --git a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_Orange-Business-ToolsTheme_Dark_.Text_Minimal_Default_Disabled.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_Orange-Business-ToolsTheme_Dark_.Text_Minimal_Default_Disabled.png index 3f06d9863..fb354ee6c 100644 Binary files a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_Orange-Business-ToolsTheme_Dark_.Text_Minimal_Default_Disabled.png and b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_Orange-Business-ToolsTheme_Dark_.Text_Minimal_Default_Disabled.png differ diff --git a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_Orange-Business-ToolsTheme_Dark_.Text_Minimal_Default_Disabled_Rounded.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_Orange-Business-ToolsTheme_Dark_.Text_Minimal_Default_Disabled_Rounded.png new file mode 100644 index 000000000..fb354ee6c Binary files /dev/null and b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_Orange-Business-ToolsTheme_Dark_.Text_Minimal_Default_Disabled_Rounded.png differ diff --git a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_Orange-Business-ToolsTheme_Dark_.Text_Minimal_Default_Rounded.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_Orange-Business-ToolsTheme_Dark_.Text_Minimal_Default_Rounded.png new file mode 100644 index 000000000..9b2a4d06f Binary files /dev/null and b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_Orange-Business-ToolsTheme_Dark_.Text_Minimal_Default_Rounded.png differ diff --git a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_Orange-Business-ToolsTheme_Dark_.Text_Negative_Default_Disabled_Rounded.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_Orange-Business-ToolsTheme_Dark_.Text_Negative_Default_Disabled_Rounded.png new file mode 100644 index 000000000..fc487b544 Binary files /dev/null and b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_Orange-Business-ToolsTheme_Dark_.Text_Negative_Default_Disabled_Rounded.png differ diff --git a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_Orange-Business-ToolsTheme_Dark_.Text_Negative_Default_Rounded.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_Orange-Business-ToolsTheme_Dark_.Text_Negative_Default_Rounded.png new file mode 100644 index 000000000..c4a29fb67 Binary files /dev/null and b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_Orange-Business-ToolsTheme_Dark_.Text_Negative_Default_Rounded.png differ diff --git a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_Orange-Business-ToolsTheme_Dark_.Text_Strong_Default_Disabled_Rounded.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_Orange-Business-ToolsTheme_Dark_.Text_Strong_Default_Disabled_Rounded.png new file mode 100644 index 000000000..fc487b544 Binary files /dev/null and b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_Orange-Business-ToolsTheme_Dark_.Text_Strong_Default_Disabled_Rounded.png differ diff --git a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_Orange-Business-ToolsTheme_Dark_.Text_Strong_Default_Rounded.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_Orange-Business-ToolsTheme_Dark_.Text_Strong_Default_Rounded.png new file mode 100644 index 000000000..7da6575dc Binary files /dev/null and b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_Orange-Business-ToolsTheme_Dark_.Text_Strong_Default_Rounded.png differ diff --git a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_Orange-Business-ToolsTheme_Dark_HighContrast.ColoredSurface_Icon_Default_Default_Disabled_Rounded.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_Orange-Business-ToolsTheme_Dark_HighContrast.ColoredSurface_Icon_Default_Default_Disabled_Rounded.png new file mode 100644 index 000000000..746e47fb0 Binary files /dev/null and b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_Orange-Business-ToolsTheme_Dark_HighContrast.ColoredSurface_Icon_Default_Default_Disabled_Rounded.png differ diff --git a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_Orange-Business-ToolsTheme_Dark_HighContrast.ColoredSurface_Icon_Default_Default_Rounded.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_Orange-Business-ToolsTheme_Dark_HighContrast.ColoredSurface_Icon_Default_Default_Rounded.png new file mode 100644 index 000000000..e5f1b2d41 Binary files /dev/null and b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_Orange-Business-ToolsTheme_Dark_HighContrast.ColoredSurface_Icon_Default_Default_Rounded.png differ diff --git a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_Orange-Business-ToolsTheme_Dark_HighContrast.ColoredSurface_Icon_Minimal_Default_Disabled_Rounded.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_Orange-Business-ToolsTheme_Dark_HighContrast.ColoredSurface_Icon_Minimal_Default_Disabled_Rounded.png new file mode 100644 index 000000000..cd7ce7c5d Binary files /dev/null and b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_Orange-Business-ToolsTheme_Dark_HighContrast.ColoredSurface_Icon_Minimal_Default_Disabled_Rounded.png differ diff --git a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_Orange-Business-ToolsTheme_Dark_HighContrast.ColoredSurface_Icon_Minimal_Default_Rounded.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_Orange-Business-ToolsTheme_Dark_HighContrast.ColoredSurface_Icon_Minimal_Default_Rounded.png new file mode 100644 index 000000000..81f9ca72c Binary files /dev/null and b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_Orange-Business-ToolsTheme_Dark_HighContrast.ColoredSurface_Icon_Minimal_Default_Rounded.png differ diff --git a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_Orange-Business-ToolsTheme_Dark_HighContrast.ColoredSurface_Icon_Strong_Default_Disabled_Rounded.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_Orange-Business-ToolsTheme_Dark_HighContrast.ColoredSurface_Icon_Strong_Default_Disabled_Rounded.png new file mode 100644 index 000000000..71782f1e6 Binary files /dev/null and b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_Orange-Business-ToolsTheme_Dark_HighContrast.ColoredSurface_Icon_Strong_Default_Disabled_Rounded.png differ diff --git a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_Orange-Business-ToolsTheme_Dark_HighContrast.ColoredSurface_Icon_Strong_Default_Rounded.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_Orange-Business-ToolsTheme_Dark_HighContrast.ColoredSurface_Icon_Strong_Default_Rounded.png new file mode 100644 index 000000000..1dabe11f3 Binary files /dev/null and b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_Orange-Business-ToolsTheme_Dark_HighContrast.ColoredSurface_Icon_Strong_Default_Rounded.png differ diff --git a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_Orange-Business-ToolsTheme_Dark_HighContrast.ColoredSurface_TextAndIcon_Default_Default_Disabled_Rounded.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_Orange-Business-ToolsTheme_Dark_HighContrast.ColoredSurface_TextAndIcon_Default_Default_Disabled_Rounded.png new file mode 100644 index 000000000..37ea5d66b Binary files /dev/null and b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_Orange-Business-ToolsTheme_Dark_HighContrast.ColoredSurface_TextAndIcon_Default_Default_Disabled_Rounded.png differ diff --git a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_Orange-Business-ToolsTheme_Dark_HighContrast.ColoredSurface_TextAndIcon_Default_Default_Rounded.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_Orange-Business-ToolsTheme_Dark_HighContrast.ColoredSurface_TextAndIcon_Default_Default_Rounded.png new file mode 100644 index 000000000..8662ece0d Binary files /dev/null and b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_Orange-Business-ToolsTheme_Dark_HighContrast.ColoredSurface_TextAndIcon_Default_Default_Rounded.png differ diff --git a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_Orange-Business-ToolsTheme_Dark_HighContrast.ColoredSurface_TextAndIcon_Minimal_Default_Disabled_Rounded.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_Orange-Business-ToolsTheme_Dark_HighContrast.ColoredSurface_TextAndIcon_Minimal_Default_Disabled_Rounded.png new file mode 100644 index 000000000..16078fb3a Binary files /dev/null and b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_Orange-Business-ToolsTheme_Dark_HighContrast.ColoredSurface_TextAndIcon_Minimal_Default_Disabled_Rounded.png differ diff --git a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_Orange-Business-ToolsTheme_Dark_HighContrast.ColoredSurface_TextAndIcon_Minimal_Default_Rounded.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_Orange-Business-ToolsTheme_Dark_HighContrast.ColoredSurface_TextAndIcon_Minimal_Default_Rounded.png new file mode 100644 index 000000000..b763bf5a4 Binary files /dev/null and b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_Orange-Business-ToolsTheme_Dark_HighContrast.ColoredSurface_TextAndIcon_Minimal_Default_Rounded.png differ diff --git a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_Orange-Business-ToolsTheme_Dark_HighContrast.ColoredSurface_TextAndIcon_Strong_Default_Disabled_Rounded.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_Orange-Business-ToolsTheme_Dark_HighContrast.ColoredSurface_TextAndIcon_Strong_Default_Disabled_Rounded.png new file mode 100644 index 000000000..7bbae20fe Binary files /dev/null and b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_Orange-Business-ToolsTheme_Dark_HighContrast.ColoredSurface_TextAndIcon_Strong_Default_Disabled_Rounded.png differ diff --git a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_Orange-Business-ToolsTheme_Dark_HighContrast.ColoredSurface_TextAndIcon_Strong_Default_Rounded.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_Orange-Business-ToolsTheme_Dark_HighContrast.ColoredSurface_TextAndIcon_Strong_Default_Rounded.png new file mode 100644 index 000000000..821867516 Binary files /dev/null and b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_Orange-Business-ToolsTheme_Dark_HighContrast.ColoredSurface_TextAndIcon_Strong_Default_Rounded.png differ diff --git a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_Orange-Business-ToolsTheme_Dark_HighContrast.ColoredSurface_Text_Default_Default_Disabled_Rounded.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_Orange-Business-ToolsTheme_Dark_HighContrast.ColoredSurface_Text_Default_Default_Disabled_Rounded.png new file mode 100644 index 000000000..cc7bf222f Binary files /dev/null and b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_Orange-Business-ToolsTheme_Dark_HighContrast.ColoredSurface_Text_Default_Default_Disabled_Rounded.png differ diff --git a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_Orange-Business-ToolsTheme_Dark_HighContrast.ColoredSurface_Text_Default_Default_Rounded.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_Orange-Business-ToolsTheme_Dark_HighContrast.ColoredSurface_Text_Default_Default_Rounded.png new file mode 100644 index 000000000..d7cc6c449 Binary files /dev/null and b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_Orange-Business-ToolsTheme_Dark_HighContrast.ColoredSurface_Text_Default_Default_Rounded.png differ diff --git a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_Orange-Business-ToolsTheme_Dark_HighContrast.ColoredSurface_Text_Minimal_Default_Disabled_Rounded.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_Orange-Business-ToolsTheme_Dark_HighContrast.ColoredSurface_Text_Minimal_Default_Disabled_Rounded.png new file mode 100644 index 000000000..a98430ce5 Binary files /dev/null and b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_Orange-Business-ToolsTheme_Dark_HighContrast.ColoredSurface_Text_Minimal_Default_Disabled_Rounded.png differ diff --git a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_Orange-Business-ToolsTheme_Dark_HighContrast.ColoredSurface_Text_Minimal_Default_Rounded.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_Orange-Business-ToolsTheme_Dark_HighContrast.ColoredSurface_Text_Minimal_Default_Rounded.png new file mode 100644 index 000000000..d90cac5dd Binary files /dev/null and b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_Orange-Business-ToolsTheme_Dark_HighContrast.ColoredSurface_Text_Minimal_Default_Rounded.png differ diff --git a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_Orange-Business-ToolsTheme_Dark_HighContrast.ColoredSurface_Text_Strong_Default_Disabled_Rounded.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_Orange-Business-ToolsTheme_Dark_HighContrast.ColoredSurface_Text_Strong_Default_Disabled_Rounded.png new file mode 100644 index 000000000..a41e861dc Binary files /dev/null and b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_Orange-Business-ToolsTheme_Dark_HighContrast.ColoredSurface_Text_Strong_Default_Disabled_Rounded.png differ diff --git a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_Orange-Business-ToolsTheme_Dark_HighContrast.ColoredSurface_Text_Strong_Default_Rounded.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_Orange-Business-ToolsTheme_Dark_HighContrast.ColoredSurface_Text_Strong_Default_Rounded.png new file mode 100644 index 000000000..e3a5682b1 Binary files /dev/null and b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_Orange-Business-ToolsTheme_Dark_HighContrast.ColoredSurface_Text_Strong_Default_Rounded.png differ diff --git a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_Orange-Business-ToolsTheme_Dark_HighContrast.Icon_Brand_Default.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_Orange-Business-ToolsTheme_Dark_HighContrast.Icon_Brand_Default.png new file mode 100644 index 000000000..81f9ca72c Binary files /dev/null and b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_Orange-Business-ToolsTheme_Dark_HighContrast.Icon_Brand_Default.png differ diff --git a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_Orange-Business-ToolsTheme_Dark_HighContrast.Icon_Brand_Default_Disabled.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_Orange-Business-ToolsTheme_Dark_HighContrast.Icon_Brand_Default_Disabled.png new file mode 100644 index 000000000..8cca6f1bb Binary files /dev/null and b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_Orange-Business-ToolsTheme_Dark_HighContrast.Icon_Brand_Default_Disabled.png differ diff --git a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_Orange-Business-ToolsTheme_Dark_HighContrast.Icon_Brand_Default_Disabled_Rounded.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_Orange-Business-ToolsTheme_Dark_HighContrast.Icon_Brand_Default_Disabled_Rounded.png new file mode 100644 index 000000000..e67764649 Binary files /dev/null and b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_Orange-Business-ToolsTheme_Dark_HighContrast.Icon_Brand_Default_Disabled_Rounded.png differ diff --git a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_Orange-Business-ToolsTheme_Dark_HighContrast.Icon_Brand_Default_Rounded.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_Orange-Business-ToolsTheme_Dark_HighContrast.Icon_Brand_Default_Rounded.png new file mode 100644 index 000000000..d554412f3 Binary files /dev/null and b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_Orange-Business-ToolsTheme_Dark_HighContrast.Icon_Brand_Default_Rounded.png differ diff --git a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_Orange-Business-ToolsTheme_Dark_HighContrast.Icon_Default_Default_Disabled_Rounded.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_Orange-Business-ToolsTheme_Dark_HighContrast.Icon_Default_Default_Disabled_Rounded.png new file mode 100644 index 000000000..bd7014afe Binary files /dev/null and b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_Orange-Business-ToolsTheme_Dark_HighContrast.Icon_Default_Default_Disabled_Rounded.png differ diff --git a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_Orange-Business-ToolsTheme_Dark_HighContrast.Icon_Default_Default_Rounded.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_Orange-Business-ToolsTheme_Dark_HighContrast.Icon_Default_Default_Rounded.png new file mode 100644 index 000000000..09410a493 Binary files /dev/null and b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_Orange-Business-ToolsTheme_Dark_HighContrast.Icon_Default_Default_Rounded.png differ diff --git a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_Orange-Business-ToolsTheme_Dark_HighContrast.Icon_Minimal_Default.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_Orange-Business-ToolsTheme_Dark_HighContrast.Icon_Minimal_Default.png index 984ca6c78..50c2d6849 100644 Binary files a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_Orange-Business-ToolsTheme_Dark_HighContrast.Icon_Minimal_Default.png and b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_Orange-Business-ToolsTheme_Dark_HighContrast.Icon_Minimal_Default.png differ diff --git a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_Orange-Business-ToolsTheme_Dark_HighContrast.Icon_Minimal_Default_Disabled.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_Orange-Business-ToolsTheme_Dark_HighContrast.Icon_Minimal_Default_Disabled.png index e0e26f7f1..a0418486d 100644 Binary files a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_Orange-Business-ToolsTheme_Dark_HighContrast.Icon_Minimal_Default_Disabled.png and b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_Orange-Business-ToolsTheme_Dark_HighContrast.Icon_Minimal_Default_Disabled.png differ diff --git a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_Orange-Business-ToolsTheme_Dark_HighContrast.Icon_Minimal_Default_Disabled_Rounded.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_Orange-Business-ToolsTheme_Dark_HighContrast.Icon_Minimal_Default_Disabled_Rounded.png new file mode 100644 index 000000000..a0418486d Binary files /dev/null and b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_Orange-Business-ToolsTheme_Dark_HighContrast.Icon_Minimal_Default_Disabled_Rounded.png differ diff --git a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_Orange-Business-ToolsTheme_Dark_HighContrast.Icon_Minimal_Default_Rounded.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_Orange-Business-ToolsTheme_Dark_HighContrast.Icon_Minimal_Default_Rounded.png new file mode 100644 index 000000000..50c2d6849 Binary files /dev/null and b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_Orange-Business-ToolsTheme_Dark_HighContrast.Icon_Minimal_Default_Rounded.png differ diff --git a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_Orange-Business-ToolsTheme_Dark_HighContrast.Icon_Negative_Default_Disabled_Rounded.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_Orange-Business-ToolsTheme_Dark_HighContrast.Icon_Negative_Default_Disabled_Rounded.png new file mode 100644 index 000000000..e67764649 Binary files /dev/null and b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_Orange-Business-ToolsTheme_Dark_HighContrast.Icon_Negative_Default_Disabled_Rounded.png differ diff --git a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_Orange-Business-ToolsTheme_Dark_HighContrast.Icon_Negative_Default_Rounded.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_Orange-Business-ToolsTheme_Dark_HighContrast.Icon_Negative_Default_Rounded.png new file mode 100644 index 000000000..a13fe10f6 Binary files /dev/null and b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_Orange-Business-ToolsTheme_Dark_HighContrast.Icon_Negative_Default_Rounded.png differ diff --git a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_Orange-Business-ToolsTheme_Dark_HighContrast.Icon_Strong_Default_Disabled_Rounded.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_Orange-Business-ToolsTheme_Dark_HighContrast.Icon_Strong_Default_Disabled_Rounded.png new file mode 100644 index 000000000..e67764649 Binary files /dev/null and b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_Orange-Business-ToolsTheme_Dark_HighContrast.Icon_Strong_Default_Disabled_Rounded.png differ diff --git a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_Orange-Business-ToolsTheme_Dark_HighContrast.Icon_Strong_Default_Rounded.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_Orange-Business-ToolsTheme_Dark_HighContrast.Icon_Strong_Default_Rounded.png new file mode 100644 index 000000000..87c51139f Binary files /dev/null and b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_Orange-Business-ToolsTheme_Dark_HighContrast.Icon_Strong_Default_Rounded.png differ diff --git a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_Orange-Business-ToolsTheme_Dark_HighContrast.TextAndIcon_Brand_Default.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_Orange-Business-ToolsTheme_Dark_HighContrast.TextAndIcon_Brand_Default.png new file mode 100644 index 000000000..b763bf5a4 Binary files /dev/null and b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_Orange-Business-ToolsTheme_Dark_HighContrast.TextAndIcon_Brand_Default.png differ diff --git a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_Orange-Business-ToolsTheme_Dark_HighContrast.TextAndIcon_Brand_Default_Disabled.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_Orange-Business-ToolsTheme_Dark_HighContrast.TextAndIcon_Brand_Default_Disabled.png new file mode 100644 index 000000000..1cf851524 Binary files /dev/null and b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_Orange-Business-ToolsTheme_Dark_HighContrast.TextAndIcon_Brand_Default_Disabled.png differ diff --git a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_Orange-Business-ToolsTheme_Dark_HighContrast.TextAndIcon_Brand_Default_Disabled_Rounded.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_Orange-Business-ToolsTheme_Dark_HighContrast.TextAndIcon_Brand_Default_Disabled_Rounded.png new file mode 100644 index 000000000..e4da8894d Binary files /dev/null and b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_Orange-Business-ToolsTheme_Dark_HighContrast.TextAndIcon_Brand_Default_Disabled_Rounded.png differ diff --git a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_Orange-Business-ToolsTheme_Dark_HighContrast.TextAndIcon_Brand_Default_Rounded.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_Orange-Business-ToolsTheme_Dark_HighContrast.TextAndIcon_Brand_Default_Rounded.png new file mode 100644 index 000000000..c07d243ee Binary files /dev/null and b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_Orange-Business-ToolsTheme_Dark_HighContrast.TextAndIcon_Brand_Default_Rounded.png differ diff --git a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_Orange-Business-ToolsTheme_Dark_HighContrast.TextAndIcon_Default_Default_Disabled_Rounded.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_Orange-Business-ToolsTheme_Dark_HighContrast.TextAndIcon_Default_Default_Disabled_Rounded.png new file mode 100644 index 000000000..13e46e546 Binary files /dev/null and b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_Orange-Business-ToolsTheme_Dark_HighContrast.TextAndIcon_Default_Default_Disabled_Rounded.png differ diff --git a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_Orange-Business-ToolsTheme_Dark_HighContrast.TextAndIcon_Default_Default_Rounded.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_Orange-Business-ToolsTheme_Dark_HighContrast.TextAndIcon_Default_Default_Rounded.png new file mode 100644 index 000000000..3188e9075 Binary files /dev/null and b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_Orange-Business-ToolsTheme_Dark_HighContrast.TextAndIcon_Default_Default_Rounded.png differ diff --git a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_Orange-Business-ToolsTheme_Dark_HighContrast.TextAndIcon_Minimal_Default.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_Orange-Business-ToolsTheme_Dark_HighContrast.TextAndIcon_Minimal_Default.png index e5656cc4a..c60a6f40f 100644 Binary files a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_Orange-Business-ToolsTheme_Dark_HighContrast.TextAndIcon_Minimal_Default.png and b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_Orange-Business-ToolsTheme_Dark_HighContrast.TextAndIcon_Minimal_Default.png differ diff --git a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_Orange-Business-ToolsTheme_Dark_HighContrast.TextAndIcon_Minimal_Default_Disabled.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_Orange-Business-ToolsTheme_Dark_HighContrast.TextAndIcon_Minimal_Default_Disabled.png index c96af4b55..23fd76516 100644 Binary files a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_Orange-Business-ToolsTheme_Dark_HighContrast.TextAndIcon_Minimal_Default_Disabled.png and b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_Orange-Business-ToolsTheme_Dark_HighContrast.TextAndIcon_Minimal_Default_Disabled.png differ diff --git a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_Orange-Business-ToolsTheme_Dark_HighContrast.TextAndIcon_Minimal_Default_Disabled_Rounded.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_Orange-Business-ToolsTheme_Dark_HighContrast.TextAndIcon_Minimal_Default_Disabled_Rounded.png new file mode 100644 index 000000000..23fd76516 Binary files /dev/null and b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_Orange-Business-ToolsTheme_Dark_HighContrast.TextAndIcon_Minimal_Default_Disabled_Rounded.png differ diff --git a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_Orange-Business-ToolsTheme_Dark_HighContrast.TextAndIcon_Minimal_Default_Rounded.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_Orange-Business-ToolsTheme_Dark_HighContrast.TextAndIcon_Minimal_Default_Rounded.png new file mode 100644 index 000000000..c60a6f40f Binary files /dev/null and b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_Orange-Business-ToolsTheme_Dark_HighContrast.TextAndIcon_Minimal_Default_Rounded.png differ diff --git a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_Orange-Business-ToolsTheme_Dark_HighContrast.TextAndIcon_Negative_Default_Disabled_Rounded.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_Orange-Business-ToolsTheme_Dark_HighContrast.TextAndIcon_Negative_Default_Disabled_Rounded.png new file mode 100644 index 000000000..e4da8894d Binary files /dev/null and b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_Orange-Business-ToolsTheme_Dark_HighContrast.TextAndIcon_Negative_Default_Disabled_Rounded.png differ diff --git a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_Orange-Business-ToolsTheme_Dark_HighContrast.TextAndIcon_Negative_Default_Rounded.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_Orange-Business-ToolsTheme_Dark_HighContrast.TextAndIcon_Negative_Default_Rounded.png new file mode 100644 index 000000000..ffe68fa60 Binary files /dev/null and b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_Orange-Business-ToolsTheme_Dark_HighContrast.TextAndIcon_Negative_Default_Rounded.png differ diff --git a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_Orange-Business-ToolsTheme_Dark_HighContrast.TextAndIcon_Strong_Default_Disabled_Rounded.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_Orange-Business-ToolsTheme_Dark_HighContrast.TextAndIcon_Strong_Default_Disabled_Rounded.png new file mode 100644 index 000000000..e4da8894d Binary files /dev/null and b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_Orange-Business-ToolsTheme_Dark_HighContrast.TextAndIcon_Strong_Default_Disabled_Rounded.png differ diff --git a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_Orange-Business-ToolsTheme_Dark_HighContrast.TextAndIcon_Strong_Default_Rounded.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_Orange-Business-ToolsTheme_Dark_HighContrast.TextAndIcon_Strong_Default_Rounded.png new file mode 100644 index 000000000..4731f796d Binary files /dev/null and b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_Orange-Business-ToolsTheme_Dark_HighContrast.TextAndIcon_Strong_Default_Rounded.png differ diff --git a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_Orange-Business-ToolsTheme_Dark_HighContrast.Text_Brand_Default.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_Orange-Business-ToolsTheme_Dark_HighContrast.Text_Brand_Default.png new file mode 100644 index 000000000..d90cac5dd Binary files /dev/null and b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_Orange-Business-ToolsTheme_Dark_HighContrast.Text_Brand_Default.png differ diff --git a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_Orange-Business-ToolsTheme_Dark_HighContrast.Text_Brand_Default_Disabled.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_Orange-Business-ToolsTheme_Dark_HighContrast.Text_Brand_Default_Disabled.png new file mode 100644 index 000000000..1d9b6f3d7 Binary files /dev/null and b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_Orange-Business-ToolsTheme_Dark_HighContrast.Text_Brand_Default_Disabled.png differ diff --git a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_Orange-Business-ToolsTheme_Dark_HighContrast.Text_Brand_Default_Disabled_Rounded.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_Orange-Business-ToolsTheme_Dark_HighContrast.Text_Brand_Default_Disabled_Rounded.png new file mode 100644 index 000000000..fc487b544 Binary files /dev/null and b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_Orange-Business-ToolsTheme_Dark_HighContrast.Text_Brand_Default_Disabled_Rounded.png differ diff --git a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_Orange-Business-ToolsTheme_Dark_HighContrast.Text_Brand_Default_Rounded.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_Orange-Business-ToolsTheme_Dark_HighContrast.Text_Brand_Default_Rounded.png new file mode 100644 index 000000000..fe2718a0e Binary files /dev/null and b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_Orange-Business-ToolsTheme_Dark_HighContrast.Text_Brand_Default_Rounded.png differ diff --git a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_Orange-Business-ToolsTheme_Dark_HighContrast.Text_Default_Default_Disabled_Rounded.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_Orange-Business-ToolsTheme_Dark_HighContrast.Text_Default_Default_Disabled_Rounded.png new file mode 100644 index 000000000..b06879450 Binary files /dev/null and b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_Orange-Business-ToolsTheme_Dark_HighContrast.Text_Default_Default_Disabled_Rounded.png differ diff --git a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_Orange-Business-ToolsTheme_Dark_HighContrast.Text_Default_Default_Rounded.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_Orange-Business-ToolsTheme_Dark_HighContrast.Text_Default_Default_Rounded.png new file mode 100644 index 000000000..b395c9dd8 Binary files /dev/null and b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_Orange-Business-ToolsTheme_Dark_HighContrast.Text_Default_Default_Rounded.png differ diff --git a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_Orange-Business-ToolsTheme_Dark_HighContrast.Text_Minimal_Default.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_Orange-Business-ToolsTheme_Dark_HighContrast.Text_Minimal_Default.png index 86a018a6e..9b2a4d06f 100644 Binary files a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_Orange-Business-ToolsTheme_Dark_HighContrast.Text_Minimal_Default.png and b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_Orange-Business-ToolsTheme_Dark_HighContrast.Text_Minimal_Default.png differ diff --git a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_Orange-Business-ToolsTheme_Dark_HighContrast.Text_Minimal_Default_Disabled.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_Orange-Business-ToolsTheme_Dark_HighContrast.Text_Minimal_Default_Disabled.png index 3f06d9863..fb354ee6c 100644 Binary files a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_Orange-Business-ToolsTheme_Dark_HighContrast.Text_Minimal_Default_Disabled.png and b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_Orange-Business-ToolsTheme_Dark_HighContrast.Text_Minimal_Default_Disabled.png differ diff --git a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_Orange-Business-ToolsTheme_Dark_HighContrast.Text_Minimal_Default_Disabled_Rounded.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_Orange-Business-ToolsTheme_Dark_HighContrast.Text_Minimal_Default_Disabled_Rounded.png new file mode 100644 index 000000000..fb354ee6c Binary files /dev/null and b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_Orange-Business-ToolsTheme_Dark_HighContrast.Text_Minimal_Default_Disabled_Rounded.png differ diff --git a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_Orange-Business-ToolsTheme_Dark_HighContrast.Text_Minimal_Default_Rounded.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_Orange-Business-ToolsTheme_Dark_HighContrast.Text_Minimal_Default_Rounded.png new file mode 100644 index 000000000..9b2a4d06f Binary files /dev/null and b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_Orange-Business-ToolsTheme_Dark_HighContrast.Text_Minimal_Default_Rounded.png differ diff --git a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_Orange-Business-ToolsTheme_Dark_HighContrast.Text_Negative_Default_Disabled_Rounded.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_Orange-Business-ToolsTheme_Dark_HighContrast.Text_Negative_Default_Disabled_Rounded.png new file mode 100644 index 000000000..fc487b544 Binary files /dev/null and b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_Orange-Business-ToolsTheme_Dark_HighContrast.Text_Negative_Default_Disabled_Rounded.png differ diff --git a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_Orange-Business-ToolsTheme_Dark_HighContrast.Text_Negative_Default_Rounded.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_Orange-Business-ToolsTheme_Dark_HighContrast.Text_Negative_Default_Rounded.png new file mode 100644 index 000000000..c4a29fb67 Binary files /dev/null and b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_Orange-Business-ToolsTheme_Dark_HighContrast.Text_Negative_Default_Rounded.png differ diff --git a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_Orange-Business-ToolsTheme_Dark_HighContrast.Text_Strong_Default_Disabled_Rounded.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_Orange-Business-ToolsTheme_Dark_HighContrast.Text_Strong_Default_Disabled_Rounded.png new file mode 100644 index 000000000..fc487b544 Binary files /dev/null and b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_Orange-Business-ToolsTheme_Dark_HighContrast.Text_Strong_Default_Disabled_Rounded.png differ diff --git a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_Orange-Business-ToolsTheme_Dark_HighContrast.Text_Strong_Default_Rounded.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_Orange-Business-ToolsTheme_Dark_HighContrast.Text_Strong_Default_Rounded.png new file mode 100644 index 000000000..7da6575dc Binary files /dev/null and b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_Orange-Business-ToolsTheme_Dark_HighContrast.Text_Strong_Default_Rounded.png differ diff --git a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_Orange-Business-ToolsTheme_Light_.ColoredSurface_Icon_Default_Default_Disabled_Rounded.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_Orange-Business-ToolsTheme_Light_.ColoredSurface_Icon_Default_Default_Disabled_Rounded.png new file mode 100644 index 000000000..fc710929c Binary files /dev/null and b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_Orange-Business-ToolsTheme_Light_.ColoredSurface_Icon_Default_Default_Disabled_Rounded.png differ diff --git a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_Orange-Business-ToolsTheme_Light_.ColoredSurface_Icon_Default_Default_Rounded.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_Orange-Business-ToolsTheme_Light_.ColoredSurface_Icon_Default_Default_Rounded.png new file mode 100644 index 000000000..07b66fcdc Binary files /dev/null and b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_Orange-Business-ToolsTheme_Light_.ColoredSurface_Icon_Default_Default_Rounded.png differ diff --git a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_Orange-Business-ToolsTheme_Light_.ColoredSurface_Icon_Minimal_Default_Disabled_Rounded.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_Orange-Business-ToolsTheme_Light_.ColoredSurface_Icon_Minimal_Default_Disabled_Rounded.png new file mode 100644 index 000000000..661e53fb1 Binary files /dev/null and b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_Orange-Business-ToolsTheme_Light_.ColoredSurface_Icon_Minimal_Default_Disabled_Rounded.png differ diff --git a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_Orange-Business-ToolsTheme_Light_.ColoredSurface_Icon_Minimal_Default_Rounded.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_Orange-Business-ToolsTheme_Light_.ColoredSurface_Icon_Minimal_Default_Rounded.png new file mode 100644 index 000000000..0966c0bb6 Binary files /dev/null and b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_Orange-Business-ToolsTheme_Light_.ColoredSurface_Icon_Minimal_Default_Rounded.png differ diff --git a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_Orange-Business-ToolsTheme_Light_.ColoredSurface_Icon_Strong_Default_Disabled_Rounded.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_Orange-Business-ToolsTheme_Light_.ColoredSurface_Icon_Strong_Default_Disabled_Rounded.png new file mode 100644 index 000000000..228c058d1 Binary files /dev/null and b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_Orange-Business-ToolsTheme_Light_.ColoredSurface_Icon_Strong_Default_Disabled_Rounded.png differ diff --git a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_Orange-Business-ToolsTheme_Light_.ColoredSurface_Icon_Strong_Default_Rounded.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_Orange-Business-ToolsTheme_Light_.ColoredSurface_Icon_Strong_Default_Rounded.png new file mode 100644 index 000000000..a32125b49 Binary files /dev/null and b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_Orange-Business-ToolsTheme_Light_.ColoredSurface_Icon_Strong_Default_Rounded.png differ diff --git a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_Orange-Business-ToolsTheme_Light_.ColoredSurface_TextAndIcon_Default_Default_Disabled_Rounded.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_Orange-Business-ToolsTheme_Light_.ColoredSurface_TextAndIcon_Default_Default_Disabled_Rounded.png new file mode 100644 index 000000000..a04e3392a Binary files /dev/null and b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_Orange-Business-ToolsTheme_Light_.ColoredSurface_TextAndIcon_Default_Default_Disabled_Rounded.png differ diff --git a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_Orange-Business-ToolsTheme_Light_.ColoredSurface_TextAndIcon_Default_Default_Rounded.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_Orange-Business-ToolsTheme_Light_.ColoredSurface_TextAndIcon_Default_Default_Rounded.png new file mode 100644 index 000000000..201c99ba9 Binary files /dev/null and b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_Orange-Business-ToolsTheme_Light_.ColoredSurface_TextAndIcon_Default_Default_Rounded.png differ diff --git a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_Orange-Business-ToolsTheme_Light_.ColoredSurface_TextAndIcon_Minimal_Default_Disabled_Rounded.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_Orange-Business-ToolsTheme_Light_.ColoredSurface_TextAndIcon_Minimal_Default_Disabled_Rounded.png new file mode 100644 index 000000000..eae1b3567 Binary files /dev/null and b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_Orange-Business-ToolsTheme_Light_.ColoredSurface_TextAndIcon_Minimal_Default_Disabled_Rounded.png differ diff --git a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_Orange-Business-ToolsTheme_Light_.ColoredSurface_TextAndIcon_Minimal_Default_Rounded.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_Orange-Business-ToolsTheme_Light_.ColoredSurface_TextAndIcon_Minimal_Default_Rounded.png new file mode 100644 index 000000000..d32bd05eb Binary files /dev/null and b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_Orange-Business-ToolsTheme_Light_.ColoredSurface_TextAndIcon_Minimal_Default_Rounded.png differ diff --git a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_Orange-Business-ToolsTheme_Light_.ColoredSurface_TextAndIcon_Strong_Default_Disabled_Rounded.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_Orange-Business-ToolsTheme_Light_.ColoredSurface_TextAndIcon_Strong_Default_Disabled_Rounded.png new file mode 100644 index 000000000..2bd62f287 Binary files /dev/null and b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_Orange-Business-ToolsTheme_Light_.ColoredSurface_TextAndIcon_Strong_Default_Disabled_Rounded.png differ diff --git a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_Orange-Business-ToolsTheme_Light_.ColoredSurface_TextAndIcon_Strong_Default_Rounded.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_Orange-Business-ToolsTheme_Light_.ColoredSurface_TextAndIcon_Strong_Default_Rounded.png new file mode 100644 index 000000000..90a559fe1 Binary files /dev/null and b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_Orange-Business-ToolsTheme_Light_.ColoredSurface_TextAndIcon_Strong_Default_Rounded.png differ diff --git a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_Orange-Business-ToolsTheme_Light_.ColoredSurface_Text_Default_Default_Disabled_Rounded.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_Orange-Business-ToolsTheme_Light_.ColoredSurface_Text_Default_Default_Disabled_Rounded.png new file mode 100644 index 000000000..1844981ca Binary files /dev/null and b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_Orange-Business-ToolsTheme_Light_.ColoredSurface_Text_Default_Default_Disabled_Rounded.png differ diff --git a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_Orange-Business-ToolsTheme_Light_.ColoredSurface_Text_Default_Default_Rounded.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_Orange-Business-ToolsTheme_Light_.ColoredSurface_Text_Default_Default_Rounded.png new file mode 100644 index 000000000..b188279bc Binary files /dev/null and b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_Orange-Business-ToolsTheme_Light_.ColoredSurface_Text_Default_Default_Rounded.png differ diff --git a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_Orange-Business-ToolsTheme_Light_.ColoredSurface_Text_Minimal_Default_Disabled_Rounded.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_Orange-Business-ToolsTheme_Light_.ColoredSurface_Text_Minimal_Default_Disabled_Rounded.png new file mode 100644 index 000000000..883e520d1 Binary files /dev/null and b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_Orange-Business-ToolsTheme_Light_.ColoredSurface_Text_Minimal_Default_Disabled_Rounded.png differ diff --git a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_Orange-Business-ToolsTheme_Light_.ColoredSurface_Text_Minimal_Default_Rounded.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_Orange-Business-ToolsTheme_Light_.ColoredSurface_Text_Minimal_Default_Rounded.png new file mode 100644 index 000000000..9eb24242a Binary files /dev/null and b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_Orange-Business-ToolsTheme_Light_.ColoredSurface_Text_Minimal_Default_Rounded.png differ diff --git a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_Orange-Business-ToolsTheme_Light_.ColoredSurface_Text_Strong_Default_Disabled_Rounded.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_Orange-Business-ToolsTheme_Light_.ColoredSurface_Text_Strong_Default_Disabled_Rounded.png new file mode 100644 index 000000000..eee531fd9 Binary files /dev/null and b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_Orange-Business-ToolsTheme_Light_.ColoredSurface_Text_Strong_Default_Disabled_Rounded.png differ diff --git a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_Orange-Business-ToolsTheme_Light_.ColoredSurface_Text_Strong_Default_Rounded.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_Orange-Business-ToolsTheme_Light_.ColoredSurface_Text_Strong_Default_Rounded.png new file mode 100644 index 000000000..680c8b85e Binary files /dev/null and b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_Orange-Business-ToolsTheme_Light_.ColoredSurface_Text_Strong_Default_Rounded.png differ diff --git a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_Orange-Business-ToolsTheme_Light_.Icon_Brand_Default.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_Orange-Business-ToolsTheme_Light_.Icon_Brand_Default.png new file mode 100644 index 000000000..6914773fc Binary files /dev/null and b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_Orange-Business-ToolsTheme_Light_.Icon_Brand_Default.png differ diff --git a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_Orange-Business-ToolsTheme_Light_.Icon_Brand_Default_Disabled.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_Orange-Business-ToolsTheme_Light_.Icon_Brand_Default_Disabled.png new file mode 100644 index 000000000..9c4421ce6 Binary files /dev/null and b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_Orange-Business-ToolsTheme_Light_.Icon_Brand_Default_Disabled.png differ diff --git a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_Orange-Business-ToolsTheme_Light_.Icon_Brand_Default_Disabled_Rounded.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_Orange-Business-ToolsTheme_Light_.Icon_Brand_Default_Disabled_Rounded.png new file mode 100644 index 000000000..03ed81a87 Binary files /dev/null and b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_Orange-Business-ToolsTheme_Light_.Icon_Brand_Default_Disabled_Rounded.png differ diff --git a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_Orange-Business-ToolsTheme_Light_.Icon_Brand_Default_Rounded.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_Orange-Business-ToolsTheme_Light_.Icon_Brand_Default_Rounded.png new file mode 100644 index 000000000..452070dfb Binary files /dev/null and b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_Orange-Business-ToolsTheme_Light_.Icon_Brand_Default_Rounded.png differ diff --git a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_Orange-Business-ToolsTheme_Light_.Icon_Default_Default_Disabled_Rounded.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_Orange-Business-ToolsTheme_Light_.Icon_Default_Default_Disabled_Rounded.png new file mode 100644 index 000000000..94f4bb600 Binary files /dev/null and b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_Orange-Business-ToolsTheme_Light_.Icon_Default_Default_Disabled_Rounded.png differ diff --git a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_Orange-Business-ToolsTheme_Light_.Icon_Default_Default_Rounded.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_Orange-Business-ToolsTheme_Light_.Icon_Default_Default_Rounded.png new file mode 100644 index 000000000..6e66ebfb9 Binary files /dev/null and b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_Orange-Business-ToolsTheme_Light_.Icon_Default_Default_Rounded.png differ diff --git a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_Orange-Business-ToolsTheme_Light_.Icon_Minimal_Default.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_Orange-Business-ToolsTheme_Light_.Icon_Minimal_Default.png index 6310bcf7d..d07f5f5a9 100644 Binary files a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_Orange-Business-ToolsTheme_Light_.Icon_Minimal_Default.png and b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_Orange-Business-ToolsTheme_Light_.Icon_Minimal_Default.png differ diff --git a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_Orange-Business-ToolsTheme_Light_.Icon_Minimal_Default_Disabled.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_Orange-Business-ToolsTheme_Light_.Icon_Minimal_Default_Disabled.png index dd50dc8a4..a25fd973d 100644 Binary files a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_Orange-Business-ToolsTheme_Light_.Icon_Minimal_Default_Disabled.png and b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_Orange-Business-ToolsTheme_Light_.Icon_Minimal_Default_Disabled.png differ diff --git a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_Orange-Business-ToolsTheme_Light_.Icon_Minimal_Default_Disabled_Rounded.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_Orange-Business-ToolsTheme_Light_.Icon_Minimal_Default_Disabled_Rounded.png new file mode 100644 index 000000000..a25fd973d Binary files /dev/null and b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_Orange-Business-ToolsTheme_Light_.Icon_Minimal_Default_Disabled_Rounded.png differ diff --git a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_Orange-Business-ToolsTheme_Light_.Icon_Minimal_Default_Rounded.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_Orange-Business-ToolsTheme_Light_.Icon_Minimal_Default_Rounded.png new file mode 100644 index 000000000..d07f5f5a9 Binary files /dev/null and b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_Orange-Business-ToolsTheme_Light_.Icon_Minimal_Default_Rounded.png differ diff --git a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_Orange-Business-ToolsTheme_Light_.Icon_Negative_Default_Disabled_Rounded.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_Orange-Business-ToolsTheme_Light_.Icon_Negative_Default_Disabled_Rounded.png new file mode 100644 index 000000000..03ed81a87 Binary files /dev/null and b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_Orange-Business-ToolsTheme_Light_.Icon_Negative_Default_Disabled_Rounded.png differ diff --git a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_Orange-Business-ToolsTheme_Light_.Icon_Negative_Default_Rounded.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_Orange-Business-ToolsTheme_Light_.Icon_Negative_Default_Rounded.png new file mode 100644 index 000000000..cd7f09418 Binary files /dev/null and b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_Orange-Business-ToolsTheme_Light_.Icon_Negative_Default_Rounded.png differ diff --git a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_Orange-Business-ToolsTheme_Light_.Icon_Strong_Default_Disabled_Rounded.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_Orange-Business-ToolsTheme_Light_.Icon_Strong_Default_Disabled_Rounded.png new file mode 100644 index 000000000..03ed81a87 Binary files /dev/null and b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_Orange-Business-ToolsTheme_Light_.Icon_Strong_Default_Disabled_Rounded.png differ diff --git a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_Orange-Business-ToolsTheme_Light_.Icon_Strong_Default_Rounded.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_Orange-Business-ToolsTheme_Light_.Icon_Strong_Default_Rounded.png new file mode 100644 index 000000000..f644baee0 Binary files /dev/null and b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_Orange-Business-ToolsTheme_Light_.Icon_Strong_Default_Rounded.png differ diff --git a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_Orange-Business-ToolsTheme_Light_.TextAndIcon_Brand_Default.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_Orange-Business-ToolsTheme_Light_.TextAndIcon_Brand_Default.png new file mode 100644 index 000000000..b74a348d0 Binary files /dev/null and b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_Orange-Business-ToolsTheme_Light_.TextAndIcon_Brand_Default.png differ diff --git a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_Orange-Business-ToolsTheme_Light_.TextAndIcon_Brand_Default_Disabled.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_Orange-Business-ToolsTheme_Light_.TextAndIcon_Brand_Default_Disabled.png new file mode 100644 index 000000000..64da0e3b4 Binary files /dev/null and b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_Orange-Business-ToolsTheme_Light_.TextAndIcon_Brand_Default_Disabled.png differ diff --git a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_Orange-Business-ToolsTheme_Light_.TextAndIcon_Brand_Default_Disabled_Rounded.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_Orange-Business-ToolsTheme_Light_.TextAndIcon_Brand_Default_Disabled_Rounded.png new file mode 100644 index 000000000..7c39b7490 Binary files /dev/null and b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_Orange-Business-ToolsTheme_Light_.TextAndIcon_Brand_Default_Disabled_Rounded.png differ diff --git a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_Orange-Business-ToolsTheme_Light_.TextAndIcon_Brand_Default_Rounded.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_Orange-Business-ToolsTheme_Light_.TextAndIcon_Brand_Default_Rounded.png new file mode 100644 index 000000000..8b5d0b0bd Binary files /dev/null and b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_Orange-Business-ToolsTheme_Light_.TextAndIcon_Brand_Default_Rounded.png differ diff --git a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_Orange-Business-ToolsTheme_Light_.TextAndIcon_Default_Default_Disabled_Rounded.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_Orange-Business-ToolsTheme_Light_.TextAndIcon_Default_Default_Disabled_Rounded.png new file mode 100644 index 000000000..6d74b2f4d Binary files /dev/null and b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_Orange-Business-ToolsTheme_Light_.TextAndIcon_Default_Default_Disabled_Rounded.png differ diff --git a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_Orange-Business-ToolsTheme_Light_.TextAndIcon_Default_Default_Rounded.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_Orange-Business-ToolsTheme_Light_.TextAndIcon_Default_Default_Rounded.png new file mode 100644 index 000000000..87d076b2d Binary files /dev/null and b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_Orange-Business-ToolsTheme_Light_.TextAndIcon_Default_Default_Rounded.png differ diff --git a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_Orange-Business-ToolsTheme_Light_.TextAndIcon_Minimal_Default.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_Orange-Business-ToolsTheme_Light_.TextAndIcon_Minimal_Default.png index 3f6433a72..e09017c3c 100644 Binary files a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_Orange-Business-ToolsTheme_Light_.TextAndIcon_Minimal_Default.png and b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_Orange-Business-ToolsTheme_Light_.TextAndIcon_Minimal_Default.png differ diff --git a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_Orange-Business-ToolsTheme_Light_.TextAndIcon_Minimal_Default_Disabled.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_Orange-Business-ToolsTheme_Light_.TextAndIcon_Minimal_Default_Disabled.png index 468896355..6e0ff3034 100644 Binary files a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_Orange-Business-ToolsTheme_Light_.TextAndIcon_Minimal_Default_Disabled.png and b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_Orange-Business-ToolsTheme_Light_.TextAndIcon_Minimal_Default_Disabled.png differ diff --git a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_Orange-Business-ToolsTheme_Light_.TextAndIcon_Minimal_Default_Disabled_Rounded.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_Orange-Business-ToolsTheme_Light_.TextAndIcon_Minimal_Default_Disabled_Rounded.png new file mode 100644 index 000000000..6e0ff3034 Binary files /dev/null and b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_Orange-Business-ToolsTheme_Light_.TextAndIcon_Minimal_Default_Disabled_Rounded.png differ diff --git a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_Orange-Business-ToolsTheme_Light_.TextAndIcon_Minimal_Default_Rounded.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_Orange-Business-ToolsTheme_Light_.TextAndIcon_Minimal_Default_Rounded.png new file mode 100644 index 000000000..e09017c3c Binary files /dev/null and b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_Orange-Business-ToolsTheme_Light_.TextAndIcon_Minimal_Default_Rounded.png differ diff --git a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_Orange-Business-ToolsTheme_Light_.TextAndIcon_Negative_Default_Disabled_Rounded.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_Orange-Business-ToolsTheme_Light_.TextAndIcon_Negative_Default_Disabled_Rounded.png new file mode 100644 index 000000000..7c39b7490 Binary files /dev/null and b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_Orange-Business-ToolsTheme_Light_.TextAndIcon_Negative_Default_Disabled_Rounded.png differ diff --git a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_Orange-Business-ToolsTheme_Light_.TextAndIcon_Negative_Default_Rounded.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_Orange-Business-ToolsTheme_Light_.TextAndIcon_Negative_Default_Rounded.png new file mode 100644 index 000000000..6a291eafa Binary files /dev/null and b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_Orange-Business-ToolsTheme_Light_.TextAndIcon_Negative_Default_Rounded.png differ diff --git a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_Orange-Business-ToolsTheme_Light_.TextAndIcon_Strong_Default_Disabled_Rounded.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_Orange-Business-ToolsTheme_Light_.TextAndIcon_Strong_Default_Disabled_Rounded.png new file mode 100644 index 000000000..7c39b7490 Binary files /dev/null and b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_Orange-Business-ToolsTheme_Light_.TextAndIcon_Strong_Default_Disabled_Rounded.png differ diff --git a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_Orange-Business-ToolsTheme_Light_.TextAndIcon_Strong_Default_Rounded.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_Orange-Business-ToolsTheme_Light_.TextAndIcon_Strong_Default_Rounded.png new file mode 100644 index 000000000..7ce6fbb01 Binary files /dev/null and b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_Orange-Business-ToolsTheme_Light_.TextAndIcon_Strong_Default_Rounded.png differ diff --git a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_Orange-Business-ToolsTheme_Light_.Text_Brand_Default.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_Orange-Business-ToolsTheme_Light_.Text_Brand_Default.png new file mode 100644 index 000000000..dbd1feadb Binary files /dev/null and b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_Orange-Business-ToolsTheme_Light_.Text_Brand_Default.png differ diff --git a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_Orange-Business-ToolsTheme_Light_.Text_Brand_Default_Disabled.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_Orange-Business-ToolsTheme_Light_.Text_Brand_Default_Disabled.png new file mode 100644 index 000000000..b4b7a1815 Binary files /dev/null and b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_Orange-Business-ToolsTheme_Light_.Text_Brand_Default_Disabled.png differ diff --git a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_Orange-Business-ToolsTheme_Light_.Text_Brand_Default_Disabled_Rounded.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_Orange-Business-ToolsTheme_Light_.Text_Brand_Default_Disabled_Rounded.png new file mode 100644 index 000000000..e4184dde7 Binary files /dev/null and b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_Orange-Business-ToolsTheme_Light_.Text_Brand_Default_Disabled_Rounded.png differ diff --git a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_Orange-Business-ToolsTheme_Light_.Text_Brand_Default_Rounded.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_Orange-Business-ToolsTheme_Light_.Text_Brand_Default_Rounded.png new file mode 100644 index 000000000..2424e533a Binary files /dev/null and b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_Orange-Business-ToolsTheme_Light_.Text_Brand_Default_Rounded.png differ diff --git a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_Orange-Business-ToolsTheme_Light_.Text_Default_Default_Disabled_Rounded.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_Orange-Business-ToolsTheme_Light_.Text_Default_Default_Disabled_Rounded.png new file mode 100644 index 000000000..b05119877 Binary files /dev/null and b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_Orange-Business-ToolsTheme_Light_.Text_Default_Default_Disabled_Rounded.png differ diff --git a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_Orange-Business-ToolsTheme_Light_.Text_Default_Default_Rounded.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_Orange-Business-ToolsTheme_Light_.Text_Default_Default_Rounded.png new file mode 100644 index 000000000..5cd358095 Binary files /dev/null and b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_Orange-Business-ToolsTheme_Light_.Text_Default_Default_Rounded.png differ diff --git a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_Orange-Business-ToolsTheme_Light_.Text_Minimal_Default.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_Orange-Business-ToolsTheme_Light_.Text_Minimal_Default.png index 3d71d9052..bd525ad96 100644 Binary files a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_Orange-Business-ToolsTheme_Light_.Text_Minimal_Default.png and b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_Orange-Business-ToolsTheme_Light_.Text_Minimal_Default.png differ diff --git a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_Orange-Business-ToolsTheme_Light_.Text_Minimal_Default_Disabled.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_Orange-Business-ToolsTheme_Light_.Text_Minimal_Default_Disabled.png index 0ff23a7ed..917faa193 100644 Binary files a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_Orange-Business-ToolsTheme_Light_.Text_Minimal_Default_Disabled.png and b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_Orange-Business-ToolsTheme_Light_.Text_Minimal_Default_Disabled.png differ diff --git a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_Orange-Business-ToolsTheme_Light_.Text_Minimal_Default_Disabled_Rounded.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_Orange-Business-ToolsTheme_Light_.Text_Minimal_Default_Disabled_Rounded.png new file mode 100644 index 000000000..917faa193 Binary files /dev/null and b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_Orange-Business-ToolsTheme_Light_.Text_Minimal_Default_Disabled_Rounded.png differ diff --git a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_Orange-Business-ToolsTheme_Light_.Text_Minimal_Default_Rounded.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_Orange-Business-ToolsTheme_Light_.Text_Minimal_Default_Rounded.png new file mode 100644 index 000000000..bd525ad96 Binary files /dev/null and b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_Orange-Business-ToolsTheme_Light_.Text_Minimal_Default_Rounded.png differ diff --git a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_Orange-Business-ToolsTheme_Light_.Text_Negative_Default_Disabled_Rounded.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_Orange-Business-ToolsTheme_Light_.Text_Negative_Default_Disabled_Rounded.png new file mode 100644 index 000000000..e4184dde7 Binary files /dev/null and b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_Orange-Business-ToolsTheme_Light_.Text_Negative_Default_Disabled_Rounded.png differ diff --git a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_Orange-Business-ToolsTheme_Light_.Text_Negative_Default_Rounded.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_Orange-Business-ToolsTheme_Light_.Text_Negative_Default_Rounded.png new file mode 100644 index 000000000..277142b51 Binary files /dev/null and b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_Orange-Business-ToolsTheme_Light_.Text_Negative_Default_Rounded.png differ diff --git a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_Orange-Business-ToolsTheme_Light_.Text_Strong_Default_Disabled_Rounded.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_Orange-Business-ToolsTheme_Light_.Text_Strong_Default_Disabled_Rounded.png new file mode 100644 index 000000000..e4184dde7 Binary files /dev/null and b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_Orange-Business-ToolsTheme_Light_.Text_Strong_Default_Disabled_Rounded.png differ diff --git a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_Orange-Business-ToolsTheme_Light_.Text_Strong_Default_Rounded.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_Orange-Business-ToolsTheme_Light_.Text_Strong_Default_Rounded.png new file mode 100644 index 000000000..6f4bd8043 Binary files /dev/null and b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_Orange-Business-ToolsTheme_Light_.Text_Strong_Default_Rounded.png differ diff --git a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_Orange-Business-ToolsTheme_Light_HighContrast.ColoredSurface_Icon_Default_Default_Disabled_Rounded.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_Orange-Business-ToolsTheme_Light_HighContrast.ColoredSurface_Icon_Default_Default_Disabled_Rounded.png new file mode 100644 index 000000000..fc710929c Binary files /dev/null and b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_Orange-Business-ToolsTheme_Light_HighContrast.ColoredSurface_Icon_Default_Default_Disabled_Rounded.png differ diff --git a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_Orange-Business-ToolsTheme_Light_HighContrast.ColoredSurface_Icon_Default_Default_Rounded.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_Orange-Business-ToolsTheme_Light_HighContrast.ColoredSurface_Icon_Default_Default_Rounded.png new file mode 100644 index 000000000..07b66fcdc Binary files /dev/null and b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_Orange-Business-ToolsTheme_Light_HighContrast.ColoredSurface_Icon_Default_Default_Rounded.png differ diff --git a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_Orange-Business-ToolsTheme_Light_HighContrast.ColoredSurface_Icon_Minimal_Default_Disabled_Rounded.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_Orange-Business-ToolsTheme_Light_HighContrast.ColoredSurface_Icon_Minimal_Default_Disabled_Rounded.png new file mode 100644 index 000000000..661e53fb1 Binary files /dev/null and b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_Orange-Business-ToolsTheme_Light_HighContrast.ColoredSurface_Icon_Minimal_Default_Disabled_Rounded.png differ diff --git a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_Orange-Business-ToolsTheme_Light_HighContrast.ColoredSurface_Icon_Minimal_Default_Rounded.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_Orange-Business-ToolsTheme_Light_HighContrast.ColoredSurface_Icon_Minimal_Default_Rounded.png new file mode 100644 index 000000000..0966c0bb6 Binary files /dev/null and b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_Orange-Business-ToolsTheme_Light_HighContrast.ColoredSurface_Icon_Minimal_Default_Rounded.png differ diff --git a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_Orange-Business-ToolsTheme_Light_HighContrast.ColoredSurface_Icon_Strong_Default_Disabled_Rounded.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_Orange-Business-ToolsTheme_Light_HighContrast.ColoredSurface_Icon_Strong_Default_Disabled_Rounded.png new file mode 100644 index 000000000..228c058d1 Binary files /dev/null and b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_Orange-Business-ToolsTheme_Light_HighContrast.ColoredSurface_Icon_Strong_Default_Disabled_Rounded.png differ diff --git a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_Orange-Business-ToolsTheme_Light_HighContrast.ColoredSurface_Icon_Strong_Default_Rounded.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_Orange-Business-ToolsTheme_Light_HighContrast.ColoredSurface_Icon_Strong_Default_Rounded.png new file mode 100644 index 000000000..a32125b49 Binary files /dev/null and b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_Orange-Business-ToolsTheme_Light_HighContrast.ColoredSurface_Icon_Strong_Default_Rounded.png differ diff --git a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_Orange-Business-ToolsTheme_Light_HighContrast.ColoredSurface_TextAndIcon_Default_Default_Disabled_Rounded.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_Orange-Business-ToolsTheme_Light_HighContrast.ColoredSurface_TextAndIcon_Default_Default_Disabled_Rounded.png new file mode 100644 index 000000000..a04e3392a Binary files /dev/null and b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_Orange-Business-ToolsTheme_Light_HighContrast.ColoredSurface_TextAndIcon_Default_Default_Disabled_Rounded.png differ diff --git a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_Orange-Business-ToolsTheme_Light_HighContrast.ColoredSurface_TextAndIcon_Default_Default_Rounded.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_Orange-Business-ToolsTheme_Light_HighContrast.ColoredSurface_TextAndIcon_Default_Default_Rounded.png new file mode 100644 index 000000000..201c99ba9 Binary files /dev/null and b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_Orange-Business-ToolsTheme_Light_HighContrast.ColoredSurface_TextAndIcon_Default_Default_Rounded.png differ diff --git a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_Orange-Business-ToolsTheme_Light_HighContrast.ColoredSurface_TextAndIcon_Minimal_Default_Disabled_Rounded.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_Orange-Business-ToolsTheme_Light_HighContrast.ColoredSurface_TextAndIcon_Minimal_Default_Disabled_Rounded.png new file mode 100644 index 000000000..eae1b3567 Binary files /dev/null and b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_Orange-Business-ToolsTheme_Light_HighContrast.ColoredSurface_TextAndIcon_Minimal_Default_Disabled_Rounded.png differ diff --git a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_Orange-Business-ToolsTheme_Light_HighContrast.ColoredSurface_TextAndIcon_Minimal_Default_Rounded.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_Orange-Business-ToolsTheme_Light_HighContrast.ColoredSurface_TextAndIcon_Minimal_Default_Rounded.png new file mode 100644 index 000000000..d32bd05eb Binary files /dev/null and b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_Orange-Business-ToolsTheme_Light_HighContrast.ColoredSurface_TextAndIcon_Minimal_Default_Rounded.png differ diff --git a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_Orange-Business-ToolsTheme_Light_HighContrast.ColoredSurface_TextAndIcon_Strong_Default_Disabled_Rounded.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_Orange-Business-ToolsTheme_Light_HighContrast.ColoredSurface_TextAndIcon_Strong_Default_Disabled_Rounded.png new file mode 100644 index 000000000..2bd62f287 Binary files /dev/null and b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_Orange-Business-ToolsTheme_Light_HighContrast.ColoredSurface_TextAndIcon_Strong_Default_Disabled_Rounded.png differ diff --git a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_Orange-Business-ToolsTheme_Light_HighContrast.ColoredSurface_TextAndIcon_Strong_Default_Rounded.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_Orange-Business-ToolsTheme_Light_HighContrast.ColoredSurface_TextAndIcon_Strong_Default_Rounded.png new file mode 100644 index 000000000..90a559fe1 Binary files /dev/null and b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_Orange-Business-ToolsTheme_Light_HighContrast.ColoredSurface_TextAndIcon_Strong_Default_Rounded.png differ diff --git a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_Orange-Business-ToolsTheme_Light_HighContrast.ColoredSurface_Text_Default_Default_Disabled_Rounded.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_Orange-Business-ToolsTheme_Light_HighContrast.ColoredSurface_Text_Default_Default_Disabled_Rounded.png new file mode 100644 index 000000000..1844981ca Binary files /dev/null and b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_Orange-Business-ToolsTheme_Light_HighContrast.ColoredSurface_Text_Default_Default_Disabled_Rounded.png differ diff --git a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_Orange-Business-ToolsTheme_Light_HighContrast.ColoredSurface_Text_Default_Default_Rounded.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_Orange-Business-ToolsTheme_Light_HighContrast.ColoredSurface_Text_Default_Default_Rounded.png new file mode 100644 index 000000000..b188279bc Binary files /dev/null and b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_Orange-Business-ToolsTheme_Light_HighContrast.ColoredSurface_Text_Default_Default_Rounded.png differ diff --git a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_Orange-Business-ToolsTheme_Light_HighContrast.ColoredSurface_Text_Minimal_Default_Disabled_Rounded.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_Orange-Business-ToolsTheme_Light_HighContrast.ColoredSurface_Text_Minimal_Default_Disabled_Rounded.png new file mode 100644 index 000000000..883e520d1 Binary files /dev/null and b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_Orange-Business-ToolsTheme_Light_HighContrast.ColoredSurface_Text_Minimal_Default_Disabled_Rounded.png differ diff --git a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_Orange-Business-ToolsTheme_Light_HighContrast.ColoredSurface_Text_Minimal_Default_Rounded.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_Orange-Business-ToolsTheme_Light_HighContrast.ColoredSurface_Text_Minimal_Default_Rounded.png new file mode 100644 index 000000000..9eb24242a Binary files /dev/null and b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_Orange-Business-ToolsTheme_Light_HighContrast.ColoredSurface_Text_Minimal_Default_Rounded.png differ diff --git a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_Orange-Business-ToolsTheme_Light_HighContrast.ColoredSurface_Text_Strong_Default_Disabled_Rounded.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_Orange-Business-ToolsTheme_Light_HighContrast.ColoredSurface_Text_Strong_Default_Disabled_Rounded.png new file mode 100644 index 000000000..eee531fd9 Binary files /dev/null and b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_Orange-Business-ToolsTheme_Light_HighContrast.ColoredSurface_Text_Strong_Default_Disabled_Rounded.png differ diff --git a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_Orange-Business-ToolsTheme_Light_HighContrast.ColoredSurface_Text_Strong_Default_Rounded.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_Orange-Business-ToolsTheme_Light_HighContrast.ColoredSurface_Text_Strong_Default_Rounded.png new file mode 100644 index 000000000..680c8b85e Binary files /dev/null and b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_Orange-Business-ToolsTheme_Light_HighContrast.ColoredSurface_Text_Strong_Default_Rounded.png differ diff --git a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_Orange-Business-ToolsTheme_Light_HighContrast.Icon_Brand_Default.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_Orange-Business-ToolsTheme_Light_HighContrast.Icon_Brand_Default.png new file mode 100644 index 000000000..6914773fc Binary files /dev/null and b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_Orange-Business-ToolsTheme_Light_HighContrast.Icon_Brand_Default.png differ diff --git a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_Orange-Business-ToolsTheme_Light_HighContrast.Icon_Brand_Default_Disabled.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_Orange-Business-ToolsTheme_Light_HighContrast.Icon_Brand_Default_Disabled.png new file mode 100644 index 000000000..9c4421ce6 Binary files /dev/null and b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_Orange-Business-ToolsTheme_Light_HighContrast.Icon_Brand_Default_Disabled.png differ diff --git a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_Orange-Business-ToolsTheme_Light_HighContrast.Icon_Brand_Default_Disabled_Rounded.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_Orange-Business-ToolsTheme_Light_HighContrast.Icon_Brand_Default_Disabled_Rounded.png new file mode 100644 index 000000000..03ed81a87 Binary files /dev/null and b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_Orange-Business-ToolsTheme_Light_HighContrast.Icon_Brand_Default_Disabled_Rounded.png differ diff --git a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_Orange-Business-ToolsTheme_Light_HighContrast.Icon_Brand_Default_Rounded.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_Orange-Business-ToolsTheme_Light_HighContrast.Icon_Brand_Default_Rounded.png new file mode 100644 index 000000000..452070dfb Binary files /dev/null and b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_Orange-Business-ToolsTheme_Light_HighContrast.Icon_Brand_Default_Rounded.png differ diff --git a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_Orange-Business-ToolsTheme_Light_HighContrast.Icon_Default_Default_Disabled_Rounded.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_Orange-Business-ToolsTheme_Light_HighContrast.Icon_Default_Default_Disabled_Rounded.png new file mode 100644 index 000000000..94f4bb600 Binary files /dev/null and b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_Orange-Business-ToolsTheme_Light_HighContrast.Icon_Default_Default_Disabled_Rounded.png differ diff --git a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_Orange-Business-ToolsTheme_Light_HighContrast.Icon_Default_Default_Rounded.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_Orange-Business-ToolsTheme_Light_HighContrast.Icon_Default_Default_Rounded.png new file mode 100644 index 000000000..6e66ebfb9 Binary files /dev/null and b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_Orange-Business-ToolsTheme_Light_HighContrast.Icon_Default_Default_Rounded.png differ diff --git a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_Orange-Business-ToolsTheme_Light_HighContrast.Icon_Minimal_Default.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_Orange-Business-ToolsTheme_Light_HighContrast.Icon_Minimal_Default.png index 6310bcf7d..d07f5f5a9 100644 Binary files a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_Orange-Business-ToolsTheme_Light_HighContrast.Icon_Minimal_Default.png and b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_Orange-Business-ToolsTheme_Light_HighContrast.Icon_Minimal_Default.png differ diff --git a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_Orange-Business-ToolsTheme_Light_HighContrast.Icon_Minimal_Default_Disabled.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_Orange-Business-ToolsTheme_Light_HighContrast.Icon_Minimal_Default_Disabled.png index dd50dc8a4..a25fd973d 100644 Binary files a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_Orange-Business-ToolsTheme_Light_HighContrast.Icon_Minimal_Default_Disabled.png and b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_Orange-Business-ToolsTheme_Light_HighContrast.Icon_Minimal_Default_Disabled.png differ diff --git a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_Orange-Business-ToolsTheme_Light_HighContrast.Icon_Minimal_Default_Disabled_Rounded.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_Orange-Business-ToolsTheme_Light_HighContrast.Icon_Minimal_Default_Disabled_Rounded.png new file mode 100644 index 000000000..a25fd973d Binary files /dev/null and b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_Orange-Business-ToolsTheme_Light_HighContrast.Icon_Minimal_Default_Disabled_Rounded.png differ diff --git a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_Orange-Business-ToolsTheme_Light_HighContrast.Icon_Minimal_Default_Rounded.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_Orange-Business-ToolsTheme_Light_HighContrast.Icon_Minimal_Default_Rounded.png new file mode 100644 index 000000000..d07f5f5a9 Binary files /dev/null and b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_Orange-Business-ToolsTheme_Light_HighContrast.Icon_Minimal_Default_Rounded.png differ diff --git a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_Orange-Business-ToolsTheme_Light_HighContrast.Icon_Negative_Default_Disabled_Rounded.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_Orange-Business-ToolsTheme_Light_HighContrast.Icon_Negative_Default_Disabled_Rounded.png new file mode 100644 index 000000000..03ed81a87 Binary files /dev/null and b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_Orange-Business-ToolsTheme_Light_HighContrast.Icon_Negative_Default_Disabled_Rounded.png differ diff --git a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_Orange-Business-ToolsTheme_Light_HighContrast.Icon_Negative_Default_Rounded.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_Orange-Business-ToolsTheme_Light_HighContrast.Icon_Negative_Default_Rounded.png new file mode 100644 index 000000000..cd7f09418 Binary files /dev/null and b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_Orange-Business-ToolsTheme_Light_HighContrast.Icon_Negative_Default_Rounded.png differ diff --git a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_Orange-Business-ToolsTheme_Light_HighContrast.Icon_Strong_Default_Disabled_Rounded.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_Orange-Business-ToolsTheme_Light_HighContrast.Icon_Strong_Default_Disabled_Rounded.png new file mode 100644 index 000000000..03ed81a87 Binary files /dev/null and b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_Orange-Business-ToolsTheme_Light_HighContrast.Icon_Strong_Default_Disabled_Rounded.png differ diff --git a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_Orange-Business-ToolsTheme_Light_HighContrast.Icon_Strong_Default_Rounded.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_Orange-Business-ToolsTheme_Light_HighContrast.Icon_Strong_Default_Rounded.png new file mode 100644 index 000000000..f644baee0 Binary files /dev/null and b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_Orange-Business-ToolsTheme_Light_HighContrast.Icon_Strong_Default_Rounded.png differ diff --git a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_Orange-Business-ToolsTheme_Light_HighContrast.TextAndIcon_Brand_Default.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_Orange-Business-ToolsTheme_Light_HighContrast.TextAndIcon_Brand_Default.png new file mode 100644 index 000000000..b74a348d0 Binary files /dev/null and b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_Orange-Business-ToolsTheme_Light_HighContrast.TextAndIcon_Brand_Default.png differ diff --git a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_Orange-Business-ToolsTheme_Light_HighContrast.TextAndIcon_Brand_Default_Disabled.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_Orange-Business-ToolsTheme_Light_HighContrast.TextAndIcon_Brand_Default_Disabled.png new file mode 100644 index 000000000..64da0e3b4 Binary files /dev/null and b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_Orange-Business-ToolsTheme_Light_HighContrast.TextAndIcon_Brand_Default_Disabled.png differ diff --git a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_Orange-Business-ToolsTheme_Light_HighContrast.TextAndIcon_Brand_Default_Disabled_Rounded.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_Orange-Business-ToolsTheme_Light_HighContrast.TextAndIcon_Brand_Default_Disabled_Rounded.png new file mode 100644 index 000000000..7c39b7490 Binary files /dev/null and b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_Orange-Business-ToolsTheme_Light_HighContrast.TextAndIcon_Brand_Default_Disabled_Rounded.png differ diff --git a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_Orange-Business-ToolsTheme_Light_HighContrast.TextAndIcon_Brand_Default_Rounded.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_Orange-Business-ToolsTheme_Light_HighContrast.TextAndIcon_Brand_Default_Rounded.png new file mode 100644 index 000000000..8b5d0b0bd Binary files /dev/null and b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_Orange-Business-ToolsTheme_Light_HighContrast.TextAndIcon_Brand_Default_Rounded.png differ diff --git a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_Orange-Business-ToolsTheme_Light_HighContrast.TextAndIcon_Default_Default_Disabled_Rounded.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_Orange-Business-ToolsTheme_Light_HighContrast.TextAndIcon_Default_Default_Disabled_Rounded.png new file mode 100644 index 000000000..6d74b2f4d Binary files /dev/null and b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_Orange-Business-ToolsTheme_Light_HighContrast.TextAndIcon_Default_Default_Disabled_Rounded.png differ diff --git a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_Orange-Business-ToolsTheme_Light_HighContrast.TextAndIcon_Default_Default_Rounded.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_Orange-Business-ToolsTheme_Light_HighContrast.TextAndIcon_Default_Default_Rounded.png new file mode 100644 index 000000000..87d076b2d Binary files /dev/null and b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_Orange-Business-ToolsTheme_Light_HighContrast.TextAndIcon_Default_Default_Rounded.png differ diff --git a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_Orange-Business-ToolsTheme_Light_HighContrast.TextAndIcon_Minimal_Default.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_Orange-Business-ToolsTheme_Light_HighContrast.TextAndIcon_Minimal_Default.png index 3f6433a72..e09017c3c 100644 Binary files a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_Orange-Business-ToolsTheme_Light_HighContrast.TextAndIcon_Minimal_Default.png and b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_Orange-Business-ToolsTheme_Light_HighContrast.TextAndIcon_Minimal_Default.png differ diff --git a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_Orange-Business-ToolsTheme_Light_HighContrast.TextAndIcon_Minimal_Default_Disabled.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_Orange-Business-ToolsTheme_Light_HighContrast.TextAndIcon_Minimal_Default_Disabled.png index 468896355..6e0ff3034 100644 Binary files a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_Orange-Business-ToolsTheme_Light_HighContrast.TextAndIcon_Minimal_Default_Disabled.png and b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_Orange-Business-ToolsTheme_Light_HighContrast.TextAndIcon_Minimal_Default_Disabled.png differ diff --git a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_Orange-Business-ToolsTheme_Light_HighContrast.TextAndIcon_Minimal_Default_Disabled_Rounded.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_Orange-Business-ToolsTheme_Light_HighContrast.TextAndIcon_Minimal_Default_Disabled_Rounded.png new file mode 100644 index 000000000..6e0ff3034 Binary files /dev/null and b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_Orange-Business-ToolsTheme_Light_HighContrast.TextAndIcon_Minimal_Default_Disabled_Rounded.png differ diff --git a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_Orange-Business-ToolsTheme_Light_HighContrast.TextAndIcon_Minimal_Default_Rounded.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_Orange-Business-ToolsTheme_Light_HighContrast.TextAndIcon_Minimal_Default_Rounded.png new file mode 100644 index 000000000..e09017c3c Binary files /dev/null and b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_Orange-Business-ToolsTheme_Light_HighContrast.TextAndIcon_Minimal_Default_Rounded.png differ diff --git a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_Orange-Business-ToolsTheme_Light_HighContrast.TextAndIcon_Negative_Default_Disabled_Rounded.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_Orange-Business-ToolsTheme_Light_HighContrast.TextAndIcon_Negative_Default_Disabled_Rounded.png new file mode 100644 index 000000000..7c39b7490 Binary files /dev/null and b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_Orange-Business-ToolsTheme_Light_HighContrast.TextAndIcon_Negative_Default_Disabled_Rounded.png differ diff --git a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_Orange-Business-ToolsTheme_Light_HighContrast.TextAndIcon_Negative_Default_Rounded.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_Orange-Business-ToolsTheme_Light_HighContrast.TextAndIcon_Negative_Default_Rounded.png new file mode 100644 index 000000000..6a291eafa Binary files /dev/null and b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_Orange-Business-ToolsTheme_Light_HighContrast.TextAndIcon_Negative_Default_Rounded.png differ diff --git a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_Orange-Business-ToolsTheme_Light_HighContrast.TextAndIcon_Strong_Default_Disabled_Rounded.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_Orange-Business-ToolsTheme_Light_HighContrast.TextAndIcon_Strong_Default_Disabled_Rounded.png new file mode 100644 index 000000000..7c39b7490 Binary files /dev/null and b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_Orange-Business-ToolsTheme_Light_HighContrast.TextAndIcon_Strong_Default_Disabled_Rounded.png differ diff --git a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_Orange-Business-ToolsTheme_Light_HighContrast.TextAndIcon_Strong_Default_Rounded.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_Orange-Business-ToolsTheme_Light_HighContrast.TextAndIcon_Strong_Default_Rounded.png new file mode 100644 index 000000000..7ce6fbb01 Binary files /dev/null and b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_Orange-Business-ToolsTheme_Light_HighContrast.TextAndIcon_Strong_Default_Rounded.png differ diff --git a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_Orange-Business-ToolsTheme_Light_HighContrast.Text_Brand_Default.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_Orange-Business-ToolsTheme_Light_HighContrast.Text_Brand_Default.png new file mode 100644 index 000000000..dbd1feadb Binary files /dev/null and b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_Orange-Business-ToolsTheme_Light_HighContrast.Text_Brand_Default.png differ diff --git a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_Orange-Business-ToolsTheme_Light_HighContrast.Text_Brand_Default_Disabled.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_Orange-Business-ToolsTheme_Light_HighContrast.Text_Brand_Default_Disabled.png new file mode 100644 index 000000000..b4b7a1815 Binary files /dev/null and b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_Orange-Business-ToolsTheme_Light_HighContrast.Text_Brand_Default_Disabled.png differ diff --git a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_Orange-Business-ToolsTheme_Light_HighContrast.Text_Brand_Default_Disabled_Rounded.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_Orange-Business-ToolsTheme_Light_HighContrast.Text_Brand_Default_Disabled_Rounded.png new file mode 100644 index 000000000..e4184dde7 Binary files /dev/null and b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_Orange-Business-ToolsTheme_Light_HighContrast.Text_Brand_Default_Disabled_Rounded.png differ diff --git a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_Orange-Business-ToolsTheme_Light_HighContrast.Text_Brand_Default_Rounded.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_Orange-Business-ToolsTheme_Light_HighContrast.Text_Brand_Default_Rounded.png new file mode 100644 index 000000000..2424e533a Binary files /dev/null and b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_Orange-Business-ToolsTheme_Light_HighContrast.Text_Brand_Default_Rounded.png differ diff --git a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_Orange-Business-ToolsTheme_Light_HighContrast.Text_Default_Default_Disabled_Rounded.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_Orange-Business-ToolsTheme_Light_HighContrast.Text_Default_Default_Disabled_Rounded.png new file mode 100644 index 000000000..b05119877 Binary files /dev/null and b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_Orange-Business-ToolsTheme_Light_HighContrast.Text_Default_Default_Disabled_Rounded.png differ diff --git a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_Orange-Business-ToolsTheme_Light_HighContrast.Text_Default_Default_Rounded.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_Orange-Business-ToolsTheme_Light_HighContrast.Text_Default_Default_Rounded.png new file mode 100644 index 000000000..5cd358095 Binary files /dev/null and b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_Orange-Business-ToolsTheme_Light_HighContrast.Text_Default_Default_Rounded.png differ diff --git a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_Orange-Business-ToolsTheme_Light_HighContrast.Text_Minimal_Default.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_Orange-Business-ToolsTheme_Light_HighContrast.Text_Minimal_Default.png index 3d71d9052..bd525ad96 100644 Binary files a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_Orange-Business-ToolsTheme_Light_HighContrast.Text_Minimal_Default.png and b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_Orange-Business-ToolsTheme_Light_HighContrast.Text_Minimal_Default.png differ diff --git a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_Orange-Business-ToolsTheme_Light_HighContrast.Text_Minimal_Default_Disabled.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_Orange-Business-ToolsTheme_Light_HighContrast.Text_Minimal_Default_Disabled.png index 0ff23a7ed..917faa193 100644 Binary files a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_Orange-Business-ToolsTheme_Light_HighContrast.Text_Minimal_Default_Disabled.png and b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_Orange-Business-ToolsTheme_Light_HighContrast.Text_Minimal_Default_Disabled.png differ diff --git a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_Orange-Business-ToolsTheme_Light_HighContrast.Text_Minimal_Default_Disabled_Rounded.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_Orange-Business-ToolsTheme_Light_HighContrast.Text_Minimal_Default_Disabled_Rounded.png new file mode 100644 index 000000000..917faa193 Binary files /dev/null and b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_Orange-Business-ToolsTheme_Light_HighContrast.Text_Minimal_Default_Disabled_Rounded.png differ diff --git a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_Orange-Business-ToolsTheme_Light_HighContrast.Text_Minimal_Default_Rounded.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_Orange-Business-ToolsTheme_Light_HighContrast.Text_Minimal_Default_Rounded.png new file mode 100644 index 000000000..bd525ad96 Binary files /dev/null and b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_Orange-Business-ToolsTheme_Light_HighContrast.Text_Minimal_Default_Rounded.png differ diff --git a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_Orange-Business-ToolsTheme_Light_HighContrast.Text_Negative_Default_Disabled_Rounded.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_Orange-Business-ToolsTheme_Light_HighContrast.Text_Negative_Default_Disabled_Rounded.png new file mode 100644 index 000000000..e4184dde7 Binary files /dev/null and b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_Orange-Business-ToolsTheme_Light_HighContrast.Text_Negative_Default_Disabled_Rounded.png differ diff --git a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_Orange-Business-ToolsTheme_Light_HighContrast.Text_Negative_Default_Rounded.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_Orange-Business-ToolsTheme_Light_HighContrast.Text_Negative_Default_Rounded.png new file mode 100644 index 000000000..277142b51 Binary files /dev/null and b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_Orange-Business-ToolsTheme_Light_HighContrast.Text_Negative_Default_Rounded.png differ diff --git a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_Orange-Business-ToolsTheme_Light_HighContrast.Text_Strong_Default_Disabled_Rounded.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_Orange-Business-ToolsTheme_Light_HighContrast.Text_Strong_Default_Disabled_Rounded.png new file mode 100644 index 000000000..e4184dde7 Binary files /dev/null and b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_Orange-Business-ToolsTheme_Light_HighContrast.Text_Strong_Default_Disabled_Rounded.png differ diff --git a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_Orange-Business-ToolsTheme_Light_HighContrast.Text_Strong_Default_Rounded.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_Orange-Business-ToolsTheme_Light_HighContrast.Text_Strong_Default_Rounded.png new file mode 100644 index 000000000..6f4bd8043 Binary files /dev/null and b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_Orange-Business-ToolsTheme_Light_HighContrast.Text_Strong_Default_Rounded.png differ diff --git a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_Orange-InverseTheme_Dark_.ColoredSurface_Icon_Default_Default_Disabled_Rounded.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_Orange-InverseTheme_Dark_.ColoredSurface_Icon_Default_Default_Disabled_Rounded.png new file mode 100644 index 000000000..cf41391f5 Binary files /dev/null and b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_Orange-InverseTheme_Dark_.ColoredSurface_Icon_Default_Default_Disabled_Rounded.png differ diff --git a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_Orange-InverseTheme_Dark_.ColoredSurface_Icon_Default_Default_Rounded.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_Orange-InverseTheme_Dark_.ColoredSurface_Icon_Default_Default_Rounded.png new file mode 100644 index 000000000..fe9e27c6c Binary files /dev/null and b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_Orange-InverseTheme_Dark_.ColoredSurface_Icon_Default_Default_Rounded.png differ diff --git a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_Orange-InverseTheme_Dark_.ColoredSurface_Icon_Minimal_Default_Disabled_Rounded.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_Orange-InverseTheme_Dark_.ColoredSurface_Icon_Minimal_Default_Disabled_Rounded.png new file mode 100644 index 000000000..38ecaee20 Binary files /dev/null and b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_Orange-InverseTheme_Dark_.ColoredSurface_Icon_Minimal_Default_Disabled_Rounded.png differ diff --git a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_Orange-InverseTheme_Dark_.ColoredSurface_Icon_Minimal_Default_Rounded.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_Orange-InverseTheme_Dark_.ColoredSurface_Icon_Minimal_Default_Rounded.png new file mode 100644 index 000000000..1a350e449 Binary files /dev/null and b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_Orange-InverseTheme_Dark_.ColoredSurface_Icon_Minimal_Default_Rounded.png differ diff --git a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_Orange-InverseTheme_Dark_.ColoredSurface_Icon_Strong_Default_Disabled_Rounded.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_Orange-InverseTheme_Dark_.ColoredSurface_Icon_Strong_Default_Disabled_Rounded.png new file mode 100644 index 000000000..fc05c6025 Binary files /dev/null and b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_Orange-InverseTheme_Dark_.ColoredSurface_Icon_Strong_Default_Disabled_Rounded.png differ diff --git a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_Orange-InverseTheme_Dark_.ColoredSurface_Icon_Strong_Default_Rounded.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_Orange-InverseTheme_Dark_.ColoredSurface_Icon_Strong_Default_Rounded.png new file mode 100644 index 000000000..d4f89df20 Binary files /dev/null and b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_Orange-InverseTheme_Dark_.ColoredSurface_Icon_Strong_Default_Rounded.png differ diff --git a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_Orange-InverseTheme_Dark_.ColoredSurface_TextAndIcon_Default_Default_Disabled_Rounded.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_Orange-InverseTheme_Dark_.ColoredSurface_TextAndIcon_Default_Default_Disabled_Rounded.png new file mode 100644 index 000000000..a7d8380b0 Binary files /dev/null and b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_Orange-InverseTheme_Dark_.ColoredSurface_TextAndIcon_Default_Default_Disabled_Rounded.png differ diff --git a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_Orange-InverseTheme_Dark_.ColoredSurface_TextAndIcon_Default_Default_Rounded.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_Orange-InverseTheme_Dark_.ColoredSurface_TextAndIcon_Default_Default_Rounded.png new file mode 100644 index 000000000..45768315e Binary files /dev/null and b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_Orange-InverseTheme_Dark_.ColoredSurface_TextAndIcon_Default_Default_Rounded.png differ diff --git a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_Orange-InverseTheme_Dark_.ColoredSurface_TextAndIcon_Minimal_Default_Disabled_Rounded.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_Orange-InverseTheme_Dark_.ColoredSurface_TextAndIcon_Minimal_Default_Disabled_Rounded.png new file mode 100644 index 000000000..43f27df49 Binary files /dev/null and b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_Orange-InverseTheme_Dark_.ColoredSurface_TextAndIcon_Minimal_Default_Disabled_Rounded.png differ diff --git a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_Orange-InverseTheme_Dark_.ColoredSurface_TextAndIcon_Minimal_Default_Rounded.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_Orange-InverseTheme_Dark_.ColoredSurface_TextAndIcon_Minimal_Default_Rounded.png new file mode 100644 index 000000000..c179ce466 Binary files /dev/null and b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_Orange-InverseTheme_Dark_.ColoredSurface_TextAndIcon_Minimal_Default_Rounded.png differ diff --git a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_Orange-InverseTheme_Dark_.ColoredSurface_TextAndIcon_Strong_Default_Disabled_Rounded.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_Orange-InverseTheme_Dark_.ColoredSurface_TextAndIcon_Strong_Default_Disabled_Rounded.png new file mode 100644 index 000000000..60863510d Binary files /dev/null and b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_Orange-InverseTheme_Dark_.ColoredSurface_TextAndIcon_Strong_Default_Disabled_Rounded.png differ diff --git a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_Orange-InverseTheme_Dark_.ColoredSurface_TextAndIcon_Strong_Default_Rounded.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_Orange-InverseTheme_Dark_.ColoredSurface_TextAndIcon_Strong_Default_Rounded.png new file mode 100644 index 000000000..24896848f Binary files /dev/null and b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_Orange-InverseTheme_Dark_.ColoredSurface_TextAndIcon_Strong_Default_Rounded.png differ diff --git a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_Orange-InverseTheme_Dark_.ColoredSurface_Text_Default_Default_Disabled_Rounded.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_Orange-InverseTheme_Dark_.ColoredSurface_Text_Default_Default_Disabled_Rounded.png new file mode 100644 index 000000000..b64971ecd Binary files /dev/null and b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_Orange-InverseTheme_Dark_.ColoredSurface_Text_Default_Default_Disabled_Rounded.png differ diff --git a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_Orange-InverseTheme_Dark_.ColoredSurface_Text_Default_Default_Rounded.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_Orange-InverseTheme_Dark_.ColoredSurface_Text_Default_Default_Rounded.png new file mode 100644 index 000000000..85ef11823 Binary files /dev/null and b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_Orange-InverseTheme_Dark_.ColoredSurface_Text_Default_Default_Rounded.png differ diff --git a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_Orange-InverseTheme_Dark_.ColoredSurface_Text_Minimal_Default_Disabled_Rounded.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_Orange-InverseTheme_Dark_.ColoredSurface_Text_Minimal_Default_Disabled_Rounded.png new file mode 100644 index 000000000..0c186912f Binary files /dev/null and b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_Orange-InverseTheme_Dark_.ColoredSurface_Text_Minimal_Default_Disabled_Rounded.png differ diff --git a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_Orange-InverseTheme_Dark_.ColoredSurface_Text_Minimal_Default_Rounded.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_Orange-InverseTheme_Dark_.ColoredSurface_Text_Minimal_Default_Rounded.png new file mode 100644 index 000000000..13df06107 Binary files /dev/null and b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_Orange-InverseTheme_Dark_.ColoredSurface_Text_Minimal_Default_Rounded.png differ diff --git a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_Orange-InverseTheme_Dark_.ColoredSurface_Text_Strong_Default_Disabled_Rounded.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_Orange-InverseTheme_Dark_.ColoredSurface_Text_Strong_Default_Disabled_Rounded.png new file mode 100644 index 000000000..d585bdd97 Binary files /dev/null and b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_Orange-InverseTheme_Dark_.ColoredSurface_Text_Strong_Default_Disabled_Rounded.png differ diff --git a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_Orange-InverseTheme_Dark_.ColoredSurface_Text_Strong_Default_Rounded.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_Orange-InverseTheme_Dark_.ColoredSurface_Text_Strong_Default_Rounded.png new file mode 100644 index 000000000..7d11f4150 Binary files /dev/null and b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_Orange-InverseTheme_Dark_.ColoredSurface_Text_Strong_Default_Rounded.png differ diff --git a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_Orange-InverseTheme_Dark_.Icon_Brand_Default.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_Orange-InverseTheme_Dark_.Icon_Brand_Default.png new file mode 100644 index 000000000..1a350e449 Binary files /dev/null and b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_Orange-InverseTheme_Dark_.Icon_Brand_Default.png differ diff --git a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_Orange-InverseTheme_Dark_.Icon_Brand_Default_Disabled.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_Orange-InverseTheme_Dark_.Icon_Brand_Default_Disabled.png new file mode 100644 index 000000000..a16771f5b Binary files /dev/null and b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_Orange-InverseTheme_Dark_.Icon_Brand_Default_Disabled.png differ diff --git a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_Orange-InverseTheme_Dark_.Icon_Brand_Default_Disabled_Rounded.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_Orange-InverseTheme_Dark_.Icon_Brand_Default_Disabled_Rounded.png new file mode 100644 index 000000000..603f00dfc Binary files /dev/null and b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_Orange-InverseTheme_Dark_.Icon_Brand_Default_Disabled_Rounded.png differ diff --git a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_Orange-InverseTheme_Dark_.Icon_Brand_Default_Rounded.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_Orange-InverseTheme_Dark_.Icon_Brand_Default_Rounded.png new file mode 100644 index 000000000..7cc03ada6 Binary files /dev/null and b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_Orange-InverseTheme_Dark_.Icon_Brand_Default_Rounded.png differ diff --git a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_Orange-InverseTheme_Dark_.Icon_Default_Default_Disabled_Rounded.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_Orange-InverseTheme_Dark_.Icon_Default_Default_Disabled_Rounded.png new file mode 100644 index 000000000..6f9892a3e Binary files /dev/null and b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_Orange-InverseTheme_Dark_.Icon_Default_Default_Disabled_Rounded.png differ diff --git a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_Orange-InverseTheme_Dark_.Icon_Default_Default_Rounded.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_Orange-InverseTheme_Dark_.Icon_Default_Default_Rounded.png new file mode 100644 index 000000000..e77d4f5a7 Binary files /dev/null and b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_Orange-InverseTheme_Dark_.Icon_Default_Default_Rounded.png differ diff --git a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_Orange-InverseTheme_Dark_.Icon_Minimal_Default.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_Orange-InverseTheme_Dark_.Icon_Minimal_Default.png index 84ccaad73..ee2263be0 100644 Binary files a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_Orange-InverseTheme_Dark_.Icon_Minimal_Default.png and b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_Orange-InverseTheme_Dark_.Icon_Minimal_Default.png differ diff --git a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_Orange-InverseTheme_Dark_.Icon_Minimal_Default_Disabled.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_Orange-InverseTheme_Dark_.Icon_Minimal_Default_Disabled.png index 71ea65d69..11da18626 100644 Binary files a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_Orange-InverseTheme_Dark_.Icon_Minimal_Default_Disabled.png and b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_Orange-InverseTheme_Dark_.Icon_Minimal_Default_Disabled.png differ diff --git a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_Orange-InverseTheme_Dark_.Icon_Minimal_Default_Disabled_Rounded.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_Orange-InverseTheme_Dark_.Icon_Minimal_Default_Disabled_Rounded.png new file mode 100644 index 000000000..11da18626 Binary files /dev/null and b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_Orange-InverseTheme_Dark_.Icon_Minimal_Default_Disabled_Rounded.png differ diff --git a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_Orange-InverseTheme_Dark_.Icon_Minimal_Default_Rounded.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_Orange-InverseTheme_Dark_.Icon_Minimal_Default_Rounded.png new file mode 100644 index 000000000..ee2263be0 Binary files /dev/null and b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_Orange-InverseTheme_Dark_.Icon_Minimal_Default_Rounded.png differ diff --git a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_Orange-InverseTheme_Dark_.Icon_Negative_Default_Disabled_Rounded.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_Orange-InverseTheme_Dark_.Icon_Negative_Default_Disabled_Rounded.png new file mode 100644 index 000000000..603f00dfc Binary files /dev/null and b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_Orange-InverseTheme_Dark_.Icon_Negative_Default_Disabled_Rounded.png differ diff --git a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_Orange-InverseTheme_Dark_.Icon_Negative_Default_Rounded.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_Orange-InverseTheme_Dark_.Icon_Negative_Default_Rounded.png new file mode 100644 index 000000000..7092267b9 Binary files /dev/null and b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_Orange-InverseTheme_Dark_.Icon_Negative_Default_Rounded.png differ diff --git a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_Orange-InverseTheme_Dark_.Icon_Strong_Default_Disabled_Rounded.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_Orange-InverseTheme_Dark_.Icon_Strong_Default_Disabled_Rounded.png new file mode 100644 index 000000000..603f00dfc Binary files /dev/null and b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_Orange-InverseTheme_Dark_.Icon_Strong_Default_Disabled_Rounded.png differ diff --git a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_Orange-InverseTheme_Dark_.Icon_Strong_Default_Rounded.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_Orange-InverseTheme_Dark_.Icon_Strong_Default_Rounded.png new file mode 100644 index 000000000..14b85993b Binary files /dev/null and b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_Orange-InverseTheme_Dark_.Icon_Strong_Default_Rounded.png differ diff --git a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_Orange-InverseTheme_Dark_.TextAndIcon_Brand_Default.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_Orange-InverseTheme_Dark_.TextAndIcon_Brand_Default.png new file mode 100644 index 000000000..c179ce466 Binary files /dev/null and b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_Orange-InverseTheme_Dark_.TextAndIcon_Brand_Default.png differ diff --git a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_Orange-InverseTheme_Dark_.TextAndIcon_Brand_Default_Disabled.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_Orange-InverseTheme_Dark_.TextAndIcon_Brand_Default_Disabled.png new file mode 100644 index 000000000..58878bf32 Binary files /dev/null and b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_Orange-InverseTheme_Dark_.TextAndIcon_Brand_Default_Disabled.png differ diff --git a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_Orange-InverseTheme_Dark_.TextAndIcon_Brand_Default_Disabled_Rounded.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_Orange-InverseTheme_Dark_.TextAndIcon_Brand_Default_Disabled_Rounded.png new file mode 100644 index 000000000..1823da367 Binary files /dev/null and b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_Orange-InverseTheme_Dark_.TextAndIcon_Brand_Default_Disabled_Rounded.png differ diff --git a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_Orange-InverseTheme_Dark_.TextAndIcon_Brand_Default_Rounded.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_Orange-InverseTheme_Dark_.TextAndIcon_Brand_Default_Rounded.png new file mode 100644 index 000000000..d7500a28f Binary files /dev/null and b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_Orange-InverseTheme_Dark_.TextAndIcon_Brand_Default_Rounded.png differ diff --git a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_Orange-InverseTheme_Dark_.TextAndIcon_Default_Default_Disabled_Rounded.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_Orange-InverseTheme_Dark_.TextAndIcon_Default_Default_Disabled_Rounded.png new file mode 100644 index 000000000..3a540f24b Binary files /dev/null and b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_Orange-InverseTheme_Dark_.TextAndIcon_Default_Default_Disabled_Rounded.png differ diff --git a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_Orange-InverseTheme_Dark_.TextAndIcon_Default_Default_Rounded.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_Orange-InverseTheme_Dark_.TextAndIcon_Default_Default_Rounded.png new file mode 100644 index 000000000..3d93ec8b0 Binary files /dev/null and b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_Orange-InverseTheme_Dark_.TextAndIcon_Default_Default_Rounded.png differ diff --git a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_Orange-InverseTheme_Dark_.TextAndIcon_Minimal_Default.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_Orange-InverseTheme_Dark_.TextAndIcon_Minimal_Default.png index 85d875b48..856d6467b 100644 Binary files a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_Orange-InverseTheme_Dark_.TextAndIcon_Minimal_Default.png and b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_Orange-InverseTheme_Dark_.TextAndIcon_Minimal_Default.png differ diff --git a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_Orange-InverseTheme_Dark_.TextAndIcon_Minimal_Default_Disabled.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_Orange-InverseTheme_Dark_.TextAndIcon_Minimal_Default_Disabled.png index 7809e07fb..a5e58ae6a 100644 Binary files a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_Orange-InverseTheme_Dark_.TextAndIcon_Minimal_Default_Disabled.png and b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_Orange-InverseTheme_Dark_.TextAndIcon_Minimal_Default_Disabled.png differ diff --git a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_Orange-InverseTheme_Dark_.TextAndIcon_Minimal_Default_Disabled_Rounded.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_Orange-InverseTheme_Dark_.TextAndIcon_Minimal_Default_Disabled_Rounded.png new file mode 100644 index 000000000..a5e58ae6a Binary files /dev/null and b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_Orange-InverseTheme_Dark_.TextAndIcon_Minimal_Default_Disabled_Rounded.png differ diff --git a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_Orange-InverseTheme_Dark_.TextAndIcon_Minimal_Default_Rounded.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_Orange-InverseTheme_Dark_.TextAndIcon_Minimal_Default_Rounded.png new file mode 100644 index 000000000..856d6467b Binary files /dev/null and b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_Orange-InverseTheme_Dark_.TextAndIcon_Minimal_Default_Rounded.png differ diff --git a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_Orange-InverseTheme_Dark_.TextAndIcon_Negative_Default_Disabled_Rounded.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_Orange-InverseTheme_Dark_.TextAndIcon_Negative_Default_Disabled_Rounded.png new file mode 100644 index 000000000..1823da367 Binary files /dev/null and b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_Orange-InverseTheme_Dark_.TextAndIcon_Negative_Default_Disabled_Rounded.png differ diff --git a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_Orange-InverseTheme_Dark_.TextAndIcon_Negative_Default_Rounded.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_Orange-InverseTheme_Dark_.TextAndIcon_Negative_Default_Rounded.png new file mode 100644 index 000000000..f388b2c57 Binary files /dev/null and b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_Orange-InverseTheme_Dark_.TextAndIcon_Negative_Default_Rounded.png differ diff --git a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_Orange-InverseTheme_Dark_.TextAndIcon_Strong_Default_Disabled_Rounded.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_Orange-InverseTheme_Dark_.TextAndIcon_Strong_Default_Disabled_Rounded.png new file mode 100644 index 000000000..1823da367 Binary files /dev/null and b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_Orange-InverseTheme_Dark_.TextAndIcon_Strong_Default_Disabled_Rounded.png differ diff --git a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_Orange-InverseTheme_Dark_.TextAndIcon_Strong_Default_Rounded.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_Orange-InverseTheme_Dark_.TextAndIcon_Strong_Default_Rounded.png new file mode 100644 index 000000000..f7607dae3 Binary files /dev/null and b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_Orange-InverseTheme_Dark_.TextAndIcon_Strong_Default_Rounded.png differ diff --git a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_Orange-InverseTheme_Dark_.Text_Brand_Default.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_Orange-InverseTheme_Dark_.Text_Brand_Default.png new file mode 100644 index 000000000..13df06107 Binary files /dev/null and b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_Orange-InverseTheme_Dark_.Text_Brand_Default.png differ diff --git a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_Orange-InverseTheme_Dark_.Text_Brand_Default_Disabled.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_Orange-InverseTheme_Dark_.Text_Brand_Default_Disabled.png new file mode 100644 index 000000000..4dffe9908 Binary files /dev/null and b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_Orange-InverseTheme_Dark_.Text_Brand_Default_Disabled.png differ diff --git a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_Orange-InverseTheme_Dark_.Text_Brand_Default_Disabled_Rounded.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_Orange-InverseTheme_Dark_.Text_Brand_Default_Disabled_Rounded.png new file mode 100644 index 000000000..f81d1fbac Binary files /dev/null and b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_Orange-InverseTheme_Dark_.Text_Brand_Default_Disabled_Rounded.png differ diff --git a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_Orange-InverseTheme_Dark_.Text_Brand_Default_Rounded.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_Orange-InverseTheme_Dark_.Text_Brand_Default_Rounded.png new file mode 100644 index 000000000..1354c6b65 Binary files /dev/null and b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_Orange-InverseTheme_Dark_.Text_Brand_Default_Rounded.png differ diff --git a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_Orange-InverseTheme_Dark_.Text_Default_Default_Disabled_Rounded.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_Orange-InverseTheme_Dark_.Text_Default_Default_Disabled_Rounded.png new file mode 100644 index 000000000..a45f0aecb Binary files /dev/null and b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_Orange-InverseTheme_Dark_.Text_Default_Default_Disabled_Rounded.png differ diff --git a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_Orange-InverseTheme_Dark_.Text_Default_Default_Rounded.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_Orange-InverseTheme_Dark_.Text_Default_Default_Rounded.png new file mode 100644 index 000000000..9ba54e7ce Binary files /dev/null and b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_Orange-InverseTheme_Dark_.Text_Default_Default_Rounded.png differ diff --git a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_Orange-InverseTheme_Dark_.Text_Minimal_Default.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_Orange-InverseTheme_Dark_.Text_Minimal_Default.png index f709cb0d8..98b2c3532 100644 Binary files a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_Orange-InverseTheme_Dark_.Text_Minimal_Default.png and b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_Orange-InverseTheme_Dark_.Text_Minimal_Default.png differ diff --git a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_Orange-InverseTheme_Dark_.Text_Minimal_Default_Disabled.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_Orange-InverseTheme_Dark_.Text_Minimal_Default_Disabled.png index 4b02b5cb1..82e74a427 100644 Binary files a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_Orange-InverseTheme_Dark_.Text_Minimal_Default_Disabled.png and b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_Orange-InverseTheme_Dark_.Text_Minimal_Default_Disabled.png differ diff --git a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_Orange-InverseTheme_Dark_.Text_Minimal_Default_Disabled_Rounded.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_Orange-InverseTheme_Dark_.Text_Minimal_Default_Disabled_Rounded.png new file mode 100644 index 000000000..82e74a427 Binary files /dev/null and b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_Orange-InverseTheme_Dark_.Text_Minimal_Default_Disabled_Rounded.png differ diff --git a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_Orange-InverseTheme_Dark_.Text_Minimal_Default_Rounded.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_Orange-InverseTheme_Dark_.Text_Minimal_Default_Rounded.png new file mode 100644 index 000000000..98b2c3532 Binary files /dev/null and b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_Orange-InverseTheme_Dark_.Text_Minimal_Default_Rounded.png differ diff --git a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_Orange-InverseTheme_Dark_.Text_Negative_Default_Disabled_Rounded.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_Orange-InverseTheme_Dark_.Text_Negative_Default_Disabled_Rounded.png new file mode 100644 index 000000000..f81d1fbac Binary files /dev/null and b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_Orange-InverseTheme_Dark_.Text_Negative_Default_Disabled_Rounded.png differ diff --git a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_Orange-InverseTheme_Dark_.Text_Negative_Default_Rounded.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_Orange-InverseTheme_Dark_.Text_Negative_Default_Rounded.png new file mode 100644 index 000000000..6abad31cd Binary files /dev/null and b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_Orange-InverseTheme_Dark_.Text_Negative_Default_Rounded.png differ diff --git a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_Orange-InverseTheme_Dark_.Text_Strong_Default_Disabled_Rounded.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_Orange-InverseTheme_Dark_.Text_Strong_Default_Disabled_Rounded.png new file mode 100644 index 000000000..f81d1fbac Binary files /dev/null and b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_Orange-InverseTheme_Dark_.Text_Strong_Default_Disabled_Rounded.png differ diff --git a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_Orange-InverseTheme_Dark_.Text_Strong_Default_Rounded.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_Orange-InverseTheme_Dark_.Text_Strong_Default_Rounded.png new file mode 100644 index 000000000..c74c9d10e Binary files /dev/null and b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_Orange-InverseTheme_Dark_.Text_Strong_Default_Rounded.png differ diff --git a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_Orange-InverseTheme_Dark_HighContrast.ColoredSurface_Icon_Default_Default_Disabled_Rounded.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_Orange-InverseTheme_Dark_HighContrast.ColoredSurface_Icon_Default_Default_Disabled_Rounded.png new file mode 100644 index 000000000..cf41391f5 Binary files /dev/null and b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_Orange-InverseTheme_Dark_HighContrast.ColoredSurface_Icon_Default_Default_Disabled_Rounded.png differ diff --git a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_Orange-InverseTheme_Dark_HighContrast.ColoredSurface_Icon_Default_Default_Rounded.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_Orange-InverseTheme_Dark_HighContrast.ColoredSurface_Icon_Default_Default_Rounded.png new file mode 100644 index 000000000..fe9e27c6c Binary files /dev/null and b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_Orange-InverseTheme_Dark_HighContrast.ColoredSurface_Icon_Default_Default_Rounded.png differ diff --git a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_Orange-InverseTheme_Dark_HighContrast.ColoredSurface_Icon_Minimal_Default_Disabled_Rounded.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_Orange-InverseTheme_Dark_HighContrast.ColoredSurface_Icon_Minimal_Default_Disabled_Rounded.png new file mode 100644 index 000000000..38ecaee20 Binary files /dev/null and b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_Orange-InverseTheme_Dark_HighContrast.ColoredSurface_Icon_Minimal_Default_Disabled_Rounded.png differ diff --git a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_Orange-InverseTheme_Dark_HighContrast.ColoredSurface_Icon_Minimal_Default_Rounded.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_Orange-InverseTheme_Dark_HighContrast.ColoredSurface_Icon_Minimal_Default_Rounded.png new file mode 100644 index 000000000..1a350e449 Binary files /dev/null and b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_Orange-InverseTheme_Dark_HighContrast.ColoredSurface_Icon_Minimal_Default_Rounded.png differ diff --git a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_Orange-InverseTheme_Dark_HighContrast.ColoredSurface_Icon_Strong_Default_Disabled_Rounded.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_Orange-InverseTheme_Dark_HighContrast.ColoredSurface_Icon_Strong_Default_Disabled_Rounded.png new file mode 100644 index 000000000..fc05c6025 Binary files /dev/null and b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_Orange-InverseTheme_Dark_HighContrast.ColoredSurface_Icon_Strong_Default_Disabled_Rounded.png differ diff --git a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_Orange-InverseTheme_Dark_HighContrast.ColoredSurface_Icon_Strong_Default_Rounded.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_Orange-InverseTheme_Dark_HighContrast.ColoredSurface_Icon_Strong_Default_Rounded.png new file mode 100644 index 000000000..d4f89df20 Binary files /dev/null and b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_Orange-InverseTheme_Dark_HighContrast.ColoredSurface_Icon_Strong_Default_Rounded.png differ diff --git a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_Orange-InverseTheme_Dark_HighContrast.ColoredSurface_TextAndIcon_Default_Default_Disabled_Rounded.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_Orange-InverseTheme_Dark_HighContrast.ColoredSurface_TextAndIcon_Default_Default_Disabled_Rounded.png new file mode 100644 index 000000000..a7d8380b0 Binary files /dev/null and b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_Orange-InverseTheme_Dark_HighContrast.ColoredSurface_TextAndIcon_Default_Default_Disabled_Rounded.png differ diff --git a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_Orange-InverseTheme_Dark_HighContrast.ColoredSurface_TextAndIcon_Default_Default_Rounded.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_Orange-InverseTheme_Dark_HighContrast.ColoredSurface_TextAndIcon_Default_Default_Rounded.png new file mode 100644 index 000000000..45768315e Binary files /dev/null and b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_Orange-InverseTheme_Dark_HighContrast.ColoredSurface_TextAndIcon_Default_Default_Rounded.png differ diff --git a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_Orange-InverseTheme_Dark_HighContrast.ColoredSurface_TextAndIcon_Minimal_Default_Disabled_Rounded.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_Orange-InverseTheme_Dark_HighContrast.ColoredSurface_TextAndIcon_Minimal_Default_Disabled_Rounded.png new file mode 100644 index 000000000..43f27df49 Binary files /dev/null and b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_Orange-InverseTheme_Dark_HighContrast.ColoredSurface_TextAndIcon_Minimal_Default_Disabled_Rounded.png differ diff --git a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_Orange-InverseTheme_Dark_HighContrast.ColoredSurface_TextAndIcon_Minimal_Default_Rounded.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_Orange-InverseTheme_Dark_HighContrast.ColoredSurface_TextAndIcon_Minimal_Default_Rounded.png new file mode 100644 index 000000000..c179ce466 Binary files /dev/null and b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_Orange-InverseTheme_Dark_HighContrast.ColoredSurface_TextAndIcon_Minimal_Default_Rounded.png differ diff --git a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_Orange-InverseTheme_Dark_HighContrast.ColoredSurface_TextAndIcon_Strong_Default_Disabled_Rounded.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_Orange-InverseTheme_Dark_HighContrast.ColoredSurface_TextAndIcon_Strong_Default_Disabled_Rounded.png new file mode 100644 index 000000000..60863510d Binary files /dev/null and b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_Orange-InverseTheme_Dark_HighContrast.ColoredSurface_TextAndIcon_Strong_Default_Disabled_Rounded.png differ diff --git a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_Orange-InverseTheme_Dark_HighContrast.ColoredSurface_TextAndIcon_Strong_Default_Rounded.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_Orange-InverseTheme_Dark_HighContrast.ColoredSurface_TextAndIcon_Strong_Default_Rounded.png new file mode 100644 index 000000000..24896848f Binary files /dev/null and b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_Orange-InverseTheme_Dark_HighContrast.ColoredSurface_TextAndIcon_Strong_Default_Rounded.png differ diff --git a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_Orange-InverseTheme_Dark_HighContrast.ColoredSurface_Text_Default_Default_Disabled_Rounded.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_Orange-InverseTheme_Dark_HighContrast.ColoredSurface_Text_Default_Default_Disabled_Rounded.png new file mode 100644 index 000000000..b64971ecd Binary files /dev/null and b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_Orange-InverseTheme_Dark_HighContrast.ColoredSurface_Text_Default_Default_Disabled_Rounded.png differ diff --git a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_Orange-InverseTheme_Dark_HighContrast.ColoredSurface_Text_Default_Default_Rounded.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_Orange-InverseTheme_Dark_HighContrast.ColoredSurface_Text_Default_Default_Rounded.png new file mode 100644 index 000000000..85ef11823 Binary files /dev/null and b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_Orange-InverseTheme_Dark_HighContrast.ColoredSurface_Text_Default_Default_Rounded.png differ diff --git a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_Orange-InverseTheme_Dark_HighContrast.ColoredSurface_Text_Minimal_Default_Disabled_Rounded.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_Orange-InverseTheme_Dark_HighContrast.ColoredSurface_Text_Minimal_Default_Disabled_Rounded.png new file mode 100644 index 000000000..0c186912f Binary files /dev/null and b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_Orange-InverseTheme_Dark_HighContrast.ColoredSurface_Text_Minimal_Default_Disabled_Rounded.png differ diff --git a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_Orange-InverseTheme_Dark_HighContrast.ColoredSurface_Text_Minimal_Default_Rounded.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_Orange-InverseTheme_Dark_HighContrast.ColoredSurface_Text_Minimal_Default_Rounded.png new file mode 100644 index 000000000..13df06107 Binary files /dev/null and b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_Orange-InverseTheme_Dark_HighContrast.ColoredSurface_Text_Minimal_Default_Rounded.png differ diff --git a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_Orange-InverseTheme_Dark_HighContrast.ColoredSurface_Text_Strong_Default_Disabled_Rounded.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_Orange-InverseTheme_Dark_HighContrast.ColoredSurface_Text_Strong_Default_Disabled_Rounded.png new file mode 100644 index 000000000..d585bdd97 Binary files /dev/null and b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_Orange-InverseTheme_Dark_HighContrast.ColoredSurface_Text_Strong_Default_Disabled_Rounded.png differ diff --git a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_Orange-InverseTheme_Dark_HighContrast.ColoredSurface_Text_Strong_Default_Rounded.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_Orange-InverseTheme_Dark_HighContrast.ColoredSurface_Text_Strong_Default_Rounded.png new file mode 100644 index 000000000..7d11f4150 Binary files /dev/null and b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_Orange-InverseTheme_Dark_HighContrast.ColoredSurface_Text_Strong_Default_Rounded.png differ diff --git a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_Orange-InverseTheme_Dark_HighContrast.Icon_Brand_Default.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_Orange-InverseTheme_Dark_HighContrast.Icon_Brand_Default.png new file mode 100644 index 000000000..1a350e449 Binary files /dev/null and b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_Orange-InverseTheme_Dark_HighContrast.Icon_Brand_Default.png differ diff --git a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_Orange-InverseTheme_Dark_HighContrast.Icon_Brand_Default_Disabled.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_Orange-InverseTheme_Dark_HighContrast.Icon_Brand_Default_Disabled.png new file mode 100644 index 000000000..a16771f5b Binary files /dev/null and b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_Orange-InverseTheme_Dark_HighContrast.Icon_Brand_Default_Disabled.png differ diff --git a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_Orange-InverseTheme_Dark_HighContrast.Icon_Brand_Default_Disabled_Rounded.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_Orange-InverseTheme_Dark_HighContrast.Icon_Brand_Default_Disabled_Rounded.png new file mode 100644 index 000000000..603f00dfc Binary files /dev/null and b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_Orange-InverseTheme_Dark_HighContrast.Icon_Brand_Default_Disabled_Rounded.png differ diff --git a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_Orange-InverseTheme_Dark_HighContrast.Icon_Brand_Default_Rounded.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_Orange-InverseTheme_Dark_HighContrast.Icon_Brand_Default_Rounded.png new file mode 100644 index 000000000..7cc03ada6 Binary files /dev/null and b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_Orange-InverseTheme_Dark_HighContrast.Icon_Brand_Default_Rounded.png differ diff --git a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_Orange-InverseTheme_Dark_HighContrast.Icon_Default_Default_Disabled_Rounded.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_Orange-InverseTheme_Dark_HighContrast.Icon_Default_Default_Disabled_Rounded.png new file mode 100644 index 000000000..6f9892a3e Binary files /dev/null and b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_Orange-InverseTheme_Dark_HighContrast.Icon_Default_Default_Disabled_Rounded.png differ diff --git a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_Orange-InverseTheme_Dark_HighContrast.Icon_Default_Default_Rounded.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_Orange-InverseTheme_Dark_HighContrast.Icon_Default_Default_Rounded.png new file mode 100644 index 000000000..e77d4f5a7 Binary files /dev/null and b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_Orange-InverseTheme_Dark_HighContrast.Icon_Default_Default_Rounded.png differ diff --git a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_Orange-InverseTheme_Dark_HighContrast.Icon_Minimal_Default.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_Orange-InverseTheme_Dark_HighContrast.Icon_Minimal_Default.png index 84ccaad73..ee2263be0 100644 Binary files a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_Orange-InverseTheme_Dark_HighContrast.Icon_Minimal_Default.png and b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_Orange-InverseTheme_Dark_HighContrast.Icon_Minimal_Default.png differ diff --git a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_Orange-InverseTheme_Dark_HighContrast.Icon_Minimal_Default_Disabled.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_Orange-InverseTheme_Dark_HighContrast.Icon_Minimal_Default_Disabled.png index 71ea65d69..11da18626 100644 Binary files a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_Orange-InverseTheme_Dark_HighContrast.Icon_Minimal_Default_Disabled.png and b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_Orange-InverseTheme_Dark_HighContrast.Icon_Minimal_Default_Disabled.png differ diff --git a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_Orange-InverseTheme_Dark_HighContrast.Icon_Minimal_Default_Disabled_Rounded.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_Orange-InverseTheme_Dark_HighContrast.Icon_Minimal_Default_Disabled_Rounded.png new file mode 100644 index 000000000..11da18626 Binary files /dev/null and b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_Orange-InverseTheme_Dark_HighContrast.Icon_Minimal_Default_Disabled_Rounded.png differ diff --git a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_Orange-InverseTheme_Dark_HighContrast.Icon_Minimal_Default_Rounded.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_Orange-InverseTheme_Dark_HighContrast.Icon_Minimal_Default_Rounded.png new file mode 100644 index 000000000..ee2263be0 Binary files /dev/null and b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_Orange-InverseTheme_Dark_HighContrast.Icon_Minimal_Default_Rounded.png differ diff --git a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_Orange-InverseTheme_Dark_HighContrast.Icon_Negative_Default_Disabled_Rounded.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_Orange-InverseTheme_Dark_HighContrast.Icon_Negative_Default_Disabled_Rounded.png new file mode 100644 index 000000000..603f00dfc Binary files /dev/null and b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_Orange-InverseTheme_Dark_HighContrast.Icon_Negative_Default_Disabled_Rounded.png differ diff --git a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_Orange-InverseTheme_Dark_HighContrast.Icon_Negative_Default_Rounded.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_Orange-InverseTheme_Dark_HighContrast.Icon_Negative_Default_Rounded.png new file mode 100644 index 000000000..7092267b9 Binary files /dev/null and b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_Orange-InverseTheme_Dark_HighContrast.Icon_Negative_Default_Rounded.png differ diff --git a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_Orange-InverseTheme_Dark_HighContrast.Icon_Strong_Default_Disabled_Rounded.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_Orange-InverseTheme_Dark_HighContrast.Icon_Strong_Default_Disabled_Rounded.png new file mode 100644 index 000000000..603f00dfc Binary files /dev/null and b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_Orange-InverseTheme_Dark_HighContrast.Icon_Strong_Default_Disabled_Rounded.png differ diff --git a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_Orange-InverseTheme_Dark_HighContrast.Icon_Strong_Default_Rounded.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_Orange-InverseTheme_Dark_HighContrast.Icon_Strong_Default_Rounded.png new file mode 100644 index 000000000..14b85993b Binary files /dev/null and b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_Orange-InverseTheme_Dark_HighContrast.Icon_Strong_Default_Rounded.png differ diff --git a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_Orange-InverseTheme_Dark_HighContrast.TextAndIcon_Brand_Default.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_Orange-InverseTheme_Dark_HighContrast.TextAndIcon_Brand_Default.png new file mode 100644 index 000000000..c179ce466 Binary files /dev/null and b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_Orange-InverseTheme_Dark_HighContrast.TextAndIcon_Brand_Default.png differ diff --git a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_Orange-InverseTheme_Dark_HighContrast.TextAndIcon_Brand_Default_Disabled.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_Orange-InverseTheme_Dark_HighContrast.TextAndIcon_Brand_Default_Disabled.png new file mode 100644 index 000000000..58878bf32 Binary files /dev/null and b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_Orange-InverseTheme_Dark_HighContrast.TextAndIcon_Brand_Default_Disabled.png differ diff --git a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_Orange-InverseTheme_Dark_HighContrast.TextAndIcon_Brand_Default_Disabled_Rounded.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_Orange-InverseTheme_Dark_HighContrast.TextAndIcon_Brand_Default_Disabled_Rounded.png new file mode 100644 index 000000000..1823da367 Binary files /dev/null and b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_Orange-InverseTheme_Dark_HighContrast.TextAndIcon_Brand_Default_Disabled_Rounded.png differ diff --git a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_Orange-InverseTheme_Dark_HighContrast.TextAndIcon_Brand_Default_Rounded.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_Orange-InverseTheme_Dark_HighContrast.TextAndIcon_Brand_Default_Rounded.png new file mode 100644 index 000000000..d7500a28f Binary files /dev/null and b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_Orange-InverseTheme_Dark_HighContrast.TextAndIcon_Brand_Default_Rounded.png differ diff --git a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_Orange-InverseTheme_Dark_HighContrast.TextAndIcon_Default_Default_Disabled_Rounded.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_Orange-InverseTheme_Dark_HighContrast.TextAndIcon_Default_Default_Disabled_Rounded.png new file mode 100644 index 000000000..3a540f24b Binary files /dev/null and b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_Orange-InverseTheme_Dark_HighContrast.TextAndIcon_Default_Default_Disabled_Rounded.png differ diff --git a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_Orange-InverseTheme_Dark_HighContrast.TextAndIcon_Default_Default_Rounded.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_Orange-InverseTheme_Dark_HighContrast.TextAndIcon_Default_Default_Rounded.png new file mode 100644 index 000000000..3d93ec8b0 Binary files /dev/null and b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_Orange-InverseTheme_Dark_HighContrast.TextAndIcon_Default_Default_Rounded.png differ diff --git a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_Orange-InverseTheme_Dark_HighContrast.TextAndIcon_Minimal_Default.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_Orange-InverseTheme_Dark_HighContrast.TextAndIcon_Minimal_Default.png index 85d875b48..856d6467b 100644 Binary files a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_Orange-InverseTheme_Dark_HighContrast.TextAndIcon_Minimal_Default.png and b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_Orange-InverseTheme_Dark_HighContrast.TextAndIcon_Minimal_Default.png differ diff --git a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_Orange-InverseTheme_Dark_HighContrast.TextAndIcon_Minimal_Default_Disabled.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_Orange-InverseTheme_Dark_HighContrast.TextAndIcon_Minimal_Default_Disabled.png index 7809e07fb..a5e58ae6a 100644 Binary files a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_Orange-InverseTheme_Dark_HighContrast.TextAndIcon_Minimal_Default_Disabled.png and b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_Orange-InverseTheme_Dark_HighContrast.TextAndIcon_Minimal_Default_Disabled.png differ diff --git a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_Orange-InverseTheme_Dark_HighContrast.TextAndIcon_Minimal_Default_Disabled_Rounded.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_Orange-InverseTheme_Dark_HighContrast.TextAndIcon_Minimal_Default_Disabled_Rounded.png new file mode 100644 index 000000000..a5e58ae6a Binary files /dev/null and b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_Orange-InverseTheme_Dark_HighContrast.TextAndIcon_Minimal_Default_Disabled_Rounded.png differ diff --git a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_Orange-InverseTheme_Dark_HighContrast.TextAndIcon_Minimal_Default_Rounded.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_Orange-InverseTheme_Dark_HighContrast.TextAndIcon_Minimal_Default_Rounded.png new file mode 100644 index 000000000..856d6467b Binary files /dev/null and b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_Orange-InverseTheme_Dark_HighContrast.TextAndIcon_Minimal_Default_Rounded.png differ diff --git a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_Orange-InverseTheme_Dark_HighContrast.TextAndIcon_Negative_Default_Disabled_Rounded.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_Orange-InverseTheme_Dark_HighContrast.TextAndIcon_Negative_Default_Disabled_Rounded.png new file mode 100644 index 000000000..1823da367 Binary files /dev/null and b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_Orange-InverseTheme_Dark_HighContrast.TextAndIcon_Negative_Default_Disabled_Rounded.png differ diff --git a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_Orange-InverseTheme_Dark_HighContrast.TextAndIcon_Negative_Default_Rounded.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_Orange-InverseTheme_Dark_HighContrast.TextAndIcon_Negative_Default_Rounded.png new file mode 100644 index 000000000..f388b2c57 Binary files /dev/null and b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_Orange-InverseTheme_Dark_HighContrast.TextAndIcon_Negative_Default_Rounded.png differ diff --git a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_Orange-InverseTheme_Dark_HighContrast.TextAndIcon_Strong_Default_Disabled_Rounded.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_Orange-InverseTheme_Dark_HighContrast.TextAndIcon_Strong_Default_Disabled_Rounded.png new file mode 100644 index 000000000..1823da367 Binary files /dev/null and b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_Orange-InverseTheme_Dark_HighContrast.TextAndIcon_Strong_Default_Disabled_Rounded.png differ diff --git a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_Orange-InverseTheme_Dark_HighContrast.TextAndIcon_Strong_Default_Rounded.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_Orange-InverseTheme_Dark_HighContrast.TextAndIcon_Strong_Default_Rounded.png new file mode 100644 index 000000000..f7607dae3 Binary files /dev/null and b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_Orange-InverseTheme_Dark_HighContrast.TextAndIcon_Strong_Default_Rounded.png differ diff --git a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_Orange-InverseTheme_Dark_HighContrast.Text_Brand_Default.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_Orange-InverseTheme_Dark_HighContrast.Text_Brand_Default.png new file mode 100644 index 000000000..13df06107 Binary files /dev/null and b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_Orange-InverseTheme_Dark_HighContrast.Text_Brand_Default.png differ diff --git a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_Orange-InverseTheme_Dark_HighContrast.Text_Brand_Default_Disabled.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_Orange-InverseTheme_Dark_HighContrast.Text_Brand_Default_Disabled.png new file mode 100644 index 000000000..4dffe9908 Binary files /dev/null and b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_Orange-InverseTheme_Dark_HighContrast.Text_Brand_Default_Disabled.png differ diff --git a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_Orange-InverseTheme_Dark_HighContrast.Text_Brand_Default_Disabled_Rounded.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_Orange-InverseTheme_Dark_HighContrast.Text_Brand_Default_Disabled_Rounded.png new file mode 100644 index 000000000..f81d1fbac Binary files /dev/null and b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_Orange-InverseTheme_Dark_HighContrast.Text_Brand_Default_Disabled_Rounded.png differ diff --git a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_Orange-InverseTheme_Dark_HighContrast.Text_Brand_Default_Rounded.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_Orange-InverseTheme_Dark_HighContrast.Text_Brand_Default_Rounded.png new file mode 100644 index 000000000..1354c6b65 Binary files /dev/null and b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_Orange-InverseTheme_Dark_HighContrast.Text_Brand_Default_Rounded.png differ diff --git a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_Orange-InverseTheme_Dark_HighContrast.Text_Default_Default_Disabled_Rounded.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_Orange-InverseTheme_Dark_HighContrast.Text_Default_Default_Disabled_Rounded.png new file mode 100644 index 000000000..a45f0aecb Binary files /dev/null and b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_Orange-InverseTheme_Dark_HighContrast.Text_Default_Default_Disabled_Rounded.png differ diff --git a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_Orange-InverseTheme_Dark_HighContrast.Text_Default_Default_Rounded.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_Orange-InverseTheme_Dark_HighContrast.Text_Default_Default_Rounded.png new file mode 100644 index 000000000..9ba54e7ce Binary files /dev/null and b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_Orange-InverseTheme_Dark_HighContrast.Text_Default_Default_Rounded.png differ diff --git a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_Orange-InverseTheme_Dark_HighContrast.Text_Minimal_Default.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_Orange-InverseTheme_Dark_HighContrast.Text_Minimal_Default.png index f709cb0d8..98b2c3532 100644 Binary files a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_Orange-InverseTheme_Dark_HighContrast.Text_Minimal_Default.png and b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_Orange-InverseTheme_Dark_HighContrast.Text_Minimal_Default.png differ diff --git a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_Orange-InverseTheme_Dark_HighContrast.Text_Minimal_Default_Disabled.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_Orange-InverseTheme_Dark_HighContrast.Text_Minimal_Default_Disabled.png index 4b02b5cb1..82e74a427 100644 Binary files a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_Orange-InverseTheme_Dark_HighContrast.Text_Minimal_Default_Disabled.png and b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_Orange-InverseTheme_Dark_HighContrast.Text_Minimal_Default_Disabled.png differ diff --git a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_Orange-InverseTheme_Dark_HighContrast.Text_Minimal_Default_Disabled_Rounded.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_Orange-InverseTheme_Dark_HighContrast.Text_Minimal_Default_Disabled_Rounded.png new file mode 100644 index 000000000..82e74a427 Binary files /dev/null and b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_Orange-InverseTheme_Dark_HighContrast.Text_Minimal_Default_Disabled_Rounded.png differ diff --git a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_Orange-InverseTheme_Dark_HighContrast.Text_Minimal_Default_Rounded.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_Orange-InverseTheme_Dark_HighContrast.Text_Minimal_Default_Rounded.png new file mode 100644 index 000000000..98b2c3532 Binary files /dev/null and b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_Orange-InverseTheme_Dark_HighContrast.Text_Minimal_Default_Rounded.png differ diff --git a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_Orange-InverseTheme_Dark_HighContrast.Text_Negative_Default_Disabled_Rounded.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_Orange-InverseTheme_Dark_HighContrast.Text_Negative_Default_Disabled_Rounded.png new file mode 100644 index 000000000..f81d1fbac Binary files /dev/null and b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_Orange-InverseTheme_Dark_HighContrast.Text_Negative_Default_Disabled_Rounded.png differ diff --git a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_Orange-InverseTheme_Dark_HighContrast.Text_Negative_Default_Rounded.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_Orange-InverseTheme_Dark_HighContrast.Text_Negative_Default_Rounded.png new file mode 100644 index 000000000..6abad31cd Binary files /dev/null and b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_Orange-InverseTheme_Dark_HighContrast.Text_Negative_Default_Rounded.png differ diff --git a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_Orange-InverseTheme_Dark_HighContrast.Text_Strong_Default_Disabled_Rounded.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_Orange-InverseTheme_Dark_HighContrast.Text_Strong_Default_Disabled_Rounded.png new file mode 100644 index 000000000..f81d1fbac Binary files /dev/null and b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_Orange-InverseTheme_Dark_HighContrast.Text_Strong_Default_Disabled_Rounded.png differ diff --git a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_Orange-InverseTheme_Dark_HighContrast.Text_Strong_Default_Rounded.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_Orange-InverseTheme_Dark_HighContrast.Text_Strong_Default_Rounded.png new file mode 100644 index 000000000..c74c9d10e Binary files /dev/null and b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_Orange-InverseTheme_Dark_HighContrast.Text_Strong_Default_Rounded.png differ diff --git a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_Orange-InverseTheme_Light_.ColoredSurface_Icon_Default_Default_Disabled_Rounded.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_Orange-InverseTheme_Light_.ColoredSurface_Icon_Default_Default_Disabled_Rounded.png new file mode 100644 index 000000000..3292e67db Binary files /dev/null and b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_Orange-InverseTheme_Light_.ColoredSurface_Icon_Default_Default_Disabled_Rounded.png differ diff --git a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_Orange-InverseTheme_Light_.ColoredSurface_Icon_Default_Default_Rounded.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_Orange-InverseTheme_Light_.ColoredSurface_Icon_Default_Default_Rounded.png new file mode 100644 index 000000000..30a527eed Binary files /dev/null and b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_Orange-InverseTheme_Light_.ColoredSurface_Icon_Default_Default_Rounded.png differ diff --git a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_Orange-InverseTheme_Light_.ColoredSurface_Icon_Minimal_Default_Disabled_Rounded.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_Orange-InverseTheme_Light_.ColoredSurface_Icon_Minimal_Default_Disabled_Rounded.png new file mode 100644 index 000000000..0935ca693 Binary files /dev/null and b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_Orange-InverseTheme_Light_.ColoredSurface_Icon_Minimal_Default_Disabled_Rounded.png differ diff --git a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_Orange-InverseTheme_Light_.ColoredSurface_Icon_Minimal_Default_Rounded.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_Orange-InverseTheme_Light_.ColoredSurface_Icon_Minimal_Default_Rounded.png new file mode 100644 index 000000000..d7d648319 Binary files /dev/null and b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_Orange-InverseTheme_Light_.ColoredSurface_Icon_Minimal_Default_Rounded.png differ diff --git a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_Orange-InverseTheme_Light_.ColoredSurface_Icon_Strong_Default_Disabled_Rounded.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_Orange-InverseTheme_Light_.ColoredSurface_Icon_Strong_Default_Disabled_Rounded.png new file mode 100644 index 000000000..d6d62ccc6 Binary files /dev/null and b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_Orange-InverseTheme_Light_.ColoredSurface_Icon_Strong_Default_Disabled_Rounded.png differ diff --git a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_Orange-InverseTheme_Light_.ColoredSurface_Icon_Strong_Default_Rounded.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_Orange-InverseTheme_Light_.ColoredSurface_Icon_Strong_Default_Rounded.png new file mode 100644 index 000000000..30894fd25 Binary files /dev/null and b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_Orange-InverseTheme_Light_.ColoredSurface_Icon_Strong_Default_Rounded.png differ diff --git a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_Orange-InverseTheme_Light_.ColoredSurface_TextAndIcon_Default_Default_Disabled_Rounded.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_Orange-InverseTheme_Light_.ColoredSurface_TextAndIcon_Default_Default_Disabled_Rounded.png new file mode 100644 index 000000000..901275565 Binary files /dev/null and b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_Orange-InverseTheme_Light_.ColoredSurface_TextAndIcon_Default_Default_Disabled_Rounded.png differ diff --git a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_Orange-InverseTheme_Light_.ColoredSurface_TextAndIcon_Default_Default_Rounded.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_Orange-InverseTheme_Light_.ColoredSurface_TextAndIcon_Default_Default_Rounded.png new file mode 100644 index 000000000..d142d69ad Binary files /dev/null and b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_Orange-InverseTheme_Light_.ColoredSurface_TextAndIcon_Default_Default_Rounded.png differ diff --git a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_Orange-InverseTheme_Light_.ColoredSurface_TextAndIcon_Minimal_Default_Disabled_Rounded.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_Orange-InverseTheme_Light_.ColoredSurface_TextAndIcon_Minimal_Default_Disabled_Rounded.png new file mode 100644 index 000000000..2f4d98843 Binary files /dev/null and b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_Orange-InverseTheme_Light_.ColoredSurface_TextAndIcon_Minimal_Default_Disabled_Rounded.png differ diff --git a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_Orange-InverseTheme_Light_.ColoredSurface_TextAndIcon_Minimal_Default_Rounded.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_Orange-InverseTheme_Light_.ColoredSurface_TextAndIcon_Minimal_Default_Rounded.png new file mode 100644 index 000000000..69886e510 Binary files /dev/null and b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_Orange-InverseTheme_Light_.ColoredSurface_TextAndIcon_Minimal_Default_Rounded.png differ diff --git a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_Orange-InverseTheme_Light_.ColoredSurface_TextAndIcon_Strong_Default_Disabled_Rounded.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_Orange-InverseTheme_Light_.ColoredSurface_TextAndIcon_Strong_Default_Disabled_Rounded.png new file mode 100644 index 000000000..ffc257fbc Binary files /dev/null and b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_Orange-InverseTheme_Light_.ColoredSurface_TextAndIcon_Strong_Default_Disabled_Rounded.png differ diff --git a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_Orange-InverseTheme_Light_.ColoredSurface_TextAndIcon_Strong_Default_Rounded.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_Orange-InverseTheme_Light_.ColoredSurface_TextAndIcon_Strong_Default_Rounded.png new file mode 100644 index 000000000..65b4cd14f Binary files /dev/null and b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_Orange-InverseTheme_Light_.ColoredSurface_TextAndIcon_Strong_Default_Rounded.png differ diff --git a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_Orange-InverseTheme_Light_.ColoredSurface_Text_Default_Default_Disabled_Rounded.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_Orange-InverseTheme_Light_.ColoredSurface_Text_Default_Default_Disabled_Rounded.png new file mode 100644 index 000000000..6be6bca50 Binary files /dev/null and b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_Orange-InverseTheme_Light_.ColoredSurface_Text_Default_Default_Disabled_Rounded.png differ diff --git a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_Orange-InverseTheme_Light_.ColoredSurface_Text_Default_Default_Rounded.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_Orange-InverseTheme_Light_.ColoredSurface_Text_Default_Default_Rounded.png new file mode 100644 index 000000000..4acbceb32 Binary files /dev/null and b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_Orange-InverseTheme_Light_.ColoredSurface_Text_Default_Default_Rounded.png differ diff --git a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_Orange-InverseTheme_Light_.ColoredSurface_Text_Minimal_Default_Disabled_Rounded.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_Orange-InverseTheme_Light_.ColoredSurface_Text_Minimal_Default_Disabled_Rounded.png new file mode 100644 index 000000000..52fd1ecd5 Binary files /dev/null and b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_Orange-InverseTheme_Light_.ColoredSurface_Text_Minimal_Default_Disabled_Rounded.png differ diff --git a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_Orange-InverseTheme_Light_.ColoredSurface_Text_Minimal_Default_Rounded.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_Orange-InverseTheme_Light_.ColoredSurface_Text_Minimal_Default_Rounded.png new file mode 100644 index 000000000..175dc16a9 Binary files /dev/null and b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_Orange-InverseTheme_Light_.ColoredSurface_Text_Minimal_Default_Rounded.png differ diff --git a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_Orange-InverseTheme_Light_.ColoredSurface_Text_Strong_Default_Disabled_Rounded.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_Orange-InverseTheme_Light_.ColoredSurface_Text_Strong_Default_Disabled_Rounded.png new file mode 100644 index 000000000..dadb69970 Binary files /dev/null and b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_Orange-InverseTheme_Light_.ColoredSurface_Text_Strong_Default_Disabled_Rounded.png differ diff --git a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_Orange-InverseTheme_Light_.ColoredSurface_Text_Strong_Default_Rounded.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_Orange-InverseTheme_Light_.ColoredSurface_Text_Strong_Default_Rounded.png new file mode 100644 index 000000000..4f0fb26fe Binary files /dev/null and b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_Orange-InverseTheme_Light_.ColoredSurface_Text_Strong_Default_Rounded.png differ diff --git a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_Orange-InverseTheme_Light_.Icon_Brand_Default.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_Orange-InverseTheme_Light_.Icon_Brand_Default.png new file mode 100644 index 000000000..d7d648319 Binary files /dev/null and b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_Orange-InverseTheme_Light_.Icon_Brand_Default.png differ diff --git a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_Orange-InverseTheme_Light_.Icon_Brand_Default_Disabled.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_Orange-InverseTheme_Light_.Icon_Brand_Default_Disabled.png new file mode 100644 index 000000000..39c7e09bf Binary files /dev/null and b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_Orange-InverseTheme_Light_.Icon_Brand_Default_Disabled.png differ diff --git a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_Orange-InverseTheme_Light_.Icon_Brand_Default_Disabled_Rounded.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_Orange-InverseTheme_Light_.Icon_Brand_Default_Disabled_Rounded.png new file mode 100644 index 000000000..bee95ba52 Binary files /dev/null and b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_Orange-InverseTheme_Light_.Icon_Brand_Default_Disabled_Rounded.png differ diff --git a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_Orange-InverseTheme_Light_.Icon_Brand_Default_Rounded.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_Orange-InverseTheme_Light_.Icon_Brand_Default_Rounded.png new file mode 100644 index 000000000..befb4c6fb Binary files /dev/null and b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_Orange-InverseTheme_Light_.Icon_Brand_Default_Rounded.png differ diff --git a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_Orange-InverseTheme_Light_.Icon_Default_Default_Disabled_Rounded.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_Orange-InverseTheme_Light_.Icon_Default_Default_Disabled_Rounded.png new file mode 100644 index 000000000..3363624e2 Binary files /dev/null and b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_Orange-InverseTheme_Light_.Icon_Default_Default_Disabled_Rounded.png differ diff --git a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_Orange-InverseTheme_Light_.Icon_Default_Default_Rounded.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_Orange-InverseTheme_Light_.Icon_Default_Default_Rounded.png new file mode 100644 index 000000000..d06db85ee Binary files /dev/null and b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_Orange-InverseTheme_Light_.Icon_Default_Default_Rounded.png differ diff --git a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_Orange-InverseTheme_Light_.Icon_Minimal_Default.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_Orange-InverseTheme_Light_.Icon_Minimal_Default.png index 013b2706b..e6bc610a2 100644 Binary files a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_Orange-InverseTheme_Light_.Icon_Minimal_Default.png and b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_Orange-InverseTheme_Light_.Icon_Minimal_Default.png differ diff --git a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_Orange-InverseTheme_Light_.Icon_Minimal_Default_Disabled.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_Orange-InverseTheme_Light_.Icon_Minimal_Default_Disabled.png index d0c6d30bc..93acf326e 100644 Binary files a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_Orange-InverseTheme_Light_.Icon_Minimal_Default_Disabled.png and b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_Orange-InverseTheme_Light_.Icon_Minimal_Default_Disabled.png differ diff --git a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_Orange-InverseTheme_Light_.Icon_Minimal_Default_Disabled_Rounded.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_Orange-InverseTheme_Light_.Icon_Minimal_Default_Disabled_Rounded.png new file mode 100644 index 000000000..93acf326e Binary files /dev/null and b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_Orange-InverseTheme_Light_.Icon_Minimal_Default_Disabled_Rounded.png differ diff --git a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_Orange-InverseTheme_Light_.Icon_Minimal_Default_Rounded.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_Orange-InverseTheme_Light_.Icon_Minimal_Default_Rounded.png new file mode 100644 index 000000000..e6bc610a2 Binary files /dev/null and b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_Orange-InverseTheme_Light_.Icon_Minimal_Default_Rounded.png differ diff --git a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_Orange-InverseTheme_Light_.Icon_Negative_Default_Disabled_Rounded.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_Orange-InverseTheme_Light_.Icon_Negative_Default_Disabled_Rounded.png new file mode 100644 index 000000000..bee95ba52 Binary files /dev/null and b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_Orange-InverseTheme_Light_.Icon_Negative_Default_Disabled_Rounded.png differ diff --git a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_Orange-InverseTheme_Light_.Icon_Negative_Default_Rounded.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_Orange-InverseTheme_Light_.Icon_Negative_Default_Rounded.png new file mode 100644 index 000000000..afb7c4320 Binary files /dev/null and b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_Orange-InverseTheme_Light_.Icon_Negative_Default_Rounded.png differ diff --git a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_Orange-InverseTheme_Light_.Icon_Strong_Default_Disabled_Rounded.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_Orange-InverseTheme_Light_.Icon_Strong_Default_Disabled_Rounded.png new file mode 100644 index 000000000..bee95ba52 Binary files /dev/null and b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_Orange-InverseTheme_Light_.Icon_Strong_Default_Disabled_Rounded.png differ diff --git a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_Orange-InverseTheme_Light_.Icon_Strong_Default_Rounded.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_Orange-InverseTheme_Light_.Icon_Strong_Default_Rounded.png new file mode 100644 index 000000000..3c6153929 Binary files /dev/null and b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_Orange-InverseTheme_Light_.Icon_Strong_Default_Rounded.png differ diff --git a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_Orange-InverseTheme_Light_.TextAndIcon_Brand_Default.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_Orange-InverseTheme_Light_.TextAndIcon_Brand_Default.png new file mode 100644 index 000000000..69886e510 Binary files /dev/null and b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_Orange-InverseTheme_Light_.TextAndIcon_Brand_Default.png differ diff --git a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_Orange-InverseTheme_Light_.TextAndIcon_Brand_Default_Disabled.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_Orange-InverseTheme_Light_.TextAndIcon_Brand_Default_Disabled.png new file mode 100644 index 000000000..2eb444424 Binary files /dev/null and b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_Orange-InverseTheme_Light_.TextAndIcon_Brand_Default_Disabled.png differ diff --git a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_Orange-InverseTheme_Light_.TextAndIcon_Brand_Default_Disabled_Rounded.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_Orange-InverseTheme_Light_.TextAndIcon_Brand_Default_Disabled_Rounded.png new file mode 100644 index 000000000..2a9b36288 Binary files /dev/null and b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_Orange-InverseTheme_Light_.TextAndIcon_Brand_Default_Disabled_Rounded.png differ diff --git a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_Orange-InverseTheme_Light_.TextAndIcon_Brand_Default_Rounded.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_Orange-InverseTheme_Light_.TextAndIcon_Brand_Default_Rounded.png new file mode 100644 index 000000000..a06788849 Binary files /dev/null and b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_Orange-InverseTheme_Light_.TextAndIcon_Brand_Default_Rounded.png differ diff --git a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_Orange-InverseTheme_Light_.TextAndIcon_Default_Default_Disabled_Rounded.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_Orange-InverseTheme_Light_.TextAndIcon_Default_Default_Disabled_Rounded.png new file mode 100644 index 000000000..c8eaa7354 Binary files /dev/null and b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_Orange-InverseTheme_Light_.TextAndIcon_Default_Default_Disabled_Rounded.png differ diff --git a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_Orange-InverseTheme_Light_.TextAndIcon_Default_Default_Rounded.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_Orange-InverseTheme_Light_.TextAndIcon_Default_Default_Rounded.png new file mode 100644 index 000000000..7bdf3e57e Binary files /dev/null and b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_Orange-InverseTheme_Light_.TextAndIcon_Default_Default_Rounded.png differ diff --git a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_Orange-InverseTheme_Light_.TextAndIcon_Minimal_Default.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_Orange-InverseTheme_Light_.TextAndIcon_Minimal_Default.png index 9b1690788..63ec0e413 100644 Binary files a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_Orange-InverseTheme_Light_.TextAndIcon_Minimal_Default.png and b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_Orange-InverseTheme_Light_.TextAndIcon_Minimal_Default.png differ diff --git a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_Orange-InverseTheme_Light_.TextAndIcon_Minimal_Default_Disabled.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_Orange-InverseTheme_Light_.TextAndIcon_Minimal_Default_Disabled.png index c0c092814..47d6f1e4f 100644 Binary files a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_Orange-InverseTheme_Light_.TextAndIcon_Minimal_Default_Disabled.png and b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_Orange-InverseTheme_Light_.TextAndIcon_Minimal_Default_Disabled.png differ diff --git a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_Orange-InverseTheme_Light_.TextAndIcon_Minimal_Default_Disabled_Rounded.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_Orange-InverseTheme_Light_.TextAndIcon_Minimal_Default_Disabled_Rounded.png new file mode 100644 index 000000000..47d6f1e4f Binary files /dev/null and b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_Orange-InverseTheme_Light_.TextAndIcon_Minimal_Default_Disabled_Rounded.png differ diff --git a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_Orange-InverseTheme_Light_.TextAndIcon_Minimal_Default_Rounded.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_Orange-InverseTheme_Light_.TextAndIcon_Minimal_Default_Rounded.png new file mode 100644 index 000000000..63ec0e413 Binary files /dev/null and b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_Orange-InverseTheme_Light_.TextAndIcon_Minimal_Default_Rounded.png differ diff --git a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_Orange-InverseTheme_Light_.TextAndIcon_Negative_Default_Disabled_Rounded.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_Orange-InverseTheme_Light_.TextAndIcon_Negative_Default_Disabled_Rounded.png new file mode 100644 index 000000000..2a9b36288 Binary files /dev/null and b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_Orange-InverseTheme_Light_.TextAndIcon_Negative_Default_Disabled_Rounded.png differ diff --git a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_Orange-InverseTheme_Light_.TextAndIcon_Negative_Default_Rounded.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_Orange-InverseTheme_Light_.TextAndIcon_Negative_Default_Rounded.png new file mode 100644 index 000000000..8f0b7b126 Binary files /dev/null and b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_Orange-InverseTheme_Light_.TextAndIcon_Negative_Default_Rounded.png differ diff --git a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_Orange-InverseTheme_Light_.TextAndIcon_Strong_Default_Disabled_Rounded.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_Orange-InverseTheme_Light_.TextAndIcon_Strong_Default_Disabled_Rounded.png new file mode 100644 index 000000000..2a9b36288 Binary files /dev/null and b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_Orange-InverseTheme_Light_.TextAndIcon_Strong_Default_Disabled_Rounded.png differ diff --git a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_Orange-InverseTheme_Light_.TextAndIcon_Strong_Default_Rounded.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_Orange-InverseTheme_Light_.TextAndIcon_Strong_Default_Rounded.png new file mode 100644 index 000000000..aa8ae8be7 Binary files /dev/null and b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_Orange-InverseTheme_Light_.TextAndIcon_Strong_Default_Rounded.png differ diff --git a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_Orange-InverseTheme_Light_.Text_Brand_Default.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_Orange-InverseTheme_Light_.Text_Brand_Default.png new file mode 100644 index 000000000..175dc16a9 Binary files /dev/null and b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_Orange-InverseTheme_Light_.Text_Brand_Default.png differ diff --git a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_Orange-InverseTheme_Light_.Text_Brand_Default_Disabled.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_Orange-InverseTheme_Light_.Text_Brand_Default_Disabled.png new file mode 100644 index 000000000..da055b1a6 Binary files /dev/null and b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_Orange-InverseTheme_Light_.Text_Brand_Default_Disabled.png differ diff --git a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_Orange-InverseTheme_Light_.Text_Brand_Default_Disabled_Rounded.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_Orange-InverseTheme_Light_.Text_Brand_Default_Disabled_Rounded.png new file mode 100644 index 000000000..c93fe6748 Binary files /dev/null and b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_Orange-InverseTheme_Light_.Text_Brand_Default_Disabled_Rounded.png differ diff --git a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_Orange-InverseTheme_Light_.Text_Brand_Default_Rounded.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_Orange-InverseTheme_Light_.Text_Brand_Default_Rounded.png new file mode 100644 index 000000000..f98be0309 Binary files /dev/null and b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_Orange-InverseTheme_Light_.Text_Brand_Default_Rounded.png differ diff --git a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_Orange-InverseTheme_Light_.Text_Default_Default_Disabled_Rounded.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_Orange-InverseTheme_Light_.Text_Default_Default_Disabled_Rounded.png new file mode 100644 index 000000000..c5360f049 Binary files /dev/null and b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_Orange-InverseTheme_Light_.Text_Default_Default_Disabled_Rounded.png differ diff --git a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_Orange-InverseTheme_Light_.Text_Default_Default_Rounded.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_Orange-InverseTheme_Light_.Text_Default_Default_Rounded.png new file mode 100644 index 000000000..2bdae5741 Binary files /dev/null and b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_Orange-InverseTheme_Light_.Text_Default_Default_Rounded.png differ diff --git a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_Orange-InverseTheme_Light_.Text_Minimal_Default.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_Orange-InverseTheme_Light_.Text_Minimal_Default.png index bc8412b92..dcc670dfb 100644 Binary files a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_Orange-InverseTheme_Light_.Text_Minimal_Default.png and b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_Orange-InverseTheme_Light_.Text_Minimal_Default.png differ diff --git a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_Orange-InverseTheme_Light_.Text_Minimal_Default_Disabled.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_Orange-InverseTheme_Light_.Text_Minimal_Default_Disabled.png index 690d763ce..302dc8467 100644 Binary files a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_Orange-InverseTheme_Light_.Text_Minimal_Default_Disabled.png and b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_Orange-InverseTheme_Light_.Text_Minimal_Default_Disabled.png differ diff --git a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_Orange-InverseTheme_Light_.Text_Minimal_Default_Disabled_Rounded.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_Orange-InverseTheme_Light_.Text_Minimal_Default_Disabled_Rounded.png new file mode 100644 index 000000000..302dc8467 Binary files /dev/null and b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_Orange-InverseTheme_Light_.Text_Minimal_Default_Disabled_Rounded.png differ diff --git a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_Orange-InverseTheme_Light_.Text_Minimal_Default_Rounded.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_Orange-InverseTheme_Light_.Text_Minimal_Default_Rounded.png new file mode 100644 index 000000000..dcc670dfb Binary files /dev/null and b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_Orange-InverseTheme_Light_.Text_Minimal_Default_Rounded.png differ diff --git a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_Orange-InverseTheme_Light_.Text_Negative_Default_Disabled_Rounded.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_Orange-InverseTheme_Light_.Text_Negative_Default_Disabled_Rounded.png new file mode 100644 index 000000000..c93fe6748 Binary files /dev/null and b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_Orange-InverseTheme_Light_.Text_Negative_Default_Disabled_Rounded.png differ diff --git a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_Orange-InverseTheme_Light_.Text_Negative_Default_Rounded.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_Orange-InverseTheme_Light_.Text_Negative_Default_Rounded.png new file mode 100644 index 000000000..42f6994fe Binary files /dev/null and b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_Orange-InverseTheme_Light_.Text_Negative_Default_Rounded.png differ diff --git a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_Orange-InverseTheme_Light_.Text_Strong_Default_Disabled_Rounded.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_Orange-InverseTheme_Light_.Text_Strong_Default_Disabled_Rounded.png new file mode 100644 index 000000000..c93fe6748 Binary files /dev/null and b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_Orange-InverseTheme_Light_.Text_Strong_Default_Disabled_Rounded.png differ diff --git a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_Orange-InverseTheme_Light_.Text_Strong_Default_Rounded.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_Orange-InverseTheme_Light_.Text_Strong_Default_Rounded.png new file mode 100644 index 000000000..f2d39cd36 Binary files /dev/null and b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_Orange-InverseTheme_Light_.Text_Strong_Default_Rounded.png differ diff --git a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_Orange-InverseTheme_Light_HighContrast.ColoredSurface_Icon_Default_Default_Disabled_Rounded.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_Orange-InverseTheme_Light_HighContrast.ColoredSurface_Icon_Default_Default_Disabled_Rounded.png new file mode 100644 index 000000000..3292e67db Binary files /dev/null and b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_Orange-InverseTheme_Light_HighContrast.ColoredSurface_Icon_Default_Default_Disabled_Rounded.png differ diff --git a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_Orange-InverseTheme_Light_HighContrast.ColoredSurface_Icon_Default_Default_Rounded.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_Orange-InverseTheme_Light_HighContrast.ColoredSurface_Icon_Default_Default_Rounded.png new file mode 100644 index 000000000..30a527eed Binary files /dev/null and b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_Orange-InverseTheme_Light_HighContrast.ColoredSurface_Icon_Default_Default_Rounded.png differ diff --git a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_Orange-InverseTheme_Light_HighContrast.ColoredSurface_Icon_Minimal_Default_Disabled_Rounded.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_Orange-InverseTheme_Light_HighContrast.ColoredSurface_Icon_Minimal_Default_Disabled_Rounded.png new file mode 100644 index 000000000..0935ca693 Binary files /dev/null and b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_Orange-InverseTheme_Light_HighContrast.ColoredSurface_Icon_Minimal_Default_Disabled_Rounded.png differ diff --git a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_Orange-InverseTheme_Light_HighContrast.ColoredSurface_Icon_Minimal_Default_Rounded.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_Orange-InverseTheme_Light_HighContrast.ColoredSurface_Icon_Minimal_Default_Rounded.png new file mode 100644 index 000000000..d7d648319 Binary files /dev/null and b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_Orange-InverseTheme_Light_HighContrast.ColoredSurface_Icon_Minimal_Default_Rounded.png differ diff --git a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_Orange-InverseTheme_Light_HighContrast.ColoredSurface_Icon_Strong_Default_Disabled_Rounded.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_Orange-InverseTheme_Light_HighContrast.ColoredSurface_Icon_Strong_Default_Disabled_Rounded.png new file mode 100644 index 000000000..d6d62ccc6 Binary files /dev/null and b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_Orange-InverseTheme_Light_HighContrast.ColoredSurface_Icon_Strong_Default_Disabled_Rounded.png differ diff --git a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_Orange-InverseTheme_Light_HighContrast.ColoredSurface_Icon_Strong_Default_Rounded.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_Orange-InverseTheme_Light_HighContrast.ColoredSurface_Icon_Strong_Default_Rounded.png new file mode 100644 index 000000000..30894fd25 Binary files /dev/null and b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_Orange-InverseTheme_Light_HighContrast.ColoredSurface_Icon_Strong_Default_Rounded.png differ diff --git a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_Orange-InverseTheme_Light_HighContrast.ColoredSurface_TextAndIcon_Default_Default_Disabled_Rounded.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_Orange-InverseTheme_Light_HighContrast.ColoredSurface_TextAndIcon_Default_Default_Disabled_Rounded.png new file mode 100644 index 000000000..901275565 Binary files /dev/null and b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_Orange-InverseTheme_Light_HighContrast.ColoredSurface_TextAndIcon_Default_Default_Disabled_Rounded.png differ diff --git a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_Orange-InverseTheme_Light_HighContrast.ColoredSurface_TextAndIcon_Default_Default_Rounded.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_Orange-InverseTheme_Light_HighContrast.ColoredSurface_TextAndIcon_Default_Default_Rounded.png new file mode 100644 index 000000000..d142d69ad Binary files /dev/null and b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_Orange-InverseTheme_Light_HighContrast.ColoredSurface_TextAndIcon_Default_Default_Rounded.png differ diff --git a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_Orange-InverseTheme_Light_HighContrast.ColoredSurface_TextAndIcon_Minimal_Default_Disabled_Rounded.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_Orange-InverseTheme_Light_HighContrast.ColoredSurface_TextAndIcon_Minimal_Default_Disabled_Rounded.png new file mode 100644 index 000000000..2f4d98843 Binary files /dev/null and b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_Orange-InverseTheme_Light_HighContrast.ColoredSurface_TextAndIcon_Minimal_Default_Disabled_Rounded.png differ diff --git a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_Orange-InverseTheme_Light_HighContrast.ColoredSurface_TextAndIcon_Minimal_Default_Rounded.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_Orange-InverseTheme_Light_HighContrast.ColoredSurface_TextAndIcon_Minimal_Default_Rounded.png new file mode 100644 index 000000000..69886e510 Binary files /dev/null and b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_Orange-InverseTheme_Light_HighContrast.ColoredSurface_TextAndIcon_Minimal_Default_Rounded.png differ diff --git a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_Orange-InverseTheme_Light_HighContrast.ColoredSurface_TextAndIcon_Strong_Default_Disabled_Rounded.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_Orange-InverseTheme_Light_HighContrast.ColoredSurface_TextAndIcon_Strong_Default_Disabled_Rounded.png new file mode 100644 index 000000000..ffc257fbc Binary files /dev/null and b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_Orange-InverseTheme_Light_HighContrast.ColoredSurface_TextAndIcon_Strong_Default_Disabled_Rounded.png differ diff --git a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_Orange-InverseTheme_Light_HighContrast.ColoredSurface_TextAndIcon_Strong_Default_Rounded.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_Orange-InverseTheme_Light_HighContrast.ColoredSurface_TextAndIcon_Strong_Default_Rounded.png new file mode 100644 index 000000000..65b4cd14f Binary files /dev/null and b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_Orange-InverseTheme_Light_HighContrast.ColoredSurface_TextAndIcon_Strong_Default_Rounded.png differ diff --git a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_Orange-InverseTheme_Light_HighContrast.ColoredSurface_Text_Default_Default_Disabled_Rounded.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_Orange-InverseTheme_Light_HighContrast.ColoredSurface_Text_Default_Default_Disabled_Rounded.png new file mode 100644 index 000000000..6be6bca50 Binary files /dev/null and b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_Orange-InverseTheme_Light_HighContrast.ColoredSurface_Text_Default_Default_Disabled_Rounded.png differ diff --git a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_Orange-InverseTheme_Light_HighContrast.ColoredSurface_Text_Default_Default_Rounded.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_Orange-InverseTheme_Light_HighContrast.ColoredSurface_Text_Default_Default_Rounded.png new file mode 100644 index 000000000..4acbceb32 Binary files /dev/null and b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_Orange-InverseTheme_Light_HighContrast.ColoredSurface_Text_Default_Default_Rounded.png differ diff --git a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_Orange-InverseTheme_Light_HighContrast.ColoredSurface_Text_Minimal_Default_Disabled_Rounded.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_Orange-InverseTheme_Light_HighContrast.ColoredSurface_Text_Minimal_Default_Disabled_Rounded.png new file mode 100644 index 000000000..52fd1ecd5 Binary files /dev/null and b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_Orange-InverseTheme_Light_HighContrast.ColoredSurface_Text_Minimal_Default_Disabled_Rounded.png differ diff --git a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_Orange-InverseTheme_Light_HighContrast.ColoredSurface_Text_Minimal_Default_Rounded.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_Orange-InverseTheme_Light_HighContrast.ColoredSurface_Text_Minimal_Default_Rounded.png new file mode 100644 index 000000000..175dc16a9 Binary files /dev/null and b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_Orange-InverseTheme_Light_HighContrast.ColoredSurface_Text_Minimal_Default_Rounded.png differ diff --git a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_Orange-InverseTheme_Light_HighContrast.ColoredSurface_Text_Strong_Default_Disabled_Rounded.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_Orange-InverseTheme_Light_HighContrast.ColoredSurface_Text_Strong_Default_Disabled_Rounded.png new file mode 100644 index 000000000..dadb69970 Binary files /dev/null and b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_Orange-InverseTheme_Light_HighContrast.ColoredSurface_Text_Strong_Default_Disabled_Rounded.png differ diff --git a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_Orange-InverseTheme_Light_HighContrast.ColoredSurface_Text_Strong_Default_Rounded.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_Orange-InverseTheme_Light_HighContrast.ColoredSurface_Text_Strong_Default_Rounded.png new file mode 100644 index 000000000..4f0fb26fe Binary files /dev/null and b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_Orange-InverseTheme_Light_HighContrast.ColoredSurface_Text_Strong_Default_Rounded.png differ diff --git a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_Orange-InverseTheme_Light_HighContrast.Icon_Brand_Default.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_Orange-InverseTheme_Light_HighContrast.Icon_Brand_Default.png new file mode 100644 index 000000000..d7d648319 Binary files /dev/null and b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_Orange-InverseTheme_Light_HighContrast.Icon_Brand_Default.png differ diff --git a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_Orange-InverseTheme_Light_HighContrast.Icon_Brand_Default_Disabled.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_Orange-InverseTheme_Light_HighContrast.Icon_Brand_Default_Disabled.png new file mode 100644 index 000000000..39c7e09bf Binary files /dev/null and b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_Orange-InverseTheme_Light_HighContrast.Icon_Brand_Default_Disabled.png differ diff --git a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_Orange-InverseTheme_Light_HighContrast.Icon_Brand_Default_Disabled_Rounded.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_Orange-InverseTheme_Light_HighContrast.Icon_Brand_Default_Disabled_Rounded.png new file mode 100644 index 000000000..bee95ba52 Binary files /dev/null and b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_Orange-InverseTheme_Light_HighContrast.Icon_Brand_Default_Disabled_Rounded.png differ diff --git a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_Orange-InverseTheme_Light_HighContrast.Icon_Brand_Default_Rounded.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_Orange-InverseTheme_Light_HighContrast.Icon_Brand_Default_Rounded.png new file mode 100644 index 000000000..befb4c6fb Binary files /dev/null and b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_Orange-InverseTheme_Light_HighContrast.Icon_Brand_Default_Rounded.png differ diff --git a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_Orange-InverseTheme_Light_HighContrast.Icon_Default_Default_Disabled_Rounded.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_Orange-InverseTheme_Light_HighContrast.Icon_Default_Default_Disabled_Rounded.png new file mode 100644 index 000000000..3363624e2 Binary files /dev/null and b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_Orange-InverseTheme_Light_HighContrast.Icon_Default_Default_Disabled_Rounded.png differ diff --git a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_Orange-InverseTheme_Light_HighContrast.Icon_Default_Default_Rounded.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_Orange-InverseTheme_Light_HighContrast.Icon_Default_Default_Rounded.png new file mode 100644 index 000000000..d06db85ee Binary files /dev/null and b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_Orange-InverseTheme_Light_HighContrast.Icon_Default_Default_Rounded.png differ diff --git a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_Orange-InverseTheme_Light_HighContrast.Icon_Minimal_Default.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_Orange-InverseTheme_Light_HighContrast.Icon_Minimal_Default.png index 013b2706b..e6bc610a2 100644 Binary files a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_Orange-InverseTheme_Light_HighContrast.Icon_Minimal_Default.png and b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_Orange-InverseTheme_Light_HighContrast.Icon_Minimal_Default.png differ diff --git a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_Orange-InverseTheme_Light_HighContrast.Icon_Minimal_Default_Disabled.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_Orange-InverseTheme_Light_HighContrast.Icon_Minimal_Default_Disabled.png index d0c6d30bc..93acf326e 100644 Binary files a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_Orange-InverseTheme_Light_HighContrast.Icon_Minimal_Default_Disabled.png and b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_Orange-InverseTheme_Light_HighContrast.Icon_Minimal_Default_Disabled.png differ diff --git a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_Orange-InverseTheme_Light_HighContrast.Icon_Minimal_Default_Disabled_Rounded.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_Orange-InverseTheme_Light_HighContrast.Icon_Minimal_Default_Disabled_Rounded.png new file mode 100644 index 000000000..93acf326e Binary files /dev/null and b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_Orange-InverseTheme_Light_HighContrast.Icon_Minimal_Default_Disabled_Rounded.png differ diff --git a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_Orange-InverseTheme_Light_HighContrast.Icon_Minimal_Default_Rounded.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_Orange-InverseTheme_Light_HighContrast.Icon_Minimal_Default_Rounded.png new file mode 100644 index 000000000..e6bc610a2 Binary files /dev/null and b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_Orange-InverseTheme_Light_HighContrast.Icon_Minimal_Default_Rounded.png differ diff --git a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_Orange-InverseTheme_Light_HighContrast.Icon_Negative_Default_Disabled_Rounded.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_Orange-InverseTheme_Light_HighContrast.Icon_Negative_Default_Disabled_Rounded.png new file mode 100644 index 000000000..bee95ba52 Binary files /dev/null and b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_Orange-InverseTheme_Light_HighContrast.Icon_Negative_Default_Disabled_Rounded.png differ diff --git a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_Orange-InverseTheme_Light_HighContrast.Icon_Negative_Default_Rounded.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_Orange-InverseTheme_Light_HighContrast.Icon_Negative_Default_Rounded.png new file mode 100644 index 000000000..afb7c4320 Binary files /dev/null and b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_Orange-InverseTheme_Light_HighContrast.Icon_Negative_Default_Rounded.png differ diff --git a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_Orange-InverseTheme_Light_HighContrast.Icon_Strong_Default_Disabled_Rounded.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_Orange-InverseTheme_Light_HighContrast.Icon_Strong_Default_Disabled_Rounded.png new file mode 100644 index 000000000..bee95ba52 Binary files /dev/null and b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_Orange-InverseTheme_Light_HighContrast.Icon_Strong_Default_Disabled_Rounded.png differ diff --git a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_Orange-InverseTheme_Light_HighContrast.Icon_Strong_Default_Rounded.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_Orange-InverseTheme_Light_HighContrast.Icon_Strong_Default_Rounded.png new file mode 100644 index 000000000..3c6153929 Binary files /dev/null and b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_Orange-InverseTheme_Light_HighContrast.Icon_Strong_Default_Rounded.png differ diff --git a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_Orange-InverseTheme_Light_HighContrast.TextAndIcon_Brand_Default.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_Orange-InverseTheme_Light_HighContrast.TextAndIcon_Brand_Default.png new file mode 100644 index 000000000..69886e510 Binary files /dev/null and b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_Orange-InverseTheme_Light_HighContrast.TextAndIcon_Brand_Default.png differ diff --git a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_Orange-InverseTheme_Light_HighContrast.TextAndIcon_Brand_Default_Disabled.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_Orange-InverseTheme_Light_HighContrast.TextAndIcon_Brand_Default_Disabled.png new file mode 100644 index 000000000..2eb444424 Binary files /dev/null and b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_Orange-InverseTheme_Light_HighContrast.TextAndIcon_Brand_Default_Disabled.png differ diff --git a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_Orange-InverseTheme_Light_HighContrast.TextAndIcon_Brand_Default_Disabled_Rounded.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_Orange-InverseTheme_Light_HighContrast.TextAndIcon_Brand_Default_Disabled_Rounded.png new file mode 100644 index 000000000..2a9b36288 Binary files /dev/null and b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_Orange-InverseTheme_Light_HighContrast.TextAndIcon_Brand_Default_Disabled_Rounded.png differ diff --git a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_Orange-InverseTheme_Light_HighContrast.TextAndIcon_Brand_Default_Rounded.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_Orange-InverseTheme_Light_HighContrast.TextAndIcon_Brand_Default_Rounded.png new file mode 100644 index 000000000..a06788849 Binary files /dev/null and b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_Orange-InverseTheme_Light_HighContrast.TextAndIcon_Brand_Default_Rounded.png differ diff --git a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_Orange-InverseTheme_Light_HighContrast.TextAndIcon_Default_Default_Disabled_Rounded.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_Orange-InverseTheme_Light_HighContrast.TextAndIcon_Default_Default_Disabled_Rounded.png new file mode 100644 index 000000000..c8eaa7354 Binary files /dev/null and b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_Orange-InverseTheme_Light_HighContrast.TextAndIcon_Default_Default_Disabled_Rounded.png differ diff --git a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_Orange-InverseTheme_Light_HighContrast.TextAndIcon_Default_Default_Rounded.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_Orange-InverseTheme_Light_HighContrast.TextAndIcon_Default_Default_Rounded.png new file mode 100644 index 000000000..7bdf3e57e Binary files /dev/null and b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_Orange-InverseTheme_Light_HighContrast.TextAndIcon_Default_Default_Rounded.png differ diff --git a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_Orange-InverseTheme_Light_HighContrast.TextAndIcon_Minimal_Default.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_Orange-InverseTheme_Light_HighContrast.TextAndIcon_Minimal_Default.png index 9b1690788..63ec0e413 100644 Binary files a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_Orange-InverseTheme_Light_HighContrast.TextAndIcon_Minimal_Default.png and b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_Orange-InverseTheme_Light_HighContrast.TextAndIcon_Minimal_Default.png differ diff --git a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_Orange-InverseTheme_Light_HighContrast.TextAndIcon_Minimal_Default_Disabled.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_Orange-InverseTheme_Light_HighContrast.TextAndIcon_Minimal_Default_Disabled.png index c0c092814..47d6f1e4f 100644 Binary files a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_Orange-InverseTheme_Light_HighContrast.TextAndIcon_Minimal_Default_Disabled.png and b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_Orange-InverseTheme_Light_HighContrast.TextAndIcon_Minimal_Default_Disabled.png differ diff --git a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_Orange-InverseTheme_Light_HighContrast.TextAndIcon_Minimal_Default_Disabled_Rounded.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_Orange-InverseTheme_Light_HighContrast.TextAndIcon_Minimal_Default_Disabled_Rounded.png new file mode 100644 index 000000000..47d6f1e4f Binary files /dev/null and b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_Orange-InverseTheme_Light_HighContrast.TextAndIcon_Minimal_Default_Disabled_Rounded.png differ diff --git a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_Orange-InverseTheme_Light_HighContrast.TextAndIcon_Minimal_Default_Rounded.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_Orange-InverseTheme_Light_HighContrast.TextAndIcon_Minimal_Default_Rounded.png new file mode 100644 index 000000000..63ec0e413 Binary files /dev/null and b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_Orange-InverseTheme_Light_HighContrast.TextAndIcon_Minimal_Default_Rounded.png differ diff --git a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_Orange-InverseTheme_Light_HighContrast.TextAndIcon_Negative_Default_Disabled_Rounded.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_Orange-InverseTheme_Light_HighContrast.TextAndIcon_Negative_Default_Disabled_Rounded.png new file mode 100644 index 000000000..2a9b36288 Binary files /dev/null and b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_Orange-InverseTheme_Light_HighContrast.TextAndIcon_Negative_Default_Disabled_Rounded.png differ diff --git a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_Orange-InverseTheme_Light_HighContrast.TextAndIcon_Negative_Default_Rounded.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_Orange-InverseTheme_Light_HighContrast.TextAndIcon_Negative_Default_Rounded.png new file mode 100644 index 000000000..8f0b7b126 Binary files /dev/null and b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_Orange-InverseTheme_Light_HighContrast.TextAndIcon_Negative_Default_Rounded.png differ diff --git a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_Orange-InverseTheme_Light_HighContrast.TextAndIcon_Strong_Default_Disabled_Rounded.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_Orange-InverseTheme_Light_HighContrast.TextAndIcon_Strong_Default_Disabled_Rounded.png new file mode 100644 index 000000000..2a9b36288 Binary files /dev/null and b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_Orange-InverseTheme_Light_HighContrast.TextAndIcon_Strong_Default_Disabled_Rounded.png differ diff --git a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_Orange-InverseTheme_Light_HighContrast.TextAndIcon_Strong_Default_Rounded.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_Orange-InverseTheme_Light_HighContrast.TextAndIcon_Strong_Default_Rounded.png new file mode 100644 index 000000000..aa8ae8be7 Binary files /dev/null and b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_Orange-InverseTheme_Light_HighContrast.TextAndIcon_Strong_Default_Rounded.png differ diff --git a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_Orange-InverseTheme_Light_HighContrast.Text_Brand_Default.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_Orange-InverseTheme_Light_HighContrast.Text_Brand_Default.png new file mode 100644 index 000000000..175dc16a9 Binary files /dev/null and b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_Orange-InverseTheme_Light_HighContrast.Text_Brand_Default.png differ diff --git a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_Orange-InverseTheme_Light_HighContrast.Text_Brand_Default_Disabled.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_Orange-InverseTheme_Light_HighContrast.Text_Brand_Default_Disabled.png new file mode 100644 index 000000000..da055b1a6 Binary files /dev/null and b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_Orange-InverseTheme_Light_HighContrast.Text_Brand_Default_Disabled.png differ diff --git a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_Orange-InverseTheme_Light_HighContrast.Text_Brand_Default_Disabled_Rounded.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_Orange-InverseTheme_Light_HighContrast.Text_Brand_Default_Disabled_Rounded.png new file mode 100644 index 000000000..c93fe6748 Binary files /dev/null and b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_Orange-InverseTheme_Light_HighContrast.Text_Brand_Default_Disabled_Rounded.png differ diff --git a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_Orange-InverseTheme_Light_HighContrast.Text_Brand_Default_Rounded.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_Orange-InverseTheme_Light_HighContrast.Text_Brand_Default_Rounded.png new file mode 100644 index 000000000..f98be0309 Binary files /dev/null and b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_Orange-InverseTheme_Light_HighContrast.Text_Brand_Default_Rounded.png differ diff --git a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_Orange-InverseTheme_Light_HighContrast.Text_Default_Default_Disabled_Rounded.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_Orange-InverseTheme_Light_HighContrast.Text_Default_Default_Disabled_Rounded.png new file mode 100644 index 000000000..c5360f049 Binary files /dev/null and b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_Orange-InverseTheme_Light_HighContrast.Text_Default_Default_Disabled_Rounded.png differ diff --git a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_Orange-InverseTheme_Light_HighContrast.Text_Default_Default_Rounded.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_Orange-InverseTheme_Light_HighContrast.Text_Default_Default_Rounded.png new file mode 100644 index 000000000..2bdae5741 Binary files /dev/null and b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_Orange-InverseTheme_Light_HighContrast.Text_Default_Default_Rounded.png differ diff --git a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_Orange-InverseTheme_Light_HighContrast.Text_Minimal_Default.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_Orange-InverseTheme_Light_HighContrast.Text_Minimal_Default.png index bc8412b92..dcc670dfb 100644 Binary files a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_Orange-InverseTheme_Light_HighContrast.Text_Minimal_Default.png and b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_Orange-InverseTheme_Light_HighContrast.Text_Minimal_Default.png differ diff --git a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_Orange-InverseTheme_Light_HighContrast.Text_Minimal_Default_Disabled.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_Orange-InverseTheme_Light_HighContrast.Text_Minimal_Default_Disabled.png index 690d763ce..302dc8467 100644 Binary files a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_Orange-InverseTheme_Light_HighContrast.Text_Minimal_Default_Disabled.png and b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_Orange-InverseTheme_Light_HighContrast.Text_Minimal_Default_Disabled.png differ diff --git a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_Orange-InverseTheme_Light_HighContrast.Text_Minimal_Default_Disabled_Rounded.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_Orange-InverseTheme_Light_HighContrast.Text_Minimal_Default_Disabled_Rounded.png new file mode 100644 index 000000000..302dc8467 Binary files /dev/null and b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_Orange-InverseTheme_Light_HighContrast.Text_Minimal_Default_Disabled_Rounded.png differ diff --git a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_Orange-InverseTheme_Light_HighContrast.Text_Minimal_Default_Rounded.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_Orange-InverseTheme_Light_HighContrast.Text_Minimal_Default_Rounded.png new file mode 100644 index 000000000..dcc670dfb Binary files /dev/null and b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_Orange-InverseTheme_Light_HighContrast.Text_Minimal_Default_Rounded.png differ diff --git a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_Orange-InverseTheme_Light_HighContrast.Text_Negative_Default_Disabled_Rounded.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_Orange-InverseTheme_Light_HighContrast.Text_Negative_Default_Disabled_Rounded.png new file mode 100644 index 000000000..c93fe6748 Binary files /dev/null and b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_Orange-InverseTheme_Light_HighContrast.Text_Negative_Default_Disabled_Rounded.png differ diff --git a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_Orange-InverseTheme_Light_HighContrast.Text_Negative_Default_Rounded.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_Orange-InverseTheme_Light_HighContrast.Text_Negative_Default_Rounded.png new file mode 100644 index 000000000..42f6994fe Binary files /dev/null and b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_Orange-InverseTheme_Light_HighContrast.Text_Negative_Default_Rounded.png differ diff --git a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_Orange-InverseTheme_Light_HighContrast.Text_Strong_Default_Disabled_Rounded.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_Orange-InverseTheme_Light_HighContrast.Text_Strong_Default_Disabled_Rounded.png new file mode 100644 index 000000000..c93fe6748 Binary files /dev/null and b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_Orange-InverseTheme_Light_HighContrast.Text_Strong_Default_Disabled_Rounded.png differ diff --git a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_Orange-InverseTheme_Light_HighContrast.Text_Strong_Default_Rounded.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_Orange-InverseTheme_Light_HighContrast.Text_Strong_Default_Rounded.png new file mode 100644 index 000000000..f2d39cd36 Binary files /dev/null and b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_Orange-InverseTheme_Light_HighContrast.Text_Strong_Default_Rounded.png differ diff --git a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_OrangeTheme_Dark_.ColoredSurface_Icon_Default_Default_Disabled_Rounded.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_OrangeTheme_Dark_.ColoredSurface_Icon_Default_Default_Disabled_Rounded.png new file mode 100644 index 000000000..cf41391f5 Binary files /dev/null and b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_OrangeTheme_Dark_.ColoredSurface_Icon_Default_Default_Disabled_Rounded.png differ diff --git a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_OrangeTheme_Dark_.ColoredSurface_Icon_Default_Default_Rounded.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_OrangeTheme_Dark_.ColoredSurface_Icon_Default_Default_Rounded.png new file mode 100644 index 000000000..fe9e27c6c Binary files /dev/null and b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_OrangeTheme_Dark_.ColoredSurface_Icon_Default_Default_Rounded.png differ diff --git a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_OrangeTheme_Dark_.ColoredSurface_Icon_Minimal_Default_Disabled_Rounded.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_OrangeTheme_Dark_.ColoredSurface_Icon_Minimal_Default_Disabled_Rounded.png new file mode 100644 index 000000000..38ecaee20 Binary files /dev/null and b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_OrangeTheme_Dark_.ColoredSurface_Icon_Minimal_Default_Disabled_Rounded.png differ diff --git a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_OrangeTheme_Dark_.ColoredSurface_Icon_Minimal_Default_Rounded.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_OrangeTheme_Dark_.ColoredSurface_Icon_Minimal_Default_Rounded.png new file mode 100644 index 000000000..1a350e449 Binary files /dev/null and b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_OrangeTheme_Dark_.ColoredSurface_Icon_Minimal_Default_Rounded.png differ diff --git a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_OrangeTheme_Dark_.ColoredSurface_Icon_Strong_Default_Disabled_Rounded.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_OrangeTheme_Dark_.ColoredSurface_Icon_Strong_Default_Disabled_Rounded.png new file mode 100644 index 000000000..fc05c6025 Binary files /dev/null and b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_OrangeTheme_Dark_.ColoredSurface_Icon_Strong_Default_Disabled_Rounded.png differ diff --git a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_OrangeTheme_Dark_.ColoredSurface_Icon_Strong_Default_Rounded.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_OrangeTheme_Dark_.ColoredSurface_Icon_Strong_Default_Rounded.png new file mode 100644 index 000000000..d4f89df20 Binary files /dev/null and b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_OrangeTheme_Dark_.ColoredSurface_Icon_Strong_Default_Rounded.png differ diff --git a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_OrangeTheme_Dark_.ColoredSurface_TextAndIcon_Default_Default_Disabled_Rounded.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_OrangeTheme_Dark_.ColoredSurface_TextAndIcon_Default_Default_Disabled_Rounded.png new file mode 100644 index 000000000..a7d8380b0 Binary files /dev/null and b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_OrangeTheme_Dark_.ColoredSurface_TextAndIcon_Default_Default_Disabled_Rounded.png differ diff --git a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_OrangeTheme_Dark_.ColoredSurface_TextAndIcon_Default_Default_Rounded.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_OrangeTheme_Dark_.ColoredSurface_TextAndIcon_Default_Default_Rounded.png new file mode 100644 index 000000000..45768315e Binary files /dev/null and b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_OrangeTheme_Dark_.ColoredSurface_TextAndIcon_Default_Default_Rounded.png differ diff --git a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_OrangeTheme_Dark_.ColoredSurface_TextAndIcon_Minimal_Default_Disabled_Rounded.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_OrangeTheme_Dark_.ColoredSurface_TextAndIcon_Minimal_Default_Disabled_Rounded.png new file mode 100644 index 000000000..43f27df49 Binary files /dev/null and b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_OrangeTheme_Dark_.ColoredSurface_TextAndIcon_Minimal_Default_Disabled_Rounded.png differ diff --git a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_OrangeTheme_Dark_.ColoredSurface_TextAndIcon_Minimal_Default_Rounded.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_OrangeTheme_Dark_.ColoredSurface_TextAndIcon_Minimal_Default_Rounded.png new file mode 100644 index 000000000..c179ce466 Binary files /dev/null and b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_OrangeTheme_Dark_.ColoredSurface_TextAndIcon_Minimal_Default_Rounded.png differ diff --git a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_OrangeTheme_Dark_.ColoredSurface_TextAndIcon_Strong_Default_Disabled_Rounded.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_OrangeTheme_Dark_.ColoredSurface_TextAndIcon_Strong_Default_Disabled_Rounded.png new file mode 100644 index 000000000..60863510d Binary files /dev/null and b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_OrangeTheme_Dark_.ColoredSurface_TextAndIcon_Strong_Default_Disabled_Rounded.png differ diff --git a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_OrangeTheme_Dark_.ColoredSurface_TextAndIcon_Strong_Default_Rounded.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_OrangeTheme_Dark_.ColoredSurface_TextAndIcon_Strong_Default_Rounded.png new file mode 100644 index 000000000..24896848f Binary files /dev/null and b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_OrangeTheme_Dark_.ColoredSurface_TextAndIcon_Strong_Default_Rounded.png differ diff --git a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_OrangeTheme_Dark_.ColoredSurface_Text_Default_Default_Disabled_Rounded.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_OrangeTheme_Dark_.ColoredSurface_Text_Default_Default_Disabled_Rounded.png new file mode 100644 index 000000000..b64971ecd Binary files /dev/null and b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_OrangeTheme_Dark_.ColoredSurface_Text_Default_Default_Disabled_Rounded.png differ diff --git a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_OrangeTheme_Dark_.ColoredSurface_Text_Default_Default_Rounded.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_OrangeTheme_Dark_.ColoredSurface_Text_Default_Default_Rounded.png new file mode 100644 index 000000000..85ef11823 Binary files /dev/null and b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_OrangeTheme_Dark_.ColoredSurface_Text_Default_Default_Rounded.png differ diff --git a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_OrangeTheme_Dark_.ColoredSurface_Text_Minimal_Default_Disabled_Rounded.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_OrangeTheme_Dark_.ColoredSurface_Text_Minimal_Default_Disabled_Rounded.png new file mode 100644 index 000000000..0c186912f Binary files /dev/null and b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_OrangeTheme_Dark_.ColoredSurface_Text_Minimal_Default_Disabled_Rounded.png differ diff --git a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_OrangeTheme_Dark_.ColoredSurface_Text_Minimal_Default_Rounded.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_OrangeTheme_Dark_.ColoredSurface_Text_Minimal_Default_Rounded.png new file mode 100644 index 000000000..13df06107 Binary files /dev/null and b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_OrangeTheme_Dark_.ColoredSurface_Text_Minimal_Default_Rounded.png differ diff --git a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_OrangeTheme_Dark_.ColoredSurface_Text_Strong_Default_Disabled_Rounded.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_OrangeTheme_Dark_.ColoredSurface_Text_Strong_Default_Disabled_Rounded.png new file mode 100644 index 000000000..d585bdd97 Binary files /dev/null and b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_OrangeTheme_Dark_.ColoredSurface_Text_Strong_Default_Disabled_Rounded.png differ diff --git a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_OrangeTheme_Dark_.ColoredSurface_Text_Strong_Default_Rounded.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_OrangeTheme_Dark_.ColoredSurface_Text_Strong_Default_Rounded.png new file mode 100644 index 000000000..7d11f4150 Binary files /dev/null and b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_OrangeTheme_Dark_.ColoredSurface_Text_Strong_Default_Rounded.png differ diff --git a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_OrangeTheme_Dark_.Icon_Brand_Default.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_OrangeTheme_Dark_.Icon_Brand_Default.png new file mode 100644 index 000000000..1a350e449 Binary files /dev/null and b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_OrangeTheme_Dark_.Icon_Brand_Default.png differ diff --git a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_OrangeTheme_Dark_.Icon_Brand_Default_Disabled.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_OrangeTheme_Dark_.Icon_Brand_Default_Disabled.png new file mode 100644 index 000000000..a16771f5b Binary files /dev/null and b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_OrangeTheme_Dark_.Icon_Brand_Default_Disabled.png differ diff --git a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_OrangeTheme_Dark_.Icon_Brand_Default_Disabled_Rounded.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_OrangeTheme_Dark_.Icon_Brand_Default_Disabled_Rounded.png new file mode 100644 index 000000000..603f00dfc Binary files /dev/null and b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_OrangeTheme_Dark_.Icon_Brand_Default_Disabled_Rounded.png differ diff --git a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_OrangeTheme_Dark_.Icon_Brand_Default_Rounded.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_OrangeTheme_Dark_.Icon_Brand_Default_Rounded.png new file mode 100644 index 000000000..7cc03ada6 Binary files /dev/null and b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_OrangeTheme_Dark_.Icon_Brand_Default_Rounded.png differ diff --git a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_OrangeTheme_Dark_.Icon_Default_Default_Disabled_Rounded.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_OrangeTheme_Dark_.Icon_Default_Default_Disabled_Rounded.png new file mode 100644 index 000000000..6f9892a3e Binary files /dev/null and b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_OrangeTheme_Dark_.Icon_Default_Default_Disabled_Rounded.png differ diff --git a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_OrangeTheme_Dark_.Icon_Default_Default_Rounded.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_OrangeTheme_Dark_.Icon_Default_Default_Rounded.png new file mode 100644 index 000000000..e77d4f5a7 Binary files /dev/null and b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_OrangeTheme_Dark_.Icon_Default_Default_Rounded.png differ diff --git a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_OrangeTheme_Dark_.Icon_Minimal_Default.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_OrangeTheme_Dark_.Icon_Minimal_Default.png index 84ccaad73..ee2263be0 100644 Binary files a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_OrangeTheme_Dark_.Icon_Minimal_Default.png and b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_OrangeTheme_Dark_.Icon_Minimal_Default.png differ diff --git a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_OrangeTheme_Dark_.Icon_Minimal_Default_Disabled.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_OrangeTheme_Dark_.Icon_Minimal_Default_Disabled.png index 71ea65d69..11da18626 100644 Binary files a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_OrangeTheme_Dark_.Icon_Minimal_Default_Disabled.png and b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_OrangeTheme_Dark_.Icon_Minimal_Default_Disabled.png differ diff --git a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_OrangeTheme_Dark_.Icon_Minimal_Default_Disabled_Rounded.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_OrangeTheme_Dark_.Icon_Minimal_Default_Disabled_Rounded.png new file mode 100644 index 000000000..11da18626 Binary files /dev/null and b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_OrangeTheme_Dark_.Icon_Minimal_Default_Disabled_Rounded.png differ diff --git a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_OrangeTheme_Dark_.Icon_Minimal_Default_Rounded.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_OrangeTheme_Dark_.Icon_Minimal_Default_Rounded.png new file mode 100644 index 000000000..ee2263be0 Binary files /dev/null and b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_OrangeTheme_Dark_.Icon_Minimal_Default_Rounded.png differ diff --git a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_OrangeTheme_Dark_.Icon_Negative_Default_Disabled_Rounded.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_OrangeTheme_Dark_.Icon_Negative_Default_Disabled_Rounded.png new file mode 100644 index 000000000..603f00dfc Binary files /dev/null and b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_OrangeTheme_Dark_.Icon_Negative_Default_Disabled_Rounded.png differ diff --git a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_OrangeTheme_Dark_.Icon_Negative_Default_Rounded.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_OrangeTheme_Dark_.Icon_Negative_Default_Rounded.png new file mode 100644 index 000000000..7092267b9 Binary files /dev/null and b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_OrangeTheme_Dark_.Icon_Negative_Default_Rounded.png differ diff --git a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_OrangeTheme_Dark_.Icon_Strong_Default_Disabled_Rounded.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_OrangeTheme_Dark_.Icon_Strong_Default_Disabled_Rounded.png new file mode 100644 index 000000000..603f00dfc Binary files /dev/null and b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_OrangeTheme_Dark_.Icon_Strong_Default_Disabled_Rounded.png differ diff --git a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_OrangeTheme_Dark_.Icon_Strong_Default_Rounded.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_OrangeTheme_Dark_.Icon_Strong_Default_Rounded.png new file mode 100644 index 000000000..14b85993b Binary files /dev/null and b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_OrangeTheme_Dark_.Icon_Strong_Default_Rounded.png differ diff --git a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_OrangeTheme_Dark_.TextAndIcon_Brand_Default.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_OrangeTheme_Dark_.TextAndIcon_Brand_Default.png new file mode 100644 index 000000000..c179ce466 Binary files /dev/null and b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_OrangeTheme_Dark_.TextAndIcon_Brand_Default.png differ diff --git a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_OrangeTheme_Dark_.TextAndIcon_Brand_Default_Disabled.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_OrangeTheme_Dark_.TextAndIcon_Brand_Default_Disabled.png new file mode 100644 index 000000000..58878bf32 Binary files /dev/null and b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_OrangeTheme_Dark_.TextAndIcon_Brand_Default_Disabled.png differ diff --git a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_OrangeTheme_Dark_.TextAndIcon_Brand_Default_Disabled_Rounded.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_OrangeTheme_Dark_.TextAndIcon_Brand_Default_Disabled_Rounded.png new file mode 100644 index 000000000..1823da367 Binary files /dev/null and b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_OrangeTheme_Dark_.TextAndIcon_Brand_Default_Disabled_Rounded.png differ diff --git a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_OrangeTheme_Dark_.TextAndIcon_Brand_Default_Rounded.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_OrangeTheme_Dark_.TextAndIcon_Brand_Default_Rounded.png new file mode 100644 index 000000000..d7500a28f Binary files /dev/null and b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_OrangeTheme_Dark_.TextAndIcon_Brand_Default_Rounded.png differ diff --git a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_OrangeTheme_Dark_.TextAndIcon_Default_Default_Disabled_Rounded.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_OrangeTheme_Dark_.TextAndIcon_Default_Default_Disabled_Rounded.png new file mode 100644 index 000000000..3a540f24b Binary files /dev/null and b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_OrangeTheme_Dark_.TextAndIcon_Default_Default_Disabled_Rounded.png differ diff --git a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_OrangeTheme_Dark_.TextAndIcon_Default_Default_Rounded.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_OrangeTheme_Dark_.TextAndIcon_Default_Default_Rounded.png new file mode 100644 index 000000000..3d93ec8b0 Binary files /dev/null and b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_OrangeTheme_Dark_.TextAndIcon_Default_Default_Rounded.png differ diff --git a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_OrangeTheme_Dark_.TextAndIcon_Minimal_Default.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_OrangeTheme_Dark_.TextAndIcon_Minimal_Default.png index 85d875b48..856d6467b 100644 Binary files a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_OrangeTheme_Dark_.TextAndIcon_Minimal_Default.png and b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_OrangeTheme_Dark_.TextAndIcon_Minimal_Default.png differ diff --git a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_OrangeTheme_Dark_.TextAndIcon_Minimal_Default_Disabled.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_OrangeTheme_Dark_.TextAndIcon_Minimal_Default_Disabled.png index 7809e07fb..a5e58ae6a 100644 Binary files a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_OrangeTheme_Dark_.TextAndIcon_Minimal_Default_Disabled.png and b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_OrangeTheme_Dark_.TextAndIcon_Minimal_Default_Disabled.png differ diff --git a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_OrangeTheme_Dark_.TextAndIcon_Minimal_Default_Disabled_Rounded.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_OrangeTheme_Dark_.TextAndIcon_Minimal_Default_Disabled_Rounded.png new file mode 100644 index 000000000..a5e58ae6a Binary files /dev/null and b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_OrangeTheme_Dark_.TextAndIcon_Minimal_Default_Disabled_Rounded.png differ diff --git a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_OrangeTheme_Dark_.TextAndIcon_Minimal_Default_Rounded.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_OrangeTheme_Dark_.TextAndIcon_Minimal_Default_Rounded.png new file mode 100644 index 000000000..856d6467b Binary files /dev/null and b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_OrangeTheme_Dark_.TextAndIcon_Minimal_Default_Rounded.png differ diff --git a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_OrangeTheme_Dark_.TextAndIcon_Negative_Default_Disabled_Rounded.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_OrangeTheme_Dark_.TextAndIcon_Negative_Default_Disabled_Rounded.png new file mode 100644 index 000000000..1823da367 Binary files /dev/null and b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_OrangeTheme_Dark_.TextAndIcon_Negative_Default_Disabled_Rounded.png differ diff --git a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_OrangeTheme_Dark_.TextAndIcon_Negative_Default_Rounded.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_OrangeTheme_Dark_.TextAndIcon_Negative_Default_Rounded.png new file mode 100644 index 000000000..f388b2c57 Binary files /dev/null and b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_OrangeTheme_Dark_.TextAndIcon_Negative_Default_Rounded.png differ diff --git a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_OrangeTheme_Dark_.TextAndIcon_Strong_Default_Disabled_Rounded.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_OrangeTheme_Dark_.TextAndIcon_Strong_Default_Disabled_Rounded.png new file mode 100644 index 000000000..1823da367 Binary files /dev/null and b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_OrangeTheme_Dark_.TextAndIcon_Strong_Default_Disabled_Rounded.png differ diff --git a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_OrangeTheme_Dark_.TextAndIcon_Strong_Default_Rounded.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_OrangeTheme_Dark_.TextAndIcon_Strong_Default_Rounded.png new file mode 100644 index 000000000..f7607dae3 Binary files /dev/null and b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_OrangeTheme_Dark_.TextAndIcon_Strong_Default_Rounded.png differ diff --git a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_OrangeTheme_Dark_.Text_Brand_Default.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_OrangeTheme_Dark_.Text_Brand_Default.png new file mode 100644 index 000000000..13df06107 Binary files /dev/null and b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_OrangeTheme_Dark_.Text_Brand_Default.png differ diff --git a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_OrangeTheme_Dark_.Text_Brand_Default_Disabled.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_OrangeTheme_Dark_.Text_Brand_Default_Disabled.png new file mode 100644 index 000000000..4dffe9908 Binary files /dev/null and b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_OrangeTheme_Dark_.Text_Brand_Default_Disabled.png differ diff --git a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_OrangeTheme_Dark_.Text_Brand_Default_Disabled_Rounded.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_OrangeTheme_Dark_.Text_Brand_Default_Disabled_Rounded.png new file mode 100644 index 000000000..f81d1fbac Binary files /dev/null and b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_OrangeTheme_Dark_.Text_Brand_Default_Disabled_Rounded.png differ diff --git a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_OrangeTheme_Dark_.Text_Brand_Default_Rounded.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_OrangeTheme_Dark_.Text_Brand_Default_Rounded.png new file mode 100644 index 000000000..1354c6b65 Binary files /dev/null and b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_OrangeTheme_Dark_.Text_Brand_Default_Rounded.png differ diff --git a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_OrangeTheme_Dark_.Text_Default_Default_Disabled_Rounded.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_OrangeTheme_Dark_.Text_Default_Default_Disabled_Rounded.png new file mode 100644 index 000000000..a45f0aecb Binary files /dev/null and b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_OrangeTheme_Dark_.Text_Default_Default_Disabled_Rounded.png differ diff --git a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_OrangeTheme_Dark_.Text_Default_Default_Rounded.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_OrangeTheme_Dark_.Text_Default_Default_Rounded.png new file mode 100644 index 000000000..9ba54e7ce Binary files /dev/null and b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_OrangeTheme_Dark_.Text_Default_Default_Rounded.png differ diff --git a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_OrangeTheme_Dark_.Text_Minimal_Default.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_OrangeTheme_Dark_.Text_Minimal_Default.png index f709cb0d8..98b2c3532 100644 Binary files a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_OrangeTheme_Dark_.Text_Minimal_Default.png and b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_OrangeTheme_Dark_.Text_Minimal_Default.png differ diff --git a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_OrangeTheme_Dark_.Text_Minimal_Default_Disabled.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_OrangeTheme_Dark_.Text_Minimal_Default_Disabled.png index 4b02b5cb1..82e74a427 100644 Binary files a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_OrangeTheme_Dark_.Text_Minimal_Default_Disabled.png and b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_OrangeTheme_Dark_.Text_Minimal_Default_Disabled.png differ diff --git a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_OrangeTheme_Dark_.Text_Minimal_Default_Disabled_Rounded.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_OrangeTheme_Dark_.Text_Minimal_Default_Disabled_Rounded.png new file mode 100644 index 000000000..82e74a427 Binary files /dev/null and b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_OrangeTheme_Dark_.Text_Minimal_Default_Disabled_Rounded.png differ diff --git a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_OrangeTheme_Dark_.Text_Minimal_Default_Rounded.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_OrangeTheme_Dark_.Text_Minimal_Default_Rounded.png new file mode 100644 index 000000000..98b2c3532 Binary files /dev/null and b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_OrangeTheme_Dark_.Text_Minimal_Default_Rounded.png differ diff --git a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_OrangeTheme_Dark_.Text_Negative_Default_Disabled_Rounded.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_OrangeTheme_Dark_.Text_Negative_Default_Disabled_Rounded.png new file mode 100644 index 000000000..f81d1fbac Binary files /dev/null and b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_OrangeTheme_Dark_.Text_Negative_Default_Disabled_Rounded.png differ diff --git a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_OrangeTheme_Dark_.Text_Negative_Default_Rounded.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_OrangeTheme_Dark_.Text_Negative_Default_Rounded.png new file mode 100644 index 000000000..6abad31cd Binary files /dev/null and b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_OrangeTheme_Dark_.Text_Negative_Default_Rounded.png differ diff --git a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_OrangeTheme_Dark_.Text_Strong_Default_Disabled_Rounded.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_OrangeTheme_Dark_.Text_Strong_Default_Disabled_Rounded.png new file mode 100644 index 000000000..f81d1fbac Binary files /dev/null and b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_OrangeTheme_Dark_.Text_Strong_Default_Disabled_Rounded.png differ diff --git a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_OrangeTheme_Dark_.Text_Strong_Default_Rounded.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_OrangeTheme_Dark_.Text_Strong_Default_Rounded.png new file mode 100644 index 000000000..c74c9d10e Binary files /dev/null and b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_OrangeTheme_Dark_.Text_Strong_Default_Rounded.png differ diff --git a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_OrangeTheme_Dark_HighContrast.ColoredSurface_Icon_Default_Default_Disabled_Rounded.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_OrangeTheme_Dark_HighContrast.ColoredSurface_Icon_Default_Default_Disabled_Rounded.png new file mode 100644 index 000000000..cf41391f5 Binary files /dev/null and b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_OrangeTheme_Dark_HighContrast.ColoredSurface_Icon_Default_Default_Disabled_Rounded.png differ diff --git a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_OrangeTheme_Dark_HighContrast.ColoredSurface_Icon_Default_Default_Rounded.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_OrangeTheme_Dark_HighContrast.ColoredSurface_Icon_Default_Default_Rounded.png new file mode 100644 index 000000000..fe9e27c6c Binary files /dev/null and b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_OrangeTheme_Dark_HighContrast.ColoredSurface_Icon_Default_Default_Rounded.png differ diff --git a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_OrangeTheme_Dark_HighContrast.ColoredSurface_Icon_Minimal_Default_Disabled_Rounded.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_OrangeTheme_Dark_HighContrast.ColoredSurface_Icon_Minimal_Default_Disabled_Rounded.png new file mode 100644 index 000000000..38ecaee20 Binary files /dev/null and b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_OrangeTheme_Dark_HighContrast.ColoredSurface_Icon_Minimal_Default_Disabled_Rounded.png differ diff --git a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_OrangeTheme_Dark_HighContrast.ColoredSurface_Icon_Minimal_Default_Rounded.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_OrangeTheme_Dark_HighContrast.ColoredSurface_Icon_Minimal_Default_Rounded.png new file mode 100644 index 000000000..1a350e449 Binary files /dev/null and b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_OrangeTheme_Dark_HighContrast.ColoredSurface_Icon_Minimal_Default_Rounded.png differ diff --git a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_OrangeTheme_Dark_HighContrast.ColoredSurface_Icon_Strong_Default_Disabled_Rounded.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_OrangeTheme_Dark_HighContrast.ColoredSurface_Icon_Strong_Default_Disabled_Rounded.png new file mode 100644 index 000000000..fc05c6025 Binary files /dev/null and b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_OrangeTheme_Dark_HighContrast.ColoredSurface_Icon_Strong_Default_Disabled_Rounded.png differ diff --git a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_OrangeTheme_Dark_HighContrast.ColoredSurface_Icon_Strong_Default_Rounded.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_OrangeTheme_Dark_HighContrast.ColoredSurface_Icon_Strong_Default_Rounded.png new file mode 100644 index 000000000..d4f89df20 Binary files /dev/null and b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_OrangeTheme_Dark_HighContrast.ColoredSurface_Icon_Strong_Default_Rounded.png differ diff --git a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_OrangeTheme_Dark_HighContrast.ColoredSurface_TextAndIcon_Default_Default_Disabled_Rounded.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_OrangeTheme_Dark_HighContrast.ColoredSurface_TextAndIcon_Default_Default_Disabled_Rounded.png new file mode 100644 index 000000000..a7d8380b0 Binary files /dev/null and b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_OrangeTheme_Dark_HighContrast.ColoredSurface_TextAndIcon_Default_Default_Disabled_Rounded.png differ diff --git a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_OrangeTheme_Dark_HighContrast.ColoredSurface_TextAndIcon_Default_Default_Rounded.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_OrangeTheme_Dark_HighContrast.ColoredSurface_TextAndIcon_Default_Default_Rounded.png new file mode 100644 index 000000000..45768315e Binary files /dev/null and b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_OrangeTheme_Dark_HighContrast.ColoredSurface_TextAndIcon_Default_Default_Rounded.png differ diff --git a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_OrangeTheme_Dark_HighContrast.ColoredSurface_TextAndIcon_Minimal_Default_Disabled_Rounded.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_OrangeTheme_Dark_HighContrast.ColoredSurface_TextAndIcon_Minimal_Default_Disabled_Rounded.png new file mode 100644 index 000000000..43f27df49 Binary files /dev/null and b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_OrangeTheme_Dark_HighContrast.ColoredSurface_TextAndIcon_Minimal_Default_Disabled_Rounded.png differ diff --git a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_OrangeTheme_Dark_HighContrast.ColoredSurface_TextAndIcon_Minimal_Default_Rounded.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_OrangeTheme_Dark_HighContrast.ColoredSurface_TextAndIcon_Minimal_Default_Rounded.png new file mode 100644 index 000000000..c179ce466 Binary files /dev/null and b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_OrangeTheme_Dark_HighContrast.ColoredSurface_TextAndIcon_Minimal_Default_Rounded.png differ diff --git a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_OrangeTheme_Dark_HighContrast.ColoredSurface_TextAndIcon_Strong_Default_Disabled_Rounded.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_OrangeTheme_Dark_HighContrast.ColoredSurface_TextAndIcon_Strong_Default_Disabled_Rounded.png new file mode 100644 index 000000000..60863510d Binary files /dev/null and b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_OrangeTheme_Dark_HighContrast.ColoredSurface_TextAndIcon_Strong_Default_Disabled_Rounded.png differ diff --git a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_OrangeTheme_Dark_HighContrast.ColoredSurface_TextAndIcon_Strong_Default_Rounded.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_OrangeTheme_Dark_HighContrast.ColoredSurface_TextAndIcon_Strong_Default_Rounded.png new file mode 100644 index 000000000..24896848f Binary files /dev/null and b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_OrangeTheme_Dark_HighContrast.ColoredSurface_TextAndIcon_Strong_Default_Rounded.png differ diff --git a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_OrangeTheme_Dark_HighContrast.ColoredSurface_Text_Default_Default_Disabled_Rounded.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_OrangeTheme_Dark_HighContrast.ColoredSurface_Text_Default_Default_Disabled_Rounded.png new file mode 100644 index 000000000..b64971ecd Binary files /dev/null and b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_OrangeTheme_Dark_HighContrast.ColoredSurface_Text_Default_Default_Disabled_Rounded.png differ diff --git a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_OrangeTheme_Dark_HighContrast.ColoredSurface_Text_Default_Default_Rounded.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_OrangeTheme_Dark_HighContrast.ColoredSurface_Text_Default_Default_Rounded.png new file mode 100644 index 000000000..85ef11823 Binary files /dev/null and b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_OrangeTheme_Dark_HighContrast.ColoredSurface_Text_Default_Default_Rounded.png differ diff --git a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_OrangeTheme_Dark_HighContrast.ColoredSurface_Text_Minimal_Default_Disabled_Rounded.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_OrangeTheme_Dark_HighContrast.ColoredSurface_Text_Minimal_Default_Disabled_Rounded.png new file mode 100644 index 000000000..0c186912f Binary files /dev/null and b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_OrangeTheme_Dark_HighContrast.ColoredSurface_Text_Minimal_Default_Disabled_Rounded.png differ diff --git a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_OrangeTheme_Dark_HighContrast.ColoredSurface_Text_Minimal_Default_Rounded.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_OrangeTheme_Dark_HighContrast.ColoredSurface_Text_Minimal_Default_Rounded.png new file mode 100644 index 000000000..13df06107 Binary files /dev/null and b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_OrangeTheme_Dark_HighContrast.ColoredSurface_Text_Minimal_Default_Rounded.png differ diff --git a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_OrangeTheme_Dark_HighContrast.ColoredSurface_Text_Strong_Default_Disabled_Rounded.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_OrangeTheme_Dark_HighContrast.ColoredSurface_Text_Strong_Default_Disabled_Rounded.png new file mode 100644 index 000000000..d585bdd97 Binary files /dev/null and b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_OrangeTheme_Dark_HighContrast.ColoredSurface_Text_Strong_Default_Disabled_Rounded.png differ diff --git a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_OrangeTheme_Dark_HighContrast.ColoredSurface_Text_Strong_Default_Rounded.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_OrangeTheme_Dark_HighContrast.ColoredSurface_Text_Strong_Default_Rounded.png new file mode 100644 index 000000000..7d11f4150 Binary files /dev/null and b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_OrangeTheme_Dark_HighContrast.ColoredSurface_Text_Strong_Default_Rounded.png differ diff --git a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_OrangeTheme_Dark_HighContrast.Icon_Brand_Default.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_OrangeTheme_Dark_HighContrast.Icon_Brand_Default.png new file mode 100644 index 000000000..1a350e449 Binary files /dev/null and b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_OrangeTheme_Dark_HighContrast.Icon_Brand_Default.png differ diff --git a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_OrangeTheme_Dark_HighContrast.Icon_Brand_Default_Disabled.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_OrangeTheme_Dark_HighContrast.Icon_Brand_Default_Disabled.png new file mode 100644 index 000000000..a16771f5b Binary files /dev/null and b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_OrangeTheme_Dark_HighContrast.Icon_Brand_Default_Disabled.png differ diff --git a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_OrangeTheme_Dark_HighContrast.Icon_Brand_Default_Disabled_Rounded.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_OrangeTheme_Dark_HighContrast.Icon_Brand_Default_Disabled_Rounded.png new file mode 100644 index 000000000..603f00dfc Binary files /dev/null and b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_OrangeTheme_Dark_HighContrast.Icon_Brand_Default_Disabled_Rounded.png differ diff --git a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_OrangeTheme_Dark_HighContrast.Icon_Brand_Default_Rounded.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_OrangeTheme_Dark_HighContrast.Icon_Brand_Default_Rounded.png new file mode 100644 index 000000000..7cc03ada6 Binary files /dev/null and b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_OrangeTheme_Dark_HighContrast.Icon_Brand_Default_Rounded.png differ diff --git a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_OrangeTheme_Dark_HighContrast.Icon_Default_Default_Disabled_Rounded.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_OrangeTheme_Dark_HighContrast.Icon_Default_Default_Disabled_Rounded.png new file mode 100644 index 000000000..6f9892a3e Binary files /dev/null and b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_OrangeTheme_Dark_HighContrast.Icon_Default_Default_Disabled_Rounded.png differ diff --git a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_OrangeTheme_Dark_HighContrast.Icon_Default_Default_Rounded.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_OrangeTheme_Dark_HighContrast.Icon_Default_Default_Rounded.png new file mode 100644 index 000000000..e77d4f5a7 Binary files /dev/null and b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_OrangeTheme_Dark_HighContrast.Icon_Default_Default_Rounded.png differ diff --git a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_OrangeTheme_Dark_HighContrast.Icon_Minimal_Default.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_OrangeTheme_Dark_HighContrast.Icon_Minimal_Default.png index 84ccaad73..ee2263be0 100644 Binary files a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_OrangeTheme_Dark_HighContrast.Icon_Minimal_Default.png and b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_OrangeTheme_Dark_HighContrast.Icon_Minimal_Default.png differ diff --git a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_OrangeTheme_Dark_HighContrast.Icon_Minimal_Default_Disabled.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_OrangeTheme_Dark_HighContrast.Icon_Minimal_Default_Disabled.png index 71ea65d69..11da18626 100644 Binary files a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_OrangeTheme_Dark_HighContrast.Icon_Minimal_Default_Disabled.png and b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_OrangeTheme_Dark_HighContrast.Icon_Minimal_Default_Disabled.png differ diff --git a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_OrangeTheme_Dark_HighContrast.Icon_Minimal_Default_Disabled_Rounded.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_OrangeTheme_Dark_HighContrast.Icon_Minimal_Default_Disabled_Rounded.png new file mode 100644 index 000000000..11da18626 Binary files /dev/null and b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_OrangeTheme_Dark_HighContrast.Icon_Minimal_Default_Disabled_Rounded.png differ diff --git a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_OrangeTheme_Dark_HighContrast.Icon_Minimal_Default_Rounded.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_OrangeTheme_Dark_HighContrast.Icon_Minimal_Default_Rounded.png new file mode 100644 index 000000000..ee2263be0 Binary files /dev/null and b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_OrangeTheme_Dark_HighContrast.Icon_Minimal_Default_Rounded.png differ diff --git a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_OrangeTheme_Dark_HighContrast.Icon_Negative_Default_Disabled_Rounded.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_OrangeTheme_Dark_HighContrast.Icon_Negative_Default_Disabled_Rounded.png new file mode 100644 index 000000000..603f00dfc Binary files /dev/null and b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_OrangeTheme_Dark_HighContrast.Icon_Negative_Default_Disabled_Rounded.png differ diff --git a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_OrangeTheme_Dark_HighContrast.Icon_Negative_Default_Rounded.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_OrangeTheme_Dark_HighContrast.Icon_Negative_Default_Rounded.png new file mode 100644 index 000000000..7092267b9 Binary files /dev/null and b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_OrangeTheme_Dark_HighContrast.Icon_Negative_Default_Rounded.png differ diff --git a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_OrangeTheme_Dark_HighContrast.Icon_Strong_Default_Disabled_Rounded.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_OrangeTheme_Dark_HighContrast.Icon_Strong_Default_Disabled_Rounded.png new file mode 100644 index 000000000..603f00dfc Binary files /dev/null and b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_OrangeTheme_Dark_HighContrast.Icon_Strong_Default_Disabled_Rounded.png differ diff --git a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_OrangeTheme_Dark_HighContrast.Icon_Strong_Default_Rounded.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_OrangeTheme_Dark_HighContrast.Icon_Strong_Default_Rounded.png new file mode 100644 index 000000000..14b85993b Binary files /dev/null and b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_OrangeTheme_Dark_HighContrast.Icon_Strong_Default_Rounded.png differ diff --git a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_OrangeTheme_Dark_HighContrast.TextAndIcon_Brand_Default.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_OrangeTheme_Dark_HighContrast.TextAndIcon_Brand_Default.png new file mode 100644 index 000000000..c179ce466 Binary files /dev/null and b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_OrangeTheme_Dark_HighContrast.TextAndIcon_Brand_Default.png differ diff --git a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_OrangeTheme_Dark_HighContrast.TextAndIcon_Brand_Default_Disabled.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_OrangeTheme_Dark_HighContrast.TextAndIcon_Brand_Default_Disabled.png new file mode 100644 index 000000000..58878bf32 Binary files /dev/null and b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_OrangeTheme_Dark_HighContrast.TextAndIcon_Brand_Default_Disabled.png differ diff --git a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_OrangeTheme_Dark_HighContrast.TextAndIcon_Brand_Default_Disabled_Rounded.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_OrangeTheme_Dark_HighContrast.TextAndIcon_Brand_Default_Disabled_Rounded.png new file mode 100644 index 000000000..1823da367 Binary files /dev/null and b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_OrangeTheme_Dark_HighContrast.TextAndIcon_Brand_Default_Disabled_Rounded.png differ diff --git a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_OrangeTheme_Dark_HighContrast.TextAndIcon_Brand_Default_Rounded.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_OrangeTheme_Dark_HighContrast.TextAndIcon_Brand_Default_Rounded.png new file mode 100644 index 000000000..d7500a28f Binary files /dev/null and b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_OrangeTheme_Dark_HighContrast.TextAndIcon_Brand_Default_Rounded.png differ diff --git a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_OrangeTheme_Dark_HighContrast.TextAndIcon_Default_Default_Disabled_Rounded.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_OrangeTheme_Dark_HighContrast.TextAndIcon_Default_Default_Disabled_Rounded.png new file mode 100644 index 000000000..3a540f24b Binary files /dev/null and b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_OrangeTheme_Dark_HighContrast.TextAndIcon_Default_Default_Disabled_Rounded.png differ diff --git a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_OrangeTheme_Dark_HighContrast.TextAndIcon_Default_Default_Rounded.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_OrangeTheme_Dark_HighContrast.TextAndIcon_Default_Default_Rounded.png new file mode 100644 index 000000000..3d93ec8b0 Binary files /dev/null and b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_OrangeTheme_Dark_HighContrast.TextAndIcon_Default_Default_Rounded.png differ diff --git a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_OrangeTheme_Dark_HighContrast.TextAndIcon_Minimal_Default.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_OrangeTheme_Dark_HighContrast.TextAndIcon_Minimal_Default.png index 85d875b48..856d6467b 100644 Binary files a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_OrangeTheme_Dark_HighContrast.TextAndIcon_Minimal_Default.png and b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_OrangeTheme_Dark_HighContrast.TextAndIcon_Minimal_Default.png differ diff --git a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_OrangeTheme_Dark_HighContrast.TextAndIcon_Minimal_Default_Disabled.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_OrangeTheme_Dark_HighContrast.TextAndIcon_Minimal_Default_Disabled.png index 7809e07fb..a5e58ae6a 100644 Binary files a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_OrangeTheme_Dark_HighContrast.TextAndIcon_Minimal_Default_Disabled.png and b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_OrangeTheme_Dark_HighContrast.TextAndIcon_Minimal_Default_Disabled.png differ diff --git a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_OrangeTheme_Dark_HighContrast.TextAndIcon_Minimal_Default_Disabled_Rounded.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_OrangeTheme_Dark_HighContrast.TextAndIcon_Minimal_Default_Disabled_Rounded.png new file mode 100644 index 000000000..a5e58ae6a Binary files /dev/null and b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_OrangeTheme_Dark_HighContrast.TextAndIcon_Minimal_Default_Disabled_Rounded.png differ diff --git a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_OrangeTheme_Dark_HighContrast.TextAndIcon_Minimal_Default_Rounded.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_OrangeTheme_Dark_HighContrast.TextAndIcon_Minimal_Default_Rounded.png new file mode 100644 index 000000000..856d6467b Binary files /dev/null and b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_OrangeTheme_Dark_HighContrast.TextAndIcon_Minimal_Default_Rounded.png differ diff --git a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_OrangeTheme_Dark_HighContrast.TextAndIcon_Negative_Default_Disabled_Rounded.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_OrangeTheme_Dark_HighContrast.TextAndIcon_Negative_Default_Disabled_Rounded.png new file mode 100644 index 000000000..1823da367 Binary files /dev/null and b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_OrangeTheme_Dark_HighContrast.TextAndIcon_Negative_Default_Disabled_Rounded.png differ diff --git a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_OrangeTheme_Dark_HighContrast.TextAndIcon_Negative_Default_Rounded.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_OrangeTheme_Dark_HighContrast.TextAndIcon_Negative_Default_Rounded.png new file mode 100644 index 000000000..f388b2c57 Binary files /dev/null and b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_OrangeTheme_Dark_HighContrast.TextAndIcon_Negative_Default_Rounded.png differ diff --git a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_OrangeTheme_Dark_HighContrast.TextAndIcon_Strong_Default_Disabled_Rounded.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_OrangeTheme_Dark_HighContrast.TextAndIcon_Strong_Default_Disabled_Rounded.png new file mode 100644 index 000000000..1823da367 Binary files /dev/null and b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_OrangeTheme_Dark_HighContrast.TextAndIcon_Strong_Default_Disabled_Rounded.png differ diff --git a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_OrangeTheme_Dark_HighContrast.TextAndIcon_Strong_Default_Rounded.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_OrangeTheme_Dark_HighContrast.TextAndIcon_Strong_Default_Rounded.png new file mode 100644 index 000000000..f7607dae3 Binary files /dev/null and b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_OrangeTheme_Dark_HighContrast.TextAndIcon_Strong_Default_Rounded.png differ diff --git a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_OrangeTheme_Dark_HighContrast.Text_Brand_Default.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_OrangeTheme_Dark_HighContrast.Text_Brand_Default.png new file mode 100644 index 000000000..13df06107 Binary files /dev/null and b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_OrangeTheme_Dark_HighContrast.Text_Brand_Default.png differ diff --git a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_OrangeTheme_Dark_HighContrast.Text_Brand_Default_Disabled.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_OrangeTheme_Dark_HighContrast.Text_Brand_Default_Disabled.png new file mode 100644 index 000000000..4dffe9908 Binary files /dev/null and b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_OrangeTheme_Dark_HighContrast.Text_Brand_Default_Disabled.png differ diff --git a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_OrangeTheme_Dark_HighContrast.Text_Brand_Default_Disabled_Rounded.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_OrangeTheme_Dark_HighContrast.Text_Brand_Default_Disabled_Rounded.png new file mode 100644 index 000000000..f81d1fbac Binary files /dev/null and b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_OrangeTheme_Dark_HighContrast.Text_Brand_Default_Disabled_Rounded.png differ diff --git a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_OrangeTheme_Dark_HighContrast.Text_Brand_Default_Rounded.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_OrangeTheme_Dark_HighContrast.Text_Brand_Default_Rounded.png new file mode 100644 index 000000000..1354c6b65 Binary files /dev/null and b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_OrangeTheme_Dark_HighContrast.Text_Brand_Default_Rounded.png differ diff --git a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_OrangeTheme_Dark_HighContrast.Text_Default_Default_Disabled_Rounded.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_OrangeTheme_Dark_HighContrast.Text_Default_Default_Disabled_Rounded.png new file mode 100644 index 000000000..a45f0aecb Binary files /dev/null and b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_OrangeTheme_Dark_HighContrast.Text_Default_Default_Disabled_Rounded.png differ diff --git a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_OrangeTheme_Dark_HighContrast.Text_Default_Default_Rounded.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_OrangeTheme_Dark_HighContrast.Text_Default_Default_Rounded.png new file mode 100644 index 000000000..9ba54e7ce Binary files /dev/null and b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_OrangeTheme_Dark_HighContrast.Text_Default_Default_Rounded.png differ diff --git a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_OrangeTheme_Dark_HighContrast.Text_Minimal_Default.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_OrangeTheme_Dark_HighContrast.Text_Minimal_Default.png index f709cb0d8..98b2c3532 100644 Binary files a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_OrangeTheme_Dark_HighContrast.Text_Minimal_Default.png and b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_OrangeTheme_Dark_HighContrast.Text_Minimal_Default.png differ diff --git a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_OrangeTheme_Dark_HighContrast.Text_Minimal_Default_Disabled.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_OrangeTheme_Dark_HighContrast.Text_Minimal_Default_Disabled.png index 4b02b5cb1..82e74a427 100644 Binary files a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_OrangeTheme_Dark_HighContrast.Text_Minimal_Default_Disabled.png and b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_OrangeTheme_Dark_HighContrast.Text_Minimal_Default_Disabled.png differ diff --git a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_OrangeTheme_Dark_HighContrast.Text_Minimal_Default_Disabled_Rounded.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_OrangeTheme_Dark_HighContrast.Text_Minimal_Default_Disabled_Rounded.png new file mode 100644 index 000000000..82e74a427 Binary files /dev/null and b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_OrangeTheme_Dark_HighContrast.Text_Minimal_Default_Disabled_Rounded.png differ diff --git a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_OrangeTheme_Dark_HighContrast.Text_Minimal_Default_Rounded.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_OrangeTheme_Dark_HighContrast.Text_Minimal_Default_Rounded.png new file mode 100644 index 000000000..98b2c3532 Binary files /dev/null and b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_OrangeTheme_Dark_HighContrast.Text_Minimal_Default_Rounded.png differ diff --git a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_OrangeTheme_Dark_HighContrast.Text_Negative_Default_Disabled_Rounded.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_OrangeTheme_Dark_HighContrast.Text_Negative_Default_Disabled_Rounded.png new file mode 100644 index 000000000..f81d1fbac Binary files /dev/null and b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_OrangeTheme_Dark_HighContrast.Text_Negative_Default_Disabled_Rounded.png differ diff --git a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_OrangeTheme_Dark_HighContrast.Text_Negative_Default_Rounded.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_OrangeTheme_Dark_HighContrast.Text_Negative_Default_Rounded.png new file mode 100644 index 000000000..6abad31cd Binary files /dev/null and b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_OrangeTheme_Dark_HighContrast.Text_Negative_Default_Rounded.png differ diff --git a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_OrangeTheme_Dark_HighContrast.Text_Strong_Default_Disabled_Rounded.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_OrangeTheme_Dark_HighContrast.Text_Strong_Default_Disabled_Rounded.png new file mode 100644 index 000000000..f81d1fbac Binary files /dev/null and b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_OrangeTheme_Dark_HighContrast.Text_Strong_Default_Disabled_Rounded.png differ diff --git a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_OrangeTheme_Dark_HighContrast.Text_Strong_Default_Rounded.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_OrangeTheme_Dark_HighContrast.Text_Strong_Default_Rounded.png new file mode 100644 index 000000000..c74c9d10e Binary files /dev/null and b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_OrangeTheme_Dark_HighContrast.Text_Strong_Default_Rounded.png differ diff --git a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_OrangeTheme_Light_.ColoredSurface_Icon_Default_Default_Disabled_Rounded.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_OrangeTheme_Light_.ColoredSurface_Icon_Default_Default_Disabled_Rounded.png new file mode 100644 index 000000000..09d8d1d8b Binary files /dev/null and b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_OrangeTheme_Light_.ColoredSurface_Icon_Default_Default_Disabled_Rounded.png differ diff --git a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_OrangeTheme_Light_.ColoredSurface_Icon_Default_Default_Rounded.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_OrangeTheme_Light_.ColoredSurface_Icon_Default_Default_Rounded.png new file mode 100644 index 000000000..97adfeedf Binary files /dev/null and b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_OrangeTheme_Light_.ColoredSurface_Icon_Default_Default_Rounded.png differ diff --git a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_OrangeTheme_Light_.ColoredSurface_Icon_Minimal_Default_Disabled_Rounded.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_OrangeTheme_Light_.ColoredSurface_Icon_Minimal_Default_Disabled_Rounded.png new file mode 100644 index 000000000..e01afc41d Binary files /dev/null and b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_OrangeTheme_Light_.ColoredSurface_Icon_Minimal_Default_Disabled_Rounded.png differ diff --git a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_OrangeTheme_Light_.ColoredSurface_Icon_Minimal_Default_Rounded.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_OrangeTheme_Light_.ColoredSurface_Icon_Minimal_Default_Rounded.png new file mode 100644 index 000000000..24e0c15dd Binary files /dev/null and b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_OrangeTheme_Light_.ColoredSurface_Icon_Minimal_Default_Rounded.png differ diff --git a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_OrangeTheme_Light_.ColoredSurface_Icon_Strong_Default_Disabled_Rounded.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_OrangeTheme_Light_.ColoredSurface_Icon_Strong_Default_Disabled_Rounded.png new file mode 100644 index 000000000..a46190aa3 Binary files /dev/null and b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_OrangeTheme_Light_.ColoredSurface_Icon_Strong_Default_Disabled_Rounded.png differ diff --git a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_OrangeTheme_Light_.ColoredSurface_Icon_Strong_Default_Rounded.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_OrangeTheme_Light_.ColoredSurface_Icon_Strong_Default_Rounded.png new file mode 100644 index 000000000..b8161afc6 Binary files /dev/null and b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_OrangeTheme_Light_.ColoredSurface_Icon_Strong_Default_Rounded.png differ diff --git a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_OrangeTheme_Light_.ColoredSurface_TextAndIcon_Default_Default_Disabled_Rounded.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_OrangeTheme_Light_.ColoredSurface_TextAndIcon_Default_Default_Disabled_Rounded.png new file mode 100644 index 000000000..2c1745d3a Binary files /dev/null and b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_OrangeTheme_Light_.ColoredSurface_TextAndIcon_Default_Default_Disabled_Rounded.png differ diff --git a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_OrangeTheme_Light_.ColoredSurface_TextAndIcon_Default_Default_Rounded.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_OrangeTheme_Light_.ColoredSurface_TextAndIcon_Default_Default_Rounded.png new file mode 100644 index 000000000..85fa19e2d Binary files /dev/null and b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_OrangeTheme_Light_.ColoredSurface_TextAndIcon_Default_Default_Rounded.png differ diff --git a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_OrangeTheme_Light_.ColoredSurface_TextAndIcon_Minimal_Default_Disabled_Rounded.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_OrangeTheme_Light_.ColoredSurface_TextAndIcon_Minimal_Default_Disabled_Rounded.png new file mode 100644 index 000000000..c8a06cc0c Binary files /dev/null and b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_OrangeTheme_Light_.ColoredSurface_TextAndIcon_Minimal_Default_Disabled_Rounded.png differ diff --git a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_OrangeTheme_Light_.ColoredSurface_TextAndIcon_Minimal_Default_Rounded.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_OrangeTheme_Light_.ColoredSurface_TextAndIcon_Minimal_Default_Rounded.png new file mode 100644 index 000000000..ba707f7bf Binary files /dev/null and b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_OrangeTheme_Light_.ColoredSurface_TextAndIcon_Minimal_Default_Rounded.png differ diff --git a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_OrangeTheme_Light_.ColoredSurface_TextAndIcon_Strong_Default_Disabled_Rounded.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_OrangeTheme_Light_.ColoredSurface_TextAndIcon_Strong_Default_Disabled_Rounded.png new file mode 100644 index 000000000..8237aa0a9 Binary files /dev/null and b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_OrangeTheme_Light_.ColoredSurface_TextAndIcon_Strong_Default_Disabled_Rounded.png differ diff --git a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_OrangeTheme_Light_.ColoredSurface_TextAndIcon_Strong_Default_Rounded.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_OrangeTheme_Light_.ColoredSurface_TextAndIcon_Strong_Default_Rounded.png new file mode 100644 index 000000000..77eaf152e Binary files /dev/null and b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_OrangeTheme_Light_.ColoredSurface_TextAndIcon_Strong_Default_Rounded.png differ diff --git a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_OrangeTheme_Light_.ColoredSurface_Text_Default_Default_Disabled_Rounded.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_OrangeTheme_Light_.ColoredSurface_Text_Default_Default_Disabled_Rounded.png new file mode 100644 index 000000000..f4de1ba2b Binary files /dev/null and b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_OrangeTheme_Light_.ColoredSurface_Text_Default_Default_Disabled_Rounded.png differ diff --git a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_OrangeTheme_Light_.ColoredSurface_Text_Default_Default_Rounded.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_OrangeTheme_Light_.ColoredSurface_Text_Default_Default_Rounded.png new file mode 100644 index 000000000..353d936da Binary files /dev/null and b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_OrangeTheme_Light_.ColoredSurface_Text_Default_Default_Rounded.png differ diff --git a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_OrangeTheme_Light_.ColoredSurface_Text_Minimal_Default_Disabled_Rounded.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_OrangeTheme_Light_.ColoredSurface_Text_Minimal_Default_Disabled_Rounded.png new file mode 100644 index 000000000..1514647f6 Binary files /dev/null and b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_OrangeTheme_Light_.ColoredSurface_Text_Minimal_Default_Disabled_Rounded.png differ diff --git a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_OrangeTheme_Light_.ColoredSurface_Text_Minimal_Default_Rounded.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_OrangeTheme_Light_.ColoredSurface_Text_Minimal_Default_Rounded.png new file mode 100644 index 000000000..115a95a01 Binary files /dev/null and b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_OrangeTheme_Light_.ColoredSurface_Text_Minimal_Default_Rounded.png differ diff --git a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_OrangeTheme_Light_.ColoredSurface_Text_Strong_Default_Disabled_Rounded.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_OrangeTheme_Light_.ColoredSurface_Text_Strong_Default_Disabled_Rounded.png new file mode 100644 index 000000000..84519e164 Binary files /dev/null and b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_OrangeTheme_Light_.ColoredSurface_Text_Strong_Default_Disabled_Rounded.png differ diff --git a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_OrangeTheme_Light_.ColoredSurface_Text_Strong_Default_Rounded.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_OrangeTheme_Light_.ColoredSurface_Text_Strong_Default_Rounded.png new file mode 100644 index 000000000..bb0d6397f Binary files /dev/null and b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_OrangeTheme_Light_.ColoredSurface_Text_Strong_Default_Rounded.png differ diff --git a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_OrangeTheme_Light_.Icon_Brand_Default.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_OrangeTheme_Light_.Icon_Brand_Default.png new file mode 100644 index 000000000..d7d648319 Binary files /dev/null and b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_OrangeTheme_Light_.Icon_Brand_Default.png differ diff --git a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_OrangeTheme_Light_.Icon_Brand_Default_Disabled.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_OrangeTheme_Light_.Icon_Brand_Default_Disabled.png new file mode 100644 index 000000000..2ee18baff Binary files /dev/null and b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_OrangeTheme_Light_.Icon_Brand_Default_Disabled.png differ diff --git a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_OrangeTheme_Light_.Icon_Brand_Default_Disabled_Rounded.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_OrangeTheme_Light_.Icon_Brand_Default_Disabled_Rounded.png new file mode 100644 index 000000000..bde5c510e Binary files /dev/null and b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_OrangeTheme_Light_.Icon_Brand_Default_Disabled_Rounded.png differ diff --git a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_OrangeTheme_Light_.Icon_Brand_Default_Rounded.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_OrangeTheme_Light_.Icon_Brand_Default_Rounded.png new file mode 100644 index 000000000..2f9032377 Binary files /dev/null and b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_OrangeTheme_Light_.Icon_Brand_Default_Rounded.png differ diff --git a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_OrangeTheme_Light_.Icon_Default_Default_Disabled_Rounded.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_OrangeTheme_Light_.Icon_Default_Default_Disabled_Rounded.png new file mode 100644 index 000000000..fb9ee5adc Binary files /dev/null and b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_OrangeTheme_Light_.Icon_Default_Default_Disabled_Rounded.png differ diff --git a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_OrangeTheme_Light_.Icon_Default_Default_Rounded.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_OrangeTheme_Light_.Icon_Default_Default_Rounded.png new file mode 100644 index 000000000..f7b706b2a Binary files /dev/null and b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_OrangeTheme_Light_.Icon_Default_Default_Rounded.png differ diff --git a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_OrangeTheme_Light_.Icon_Minimal_Default.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_OrangeTheme_Light_.Icon_Minimal_Default.png index f6a1da436..0b035057a 100644 Binary files a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_OrangeTheme_Light_.Icon_Minimal_Default.png and b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_OrangeTheme_Light_.Icon_Minimal_Default.png differ diff --git a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_OrangeTheme_Light_.Icon_Minimal_Default_Disabled.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_OrangeTheme_Light_.Icon_Minimal_Default_Disabled.png index 44dbaa6c9..350fc2bf1 100644 Binary files a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_OrangeTheme_Light_.Icon_Minimal_Default_Disabled.png and b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_OrangeTheme_Light_.Icon_Minimal_Default_Disabled.png differ diff --git a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_OrangeTheme_Light_.Icon_Minimal_Default_Disabled_Rounded.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_OrangeTheme_Light_.Icon_Minimal_Default_Disabled_Rounded.png new file mode 100644 index 000000000..350fc2bf1 Binary files /dev/null and b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_OrangeTheme_Light_.Icon_Minimal_Default_Disabled_Rounded.png differ diff --git a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_OrangeTheme_Light_.Icon_Minimal_Default_Rounded.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_OrangeTheme_Light_.Icon_Minimal_Default_Rounded.png new file mode 100644 index 000000000..0b035057a Binary files /dev/null and b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_OrangeTheme_Light_.Icon_Minimal_Default_Rounded.png differ diff --git a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_OrangeTheme_Light_.Icon_Negative_Default_Disabled_Rounded.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_OrangeTheme_Light_.Icon_Negative_Default_Disabled_Rounded.png new file mode 100644 index 000000000..bde5c510e Binary files /dev/null and b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_OrangeTheme_Light_.Icon_Negative_Default_Disabled_Rounded.png differ diff --git a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_OrangeTheme_Light_.Icon_Negative_Default_Rounded.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_OrangeTheme_Light_.Icon_Negative_Default_Rounded.png new file mode 100644 index 000000000..3b0f907b1 Binary files /dev/null and b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_OrangeTheme_Light_.Icon_Negative_Default_Rounded.png differ diff --git a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_OrangeTheme_Light_.Icon_Strong_Default_Disabled_Rounded.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_OrangeTheme_Light_.Icon_Strong_Default_Disabled_Rounded.png new file mode 100644 index 000000000..bde5c510e Binary files /dev/null and b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_OrangeTheme_Light_.Icon_Strong_Default_Disabled_Rounded.png differ diff --git a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_OrangeTheme_Light_.Icon_Strong_Default_Rounded.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_OrangeTheme_Light_.Icon_Strong_Default_Rounded.png new file mode 100644 index 000000000..e7611eb88 Binary files /dev/null and b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_OrangeTheme_Light_.Icon_Strong_Default_Rounded.png differ diff --git a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_OrangeTheme_Light_.TextAndIcon_Brand_Default.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_OrangeTheme_Light_.TextAndIcon_Brand_Default.png new file mode 100644 index 000000000..69886e510 Binary files /dev/null and b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_OrangeTheme_Light_.TextAndIcon_Brand_Default.png differ diff --git a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_OrangeTheme_Light_.TextAndIcon_Brand_Default_Disabled.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_OrangeTheme_Light_.TextAndIcon_Brand_Default_Disabled.png new file mode 100644 index 000000000..9459cc466 Binary files /dev/null and b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_OrangeTheme_Light_.TextAndIcon_Brand_Default_Disabled.png differ diff --git a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_OrangeTheme_Light_.TextAndIcon_Brand_Default_Disabled_Rounded.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_OrangeTheme_Light_.TextAndIcon_Brand_Default_Disabled_Rounded.png new file mode 100644 index 000000000..d633a5029 Binary files /dev/null and b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_OrangeTheme_Light_.TextAndIcon_Brand_Default_Disabled_Rounded.png differ diff --git a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_OrangeTheme_Light_.TextAndIcon_Brand_Default_Rounded.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_OrangeTheme_Light_.TextAndIcon_Brand_Default_Rounded.png new file mode 100644 index 000000000..235f2dba1 Binary files /dev/null and b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_OrangeTheme_Light_.TextAndIcon_Brand_Default_Rounded.png differ diff --git a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_OrangeTheme_Light_.TextAndIcon_Default_Default_Disabled_Rounded.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_OrangeTheme_Light_.TextAndIcon_Default_Default_Disabled_Rounded.png new file mode 100644 index 000000000..6ef6871eb Binary files /dev/null and b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_OrangeTheme_Light_.TextAndIcon_Default_Default_Disabled_Rounded.png differ diff --git a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_OrangeTheme_Light_.TextAndIcon_Default_Default_Rounded.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_OrangeTheme_Light_.TextAndIcon_Default_Default_Rounded.png new file mode 100644 index 000000000..382ee0fa0 Binary files /dev/null and b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_OrangeTheme_Light_.TextAndIcon_Default_Default_Rounded.png differ diff --git a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_OrangeTheme_Light_.TextAndIcon_Minimal_Default.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_OrangeTheme_Light_.TextAndIcon_Minimal_Default.png index f30021f5d..4017c817f 100644 Binary files a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_OrangeTheme_Light_.TextAndIcon_Minimal_Default.png and b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_OrangeTheme_Light_.TextAndIcon_Minimal_Default.png differ diff --git a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_OrangeTheme_Light_.TextAndIcon_Minimal_Default_Disabled.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_OrangeTheme_Light_.TextAndIcon_Minimal_Default_Disabled.png index 8448be1cb..3eac6ac86 100644 Binary files a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_OrangeTheme_Light_.TextAndIcon_Minimal_Default_Disabled.png and b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_OrangeTheme_Light_.TextAndIcon_Minimal_Default_Disabled.png differ diff --git a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_OrangeTheme_Light_.TextAndIcon_Minimal_Default_Disabled_Rounded.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_OrangeTheme_Light_.TextAndIcon_Minimal_Default_Disabled_Rounded.png new file mode 100644 index 000000000..3eac6ac86 Binary files /dev/null and b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_OrangeTheme_Light_.TextAndIcon_Minimal_Default_Disabled_Rounded.png differ diff --git a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_OrangeTheme_Light_.TextAndIcon_Minimal_Default_Rounded.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_OrangeTheme_Light_.TextAndIcon_Minimal_Default_Rounded.png new file mode 100644 index 000000000..4017c817f Binary files /dev/null and b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_OrangeTheme_Light_.TextAndIcon_Minimal_Default_Rounded.png differ diff --git a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_OrangeTheme_Light_.TextAndIcon_Negative_Default_Disabled_Rounded.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_OrangeTheme_Light_.TextAndIcon_Negative_Default_Disabled_Rounded.png new file mode 100644 index 000000000..d633a5029 Binary files /dev/null and b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_OrangeTheme_Light_.TextAndIcon_Negative_Default_Disabled_Rounded.png differ diff --git a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_OrangeTheme_Light_.TextAndIcon_Negative_Default_Rounded.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_OrangeTheme_Light_.TextAndIcon_Negative_Default_Rounded.png new file mode 100644 index 000000000..d4d877fa8 Binary files /dev/null and b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_OrangeTheme_Light_.TextAndIcon_Negative_Default_Rounded.png differ diff --git a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_OrangeTheme_Light_.TextAndIcon_Strong_Default_Disabled_Rounded.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_OrangeTheme_Light_.TextAndIcon_Strong_Default_Disabled_Rounded.png new file mode 100644 index 000000000..d633a5029 Binary files /dev/null and b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_OrangeTheme_Light_.TextAndIcon_Strong_Default_Disabled_Rounded.png differ diff --git a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_OrangeTheme_Light_.TextAndIcon_Strong_Default_Rounded.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_OrangeTheme_Light_.TextAndIcon_Strong_Default_Rounded.png new file mode 100644 index 000000000..91316f86f Binary files /dev/null and b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_OrangeTheme_Light_.TextAndIcon_Strong_Default_Rounded.png differ diff --git a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_OrangeTheme_Light_.Text_Brand_Default.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_OrangeTheme_Light_.Text_Brand_Default.png new file mode 100644 index 000000000..175dc16a9 Binary files /dev/null and b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_OrangeTheme_Light_.Text_Brand_Default.png differ diff --git a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_OrangeTheme_Light_.Text_Brand_Default_Disabled.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_OrangeTheme_Light_.Text_Brand_Default_Disabled.png new file mode 100644 index 000000000..df5cf8731 Binary files /dev/null and b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_OrangeTheme_Light_.Text_Brand_Default_Disabled.png differ diff --git a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_OrangeTheme_Light_.Text_Brand_Default_Disabled_Rounded.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_OrangeTheme_Light_.Text_Brand_Default_Disabled_Rounded.png new file mode 100644 index 000000000..32c803166 Binary files /dev/null and b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_OrangeTheme_Light_.Text_Brand_Default_Disabled_Rounded.png differ diff --git a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_OrangeTheme_Light_.Text_Brand_Default_Rounded.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_OrangeTheme_Light_.Text_Brand_Default_Rounded.png new file mode 100644 index 000000000..fb55cd87e Binary files /dev/null and b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_OrangeTheme_Light_.Text_Brand_Default_Rounded.png differ diff --git a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_OrangeTheme_Light_.Text_Default_Default_Disabled_Rounded.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_OrangeTheme_Light_.Text_Default_Default_Disabled_Rounded.png new file mode 100644 index 000000000..c7fac08eb Binary files /dev/null and b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_OrangeTheme_Light_.Text_Default_Default_Disabled_Rounded.png differ diff --git a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_OrangeTheme_Light_.Text_Default_Default_Rounded.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_OrangeTheme_Light_.Text_Default_Default_Rounded.png new file mode 100644 index 000000000..c1c852670 Binary files /dev/null and b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_OrangeTheme_Light_.Text_Default_Default_Rounded.png differ diff --git a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_OrangeTheme_Light_.Text_Minimal_Default.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_OrangeTheme_Light_.Text_Minimal_Default.png index 6a498a247..946c0104b 100644 Binary files a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_OrangeTheme_Light_.Text_Minimal_Default.png and b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_OrangeTheme_Light_.Text_Minimal_Default.png differ diff --git a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_OrangeTheme_Light_.Text_Minimal_Default_Disabled.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_OrangeTheme_Light_.Text_Minimal_Default_Disabled.png index df49b2b75..ba16e2828 100644 Binary files a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_OrangeTheme_Light_.Text_Minimal_Default_Disabled.png and b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_OrangeTheme_Light_.Text_Minimal_Default_Disabled.png differ diff --git a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_OrangeTheme_Light_.Text_Minimal_Default_Disabled_Rounded.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_OrangeTheme_Light_.Text_Minimal_Default_Disabled_Rounded.png new file mode 100644 index 000000000..ba16e2828 Binary files /dev/null and b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_OrangeTheme_Light_.Text_Minimal_Default_Disabled_Rounded.png differ diff --git a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_OrangeTheme_Light_.Text_Minimal_Default_Rounded.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_OrangeTheme_Light_.Text_Minimal_Default_Rounded.png new file mode 100644 index 000000000..946c0104b Binary files /dev/null and b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_OrangeTheme_Light_.Text_Minimal_Default_Rounded.png differ diff --git a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_OrangeTheme_Light_.Text_Negative_Default_Disabled_Rounded.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_OrangeTheme_Light_.Text_Negative_Default_Disabled_Rounded.png new file mode 100644 index 000000000..32c803166 Binary files /dev/null and b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_OrangeTheme_Light_.Text_Negative_Default_Disabled_Rounded.png differ diff --git a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_OrangeTheme_Light_.Text_Negative_Default_Rounded.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_OrangeTheme_Light_.Text_Negative_Default_Rounded.png new file mode 100644 index 000000000..327281f2e Binary files /dev/null and b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_OrangeTheme_Light_.Text_Negative_Default_Rounded.png differ diff --git a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_OrangeTheme_Light_.Text_Strong_Default_Disabled_Rounded.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_OrangeTheme_Light_.Text_Strong_Default_Disabled_Rounded.png new file mode 100644 index 000000000..32c803166 Binary files /dev/null and b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_OrangeTheme_Light_.Text_Strong_Default_Disabled_Rounded.png differ diff --git a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_OrangeTheme_Light_.Text_Strong_Default_Rounded.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_OrangeTheme_Light_.Text_Strong_Default_Rounded.png new file mode 100644 index 000000000..664321630 Binary files /dev/null and b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_OrangeTheme_Light_.Text_Strong_Default_Rounded.png differ diff --git a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_OrangeTheme_Light_HighContrast.ColoredSurface_Icon_Default_Default_Disabled_Rounded.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_OrangeTheme_Light_HighContrast.ColoredSurface_Icon_Default_Default_Disabled_Rounded.png new file mode 100644 index 000000000..09d8d1d8b Binary files /dev/null and b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_OrangeTheme_Light_HighContrast.ColoredSurface_Icon_Default_Default_Disabled_Rounded.png differ diff --git a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_OrangeTheme_Light_HighContrast.ColoredSurface_Icon_Default_Default_Rounded.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_OrangeTheme_Light_HighContrast.ColoredSurface_Icon_Default_Default_Rounded.png new file mode 100644 index 000000000..97adfeedf Binary files /dev/null and b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_OrangeTheme_Light_HighContrast.ColoredSurface_Icon_Default_Default_Rounded.png differ diff --git a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_OrangeTheme_Light_HighContrast.ColoredSurface_Icon_Minimal_Default_Disabled_Rounded.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_OrangeTheme_Light_HighContrast.ColoredSurface_Icon_Minimal_Default_Disabled_Rounded.png new file mode 100644 index 000000000..e01afc41d Binary files /dev/null and b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_OrangeTheme_Light_HighContrast.ColoredSurface_Icon_Minimal_Default_Disabled_Rounded.png differ diff --git a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_OrangeTheme_Light_HighContrast.ColoredSurface_Icon_Minimal_Default_Rounded.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_OrangeTheme_Light_HighContrast.ColoredSurface_Icon_Minimal_Default_Rounded.png new file mode 100644 index 000000000..24e0c15dd Binary files /dev/null and b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_OrangeTheme_Light_HighContrast.ColoredSurface_Icon_Minimal_Default_Rounded.png differ diff --git a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_OrangeTheme_Light_HighContrast.ColoredSurface_Icon_Strong_Default_Disabled_Rounded.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_OrangeTheme_Light_HighContrast.ColoredSurface_Icon_Strong_Default_Disabled_Rounded.png new file mode 100644 index 000000000..a46190aa3 Binary files /dev/null and b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_OrangeTheme_Light_HighContrast.ColoredSurface_Icon_Strong_Default_Disabled_Rounded.png differ diff --git a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_OrangeTheme_Light_HighContrast.ColoredSurface_Icon_Strong_Default_Rounded.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_OrangeTheme_Light_HighContrast.ColoredSurface_Icon_Strong_Default_Rounded.png new file mode 100644 index 000000000..b8161afc6 Binary files /dev/null and b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_OrangeTheme_Light_HighContrast.ColoredSurface_Icon_Strong_Default_Rounded.png differ diff --git a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_OrangeTheme_Light_HighContrast.ColoredSurface_TextAndIcon_Default_Default_Disabled_Rounded.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_OrangeTheme_Light_HighContrast.ColoredSurface_TextAndIcon_Default_Default_Disabled_Rounded.png new file mode 100644 index 000000000..2c1745d3a Binary files /dev/null and b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_OrangeTheme_Light_HighContrast.ColoredSurface_TextAndIcon_Default_Default_Disabled_Rounded.png differ diff --git a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_OrangeTheme_Light_HighContrast.ColoredSurface_TextAndIcon_Default_Default_Rounded.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_OrangeTheme_Light_HighContrast.ColoredSurface_TextAndIcon_Default_Default_Rounded.png new file mode 100644 index 000000000..85fa19e2d Binary files /dev/null and b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_OrangeTheme_Light_HighContrast.ColoredSurface_TextAndIcon_Default_Default_Rounded.png differ diff --git a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_OrangeTheme_Light_HighContrast.ColoredSurface_TextAndIcon_Minimal_Default_Disabled_Rounded.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_OrangeTheme_Light_HighContrast.ColoredSurface_TextAndIcon_Minimal_Default_Disabled_Rounded.png new file mode 100644 index 000000000..c8a06cc0c Binary files /dev/null and b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_OrangeTheme_Light_HighContrast.ColoredSurface_TextAndIcon_Minimal_Default_Disabled_Rounded.png differ diff --git a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_OrangeTheme_Light_HighContrast.ColoredSurface_TextAndIcon_Minimal_Default_Rounded.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_OrangeTheme_Light_HighContrast.ColoredSurface_TextAndIcon_Minimal_Default_Rounded.png new file mode 100644 index 000000000..ba707f7bf Binary files /dev/null and b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_OrangeTheme_Light_HighContrast.ColoredSurface_TextAndIcon_Minimal_Default_Rounded.png differ diff --git a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_OrangeTheme_Light_HighContrast.ColoredSurface_TextAndIcon_Strong_Default_Disabled_Rounded.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_OrangeTheme_Light_HighContrast.ColoredSurface_TextAndIcon_Strong_Default_Disabled_Rounded.png new file mode 100644 index 000000000..8237aa0a9 Binary files /dev/null and b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_OrangeTheme_Light_HighContrast.ColoredSurface_TextAndIcon_Strong_Default_Disabled_Rounded.png differ diff --git a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_OrangeTheme_Light_HighContrast.ColoredSurface_TextAndIcon_Strong_Default_Rounded.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_OrangeTheme_Light_HighContrast.ColoredSurface_TextAndIcon_Strong_Default_Rounded.png new file mode 100644 index 000000000..77eaf152e Binary files /dev/null and b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_OrangeTheme_Light_HighContrast.ColoredSurface_TextAndIcon_Strong_Default_Rounded.png differ diff --git a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_OrangeTheme_Light_HighContrast.ColoredSurface_Text_Default_Default_Disabled_Rounded.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_OrangeTheme_Light_HighContrast.ColoredSurface_Text_Default_Default_Disabled_Rounded.png new file mode 100644 index 000000000..f4de1ba2b Binary files /dev/null and b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_OrangeTheme_Light_HighContrast.ColoredSurface_Text_Default_Default_Disabled_Rounded.png differ diff --git a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_OrangeTheme_Light_HighContrast.ColoredSurface_Text_Default_Default_Rounded.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_OrangeTheme_Light_HighContrast.ColoredSurface_Text_Default_Default_Rounded.png new file mode 100644 index 000000000..353d936da Binary files /dev/null and b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_OrangeTheme_Light_HighContrast.ColoredSurface_Text_Default_Default_Rounded.png differ diff --git a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_OrangeTheme_Light_HighContrast.ColoredSurface_Text_Minimal_Default_Disabled_Rounded.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_OrangeTheme_Light_HighContrast.ColoredSurface_Text_Minimal_Default_Disabled_Rounded.png new file mode 100644 index 000000000..1514647f6 Binary files /dev/null and b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_OrangeTheme_Light_HighContrast.ColoredSurface_Text_Minimal_Default_Disabled_Rounded.png differ diff --git a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_OrangeTheme_Light_HighContrast.ColoredSurface_Text_Minimal_Default_Rounded.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_OrangeTheme_Light_HighContrast.ColoredSurface_Text_Minimal_Default_Rounded.png new file mode 100644 index 000000000..115a95a01 Binary files /dev/null and b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_OrangeTheme_Light_HighContrast.ColoredSurface_Text_Minimal_Default_Rounded.png differ diff --git a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_OrangeTheme_Light_HighContrast.ColoredSurface_Text_Strong_Default_Disabled_Rounded.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_OrangeTheme_Light_HighContrast.ColoredSurface_Text_Strong_Default_Disabled_Rounded.png new file mode 100644 index 000000000..84519e164 Binary files /dev/null and b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_OrangeTheme_Light_HighContrast.ColoredSurface_Text_Strong_Default_Disabled_Rounded.png differ diff --git a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_OrangeTheme_Light_HighContrast.ColoredSurface_Text_Strong_Default_Rounded.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_OrangeTheme_Light_HighContrast.ColoredSurface_Text_Strong_Default_Rounded.png new file mode 100644 index 000000000..bb0d6397f Binary files /dev/null and b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_OrangeTheme_Light_HighContrast.ColoredSurface_Text_Strong_Default_Rounded.png differ diff --git a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_OrangeTheme_Light_HighContrast.Icon_Brand_Default.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_OrangeTheme_Light_HighContrast.Icon_Brand_Default.png new file mode 100644 index 000000000..d7d648319 Binary files /dev/null and b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_OrangeTheme_Light_HighContrast.Icon_Brand_Default.png differ diff --git a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_OrangeTheme_Light_HighContrast.Icon_Brand_Default_Disabled.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_OrangeTheme_Light_HighContrast.Icon_Brand_Default_Disabled.png new file mode 100644 index 000000000..2ee18baff Binary files /dev/null and b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_OrangeTheme_Light_HighContrast.Icon_Brand_Default_Disabled.png differ diff --git a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_OrangeTheme_Light_HighContrast.Icon_Brand_Default_Disabled_Rounded.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_OrangeTheme_Light_HighContrast.Icon_Brand_Default_Disabled_Rounded.png new file mode 100644 index 000000000..bde5c510e Binary files /dev/null and b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_OrangeTheme_Light_HighContrast.Icon_Brand_Default_Disabled_Rounded.png differ diff --git a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_OrangeTheme_Light_HighContrast.Icon_Brand_Default_Rounded.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_OrangeTheme_Light_HighContrast.Icon_Brand_Default_Rounded.png new file mode 100644 index 000000000..2f9032377 Binary files /dev/null and b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_OrangeTheme_Light_HighContrast.Icon_Brand_Default_Rounded.png differ diff --git a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_OrangeTheme_Light_HighContrast.Icon_Default_Default_Disabled_Rounded.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_OrangeTheme_Light_HighContrast.Icon_Default_Default_Disabled_Rounded.png new file mode 100644 index 000000000..fb9ee5adc Binary files /dev/null and b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_OrangeTheme_Light_HighContrast.Icon_Default_Default_Disabled_Rounded.png differ diff --git a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_OrangeTheme_Light_HighContrast.Icon_Default_Default_Rounded.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_OrangeTheme_Light_HighContrast.Icon_Default_Default_Rounded.png new file mode 100644 index 000000000..f7b706b2a Binary files /dev/null and b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_OrangeTheme_Light_HighContrast.Icon_Default_Default_Rounded.png differ diff --git a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_OrangeTheme_Light_HighContrast.Icon_Minimal_Default.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_OrangeTheme_Light_HighContrast.Icon_Minimal_Default.png index f6a1da436..0b035057a 100644 Binary files a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_OrangeTheme_Light_HighContrast.Icon_Minimal_Default.png and b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_OrangeTheme_Light_HighContrast.Icon_Minimal_Default.png differ diff --git a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_OrangeTheme_Light_HighContrast.Icon_Minimal_Default_Disabled.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_OrangeTheme_Light_HighContrast.Icon_Minimal_Default_Disabled.png index 44dbaa6c9..350fc2bf1 100644 Binary files a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_OrangeTheme_Light_HighContrast.Icon_Minimal_Default_Disabled.png and b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_OrangeTheme_Light_HighContrast.Icon_Minimal_Default_Disabled.png differ diff --git a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_OrangeTheme_Light_HighContrast.Icon_Minimal_Default_Disabled_Rounded.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_OrangeTheme_Light_HighContrast.Icon_Minimal_Default_Disabled_Rounded.png new file mode 100644 index 000000000..350fc2bf1 Binary files /dev/null and b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_OrangeTheme_Light_HighContrast.Icon_Minimal_Default_Disabled_Rounded.png differ diff --git a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_OrangeTheme_Light_HighContrast.Icon_Minimal_Default_Rounded.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_OrangeTheme_Light_HighContrast.Icon_Minimal_Default_Rounded.png new file mode 100644 index 000000000..0b035057a Binary files /dev/null and b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_OrangeTheme_Light_HighContrast.Icon_Minimal_Default_Rounded.png differ diff --git a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_OrangeTheme_Light_HighContrast.Icon_Negative_Default_Disabled_Rounded.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_OrangeTheme_Light_HighContrast.Icon_Negative_Default_Disabled_Rounded.png new file mode 100644 index 000000000..bde5c510e Binary files /dev/null and b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_OrangeTheme_Light_HighContrast.Icon_Negative_Default_Disabled_Rounded.png differ diff --git a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_OrangeTheme_Light_HighContrast.Icon_Negative_Default_Rounded.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_OrangeTheme_Light_HighContrast.Icon_Negative_Default_Rounded.png new file mode 100644 index 000000000..3b0f907b1 Binary files /dev/null and b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_OrangeTheme_Light_HighContrast.Icon_Negative_Default_Rounded.png differ diff --git a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_OrangeTheme_Light_HighContrast.Icon_Strong_Default_Disabled_Rounded.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_OrangeTheme_Light_HighContrast.Icon_Strong_Default_Disabled_Rounded.png new file mode 100644 index 000000000..bde5c510e Binary files /dev/null and b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_OrangeTheme_Light_HighContrast.Icon_Strong_Default_Disabled_Rounded.png differ diff --git a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_OrangeTheme_Light_HighContrast.Icon_Strong_Default_Rounded.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_OrangeTheme_Light_HighContrast.Icon_Strong_Default_Rounded.png new file mode 100644 index 000000000..e7611eb88 Binary files /dev/null and b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_OrangeTheme_Light_HighContrast.Icon_Strong_Default_Rounded.png differ diff --git a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_OrangeTheme_Light_HighContrast.TextAndIcon_Brand_Default.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_OrangeTheme_Light_HighContrast.TextAndIcon_Brand_Default.png new file mode 100644 index 000000000..69886e510 Binary files /dev/null and b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_OrangeTheme_Light_HighContrast.TextAndIcon_Brand_Default.png differ diff --git a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_OrangeTheme_Light_HighContrast.TextAndIcon_Brand_Default_Disabled.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_OrangeTheme_Light_HighContrast.TextAndIcon_Brand_Default_Disabled.png new file mode 100644 index 000000000..9459cc466 Binary files /dev/null and b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_OrangeTheme_Light_HighContrast.TextAndIcon_Brand_Default_Disabled.png differ diff --git a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_OrangeTheme_Light_HighContrast.TextAndIcon_Brand_Default_Disabled_Rounded.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_OrangeTheme_Light_HighContrast.TextAndIcon_Brand_Default_Disabled_Rounded.png new file mode 100644 index 000000000..d633a5029 Binary files /dev/null and b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_OrangeTheme_Light_HighContrast.TextAndIcon_Brand_Default_Disabled_Rounded.png differ diff --git a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_OrangeTheme_Light_HighContrast.TextAndIcon_Brand_Default_Rounded.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_OrangeTheme_Light_HighContrast.TextAndIcon_Brand_Default_Rounded.png new file mode 100644 index 000000000..235f2dba1 Binary files /dev/null and b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_OrangeTheme_Light_HighContrast.TextAndIcon_Brand_Default_Rounded.png differ diff --git a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_OrangeTheme_Light_HighContrast.TextAndIcon_Default_Default_Disabled_Rounded.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_OrangeTheme_Light_HighContrast.TextAndIcon_Default_Default_Disabled_Rounded.png new file mode 100644 index 000000000..6ef6871eb Binary files /dev/null and b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_OrangeTheme_Light_HighContrast.TextAndIcon_Default_Default_Disabled_Rounded.png differ diff --git a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_OrangeTheme_Light_HighContrast.TextAndIcon_Default_Default_Rounded.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_OrangeTheme_Light_HighContrast.TextAndIcon_Default_Default_Rounded.png new file mode 100644 index 000000000..382ee0fa0 Binary files /dev/null and b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_OrangeTheme_Light_HighContrast.TextAndIcon_Default_Default_Rounded.png differ diff --git a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_OrangeTheme_Light_HighContrast.TextAndIcon_Minimal_Default.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_OrangeTheme_Light_HighContrast.TextAndIcon_Minimal_Default.png index f30021f5d..4017c817f 100644 Binary files a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_OrangeTheme_Light_HighContrast.TextAndIcon_Minimal_Default.png and b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_OrangeTheme_Light_HighContrast.TextAndIcon_Minimal_Default.png differ diff --git a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_OrangeTheme_Light_HighContrast.TextAndIcon_Minimal_Default_Disabled.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_OrangeTheme_Light_HighContrast.TextAndIcon_Minimal_Default_Disabled.png index 8448be1cb..3eac6ac86 100644 Binary files a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_OrangeTheme_Light_HighContrast.TextAndIcon_Minimal_Default_Disabled.png and b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_OrangeTheme_Light_HighContrast.TextAndIcon_Minimal_Default_Disabled.png differ diff --git a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_OrangeTheme_Light_HighContrast.TextAndIcon_Minimal_Default_Disabled_Rounded.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_OrangeTheme_Light_HighContrast.TextAndIcon_Minimal_Default_Disabled_Rounded.png new file mode 100644 index 000000000..3eac6ac86 Binary files /dev/null and b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_OrangeTheme_Light_HighContrast.TextAndIcon_Minimal_Default_Disabled_Rounded.png differ diff --git a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_OrangeTheme_Light_HighContrast.TextAndIcon_Minimal_Default_Rounded.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_OrangeTheme_Light_HighContrast.TextAndIcon_Minimal_Default_Rounded.png new file mode 100644 index 000000000..4017c817f Binary files /dev/null and b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_OrangeTheme_Light_HighContrast.TextAndIcon_Minimal_Default_Rounded.png differ diff --git a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_OrangeTheme_Light_HighContrast.TextAndIcon_Negative_Default_Disabled_Rounded.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_OrangeTheme_Light_HighContrast.TextAndIcon_Negative_Default_Disabled_Rounded.png new file mode 100644 index 000000000..d633a5029 Binary files /dev/null and b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_OrangeTheme_Light_HighContrast.TextAndIcon_Negative_Default_Disabled_Rounded.png differ diff --git a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_OrangeTheme_Light_HighContrast.TextAndIcon_Negative_Default_Rounded.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_OrangeTheme_Light_HighContrast.TextAndIcon_Negative_Default_Rounded.png new file mode 100644 index 000000000..d4d877fa8 Binary files /dev/null and b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_OrangeTheme_Light_HighContrast.TextAndIcon_Negative_Default_Rounded.png differ diff --git a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_OrangeTheme_Light_HighContrast.TextAndIcon_Strong_Default_Disabled_Rounded.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_OrangeTheme_Light_HighContrast.TextAndIcon_Strong_Default_Disabled_Rounded.png new file mode 100644 index 000000000..d633a5029 Binary files /dev/null and b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_OrangeTheme_Light_HighContrast.TextAndIcon_Strong_Default_Disabled_Rounded.png differ diff --git a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_OrangeTheme_Light_HighContrast.TextAndIcon_Strong_Default_Rounded.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_OrangeTheme_Light_HighContrast.TextAndIcon_Strong_Default_Rounded.png new file mode 100644 index 000000000..91316f86f Binary files /dev/null and b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_OrangeTheme_Light_HighContrast.TextAndIcon_Strong_Default_Rounded.png differ diff --git a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_OrangeTheme_Light_HighContrast.Text_Brand_Default.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_OrangeTheme_Light_HighContrast.Text_Brand_Default.png new file mode 100644 index 000000000..175dc16a9 Binary files /dev/null and b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_OrangeTheme_Light_HighContrast.Text_Brand_Default.png differ diff --git a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_OrangeTheme_Light_HighContrast.Text_Brand_Default_Disabled.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_OrangeTheme_Light_HighContrast.Text_Brand_Default_Disabled.png new file mode 100644 index 000000000..df5cf8731 Binary files /dev/null and b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_OrangeTheme_Light_HighContrast.Text_Brand_Default_Disabled.png differ diff --git a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_OrangeTheme_Light_HighContrast.Text_Brand_Default_Disabled_Rounded.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_OrangeTheme_Light_HighContrast.Text_Brand_Default_Disabled_Rounded.png new file mode 100644 index 000000000..32c803166 Binary files /dev/null and b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_OrangeTheme_Light_HighContrast.Text_Brand_Default_Disabled_Rounded.png differ diff --git a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_OrangeTheme_Light_HighContrast.Text_Brand_Default_Rounded.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_OrangeTheme_Light_HighContrast.Text_Brand_Default_Rounded.png new file mode 100644 index 000000000..fb55cd87e Binary files /dev/null and b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_OrangeTheme_Light_HighContrast.Text_Brand_Default_Rounded.png differ diff --git a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_OrangeTheme_Light_HighContrast.Text_Default_Default_Disabled_Rounded.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_OrangeTheme_Light_HighContrast.Text_Default_Default_Disabled_Rounded.png new file mode 100644 index 000000000..c7fac08eb Binary files /dev/null and b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_OrangeTheme_Light_HighContrast.Text_Default_Default_Disabled_Rounded.png differ diff --git a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_OrangeTheme_Light_HighContrast.Text_Default_Default_Rounded.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_OrangeTheme_Light_HighContrast.Text_Default_Default_Rounded.png new file mode 100644 index 000000000..c1c852670 Binary files /dev/null and b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_OrangeTheme_Light_HighContrast.Text_Default_Default_Rounded.png differ diff --git a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_OrangeTheme_Light_HighContrast.Text_Minimal_Default.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_OrangeTheme_Light_HighContrast.Text_Minimal_Default.png index 6a498a247..946c0104b 100644 Binary files a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_OrangeTheme_Light_HighContrast.Text_Minimal_Default.png and b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_OrangeTheme_Light_HighContrast.Text_Minimal_Default.png differ diff --git a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_OrangeTheme_Light_HighContrast.Text_Minimal_Default_Disabled.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_OrangeTheme_Light_HighContrast.Text_Minimal_Default_Disabled.png index df49b2b75..ba16e2828 100644 Binary files a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_OrangeTheme_Light_HighContrast.Text_Minimal_Default_Disabled.png and b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_OrangeTheme_Light_HighContrast.Text_Minimal_Default_Disabled.png differ diff --git a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_OrangeTheme_Light_HighContrast.Text_Minimal_Default_Disabled_Rounded.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_OrangeTheme_Light_HighContrast.Text_Minimal_Default_Disabled_Rounded.png new file mode 100644 index 000000000..ba16e2828 Binary files /dev/null and b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_OrangeTheme_Light_HighContrast.Text_Minimal_Default_Disabled_Rounded.png differ diff --git a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_OrangeTheme_Light_HighContrast.Text_Minimal_Default_Rounded.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_OrangeTheme_Light_HighContrast.Text_Minimal_Default_Rounded.png new file mode 100644 index 000000000..946c0104b Binary files /dev/null and b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_OrangeTheme_Light_HighContrast.Text_Minimal_Default_Rounded.png differ diff --git a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_OrangeTheme_Light_HighContrast.Text_Negative_Default_Disabled_Rounded.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_OrangeTheme_Light_HighContrast.Text_Negative_Default_Disabled_Rounded.png new file mode 100644 index 000000000..32c803166 Binary files /dev/null and b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_OrangeTheme_Light_HighContrast.Text_Negative_Default_Disabled_Rounded.png differ diff --git a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_OrangeTheme_Light_HighContrast.Text_Negative_Default_Rounded.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_OrangeTheme_Light_HighContrast.Text_Negative_Default_Rounded.png new file mode 100644 index 000000000..327281f2e Binary files /dev/null and b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_OrangeTheme_Light_HighContrast.Text_Negative_Default_Rounded.png differ diff --git a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_OrangeTheme_Light_HighContrast.Text_Strong_Default_Disabled_Rounded.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_OrangeTheme_Light_HighContrast.Text_Strong_Default_Disabled_Rounded.png new file mode 100644 index 000000000..32c803166 Binary files /dev/null and b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_OrangeTheme_Light_HighContrast.Text_Strong_Default_Disabled_Rounded.png differ diff --git a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_OrangeTheme_Light_HighContrast.Text_Strong_Default_Rounded.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_OrangeTheme_Light_HighContrast.Text_Strong_Default_Rounded.png new file mode 100644 index 000000000..664321630 Binary files /dev/null and b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_OrangeTheme_Light_HighContrast.Text_Strong_Default_Rounded.png differ diff --git a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_SoshTheme_Dark_.ColoredSurface_Icon_Default_Default_Disabled_Rounded.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_SoshTheme_Dark_.ColoredSurface_Icon_Default_Default_Disabled_Rounded.png new file mode 100644 index 000000000..13a7d400d Binary files /dev/null and b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_SoshTheme_Dark_.ColoredSurface_Icon_Default_Default_Disabled_Rounded.png differ diff --git a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_SoshTheme_Dark_.ColoredSurface_Icon_Default_Default_Rounded.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_SoshTheme_Dark_.ColoredSurface_Icon_Default_Default_Rounded.png new file mode 100644 index 000000000..fe6ed1622 Binary files /dev/null and b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_SoshTheme_Dark_.ColoredSurface_Icon_Default_Default_Rounded.png differ diff --git a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_SoshTheme_Dark_.ColoredSurface_Icon_Minimal_Default_Disabled_Rounded.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_SoshTheme_Dark_.ColoredSurface_Icon_Minimal_Default_Disabled_Rounded.png new file mode 100644 index 000000000..30f197a5f Binary files /dev/null and b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_SoshTheme_Dark_.ColoredSurface_Icon_Minimal_Default_Disabled_Rounded.png differ diff --git a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_SoshTheme_Dark_.ColoredSurface_Icon_Minimal_Default_Rounded.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_SoshTheme_Dark_.ColoredSurface_Icon_Minimal_Default_Rounded.png new file mode 100644 index 000000000..209eb2246 Binary files /dev/null and b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_SoshTheme_Dark_.ColoredSurface_Icon_Minimal_Default_Rounded.png differ diff --git a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_SoshTheme_Dark_.ColoredSurface_Icon_Strong_Default_Disabled_Rounded.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_SoshTheme_Dark_.ColoredSurface_Icon_Strong_Default_Disabled_Rounded.png new file mode 100644 index 000000000..835c6705b Binary files /dev/null and b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_SoshTheme_Dark_.ColoredSurface_Icon_Strong_Default_Disabled_Rounded.png differ diff --git a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_SoshTheme_Dark_.ColoredSurface_Icon_Strong_Default_Rounded.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_SoshTheme_Dark_.ColoredSurface_Icon_Strong_Default_Rounded.png new file mode 100644 index 000000000..3e0796162 Binary files /dev/null and b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_SoshTheme_Dark_.ColoredSurface_Icon_Strong_Default_Rounded.png differ diff --git a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_SoshTheme_Dark_.ColoredSurface_TextAndIcon_Default_Default_Disabled_Rounded.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_SoshTheme_Dark_.ColoredSurface_TextAndIcon_Default_Default_Disabled_Rounded.png new file mode 100644 index 000000000..f1c0267f0 Binary files /dev/null and b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_SoshTheme_Dark_.ColoredSurface_TextAndIcon_Default_Default_Disabled_Rounded.png differ diff --git a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_SoshTheme_Dark_.ColoredSurface_TextAndIcon_Default_Default_Rounded.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_SoshTheme_Dark_.ColoredSurface_TextAndIcon_Default_Default_Rounded.png new file mode 100644 index 000000000..6733dced8 Binary files /dev/null and b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_SoshTheme_Dark_.ColoredSurface_TextAndIcon_Default_Default_Rounded.png differ diff --git a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_SoshTheme_Dark_.ColoredSurface_TextAndIcon_Minimal_Default_Disabled_Rounded.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_SoshTheme_Dark_.ColoredSurface_TextAndIcon_Minimal_Default_Disabled_Rounded.png new file mode 100644 index 000000000..af02b07e2 Binary files /dev/null and b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_SoshTheme_Dark_.ColoredSurface_TextAndIcon_Minimal_Default_Disabled_Rounded.png differ diff --git a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_SoshTheme_Dark_.ColoredSurface_TextAndIcon_Minimal_Default_Rounded.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_SoshTheme_Dark_.ColoredSurface_TextAndIcon_Minimal_Default_Rounded.png new file mode 100644 index 000000000..bd19de67b Binary files /dev/null and b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_SoshTheme_Dark_.ColoredSurface_TextAndIcon_Minimal_Default_Rounded.png differ diff --git a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_SoshTheme_Dark_.ColoredSurface_TextAndIcon_Strong_Default_Disabled_Rounded.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_SoshTheme_Dark_.ColoredSurface_TextAndIcon_Strong_Default_Disabled_Rounded.png new file mode 100644 index 000000000..405b1d641 Binary files /dev/null and b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_SoshTheme_Dark_.ColoredSurface_TextAndIcon_Strong_Default_Disabled_Rounded.png differ diff --git a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_SoshTheme_Dark_.ColoredSurface_TextAndIcon_Strong_Default_Rounded.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_SoshTheme_Dark_.ColoredSurface_TextAndIcon_Strong_Default_Rounded.png new file mode 100644 index 000000000..a645eec14 Binary files /dev/null and b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_SoshTheme_Dark_.ColoredSurface_TextAndIcon_Strong_Default_Rounded.png differ diff --git a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_SoshTheme_Dark_.ColoredSurface_Text_Default_Default_Disabled_Rounded.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_SoshTheme_Dark_.ColoredSurface_Text_Default_Default_Disabled_Rounded.png new file mode 100644 index 000000000..4842ff13f Binary files /dev/null and b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_SoshTheme_Dark_.ColoredSurface_Text_Default_Default_Disabled_Rounded.png differ diff --git a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_SoshTheme_Dark_.ColoredSurface_Text_Default_Default_Rounded.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_SoshTheme_Dark_.ColoredSurface_Text_Default_Default_Rounded.png new file mode 100644 index 000000000..e27a329d4 Binary files /dev/null and b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_SoshTheme_Dark_.ColoredSurface_Text_Default_Default_Rounded.png differ diff --git a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_SoshTheme_Dark_.ColoredSurface_Text_Minimal_Default_Disabled_Rounded.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_SoshTheme_Dark_.ColoredSurface_Text_Minimal_Default_Disabled_Rounded.png new file mode 100644 index 000000000..102a23e8d Binary files /dev/null and b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_SoshTheme_Dark_.ColoredSurface_Text_Minimal_Default_Disabled_Rounded.png differ diff --git a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_SoshTheme_Dark_.ColoredSurface_Text_Minimal_Default_Rounded.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_SoshTheme_Dark_.ColoredSurface_Text_Minimal_Default_Rounded.png new file mode 100644 index 000000000..2f9b63b76 Binary files /dev/null and b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_SoshTheme_Dark_.ColoredSurface_Text_Minimal_Default_Rounded.png differ diff --git a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_SoshTheme_Dark_.ColoredSurface_Text_Strong_Default_Disabled_Rounded.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_SoshTheme_Dark_.ColoredSurface_Text_Strong_Default_Disabled_Rounded.png new file mode 100644 index 000000000..be580cedf Binary files /dev/null and b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_SoshTheme_Dark_.ColoredSurface_Text_Strong_Default_Disabled_Rounded.png differ diff --git a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_SoshTheme_Dark_.ColoredSurface_Text_Strong_Default_Rounded.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_SoshTheme_Dark_.ColoredSurface_Text_Strong_Default_Rounded.png new file mode 100644 index 000000000..9f670ab53 Binary files /dev/null and b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_SoshTheme_Dark_.ColoredSurface_Text_Strong_Default_Rounded.png differ diff --git a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_SoshTheme_Dark_.Icon_Brand_Default.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_SoshTheme_Dark_.Icon_Brand_Default.png new file mode 100644 index 000000000..c6c616997 Binary files /dev/null and b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_SoshTheme_Dark_.Icon_Brand_Default.png differ diff --git a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_SoshTheme_Dark_.Icon_Brand_Default_Disabled.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_SoshTheme_Dark_.Icon_Brand_Default_Disabled.png new file mode 100644 index 000000000..c01d79e98 Binary files /dev/null and b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_SoshTheme_Dark_.Icon_Brand_Default_Disabled.png differ diff --git a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_SoshTheme_Dark_.Icon_Brand_Default_Disabled_Rounded.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_SoshTheme_Dark_.Icon_Brand_Default_Disabled_Rounded.png new file mode 100644 index 000000000..c01d79e98 Binary files /dev/null and b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_SoshTheme_Dark_.Icon_Brand_Default_Disabled_Rounded.png differ diff --git a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_SoshTheme_Dark_.Icon_Brand_Default_Rounded.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_SoshTheme_Dark_.Icon_Brand_Default_Rounded.png new file mode 100644 index 000000000..c6c616997 Binary files /dev/null and b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_SoshTheme_Dark_.Icon_Brand_Default_Rounded.png differ diff --git a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_SoshTheme_Dark_.Icon_Default_Default_Disabled_Rounded.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_SoshTheme_Dark_.Icon_Default_Default_Disabled_Rounded.png new file mode 100644 index 000000000..afd9ee5be Binary files /dev/null and b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_SoshTheme_Dark_.Icon_Default_Default_Disabled_Rounded.png differ diff --git a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_SoshTheme_Dark_.Icon_Default_Default_Rounded.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_SoshTheme_Dark_.Icon_Default_Default_Rounded.png new file mode 100644 index 000000000..cb5a7de76 Binary files /dev/null and b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_SoshTheme_Dark_.Icon_Default_Default_Rounded.png differ diff --git a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_SoshTheme_Dark_.Icon_Minimal_Default.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_SoshTheme_Dark_.Icon_Minimal_Default.png index cb5a7de76..99bae8004 100644 Binary files a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_SoshTheme_Dark_.Icon_Minimal_Default.png and b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_SoshTheme_Dark_.Icon_Minimal_Default.png differ diff --git a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_SoshTheme_Dark_.Icon_Minimal_Default_Disabled.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_SoshTheme_Dark_.Icon_Minimal_Default_Disabled.png index afd9ee5be..fb2bc06de 100644 Binary files a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_SoshTheme_Dark_.Icon_Minimal_Default_Disabled.png and b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_SoshTheme_Dark_.Icon_Minimal_Default_Disabled.png differ diff --git a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_SoshTheme_Dark_.Icon_Minimal_Default_Disabled_Rounded.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_SoshTheme_Dark_.Icon_Minimal_Default_Disabled_Rounded.png new file mode 100644 index 000000000..fb2bc06de Binary files /dev/null and b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_SoshTheme_Dark_.Icon_Minimal_Default_Disabled_Rounded.png differ diff --git a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_SoshTheme_Dark_.Icon_Minimal_Default_Rounded.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_SoshTheme_Dark_.Icon_Minimal_Default_Rounded.png new file mode 100644 index 000000000..99bae8004 Binary files /dev/null and b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_SoshTheme_Dark_.Icon_Minimal_Default_Rounded.png differ diff --git a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_SoshTheme_Dark_.Icon_Negative_Default.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_SoshTheme_Dark_.Icon_Negative_Default.png index 71e783274..1f169ce14 100644 Binary files a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_SoshTheme_Dark_.Icon_Negative_Default.png and b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_SoshTheme_Dark_.Icon_Negative_Default.png differ diff --git a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_SoshTheme_Dark_.Icon_Negative_Default_Disabled.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_SoshTheme_Dark_.Icon_Negative_Default_Disabled.png index d37dc0a91..c01d79e98 100644 Binary files a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_SoshTheme_Dark_.Icon_Negative_Default_Disabled.png and b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_SoshTheme_Dark_.Icon_Negative_Default_Disabled.png differ diff --git a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_SoshTheme_Dark_.Icon_Negative_Default_Disabled_Rounded.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_SoshTheme_Dark_.Icon_Negative_Default_Disabled_Rounded.png new file mode 100644 index 000000000..c01d79e98 Binary files /dev/null and b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_SoshTheme_Dark_.Icon_Negative_Default_Disabled_Rounded.png differ diff --git a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_SoshTheme_Dark_.Icon_Negative_Default_Rounded.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_SoshTheme_Dark_.Icon_Negative_Default_Rounded.png new file mode 100644 index 000000000..1f169ce14 Binary files /dev/null and b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_SoshTheme_Dark_.Icon_Negative_Default_Rounded.png differ diff --git a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_SoshTheme_Dark_.Icon_Strong_Default.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_SoshTheme_Dark_.Icon_Strong_Default.png index e2aeb722d..c6c616997 100644 Binary files a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_SoshTheme_Dark_.Icon_Strong_Default.png and b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_SoshTheme_Dark_.Icon_Strong_Default.png differ diff --git a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_SoshTheme_Dark_.Icon_Strong_Default_Disabled.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_SoshTheme_Dark_.Icon_Strong_Default_Disabled.png index d37dc0a91..c01d79e98 100644 Binary files a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_SoshTheme_Dark_.Icon_Strong_Default_Disabled.png and b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_SoshTheme_Dark_.Icon_Strong_Default_Disabled.png differ diff --git a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_SoshTheme_Dark_.Icon_Strong_Default_Disabled_Rounded.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_SoshTheme_Dark_.Icon_Strong_Default_Disabled_Rounded.png new file mode 100644 index 000000000..c01d79e98 Binary files /dev/null and b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_SoshTheme_Dark_.Icon_Strong_Default_Disabled_Rounded.png differ diff --git a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_SoshTheme_Dark_.Icon_Strong_Default_Rounded.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_SoshTheme_Dark_.Icon_Strong_Default_Rounded.png new file mode 100644 index 000000000..c6c616997 Binary files /dev/null and b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_SoshTheme_Dark_.Icon_Strong_Default_Rounded.png differ diff --git a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_SoshTheme_Dark_.TextAndIcon_Brand_Default.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_SoshTheme_Dark_.TextAndIcon_Brand_Default.png new file mode 100644 index 000000000..631b78b18 Binary files /dev/null and b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_SoshTheme_Dark_.TextAndIcon_Brand_Default.png differ diff --git a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_SoshTheme_Dark_.TextAndIcon_Brand_Default_Disabled.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_SoshTheme_Dark_.TextAndIcon_Brand_Default_Disabled.png new file mode 100644 index 000000000..22fb39092 Binary files /dev/null and b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_SoshTheme_Dark_.TextAndIcon_Brand_Default_Disabled.png differ diff --git a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_SoshTheme_Dark_.TextAndIcon_Brand_Default_Disabled_Rounded.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_SoshTheme_Dark_.TextAndIcon_Brand_Default_Disabled_Rounded.png new file mode 100644 index 000000000..22fb39092 Binary files /dev/null and b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_SoshTheme_Dark_.TextAndIcon_Brand_Default_Disabled_Rounded.png differ diff --git a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_SoshTheme_Dark_.TextAndIcon_Brand_Default_Rounded.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_SoshTheme_Dark_.TextAndIcon_Brand_Default_Rounded.png new file mode 100644 index 000000000..631b78b18 Binary files /dev/null and b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_SoshTheme_Dark_.TextAndIcon_Brand_Default_Rounded.png differ diff --git a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_SoshTheme_Dark_.TextAndIcon_Default_Default_Disabled_Rounded.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_SoshTheme_Dark_.TextAndIcon_Default_Default_Disabled_Rounded.png new file mode 100644 index 000000000..41c66cd56 Binary files /dev/null and b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_SoshTheme_Dark_.TextAndIcon_Default_Default_Disabled_Rounded.png differ diff --git a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_SoshTheme_Dark_.TextAndIcon_Default_Default_Rounded.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_SoshTheme_Dark_.TextAndIcon_Default_Default_Rounded.png new file mode 100644 index 000000000..52eb1609a Binary files /dev/null and b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_SoshTheme_Dark_.TextAndIcon_Default_Default_Rounded.png differ diff --git a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_SoshTheme_Dark_.TextAndIcon_Minimal_Default.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_SoshTheme_Dark_.TextAndIcon_Minimal_Default.png index 52eb1609a..9239e9ee7 100644 Binary files a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_SoshTheme_Dark_.TextAndIcon_Minimal_Default.png and b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_SoshTheme_Dark_.TextAndIcon_Minimal_Default.png differ diff --git a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_SoshTheme_Dark_.TextAndIcon_Minimal_Default_Disabled.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_SoshTheme_Dark_.TextAndIcon_Minimal_Default_Disabled.png index 41c66cd56..2ce637963 100644 Binary files a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_SoshTheme_Dark_.TextAndIcon_Minimal_Default_Disabled.png and b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_SoshTheme_Dark_.TextAndIcon_Minimal_Default_Disabled.png differ diff --git a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_SoshTheme_Dark_.TextAndIcon_Minimal_Default_Disabled_Rounded.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_SoshTheme_Dark_.TextAndIcon_Minimal_Default_Disabled_Rounded.png new file mode 100644 index 000000000..2ce637963 Binary files /dev/null and b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_SoshTheme_Dark_.TextAndIcon_Minimal_Default_Disabled_Rounded.png differ diff --git a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_SoshTheme_Dark_.TextAndIcon_Minimal_Default_Rounded.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_SoshTheme_Dark_.TextAndIcon_Minimal_Default_Rounded.png new file mode 100644 index 000000000..9239e9ee7 Binary files /dev/null and b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_SoshTheme_Dark_.TextAndIcon_Minimal_Default_Rounded.png differ diff --git a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_SoshTheme_Dark_.TextAndIcon_Negative_Default.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_SoshTheme_Dark_.TextAndIcon_Negative_Default.png index 656ca1d30..0d647464e 100644 Binary files a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_SoshTheme_Dark_.TextAndIcon_Negative_Default.png and b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_SoshTheme_Dark_.TextAndIcon_Negative_Default.png differ diff --git a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_SoshTheme_Dark_.TextAndIcon_Negative_Default_Disabled.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_SoshTheme_Dark_.TextAndIcon_Negative_Default_Disabled.png index fdfb3c205..22fb39092 100644 Binary files a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_SoshTheme_Dark_.TextAndIcon_Negative_Default_Disabled.png and b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_SoshTheme_Dark_.TextAndIcon_Negative_Default_Disabled.png differ diff --git a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_SoshTheme_Dark_.TextAndIcon_Negative_Default_Disabled_Rounded.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_SoshTheme_Dark_.TextAndIcon_Negative_Default_Disabled_Rounded.png new file mode 100644 index 000000000..22fb39092 Binary files /dev/null and b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_SoshTheme_Dark_.TextAndIcon_Negative_Default_Disabled_Rounded.png differ diff --git a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_SoshTheme_Dark_.TextAndIcon_Negative_Default_Rounded.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_SoshTheme_Dark_.TextAndIcon_Negative_Default_Rounded.png new file mode 100644 index 000000000..0d647464e Binary files /dev/null and b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_SoshTheme_Dark_.TextAndIcon_Negative_Default_Rounded.png differ diff --git a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_SoshTheme_Dark_.TextAndIcon_Strong_Default.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_SoshTheme_Dark_.TextAndIcon_Strong_Default.png index 6f26accc1..631b78b18 100644 Binary files a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_SoshTheme_Dark_.TextAndIcon_Strong_Default.png and b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_SoshTheme_Dark_.TextAndIcon_Strong_Default.png differ diff --git a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_SoshTheme_Dark_.TextAndIcon_Strong_Default_Disabled.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_SoshTheme_Dark_.TextAndIcon_Strong_Default_Disabled.png index fdfb3c205..22fb39092 100644 Binary files a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_SoshTheme_Dark_.TextAndIcon_Strong_Default_Disabled.png and b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_SoshTheme_Dark_.TextAndIcon_Strong_Default_Disabled.png differ diff --git a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_SoshTheme_Dark_.TextAndIcon_Strong_Default_Disabled_Rounded.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_SoshTheme_Dark_.TextAndIcon_Strong_Default_Disabled_Rounded.png new file mode 100644 index 000000000..22fb39092 Binary files /dev/null and b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_SoshTheme_Dark_.TextAndIcon_Strong_Default_Disabled_Rounded.png differ diff --git a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_SoshTheme_Dark_.TextAndIcon_Strong_Default_Rounded.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_SoshTheme_Dark_.TextAndIcon_Strong_Default_Rounded.png new file mode 100644 index 000000000..631b78b18 Binary files /dev/null and b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_SoshTheme_Dark_.TextAndIcon_Strong_Default_Rounded.png differ diff --git a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_SoshTheme_Dark_.Text_Brand_Default.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_SoshTheme_Dark_.Text_Brand_Default.png new file mode 100644 index 000000000..dacb3df61 Binary files /dev/null and b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_SoshTheme_Dark_.Text_Brand_Default.png differ diff --git a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_SoshTheme_Dark_.Text_Brand_Default_Disabled.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_SoshTheme_Dark_.Text_Brand_Default_Disabled.png new file mode 100644 index 000000000..0590bbc01 Binary files /dev/null and b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_SoshTheme_Dark_.Text_Brand_Default_Disabled.png differ diff --git a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_SoshTheme_Dark_.Text_Brand_Default_Disabled_Rounded.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_SoshTheme_Dark_.Text_Brand_Default_Disabled_Rounded.png new file mode 100644 index 000000000..0590bbc01 Binary files /dev/null and b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_SoshTheme_Dark_.Text_Brand_Default_Disabled_Rounded.png differ diff --git a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_SoshTheme_Dark_.Text_Brand_Default_Rounded.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_SoshTheme_Dark_.Text_Brand_Default_Rounded.png new file mode 100644 index 000000000..dacb3df61 Binary files /dev/null and b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_SoshTheme_Dark_.Text_Brand_Default_Rounded.png differ diff --git a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_SoshTheme_Dark_.Text_Default_Default_Disabled_Rounded.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_SoshTheme_Dark_.Text_Default_Default_Disabled_Rounded.png new file mode 100644 index 000000000..0f195da03 Binary files /dev/null and b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_SoshTheme_Dark_.Text_Default_Default_Disabled_Rounded.png differ diff --git a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_SoshTheme_Dark_.Text_Default_Default_Rounded.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_SoshTheme_Dark_.Text_Default_Default_Rounded.png new file mode 100644 index 000000000..0ca531485 Binary files /dev/null and b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_SoshTheme_Dark_.Text_Default_Default_Rounded.png differ diff --git a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_SoshTheme_Dark_.Text_Minimal_Default.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_SoshTheme_Dark_.Text_Minimal_Default.png index 0ca531485..fb75d7bfd 100644 Binary files a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_SoshTheme_Dark_.Text_Minimal_Default.png and b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_SoshTheme_Dark_.Text_Minimal_Default.png differ diff --git a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_SoshTheme_Dark_.Text_Minimal_Default_Disabled.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_SoshTheme_Dark_.Text_Minimal_Default_Disabled.png index 0f195da03..5b82c97a2 100644 Binary files a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_SoshTheme_Dark_.Text_Minimal_Default_Disabled.png and b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_SoshTheme_Dark_.Text_Minimal_Default_Disabled.png differ diff --git a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_SoshTheme_Dark_.Text_Minimal_Default_Disabled_Rounded.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_SoshTheme_Dark_.Text_Minimal_Default_Disabled_Rounded.png new file mode 100644 index 000000000..5b82c97a2 Binary files /dev/null and b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_SoshTheme_Dark_.Text_Minimal_Default_Disabled_Rounded.png differ diff --git a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_SoshTheme_Dark_.Text_Minimal_Default_Rounded.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_SoshTheme_Dark_.Text_Minimal_Default_Rounded.png new file mode 100644 index 000000000..fb75d7bfd Binary files /dev/null and b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_SoshTheme_Dark_.Text_Minimal_Default_Rounded.png differ diff --git a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_SoshTheme_Dark_.Text_Negative_Default.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_SoshTheme_Dark_.Text_Negative_Default.png index c16f2582f..63445276e 100644 Binary files a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_SoshTheme_Dark_.Text_Negative_Default.png and b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_SoshTheme_Dark_.Text_Negative_Default.png differ diff --git a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_SoshTheme_Dark_.Text_Negative_Default_Disabled.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_SoshTheme_Dark_.Text_Negative_Default_Disabled.png index 78f01d09b..0590bbc01 100644 Binary files a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_SoshTheme_Dark_.Text_Negative_Default_Disabled.png and b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_SoshTheme_Dark_.Text_Negative_Default_Disabled.png differ diff --git a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_SoshTheme_Dark_.Text_Negative_Default_Disabled_Rounded.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_SoshTheme_Dark_.Text_Negative_Default_Disabled_Rounded.png new file mode 100644 index 000000000..0590bbc01 Binary files /dev/null and b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_SoshTheme_Dark_.Text_Negative_Default_Disabled_Rounded.png differ diff --git a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_SoshTheme_Dark_.Text_Negative_Default_Rounded.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_SoshTheme_Dark_.Text_Negative_Default_Rounded.png new file mode 100644 index 000000000..63445276e Binary files /dev/null and b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_SoshTheme_Dark_.Text_Negative_Default_Rounded.png differ diff --git a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_SoshTheme_Dark_.Text_Strong_Default.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_SoshTheme_Dark_.Text_Strong_Default.png index 03bd3377e..dacb3df61 100644 Binary files a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_SoshTheme_Dark_.Text_Strong_Default.png and b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_SoshTheme_Dark_.Text_Strong_Default.png differ diff --git a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_SoshTheme_Dark_.Text_Strong_Default_Disabled.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_SoshTheme_Dark_.Text_Strong_Default_Disabled.png index 78f01d09b..0590bbc01 100644 Binary files a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_SoshTheme_Dark_.Text_Strong_Default_Disabled.png and b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_SoshTheme_Dark_.Text_Strong_Default_Disabled.png differ diff --git a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_SoshTheme_Dark_.Text_Strong_Default_Disabled_Rounded.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_SoshTheme_Dark_.Text_Strong_Default_Disabled_Rounded.png new file mode 100644 index 000000000..0590bbc01 Binary files /dev/null and b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_SoshTheme_Dark_.Text_Strong_Default_Disabled_Rounded.png differ diff --git a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_SoshTheme_Dark_.Text_Strong_Default_Rounded.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_SoshTheme_Dark_.Text_Strong_Default_Rounded.png new file mode 100644 index 000000000..dacb3df61 Binary files /dev/null and b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_SoshTheme_Dark_.Text_Strong_Default_Rounded.png differ diff --git a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_SoshTheme_Dark_HighContrast.ColoredSurface_Icon_Default_Default_Disabled_Rounded.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_SoshTheme_Dark_HighContrast.ColoredSurface_Icon_Default_Default_Disabled_Rounded.png new file mode 100644 index 000000000..13a7d400d Binary files /dev/null and b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_SoshTheme_Dark_HighContrast.ColoredSurface_Icon_Default_Default_Disabled_Rounded.png differ diff --git a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_SoshTheme_Dark_HighContrast.ColoredSurface_Icon_Default_Default_Rounded.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_SoshTheme_Dark_HighContrast.ColoredSurface_Icon_Default_Default_Rounded.png new file mode 100644 index 000000000..fe6ed1622 Binary files /dev/null and b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_SoshTheme_Dark_HighContrast.ColoredSurface_Icon_Default_Default_Rounded.png differ diff --git a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_SoshTheme_Dark_HighContrast.ColoredSurface_Icon_Minimal_Default_Disabled_Rounded.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_SoshTheme_Dark_HighContrast.ColoredSurface_Icon_Minimal_Default_Disabled_Rounded.png new file mode 100644 index 000000000..30f197a5f Binary files /dev/null and b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_SoshTheme_Dark_HighContrast.ColoredSurface_Icon_Minimal_Default_Disabled_Rounded.png differ diff --git a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_SoshTheme_Dark_HighContrast.ColoredSurface_Icon_Minimal_Default_Rounded.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_SoshTheme_Dark_HighContrast.ColoredSurface_Icon_Minimal_Default_Rounded.png new file mode 100644 index 000000000..209eb2246 Binary files /dev/null and b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_SoshTheme_Dark_HighContrast.ColoredSurface_Icon_Minimal_Default_Rounded.png differ diff --git a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_SoshTheme_Dark_HighContrast.ColoredSurface_Icon_Strong_Default_Disabled_Rounded.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_SoshTheme_Dark_HighContrast.ColoredSurface_Icon_Strong_Default_Disabled_Rounded.png new file mode 100644 index 000000000..835c6705b Binary files /dev/null and b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_SoshTheme_Dark_HighContrast.ColoredSurface_Icon_Strong_Default_Disabled_Rounded.png differ diff --git a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_SoshTheme_Dark_HighContrast.ColoredSurface_Icon_Strong_Default_Rounded.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_SoshTheme_Dark_HighContrast.ColoredSurface_Icon_Strong_Default_Rounded.png new file mode 100644 index 000000000..3e0796162 Binary files /dev/null and b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_SoshTheme_Dark_HighContrast.ColoredSurface_Icon_Strong_Default_Rounded.png differ diff --git a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_SoshTheme_Dark_HighContrast.ColoredSurface_TextAndIcon_Default_Default_Disabled_Rounded.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_SoshTheme_Dark_HighContrast.ColoredSurface_TextAndIcon_Default_Default_Disabled_Rounded.png new file mode 100644 index 000000000..f1c0267f0 Binary files /dev/null and b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_SoshTheme_Dark_HighContrast.ColoredSurface_TextAndIcon_Default_Default_Disabled_Rounded.png differ diff --git a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_SoshTheme_Dark_HighContrast.ColoredSurface_TextAndIcon_Default_Default_Rounded.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_SoshTheme_Dark_HighContrast.ColoredSurface_TextAndIcon_Default_Default_Rounded.png new file mode 100644 index 000000000..6733dced8 Binary files /dev/null and b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_SoshTheme_Dark_HighContrast.ColoredSurface_TextAndIcon_Default_Default_Rounded.png differ diff --git a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_SoshTheme_Dark_HighContrast.ColoredSurface_TextAndIcon_Minimal_Default_Disabled_Rounded.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_SoshTheme_Dark_HighContrast.ColoredSurface_TextAndIcon_Minimal_Default_Disabled_Rounded.png new file mode 100644 index 000000000..af02b07e2 Binary files /dev/null and b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_SoshTheme_Dark_HighContrast.ColoredSurface_TextAndIcon_Minimal_Default_Disabled_Rounded.png differ diff --git a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_SoshTheme_Dark_HighContrast.ColoredSurface_TextAndIcon_Minimal_Default_Rounded.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_SoshTheme_Dark_HighContrast.ColoredSurface_TextAndIcon_Minimal_Default_Rounded.png new file mode 100644 index 000000000..bd19de67b Binary files /dev/null and b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_SoshTheme_Dark_HighContrast.ColoredSurface_TextAndIcon_Minimal_Default_Rounded.png differ diff --git a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_SoshTheme_Dark_HighContrast.ColoredSurface_TextAndIcon_Strong_Default_Disabled_Rounded.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_SoshTheme_Dark_HighContrast.ColoredSurface_TextAndIcon_Strong_Default_Disabled_Rounded.png new file mode 100644 index 000000000..405b1d641 Binary files /dev/null and b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_SoshTheme_Dark_HighContrast.ColoredSurface_TextAndIcon_Strong_Default_Disabled_Rounded.png differ diff --git a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_SoshTheme_Dark_HighContrast.ColoredSurface_TextAndIcon_Strong_Default_Rounded.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_SoshTheme_Dark_HighContrast.ColoredSurface_TextAndIcon_Strong_Default_Rounded.png new file mode 100644 index 000000000..a645eec14 Binary files /dev/null and b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_SoshTheme_Dark_HighContrast.ColoredSurface_TextAndIcon_Strong_Default_Rounded.png differ diff --git a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_SoshTheme_Dark_HighContrast.ColoredSurface_Text_Default_Default_Disabled_Rounded.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_SoshTheme_Dark_HighContrast.ColoredSurface_Text_Default_Default_Disabled_Rounded.png new file mode 100644 index 000000000..4842ff13f Binary files /dev/null and b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_SoshTheme_Dark_HighContrast.ColoredSurface_Text_Default_Default_Disabled_Rounded.png differ diff --git a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_SoshTheme_Dark_HighContrast.ColoredSurface_Text_Default_Default_Rounded.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_SoshTheme_Dark_HighContrast.ColoredSurface_Text_Default_Default_Rounded.png new file mode 100644 index 000000000..e27a329d4 Binary files /dev/null and b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_SoshTheme_Dark_HighContrast.ColoredSurface_Text_Default_Default_Rounded.png differ diff --git a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_SoshTheme_Dark_HighContrast.ColoredSurface_Text_Minimal_Default_Disabled_Rounded.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_SoshTheme_Dark_HighContrast.ColoredSurface_Text_Minimal_Default_Disabled_Rounded.png new file mode 100644 index 000000000..102a23e8d Binary files /dev/null and b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_SoshTheme_Dark_HighContrast.ColoredSurface_Text_Minimal_Default_Disabled_Rounded.png differ diff --git a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_SoshTheme_Dark_HighContrast.ColoredSurface_Text_Minimal_Default_Rounded.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_SoshTheme_Dark_HighContrast.ColoredSurface_Text_Minimal_Default_Rounded.png new file mode 100644 index 000000000..2f9b63b76 Binary files /dev/null and b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_SoshTheme_Dark_HighContrast.ColoredSurface_Text_Minimal_Default_Rounded.png differ diff --git a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_SoshTheme_Dark_HighContrast.ColoredSurface_Text_Strong_Default_Disabled_Rounded.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_SoshTheme_Dark_HighContrast.ColoredSurface_Text_Strong_Default_Disabled_Rounded.png new file mode 100644 index 000000000..be580cedf Binary files /dev/null and b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_SoshTheme_Dark_HighContrast.ColoredSurface_Text_Strong_Default_Disabled_Rounded.png differ diff --git a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_SoshTheme_Dark_HighContrast.ColoredSurface_Text_Strong_Default_Rounded.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_SoshTheme_Dark_HighContrast.ColoredSurface_Text_Strong_Default_Rounded.png new file mode 100644 index 000000000..9f670ab53 Binary files /dev/null and b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_SoshTheme_Dark_HighContrast.ColoredSurface_Text_Strong_Default_Rounded.png differ diff --git a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_SoshTheme_Dark_HighContrast.Icon_Brand_Default.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_SoshTheme_Dark_HighContrast.Icon_Brand_Default.png new file mode 100644 index 000000000..c6c616997 Binary files /dev/null and b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_SoshTheme_Dark_HighContrast.Icon_Brand_Default.png differ diff --git a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_SoshTheme_Dark_HighContrast.Icon_Brand_Default_Disabled.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_SoshTheme_Dark_HighContrast.Icon_Brand_Default_Disabled.png new file mode 100644 index 000000000..c01d79e98 Binary files /dev/null and b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_SoshTheme_Dark_HighContrast.Icon_Brand_Default_Disabled.png differ diff --git a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_SoshTheme_Dark_HighContrast.Icon_Brand_Default_Disabled_Rounded.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_SoshTheme_Dark_HighContrast.Icon_Brand_Default_Disabled_Rounded.png new file mode 100644 index 000000000..c01d79e98 Binary files /dev/null and b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_SoshTheme_Dark_HighContrast.Icon_Brand_Default_Disabled_Rounded.png differ diff --git a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_SoshTheme_Dark_HighContrast.Icon_Brand_Default_Rounded.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_SoshTheme_Dark_HighContrast.Icon_Brand_Default_Rounded.png new file mode 100644 index 000000000..c6c616997 Binary files /dev/null and b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_SoshTheme_Dark_HighContrast.Icon_Brand_Default_Rounded.png differ diff --git a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_SoshTheme_Dark_HighContrast.Icon_Default_Default_Disabled_Rounded.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_SoshTheme_Dark_HighContrast.Icon_Default_Default_Disabled_Rounded.png new file mode 100644 index 000000000..afd9ee5be Binary files /dev/null and b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_SoshTheme_Dark_HighContrast.Icon_Default_Default_Disabled_Rounded.png differ diff --git a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_SoshTheme_Dark_HighContrast.Icon_Default_Default_Rounded.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_SoshTheme_Dark_HighContrast.Icon_Default_Default_Rounded.png new file mode 100644 index 000000000..cb5a7de76 Binary files /dev/null and b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_SoshTheme_Dark_HighContrast.Icon_Default_Default_Rounded.png differ diff --git a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_SoshTheme_Dark_HighContrast.Icon_Minimal_Default.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_SoshTheme_Dark_HighContrast.Icon_Minimal_Default.png index cb5a7de76..99bae8004 100644 Binary files a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_SoshTheme_Dark_HighContrast.Icon_Minimal_Default.png and b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_SoshTheme_Dark_HighContrast.Icon_Minimal_Default.png differ diff --git a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_SoshTheme_Dark_HighContrast.Icon_Minimal_Default_Disabled.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_SoshTheme_Dark_HighContrast.Icon_Minimal_Default_Disabled.png index afd9ee5be..fb2bc06de 100644 Binary files a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_SoshTheme_Dark_HighContrast.Icon_Minimal_Default_Disabled.png and b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_SoshTheme_Dark_HighContrast.Icon_Minimal_Default_Disabled.png differ diff --git a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_SoshTheme_Dark_HighContrast.Icon_Minimal_Default_Disabled_Rounded.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_SoshTheme_Dark_HighContrast.Icon_Minimal_Default_Disabled_Rounded.png new file mode 100644 index 000000000..fb2bc06de Binary files /dev/null and b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_SoshTheme_Dark_HighContrast.Icon_Minimal_Default_Disabled_Rounded.png differ diff --git a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_SoshTheme_Dark_HighContrast.Icon_Minimal_Default_Rounded.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_SoshTheme_Dark_HighContrast.Icon_Minimal_Default_Rounded.png new file mode 100644 index 000000000..99bae8004 Binary files /dev/null and b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_SoshTheme_Dark_HighContrast.Icon_Minimal_Default_Rounded.png differ diff --git a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_SoshTheme_Dark_HighContrast.Icon_Negative_Default.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_SoshTheme_Dark_HighContrast.Icon_Negative_Default.png index 71e783274..1f169ce14 100644 Binary files a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_SoshTheme_Dark_HighContrast.Icon_Negative_Default.png and b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_SoshTheme_Dark_HighContrast.Icon_Negative_Default.png differ diff --git a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_SoshTheme_Dark_HighContrast.Icon_Negative_Default_Disabled.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_SoshTheme_Dark_HighContrast.Icon_Negative_Default_Disabled.png index d37dc0a91..c01d79e98 100644 Binary files a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_SoshTheme_Dark_HighContrast.Icon_Negative_Default_Disabled.png and b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_SoshTheme_Dark_HighContrast.Icon_Negative_Default_Disabled.png differ diff --git a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_SoshTheme_Dark_HighContrast.Icon_Negative_Default_Disabled_Rounded.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_SoshTheme_Dark_HighContrast.Icon_Negative_Default_Disabled_Rounded.png new file mode 100644 index 000000000..c01d79e98 Binary files /dev/null and b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_SoshTheme_Dark_HighContrast.Icon_Negative_Default_Disabled_Rounded.png differ diff --git a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_SoshTheme_Dark_HighContrast.Icon_Negative_Default_Rounded.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_SoshTheme_Dark_HighContrast.Icon_Negative_Default_Rounded.png new file mode 100644 index 000000000..1f169ce14 Binary files /dev/null and b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_SoshTheme_Dark_HighContrast.Icon_Negative_Default_Rounded.png differ diff --git a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_SoshTheme_Dark_HighContrast.Icon_Strong_Default.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_SoshTheme_Dark_HighContrast.Icon_Strong_Default.png index e2aeb722d..c6c616997 100644 Binary files a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_SoshTheme_Dark_HighContrast.Icon_Strong_Default.png and b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_SoshTheme_Dark_HighContrast.Icon_Strong_Default.png differ diff --git a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_SoshTheme_Dark_HighContrast.Icon_Strong_Default_Disabled.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_SoshTheme_Dark_HighContrast.Icon_Strong_Default_Disabled.png index d37dc0a91..c01d79e98 100644 Binary files a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_SoshTheme_Dark_HighContrast.Icon_Strong_Default_Disabled.png and b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_SoshTheme_Dark_HighContrast.Icon_Strong_Default_Disabled.png differ diff --git a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_SoshTheme_Dark_HighContrast.Icon_Strong_Default_Disabled_Rounded.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_SoshTheme_Dark_HighContrast.Icon_Strong_Default_Disabled_Rounded.png new file mode 100644 index 000000000..c01d79e98 Binary files /dev/null and b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_SoshTheme_Dark_HighContrast.Icon_Strong_Default_Disabled_Rounded.png differ diff --git a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_SoshTheme_Dark_HighContrast.Icon_Strong_Default_Rounded.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_SoshTheme_Dark_HighContrast.Icon_Strong_Default_Rounded.png new file mode 100644 index 000000000..c6c616997 Binary files /dev/null and b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_SoshTheme_Dark_HighContrast.Icon_Strong_Default_Rounded.png differ diff --git a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_SoshTheme_Dark_HighContrast.TextAndIcon_Brand_Default.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_SoshTheme_Dark_HighContrast.TextAndIcon_Brand_Default.png new file mode 100644 index 000000000..631b78b18 Binary files /dev/null and b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_SoshTheme_Dark_HighContrast.TextAndIcon_Brand_Default.png differ diff --git a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_SoshTheme_Dark_HighContrast.TextAndIcon_Brand_Default_Disabled.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_SoshTheme_Dark_HighContrast.TextAndIcon_Brand_Default_Disabled.png new file mode 100644 index 000000000..22fb39092 Binary files /dev/null and b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_SoshTheme_Dark_HighContrast.TextAndIcon_Brand_Default_Disabled.png differ diff --git a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_SoshTheme_Dark_HighContrast.TextAndIcon_Brand_Default_Disabled_Rounded.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_SoshTheme_Dark_HighContrast.TextAndIcon_Brand_Default_Disabled_Rounded.png new file mode 100644 index 000000000..22fb39092 Binary files /dev/null and b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_SoshTheme_Dark_HighContrast.TextAndIcon_Brand_Default_Disabled_Rounded.png differ diff --git a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_SoshTheme_Dark_HighContrast.TextAndIcon_Brand_Default_Rounded.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_SoshTheme_Dark_HighContrast.TextAndIcon_Brand_Default_Rounded.png new file mode 100644 index 000000000..631b78b18 Binary files /dev/null and b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_SoshTheme_Dark_HighContrast.TextAndIcon_Brand_Default_Rounded.png differ diff --git a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_SoshTheme_Dark_HighContrast.TextAndIcon_Default_Default_Disabled_Rounded.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_SoshTheme_Dark_HighContrast.TextAndIcon_Default_Default_Disabled_Rounded.png new file mode 100644 index 000000000..41c66cd56 Binary files /dev/null and b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_SoshTheme_Dark_HighContrast.TextAndIcon_Default_Default_Disabled_Rounded.png differ diff --git a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_SoshTheme_Dark_HighContrast.TextAndIcon_Default_Default_Rounded.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_SoshTheme_Dark_HighContrast.TextAndIcon_Default_Default_Rounded.png new file mode 100644 index 000000000..52eb1609a Binary files /dev/null and b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_SoshTheme_Dark_HighContrast.TextAndIcon_Default_Default_Rounded.png differ diff --git a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_SoshTheme_Dark_HighContrast.TextAndIcon_Minimal_Default.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_SoshTheme_Dark_HighContrast.TextAndIcon_Minimal_Default.png index 52eb1609a..9239e9ee7 100644 Binary files a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_SoshTheme_Dark_HighContrast.TextAndIcon_Minimal_Default.png and b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_SoshTheme_Dark_HighContrast.TextAndIcon_Minimal_Default.png differ diff --git a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_SoshTheme_Dark_HighContrast.TextAndIcon_Minimal_Default_Disabled.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_SoshTheme_Dark_HighContrast.TextAndIcon_Minimal_Default_Disabled.png index 41c66cd56..2ce637963 100644 Binary files a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_SoshTheme_Dark_HighContrast.TextAndIcon_Minimal_Default_Disabled.png and b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_SoshTheme_Dark_HighContrast.TextAndIcon_Minimal_Default_Disabled.png differ diff --git a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_SoshTheme_Dark_HighContrast.TextAndIcon_Minimal_Default_Disabled_Rounded.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_SoshTheme_Dark_HighContrast.TextAndIcon_Minimal_Default_Disabled_Rounded.png new file mode 100644 index 000000000..2ce637963 Binary files /dev/null and b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_SoshTheme_Dark_HighContrast.TextAndIcon_Minimal_Default_Disabled_Rounded.png differ diff --git a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_SoshTheme_Dark_HighContrast.TextAndIcon_Minimal_Default_Rounded.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_SoshTheme_Dark_HighContrast.TextAndIcon_Minimal_Default_Rounded.png new file mode 100644 index 000000000..9239e9ee7 Binary files /dev/null and b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_SoshTheme_Dark_HighContrast.TextAndIcon_Minimal_Default_Rounded.png differ diff --git a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_SoshTheme_Dark_HighContrast.TextAndIcon_Negative_Default.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_SoshTheme_Dark_HighContrast.TextAndIcon_Negative_Default.png index 656ca1d30..0d647464e 100644 Binary files a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_SoshTheme_Dark_HighContrast.TextAndIcon_Negative_Default.png and b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_SoshTheme_Dark_HighContrast.TextAndIcon_Negative_Default.png differ diff --git a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_SoshTheme_Dark_HighContrast.TextAndIcon_Negative_Default_Disabled.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_SoshTheme_Dark_HighContrast.TextAndIcon_Negative_Default_Disabled.png index fdfb3c205..22fb39092 100644 Binary files a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_SoshTheme_Dark_HighContrast.TextAndIcon_Negative_Default_Disabled.png and b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_SoshTheme_Dark_HighContrast.TextAndIcon_Negative_Default_Disabled.png differ diff --git a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_SoshTheme_Dark_HighContrast.TextAndIcon_Negative_Default_Disabled_Rounded.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_SoshTheme_Dark_HighContrast.TextAndIcon_Negative_Default_Disabled_Rounded.png new file mode 100644 index 000000000..22fb39092 Binary files /dev/null and b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_SoshTheme_Dark_HighContrast.TextAndIcon_Negative_Default_Disabled_Rounded.png differ diff --git a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_SoshTheme_Dark_HighContrast.TextAndIcon_Negative_Default_Rounded.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_SoshTheme_Dark_HighContrast.TextAndIcon_Negative_Default_Rounded.png new file mode 100644 index 000000000..0d647464e Binary files /dev/null and b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_SoshTheme_Dark_HighContrast.TextAndIcon_Negative_Default_Rounded.png differ diff --git a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_SoshTheme_Dark_HighContrast.TextAndIcon_Strong_Default.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_SoshTheme_Dark_HighContrast.TextAndIcon_Strong_Default.png index 6f26accc1..631b78b18 100644 Binary files a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_SoshTheme_Dark_HighContrast.TextAndIcon_Strong_Default.png and b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_SoshTheme_Dark_HighContrast.TextAndIcon_Strong_Default.png differ diff --git a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_SoshTheme_Dark_HighContrast.TextAndIcon_Strong_Default_Disabled.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_SoshTheme_Dark_HighContrast.TextAndIcon_Strong_Default_Disabled.png index fdfb3c205..22fb39092 100644 Binary files a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_SoshTheme_Dark_HighContrast.TextAndIcon_Strong_Default_Disabled.png and b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_SoshTheme_Dark_HighContrast.TextAndIcon_Strong_Default_Disabled.png differ diff --git a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_SoshTheme_Dark_HighContrast.TextAndIcon_Strong_Default_Disabled_Rounded.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_SoshTheme_Dark_HighContrast.TextAndIcon_Strong_Default_Disabled_Rounded.png new file mode 100644 index 000000000..22fb39092 Binary files /dev/null and b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_SoshTheme_Dark_HighContrast.TextAndIcon_Strong_Default_Disabled_Rounded.png differ diff --git a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_SoshTheme_Dark_HighContrast.TextAndIcon_Strong_Default_Rounded.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_SoshTheme_Dark_HighContrast.TextAndIcon_Strong_Default_Rounded.png new file mode 100644 index 000000000..631b78b18 Binary files /dev/null and b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_SoshTheme_Dark_HighContrast.TextAndIcon_Strong_Default_Rounded.png differ diff --git a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_SoshTheme_Dark_HighContrast.Text_Brand_Default.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_SoshTheme_Dark_HighContrast.Text_Brand_Default.png new file mode 100644 index 000000000..dacb3df61 Binary files /dev/null and b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_SoshTheme_Dark_HighContrast.Text_Brand_Default.png differ diff --git a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_SoshTheme_Dark_HighContrast.Text_Brand_Default_Disabled.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_SoshTheme_Dark_HighContrast.Text_Brand_Default_Disabled.png new file mode 100644 index 000000000..0590bbc01 Binary files /dev/null and b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_SoshTheme_Dark_HighContrast.Text_Brand_Default_Disabled.png differ diff --git a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_SoshTheme_Dark_HighContrast.Text_Brand_Default_Disabled_Rounded.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_SoshTheme_Dark_HighContrast.Text_Brand_Default_Disabled_Rounded.png new file mode 100644 index 000000000..0590bbc01 Binary files /dev/null and b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_SoshTheme_Dark_HighContrast.Text_Brand_Default_Disabled_Rounded.png differ diff --git a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_SoshTheme_Dark_HighContrast.Text_Brand_Default_Rounded.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_SoshTheme_Dark_HighContrast.Text_Brand_Default_Rounded.png new file mode 100644 index 000000000..dacb3df61 Binary files /dev/null and b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_SoshTheme_Dark_HighContrast.Text_Brand_Default_Rounded.png differ diff --git a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_SoshTheme_Dark_HighContrast.Text_Default_Default_Disabled_Rounded.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_SoshTheme_Dark_HighContrast.Text_Default_Default_Disabled_Rounded.png new file mode 100644 index 000000000..0f195da03 Binary files /dev/null and b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_SoshTheme_Dark_HighContrast.Text_Default_Default_Disabled_Rounded.png differ diff --git a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_SoshTheme_Dark_HighContrast.Text_Default_Default_Rounded.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_SoshTheme_Dark_HighContrast.Text_Default_Default_Rounded.png new file mode 100644 index 000000000..0ca531485 Binary files /dev/null and b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_SoshTheme_Dark_HighContrast.Text_Default_Default_Rounded.png differ diff --git a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_SoshTheme_Dark_HighContrast.Text_Minimal_Default.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_SoshTheme_Dark_HighContrast.Text_Minimal_Default.png index 0ca531485..fb75d7bfd 100644 Binary files a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_SoshTheme_Dark_HighContrast.Text_Minimal_Default.png and b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_SoshTheme_Dark_HighContrast.Text_Minimal_Default.png differ diff --git a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_SoshTheme_Dark_HighContrast.Text_Minimal_Default_Disabled.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_SoshTheme_Dark_HighContrast.Text_Minimal_Default_Disabled.png index 0f195da03..5b82c97a2 100644 Binary files a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_SoshTheme_Dark_HighContrast.Text_Minimal_Default_Disabled.png and b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_SoshTheme_Dark_HighContrast.Text_Minimal_Default_Disabled.png differ diff --git a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_SoshTheme_Dark_HighContrast.Text_Minimal_Default_Disabled_Rounded.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_SoshTheme_Dark_HighContrast.Text_Minimal_Default_Disabled_Rounded.png new file mode 100644 index 000000000..5b82c97a2 Binary files /dev/null and b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_SoshTheme_Dark_HighContrast.Text_Minimal_Default_Disabled_Rounded.png differ diff --git a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_SoshTheme_Dark_HighContrast.Text_Minimal_Default_Rounded.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_SoshTheme_Dark_HighContrast.Text_Minimal_Default_Rounded.png new file mode 100644 index 000000000..fb75d7bfd Binary files /dev/null and b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_SoshTheme_Dark_HighContrast.Text_Minimal_Default_Rounded.png differ diff --git a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_SoshTheme_Dark_HighContrast.Text_Negative_Default.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_SoshTheme_Dark_HighContrast.Text_Negative_Default.png index c16f2582f..63445276e 100644 Binary files a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_SoshTheme_Dark_HighContrast.Text_Negative_Default.png and b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_SoshTheme_Dark_HighContrast.Text_Negative_Default.png differ diff --git a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_SoshTheme_Dark_HighContrast.Text_Negative_Default_Disabled.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_SoshTheme_Dark_HighContrast.Text_Negative_Default_Disabled.png index 78f01d09b..0590bbc01 100644 Binary files a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_SoshTheme_Dark_HighContrast.Text_Negative_Default_Disabled.png and b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_SoshTheme_Dark_HighContrast.Text_Negative_Default_Disabled.png differ diff --git a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_SoshTheme_Dark_HighContrast.Text_Negative_Default_Disabled_Rounded.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_SoshTheme_Dark_HighContrast.Text_Negative_Default_Disabled_Rounded.png new file mode 100644 index 000000000..0590bbc01 Binary files /dev/null and b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_SoshTheme_Dark_HighContrast.Text_Negative_Default_Disabled_Rounded.png differ diff --git a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_SoshTheme_Dark_HighContrast.Text_Negative_Default_Rounded.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_SoshTheme_Dark_HighContrast.Text_Negative_Default_Rounded.png new file mode 100644 index 000000000..63445276e Binary files /dev/null and b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_SoshTheme_Dark_HighContrast.Text_Negative_Default_Rounded.png differ diff --git a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_SoshTheme_Dark_HighContrast.Text_Strong_Default.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_SoshTheme_Dark_HighContrast.Text_Strong_Default.png index 03bd3377e..dacb3df61 100644 Binary files a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_SoshTheme_Dark_HighContrast.Text_Strong_Default.png and b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_SoshTheme_Dark_HighContrast.Text_Strong_Default.png differ diff --git a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_SoshTheme_Dark_HighContrast.Text_Strong_Default_Disabled.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_SoshTheme_Dark_HighContrast.Text_Strong_Default_Disabled.png index 78f01d09b..0590bbc01 100644 Binary files a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_SoshTheme_Dark_HighContrast.Text_Strong_Default_Disabled.png and b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_SoshTheme_Dark_HighContrast.Text_Strong_Default_Disabled.png differ diff --git a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_SoshTheme_Dark_HighContrast.Text_Strong_Default_Disabled_Rounded.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_SoshTheme_Dark_HighContrast.Text_Strong_Default_Disabled_Rounded.png new file mode 100644 index 000000000..0590bbc01 Binary files /dev/null and b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_SoshTheme_Dark_HighContrast.Text_Strong_Default_Disabled_Rounded.png differ diff --git a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_SoshTheme_Dark_HighContrast.Text_Strong_Default_Rounded.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_SoshTheme_Dark_HighContrast.Text_Strong_Default_Rounded.png new file mode 100644 index 000000000..dacb3df61 Binary files /dev/null and b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_SoshTheme_Dark_HighContrast.Text_Strong_Default_Rounded.png differ diff --git a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_SoshTheme_Light_.ColoredSurface_Icon_Default_Default_Disabled_Rounded.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_SoshTheme_Light_.ColoredSurface_Icon_Default_Default_Disabled_Rounded.png new file mode 100644 index 000000000..c15072339 Binary files /dev/null and b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_SoshTheme_Light_.ColoredSurface_Icon_Default_Default_Disabled_Rounded.png differ diff --git a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_SoshTheme_Light_.ColoredSurface_Icon_Default_Default_Rounded.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_SoshTheme_Light_.ColoredSurface_Icon_Default_Default_Rounded.png new file mode 100644 index 000000000..753d6fb19 Binary files /dev/null and b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_SoshTheme_Light_.ColoredSurface_Icon_Default_Default_Rounded.png differ diff --git a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_SoshTheme_Light_.ColoredSurface_Icon_Minimal_Default_Disabled_Rounded.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_SoshTheme_Light_.ColoredSurface_Icon_Minimal_Default_Disabled_Rounded.png new file mode 100644 index 000000000..9a393ee3d Binary files /dev/null and b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_SoshTheme_Light_.ColoredSurface_Icon_Minimal_Default_Disabled_Rounded.png differ diff --git a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_SoshTheme_Light_.ColoredSurface_Icon_Minimal_Default_Rounded.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_SoshTheme_Light_.ColoredSurface_Icon_Minimal_Default_Rounded.png new file mode 100644 index 000000000..bdcaed1d4 Binary files /dev/null and b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_SoshTheme_Light_.ColoredSurface_Icon_Minimal_Default_Rounded.png differ diff --git a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_SoshTheme_Light_.ColoredSurface_Icon_Strong_Default_Disabled_Rounded.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_SoshTheme_Light_.ColoredSurface_Icon_Strong_Default_Disabled_Rounded.png new file mode 100644 index 000000000..ea164d875 Binary files /dev/null and b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_SoshTheme_Light_.ColoredSurface_Icon_Strong_Default_Disabled_Rounded.png differ diff --git a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_SoshTheme_Light_.ColoredSurface_Icon_Strong_Default_Rounded.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_SoshTheme_Light_.ColoredSurface_Icon_Strong_Default_Rounded.png new file mode 100644 index 000000000..9d3dfe260 Binary files /dev/null and b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_SoshTheme_Light_.ColoredSurface_Icon_Strong_Default_Rounded.png differ diff --git a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_SoshTheme_Light_.ColoredSurface_TextAndIcon_Default_Default_Disabled_Rounded.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_SoshTheme_Light_.ColoredSurface_TextAndIcon_Default_Default_Disabled_Rounded.png new file mode 100644 index 000000000..d7398697d Binary files /dev/null and b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_SoshTheme_Light_.ColoredSurface_TextAndIcon_Default_Default_Disabled_Rounded.png differ diff --git a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_SoshTheme_Light_.ColoredSurface_TextAndIcon_Default_Default_Rounded.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_SoshTheme_Light_.ColoredSurface_TextAndIcon_Default_Default_Rounded.png new file mode 100644 index 000000000..7f441d59f Binary files /dev/null and b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_SoshTheme_Light_.ColoredSurface_TextAndIcon_Default_Default_Rounded.png differ diff --git a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_SoshTheme_Light_.ColoredSurface_TextAndIcon_Minimal_Default_Disabled_Rounded.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_SoshTheme_Light_.ColoredSurface_TextAndIcon_Minimal_Default_Disabled_Rounded.png new file mode 100644 index 000000000..254fdd54d Binary files /dev/null and b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_SoshTheme_Light_.ColoredSurface_TextAndIcon_Minimal_Default_Disabled_Rounded.png differ diff --git a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_SoshTheme_Light_.ColoredSurface_TextAndIcon_Minimal_Default_Rounded.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_SoshTheme_Light_.ColoredSurface_TextAndIcon_Minimal_Default_Rounded.png new file mode 100644 index 000000000..95c6ffa01 Binary files /dev/null and b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_SoshTheme_Light_.ColoredSurface_TextAndIcon_Minimal_Default_Rounded.png differ diff --git a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_SoshTheme_Light_.ColoredSurface_TextAndIcon_Strong_Default_Disabled_Rounded.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_SoshTheme_Light_.ColoredSurface_TextAndIcon_Strong_Default_Disabled_Rounded.png new file mode 100644 index 000000000..085f56014 Binary files /dev/null and b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_SoshTheme_Light_.ColoredSurface_TextAndIcon_Strong_Default_Disabled_Rounded.png differ diff --git a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_SoshTheme_Light_.ColoredSurface_TextAndIcon_Strong_Default_Rounded.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_SoshTheme_Light_.ColoredSurface_TextAndIcon_Strong_Default_Rounded.png new file mode 100644 index 000000000..e1e3d0d66 Binary files /dev/null and b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_SoshTheme_Light_.ColoredSurface_TextAndIcon_Strong_Default_Rounded.png differ diff --git a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_SoshTheme_Light_.ColoredSurface_Text_Default_Default_Disabled_Rounded.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_SoshTheme_Light_.ColoredSurface_Text_Default_Default_Disabled_Rounded.png new file mode 100644 index 000000000..678d5bec1 Binary files /dev/null and b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_SoshTheme_Light_.ColoredSurface_Text_Default_Default_Disabled_Rounded.png differ diff --git a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_SoshTheme_Light_.ColoredSurface_Text_Default_Default_Rounded.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_SoshTheme_Light_.ColoredSurface_Text_Default_Default_Rounded.png new file mode 100644 index 000000000..94a2e6214 Binary files /dev/null and b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_SoshTheme_Light_.ColoredSurface_Text_Default_Default_Rounded.png differ diff --git a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_SoshTheme_Light_.ColoredSurface_Text_Minimal_Default_Disabled_Rounded.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_SoshTheme_Light_.ColoredSurface_Text_Minimal_Default_Disabled_Rounded.png new file mode 100644 index 000000000..822109616 Binary files /dev/null and b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_SoshTheme_Light_.ColoredSurface_Text_Minimal_Default_Disabled_Rounded.png differ diff --git a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_SoshTheme_Light_.ColoredSurface_Text_Minimal_Default_Rounded.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_SoshTheme_Light_.ColoredSurface_Text_Minimal_Default_Rounded.png new file mode 100644 index 000000000..d86fc1e80 Binary files /dev/null and b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_SoshTheme_Light_.ColoredSurface_Text_Minimal_Default_Rounded.png differ diff --git a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_SoshTheme_Light_.ColoredSurface_Text_Strong_Default_Disabled_Rounded.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_SoshTheme_Light_.ColoredSurface_Text_Strong_Default_Disabled_Rounded.png new file mode 100644 index 000000000..3a3d8b9ce Binary files /dev/null and b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_SoshTheme_Light_.ColoredSurface_Text_Strong_Default_Disabled_Rounded.png differ diff --git a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_SoshTheme_Light_.ColoredSurface_Text_Strong_Default_Rounded.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_SoshTheme_Light_.ColoredSurface_Text_Strong_Default_Rounded.png new file mode 100644 index 000000000..fdfdeef87 Binary files /dev/null and b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_SoshTheme_Light_.ColoredSurface_Text_Strong_Default_Rounded.png differ diff --git a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_SoshTheme_Light_.Icon_Brand_Default.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_SoshTheme_Light_.Icon_Brand_Default.png new file mode 100644 index 000000000..1e7f33e1d Binary files /dev/null and b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_SoshTheme_Light_.Icon_Brand_Default.png differ diff --git a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_SoshTheme_Light_.Icon_Brand_Default_Disabled.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_SoshTheme_Light_.Icon_Brand_Default_Disabled.png new file mode 100644 index 000000000..69734263b Binary files /dev/null and b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_SoshTheme_Light_.Icon_Brand_Default_Disabled.png differ diff --git a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_SoshTheme_Light_.Icon_Brand_Default_Disabled_Rounded.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_SoshTheme_Light_.Icon_Brand_Default_Disabled_Rounded.png new file mode 100644 index 000000000..69734263b Binary files /dev/null and b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_SoshTheme_Light_.Icon_Brand_Default_Disabled_Rounded.png differ diff --git a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_SoshTheme_Light_.Icon_Brand_Default_Rounded.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_SoshTheme_Light_.Icon_Brand_Default_Rounded.png new file mode 100644 index 000000000..1e7f33e1d Binary files /dev/null and b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_SoshTheme_Light_.Icon_Brand_Default_Rounded.png differ diff --git a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_SoshTheme_Light_.Icon_Default_Default_Disabled_Rounded.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_SoshTheme_Light_.Icon_Default_Default_Disabled_Rounded.png new file mode 100644 index 000000000..7f7c03a15 Binary files /dev/null and b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_SoshTheme_Light_.Icon_Default_Default_Disabled_Rounded.png differ diff --git a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_SoshTheme_Light_.Icon_Default_Default_Rounded.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_SoshTheme_Light_.Icon_Default_Default_Rounded.png new file mode 100644 index 000000000..be5d91c07 Binary files /dev/null and b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_SoshTheme_Light_.Icon_Default_Default_Rounded.png differ diff --git a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_SoshTheme_Light_.Icon_Minimal_Default.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_SoshTheme_Light_.Icon_Minimal_Default.png index be5d91c07..3fb5187f3 100644 Binary files a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_SoshTheme_Light_.Icon_Minimal_Default.png and b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_SoshTheme_Light_.Icon_Minimal_Default.png differ diff --git a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_SoshTheme_Light_.Icon_Minimal_Default_Disabled.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_SoshTheme_Light_.Icon_Minimal_Default_Disabled.png index 7f7c03a15..350fc2bf1 100644 Binary files a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_SoshTheme_Light_.Icon_Minimal_Default_Disabled.png and b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_SoshTheme_Light_.Icon_Minimal_Default_Disabled.png differ diff --git a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_SoshTheme_Light_.Icon_Minimal_Default_Disabled_Rounded.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_SoshTheme_Light_.Icon_Minimal_Default_Disabled_Rounded.png new file mode 100644 index 000000000..350fc2bf1 Binary files /dev/null and b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_SoshTheme_Light_.Icon_Minimal_Default_Disabled_Rounded.png differ diff --git a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_SoshTheme_Light_.Icon_Minimal_Default_Rounded.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_SoshTheme_Light_.Icon_Minimal_Default_Rounded.png new file mode 100644 index 000000000..3fb5187f3 Binary files /dev/null and b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_SoshTheme_Light_.Icon_Minimal_Default_Rounded.png differ diff --git a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_SoshTheme_Light_.Icon_Negative_Default.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_SoshTheme_Light_.Icon_Negative_Default.png index f49960cfe..2e09e3237 100644 Binary files a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_SoshTheme_Light_.Icon_Negative_Default.png and b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_SoshTheme_Light_.Icon_Negative_Default.png differ diff --git a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_SoshTheme_Light_.Icon_Negative_Default_Disabled.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_SoshTheme_Light_.Icon_Negative_Default_Disabled.png index 2ee18baff..69734263b 100644 Binary files a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_SoshTheme_Light_.Icon_Negative_Default_Disabled.png and b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_SoshTheme_Light_.Icon_Negative_Default_Disabled.png differ diff --git a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_SoshTheme_Light_.Icon_Negative_Default_Disabled_Rounded.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_SoshTheme_Light_.Icon_Negative_Default_Disabled_Rounded.png new file mode 100644 index 000000000..69734263b Binary files /dev/null and b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_SoshTheme_Light_.Icon_Negative_Default_Disabled_Rounded.png differ diff --git a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_SoshTheme_Light_.Icon_Negative_Default_Rounded.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_SoshTheme_Light_.Icon_Negative_Default_Rounded.png new file mode 100644 index 000000000..2e09e3237 Binary files /dev/null and b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_SoshTheme_Light_.Icon_Negative_Default_Rounded.png differ diff --git a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_SoshTheme_Light_.Icon_Strong_Default.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_SoshTheme_Light_.Icon_Strong_Default.png index bdcaed1d4..eaaea9f8c 100644 Binary files a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_SoshTheme_Light_.Icon_Strong_Default.png and b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_SoshTheme_Light_.Icon_Strong_Default.png differ diff --git a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_SoshTheme_Light_.Icon_Strong_Default_Disabled.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_SoshTheme_Light_.Icon_Strong_Default_Disabled.png index 2ee18baff..69734263b 100644 Binary files a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_SoshTheme_Light_.Icon_Strong_Default_Disabled.png and b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_SoshTheme_Light_.Icon_Strong_Default_Disabled.png differ diff --git a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_SoshTheme_Light_.Icon_Strong_Default_Disabled_Rounded.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_SoshTheme_Light_.Icon_Strong_Default_Disabled_Rounded.png new file mode 100644 index 000000000..69734263b Binary files /dev/null and b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_SoshTheme_Light_.Icon_Strong_Default_Disabled_Rounded.png differ diff --git a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_SoshTheme_Light_.Icon_Strong_Default_Rounded.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_SoshTheme_Light_.Icon_Strong_Default_Rounded.png new file mode 100644 index 000000000..eaaea9f8c Binary files /dev/null and b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_SoshTheme_Light_.Icon_Strong_Default_Rounded.png differ diff --git a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_SoshTheme_Light_.TextAndIcon_Brand_Default.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_SoshTheme_Light_.TextAndIcon_Brand_Default.png new file mode 100644 index 000000000..082a52808 Binary files /dev/null and b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_SoshTheme_Light_.TextAndIcon_Brand_Default.png differ diff --git a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_SoshTheme_Light_.TextAndIcon_Brand_Default_Disabled.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_SoshTheme_Light_.TextAndIcon_Brand_Default_Disabled.png new file mode 100644 index 000000000..96fd22a0c Binary files /dev/null and b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_SoshTheme_Light_.TextAndIcon_Brand_Default_Disabled.png differ diff --git a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_SoshTheme_Light_.TextAndIcon_Brand_Default_Disabled_Rounded.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_SoshTheme_Light_.TextAndIcon_Brand_Default_Disabled_Rounded.png new file mode 100644 index 000000000..96fd22a0c Binary files /dev/null and b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_SoshTheme_Light_.TextAndIcon_Brand_Default_Disabled_Rounded.png differ diff --git a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_SoshTheme_Light_.TextAndIcon_Brand_Default_Rounded.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_SoshTheme_Light_.TextAndIcon_Brand_Default_Rounded.png new file mode 100644 index 000000000..082a52808 Binary files /dev/null and b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_SoshTheme_Light_.TextAndIcon_Brand_Default_Rounded.png differ diff --git a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_SoshTheme_Light_.TextAndIcon_Default_Default_Disabled_Rounded.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_SoshTheme_Light_.TextAndIcon_Default_Default_Disabled_Rounded.png new file mode 100644 index 000000000..b9e50f1e0 Binary files /dev/null and b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_SoshTheme_Light_.TextAndIcon_Default_Default_Disabled_Rounded.png differ diff --git a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_SoshTheme_Light_.TextAndIcon_Default_Default_Rounded.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_SoshTheme_Light_.TextAndIcon_Default_Default_Rounded.png new file mode 100644 index 000000000..bb0a9554f Binary files /dev/null and b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_SoshTheme_Light_.TextAndIcon_Default_Default_Rounded.png differ diff --git a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_SoshTheme_Light_.TextAndIcon_Minimal_Default.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_SoshTheme_Light_.TextAndIcon_Minimal_Default.png index bb0a9554f..02cafc956 100644 Binary files a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_SoshTheme_Light_.TextAndIcon_Minimal_Default.png and b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_SoshTheme_Light_.TextAndIcon_Minimal_Default.png differ diff --git a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_SoshTheme_Light_.TextAndIcon_Minimal_Default_Disabled.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_SoshTheme_Light_.TextAndIcon_Minimal_Default_Disabled.png index b9e50f1e0..a4c51b4ac 100644 Binary files a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_SoshTheme_Light_.TextAndIcon_Minimal_Default_Disabled.png and b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_SoshTheme_Light_.TextAndIcon_Minimal_Default_Disabled.png differ diff --git a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_SoshTheme_Light_.TextAndIcon_Minimal_Default_Disabled_Rounded.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_SoshTheme_Light_.TextAndIcon_Minimal_Default_Disabled_Rounded.png new file mode 100644 index 000000000..a4c51b4ac Binary files /dev/null and b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_SoshTheme_Light_.TextAndIcon_Minimal_Default_Disabled_Rounded.png differ diff --git a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_SoshTheme_Light_.TextAndIcon_Minimal_Default_Rounded.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_SoshTheme_Light_.TextAndIcon_Minimal_Default_Rounded.png new file mode 100644 index 000000000..02cafc956 Binary files /dev/null and b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_SoshTheme_Light_.TextAndIcon_Minimal_Default_Rounded.png differ diff --git a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_SoshTheme_Light_.TextAndIcon_Negative_Default.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_SoshTheme_Light_.TextAndIcon_Negative_Default.png index 008700f25..915005d54 100644 Binary files a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_SoshTheme_Light_.TextAndIcon_Negative_Default.png and b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_SoshTheme_Light_.TextAndIcon_Negative_Default.png differ diff --git a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_SoshTheme_Light_.TextAndIcon_Negative_Default_Disabled.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_SoshTheme_Light_.TextAndIcon_Negative_Default_Disabled.png index 6bd6bf300..96fd22a0c 100644 Binary files a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_SoshTheme_Light_.TextAndIcon_Negative_Default_Disabled.png and b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_SoshTheme_Light_.TextAndIcon_Negative_Default_Disabled.png differ diff --git a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_SoshTheme_Light_.TextAndIcon_Negative_Default_Disabled_Rounded.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_SoshTheme_Light_.TextAndIcon_Negative_Default_Disabled_Rounded.png new file mode 100644 index 000000000..96fd22a0c Binary files /dev/null and b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_SoshTheme_Light_.TextAndIcon_Negative_Default_Disabled_Rounded.png differ diff --git a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_SoshTheme_Light_.TextAndIcon_Negative_Default_Rounded.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_SoshTheme_Light_.TextAndIcon_Negative_Default_Rounded.png new file mode 100644 index 000000000..915005d54 Binary files /dev/null and b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_SoshTheme_Light_.TextAndIcon_Negative_Default_Rounded.png differ diff --git a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_SoshTheme_Light_.TextAndIcon_Strong_Default.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_SoshTheme_Light_.TextAndIcon_Strong_Default.png index 95c6ffa01..61f87f510 100644 Binary files a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_SoshTheme_Light_.TextAndIcon_Strong_Default.png and b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_SoshTheme_Light_.TextAndIcon_Strong_Default.png differ diff --git a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_SoshTheme_Light_.TextAndIcon_Strong_Default_Disabled.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_SoshTheme_Light_.TextAndIcon_Strong_Default_Disabled.png index 6bd6bf300..96fd22a0c 100644 Binary files a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_SoshTheme_Light_.TextAndIcon_Strong_Default_Disabled.png and b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_SoshTheme_Light_.TextAndIcon_Strong_Default_Disabled.png differ diff --git a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_SoshTheme_Light_.TextAndIcon_Strong_Default_Disabled_Rounded.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_SoshTheme_Light_.TextAndIcon_Strong_Default_Disabled_Rounded.png new file mode 100644 index 000000000..96fd22a0c Binary files /dev/null and b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_SoshTheme_Light_.TextAndIcon_Strong_Default_Disabled_Rounded.png differ diff --git a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_SoshTheme_Light_.TextAndIcon_Strong_Default_Rounded.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_SoshTheme_Light_.TextAndIcon_Strong_Default_Rounded.png new file mode 100644 index 000000000..61f87f510 Binary files /dev/null and b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_SoshTheme_Light_.TextAndIcon_Strong_Default_Rounded.png differ diff --git a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_SoshTheme_Light_.Text_Brand_Default.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_SoshTheme_Light_.Text_Brand_Default.png new file mode 100644 index 000000000..961ffb84d Binary files /dev/null and b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_SoshTheme_Light_.Text_Brand_Default.png differ diff --git a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_SoshTheme_Light_.Text_Brand_Default_Disabled.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_SoshTheme_Light_.Text_Brand_Default_Disabled.png new file mode 100644 index 000000000..fce2bfe48 Binary files /dev/null and b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_SoshTheme_Light_.Text_Brand_Default_Disabled.png differ diff --git a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_SoshTheme_Light_.Text_Brand_Default_Disabled_Rounded.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_SoshTheme_Light_.Text_Brand_Default_Disabled_Rounded.png new file mode 100644 index 000000000..fce2bfe48 Binary files /dev/null and b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_SoshTheme_Light_.Text_Brand_Default_Disabled_Rounded.png differ diff --git a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_SoshTheme_Light_.Text_Brand_Default_Rounded.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_SoshTheme_Light_.Text_Brand_Default_Rounded.png new file mode 100644 index 000000000..961ffb84d Binary files /dev/null and b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_SoshTheme_Light_.Text_Brand_Default_Rounded.png differ diff --git a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_SoshTheme_Light_.Text_Default_Default_Disabled_Rounded.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_SoshTheme_Light_.Text_Default_Default_Disabled_Rounded.png new file mode 100644 index 000000000..2dfd6a13c Binary files /dev/null and b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_SoshTheme_Light_.Text_Default_Default_Disabled_Rounded.png differ diff --git a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_SoshTheme_Light_.Text_Default_Default_Rounded.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_SoshTheme_Light_.Text_Default_Default_Rounded.png new file mode 100644 index 000000000..24714bc7c Binary files /dev/null and b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_SoshTheme_Light_.Text_Default_Default_Rounded.png differ diff --git a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_SoshTheme_Light_.Text_Minimal_Default.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_SoshTheme_Light_.Text_Minimal_Default.png index 24714bc7c..cfff004a6 100644 Binary files a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_SoshTheme_Light_.Text_Minimal_Default.png and b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_SoshTheme_Light_.Text_Minimal_Default.png differ diff --git a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_SoshTheme_Light_.Text_Minimal_Default_Disabled.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_SoshTheme_Light_.Text_Minimal_Default_Disabled.png index 2dfd6a13c..fe784c071 100644 Binary files a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_SoshTheme_Light_.Text_Minimal_Default_Disabled.png and b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_SoshTheme_Light_.Text_Minimal_Default_Disabled.png differ diff --git a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_SoshTheme_Light_.Text_Minimal_Default_Disabled_Rounded.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_SoshTheme_Light_.Text_Minimal_Default_Disabled_Rounded.png new file mode 100644 index 000000000..fe784c071 Binary files /dev/null and b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_SoshTheme_Light_.Text_Minimal_Default_Disabled_Rounded.png differ diff --git a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_SoshTheme_Light_.Text_Minimal_Default_Rounded.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_SoshTheme_Light_.Text_Minimal_Default_Rounded.png new file mode 100644 index 000000000..cfff004a6 Binary files /dev/null and b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_SoshTheme_Light_.Text_Minimal_Default_Rounded.png differ diff --git a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_SoshTheme_Light_.Text_Negative_Default.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_SoshTheme_Light_.Text_Negative_Default.png index b30547e17..903aebd34 100644 Binary files a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_SoshTheme_Light_.Text_Negative_Default.png and b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_SoshTheme_Light_.Text_Negative_Default.png differ diff --git a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_SoshTheme_Light_.Text_Negative_Default_Disabled.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_SoshTheme_Light_.Text_Negative_Default_Disabled.png index 7c15df488..fce2bfe48 100644 Binary files a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_SoshTheme_Light_.Text_Negative_Default_Disabled.png and b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_SoshTheme_Light_.Text_Negative_Default_Disabled.png differ diff --git a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_SoshTheme_Light_.Text_Negative_Default_Disabled_Rounded.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_SoshTheme_Light_.Text_Negative_Default_Disabled_Rounded.png new file mode 100644 index 000000000..fce2bfe48 Binary files /dev/null and b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_SoshTheme_Light_.Text_Negative_Default_Disabled_Rounded.png differ diff --git a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_SoshTheme_Light_.Text_Negative_Default_Rounded.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_SoshTheme_Light_.Text_Negative_Default_Rounded.png new file mode 100644 index 000000000..903aebd34 Binary files /dev/null and b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_SoshTheme_Light_.Text_Negative_Default_Rounded.png differ diff --git a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_SoshTheme_Light_.Text_Strong_Default.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_SoshTheme_Light_.Text_Strong_Default.png index d86fc1e80..1bda1881b 100644 Binary files a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_SoshTheme_Light_.Text_Strong_Default.png and b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_SoshTheme_Light_.Text_Strong_Default.png differ diff --git a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_SoshTheme_Light_.Text_Strong_Default_Disabled.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_SoshTheme_Light_.Text_Strong_Default_Disabled.png index 7c15df488..fce2bfe48 100644 Binary files a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_SoshTheme_Light_.Text_Strong_Default_Disabled.png and b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_SoshTheme_Light_.Text_Strong_Default_Disabled.png differ diff --git a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_SoshTheme_Light_.Text_Strong_Default_Disabled_Rounded.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_SoshTheme_Light_.Text_Strong_Default_Disabled_Rounded.png new file mode 100644 index 000000000..fce2bfe48 Binary files /dev/null and b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_SoshTheme_Light_.Text_Strong_Default_Disabled_Rounded.png differ diff --git a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_SoshTheme_Light_.Text_Strong_Default_Rounded.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_SoshTheme_Light_.Text_Strong_Default_Rounded.png new file mode 100644 index 000000000..1bda1881b Binary files /dev/null and b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_SoshTheme_Light_.Text_Strong_Default_Rounded.png differ diff --git a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_SoshTheme_Light_HighContrast.ColoredSurface_Icon_Default_Default_Disabled_Rounded.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_SoshTheme_Light_HighContrast.ColoredSurface_Icon_Default_Default_Disabled_Rounded.png new file mode 100644 index 000000000..c15072339 Binary files /dev/null and b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_SoshTheme_Light_HighContrast.ColoredSurface_Icon_Default_Default_Disabled_Rounded.png differ diff --git a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_SoshTheme_Light_HighContrast.ColoredSurface_Icon_Default_Default_Rounded.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_SoshTheme_Light_HighContrast.ColoredSurface_Icon_Default_Default_Rounded.png new file mode 100644 index 000000000..753d6fb19 Binary files /dev/null and b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_SoshTheme_Light_HighContrast.ColoredSurface_Icon_Default_Default_Rounded.png differ diff --git a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_SoshTheme_Light_HighContrast.ColoredSurface_Icon_Minimal_Default_Disabled_Rounded.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_SoshTheme_Light_HighContrast.ColoredSurface_Icon_Minimal_Default_Disabled_Rounded.png new file mode 100644 index 000000000..9a393ee3d Binary files /dev/null and b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_SoshTheme_Light_HighContrast.ColoredSurface_Icon_Minimal_Default_Disabled_Rounded.png differ diff --git a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_SoshTheme_Light_HighContrast.ColoredSurface_Icon_Minimal_Default_Rounded.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_SoshTheme_Light_HighContrast.ColoredSurface_Icon_Minimal_Default_Rounded.png new file mode 100644 index 000000000..bdcaed1d4 Binary files /dev/null and b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_SoshTheme_Light_HighContrast.ColoredSurface_Icon_Minimal_Default_Rounded.png differ diff --git a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_SoshTheme_Light_HighContrast.ColoredSurface_Icon_Strong_Default_Disabled_Rounded.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_SoshTheme_Light_HighContrast.ColoredSurface_Icon_Strong_Default_Disabled_Rounded.png new file mode 100644 index 000000000..ea164d875 Binary files /dev/null and b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_SoshTheme_Light_HighContrast.ColoredSurface_Icon_Strong_Default_Disabled_Rounded.png differ diff --git a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_SoshTheme_Light_HighContrast.ColoredSurface_Icon_Strong_Default_Rounded.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_SoshTheme_Light_HighContrast.ColoredSurface_Icon_Strong_Default_Rounded.png new file mode 100644 index 000000000..9d3dfe260 Binary files /dev/null and b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_SoshTheme_Light_HighContrast.ColoredSurface_Icon_Strong_Default_Rounded.png differ diff --git a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_SoshTheme_Light_HighContrast.ColoredSurface_TextAndIcon_Default_Default_Disabled_Rounded.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_SoshTheme_Light_HighContrast.ColoredSurface_TextAndIcon_Default_Default_Disabled_Rounded.png new file mode 100644 index 000000000..d7398697d Binary files /dev/null and b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_SoshTheme_Light_HighContrast.ColoredSurface_TextAndIcon_Default_Default_Disabled_Rounded.png differ diff --git a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_SoshTheme_Light_HighContrast.ColoredSurface_TextAndIcon_Default_Default_Rounded.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_SoshTheme_Light_HighContrast.ColoredSurface_TextAndIcon_Default_Default_Rounded.png new file mode 100644 index 000000000..7f441d59f Binary files /dev/null and b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_SoshTheme_Light_HighContrast.ColoredSurface_TextAndIcon_Default_Default_Rounded.png differ diff --git a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_SoshTheme_Light_HighContrast.ColoredSurface_TextAndIcon_Minimal_Default_Disabled_Rounded.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_SoshTheme_Light_HighContrast.ColoredSurface_TextAndIcon_Minimal_Default_Disabled_Rounded.png new file mode 100644 index 000000000..254fdd54d Binary files /dev/null and b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_SoshTheme_Light_HighContrast.ColoredSurface_TextAndIcon_Minimal_Default_Disabled_Rounded.png differ diff --git a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_SoshTheme_Light_HighContrast.ColoredSurface_TextAndIcon_Minimal_Default_Rounded.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_SoshTheme_Light_HighContrast.ColoredSurface_TextAndIcon_Minimal_Default_Rounded.png new file mode 100644 index 000000000..95c6ffa01 Binary files /dev/null and b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_SoshTheme_Light_HighContrast.ColoredSurface_TextAndIcon_Minimal_Default_Rounded.png differ diff --git a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_SoshTheme_Light_HighContrast.ColoredSurface_TextAndIcon_Strong_Default_Disabled_Rounded.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_SoshTheme_Light_HighContrast.ColoredSurface_TextAndIcon_Strong_Default_Disabled_Rounded.png new file mode 100644 index 000000000..085f56014 Binary files /dev/null and b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_SoshTheme_Light_HighContrast.ColoredSurface_TextAndIcon_Strong_Default_Disabled_Rounded.png differ diff --git a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_SoshTheme_Light_HighContrast.ColoredSurface_TextAndIcon_Strong_Default_Rounded.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_SoshTheme_Light_HighContrast.ColoredSurface_TextAndIcon_Strong_Default_Rounded.png new file mode 100644 index 000000000..e1e3d0d66 Binary files /dev/null and b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_SoshTheme_Light_HighContrast.ColoredSurface_TextAndIcon_Strong_Default_Rounded.png differ diff --git a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_SoshTheme_Light_HighContrast.ColoredSurface_Text_Default_Default_Disabled_Rounded.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_SoshTheme_Light_HighContrast.ColoredSurface_Text_Default_Default_Disabled_Rounded.png new file mode 100644 index 000000000..678d5bec1 Binary files /dev/null and b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_SoshTheme_Light_HighContrast.ColoredSurface_Text_Default_Default_Disabled_Rounded.png differ diff --git a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_SoshTheme_Light_HighContrast.ColoredSurface_Text_Default_Default_Rounded.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_SoshTheme_Light_HighContrast.ColoredSurface_Text_Default_Default_Rounded.png new file mode 100644 index 000000000..94a2e6214 Binary files /dev/null and b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_SoshTheme_Light_HighContrast.ColoredSurface_Text_Default_Default_Rounded.png differ diff --git a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_SoshTheme_Light_HighContrast.ColoredSurface_Text_Minimal_Default_Disabled_Rounded.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_SoshTheme_Light_HighContrast.ColoredSurface_Text_Minimal_Default_Disabled_Rounded.png new file mode 100644 index 000000000..822109616 Binary files /dev/null and b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_SoshTheme_Light_HighContrast.ColoredSurface_Text_Minimal_Default_Disabled_Rounded.png differ diff --git a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_SoshTheme_Light_HighContrast.ColoredSurface_Text_Minimal_Default_Rounded.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_SoshTheme_Light_HighContrast.ColoredSurface_Text_Minimal_Default_Rounded.png new file mode 100644 index 000000000..d86fc1e80 Binary files /dev/null and b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_SoshTheme_Light_HighContrast.ColoredSurface_Text_Minimal_Default_Rounded.png differ diff --git a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_SoshTheme_Light_HighContrast.ColoredSurface_Text_Strong_Default_Disabled_Rounded.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_SoshTheme_Light_HighContrast.ColoredSurface_Text_Strong_Default_Disabled_Rounded.png new file mode 100644 index 000000000..3a3d8b9ce Binary files /dev/null and b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_SoshTheme_Light_HighContrast.ColoredSurface_Text_Strong_Default_Disabled_Rounded.png differ diff --git a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_SoshTheme_Light_HighContrast.ColoredSurface_Text_Strong_Default_Rounded.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_SoshTheme_Light_HighContrast.ColoredSurface_Text_Strong_Default_Rounded.png new file mode 100644 index 000000000..fdfdeef87 Binary files /dev/null and b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_SoshTheme_Light_HighContrast.ColoredSurface_Text_Strong_Default_Rounded.png differ diff --git a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_SoshTheme_Light_HighContrast.Icon_Brand_Default.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_SoshTheme_Light_HighContrast.Icon_Brand_Default.png new file mode 100644 index 000000000..1e7f33e1d Binary files /dev/null and b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_SoshTheme_Light_HighContrast.Icon_Brand_Default.png differ diff --git a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_SoshTheme_Light_HighContrast.Icon_Brand_Default_Disabled.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_SoshTheme_Light_HighContrast.Icon_Brand_Default_Disabled.png new file mode 100644 index 000000000..69734263b Binary files /dev/null and b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_SoshTheme_Light_HighContrast.Icon_Brand_Default_Disabled.png differ diff --git a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_SoshTheme_Light_HighContrast.Icon_Brand_Default_Disabled_Rounded.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_SoshTheme_Light_HighContrast.Icon_Brand_Default_Disabled_Rounded.png new file mode 100644 index 000000000..69734263b Binary files /dev/null and b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_SoshTheme_Light_HighContrast.Icon_Brand_Default_Disabled_Rounded.png differ diff --git a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_SoshTheme_Light_HighContrast.Icon_Brand_Default_Rounded.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_SoshTheme_Light_HighContrast.Icon_Brand_Default_Rounded.png new file mode 100644 index 000000000..1e7f33e1d Binary files /dev/null and b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_SoshTheme_Light_HighContrast.Icon_Brand_Default_Rounded.png differ diff --git a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_SoshTheme_Light_HighContrast.Icon_Default_Default_Disabled_Rounded.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_SoshTheme_Light_HighContrast.Icon_Default_Default_Disabled_Rounded.png new file mode 100644 index 000000000..7f7c03a15 Binary files /dev/null and b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_SoshTheme_Light_HighContrast.Icon_Default_Default_Disabled_Rounded.png differ diff --git a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_SoshTheme_Light_HighContrast.Icon_Default_Default_Rounded.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_SoshTheme_Light_HighContrast.Icon_Default_Default_Rounded.png new file mode 100644 index 000000000..be5d91c07 Binary files /dev/null and b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_SoshTheme_Light_HighContrast.Icon_Default_Default_Rounded.png differ diff --git a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_SoshTheme_Light_HighContrast.Icon_Minimal_Default.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_SoshTheme_Light_HighContrast.Icon_Minimal_Default.png index be5d91c07..3fb5187f3 100644 Binary files a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_SoshTheme_Light_HighContrast.Icon_Minimal_Default.png and b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_SoshTheme_Light_HighContrast.Icon_Minimal_Default.png differ diff --git a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_SoshTheme_Light_HighContrast.Icon_Minimal_Default_Disabled.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_SoshTheme_Light_HighContrast.Icon_Minimal_Default_Disabled.png index 7f7c03a15..350fc2bf1 100644 Binary files a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_SoshTheme_Light_HighContrast.Icon_Minimal_Default_Disabled.png and b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_SoshTheme_Light_HighContrast.Icon_Minimal_Default_Disabled.png differ diff --git a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_SoshTheme_Light_HighContrast.Icon_Minimal_Default_Disabled_Rounded.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_SoshTheme_Light_HighContrast.Icon_Minimal_Default_Disabled_Rounded.png new file mode 100644 index 000000000..350fc2bf1 Binary files /dev/null and b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_SoshTheme_Light_HighContrast.Icon_Minimal_Default_Disabled_Rounded.png differ diff --git a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_SoshTheme_Light_HighContrast.Icon_Minimal_Default_Rounded.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_SoshTheme_Light_HighContrast.Icon_Minimal_Default_Rounded.png new file mode 100644 index 000000000..3fb5187f3 Binary files /dev/null and b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_SoshTheme_Light_HighContrast.Icon_Minimal_Default_Rounded.png differ diff --git a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_SoshTheme_Light_HighContrast.Icon_Negative_Default.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_SoshTheme_Light_HighContrast.Icon_Negative_Default.png index f49960cfe..2e09e3237 100644 Binary files a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_SoshTheme_Light_HighContrast.Icon_Negative_Default.png and b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_SoshTheme_Light_HighContrast.Icon_Negative_Default.png differ diff --git a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_SoshTheme_Light_HighContrast.Icon_Negative_Default_Disabled.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_SoshTheme_Light_HighContrast.Icon_Negative_Default_Disabled.png index 2ee18baff..69734263b 100644 Binary files a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_SoshTheme_Light_HighContrast.Icon_Negative_Default_Disabled.png and b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_SoshTheme_Light_HighContrast.Icon_Negative_Default_Disabled.png differ diff --git a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_SoshTheme_Light_HighContrast.Icon_Negative_Default_Disabled_Rounded.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_SoshTheme_Light_HighContrast.Icon_Negative_Default_Disabled_Rounded.png new file mode 100644 index 000000000..69734263b Binary files /dev/null and b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_SoshTheme_Light_HighContrast.Icon_Negative_Default_Disabled_Rounded.png differ diff --git a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_SoshTheme_Light_HighContrast.Icon_Negative_Default_Rounded.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_SoshTheme_Light_HighContrast.Icon_Negative_Default_Rounded.png new file mode 100644 index 000000000..2e09e3237 Binary files /dev/null and b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_SoshTheme_Light_HighContrast.Icon_Negative_Default_Rounded.png differ diff --git a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_SoshTheme_Light_HighContrast.Icon_Strong_Default.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_SoshTheme_Light_HighContrast.Icon_Strong_Default.png index bdcaed1d4..eaaea9f8c 100644 Binary files a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_SoshTheme_Light_HighContrast.Icon_Strong_Default.png and b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_SoshTheme_Light_HighContrast.Icon_Strong_Default.png differ diff --git a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_SoshTheme_Light_HighContrast.Icon_Strong_Default_Disabled.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_SoshTheme_Light_HighContrast.Icon_Strong_Default_Disabled.png index 2ee18baff..69734263b 100644 Binary files a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_SoshTheme_Light_HighContrast.Icon_Strong_Default_Disabled.png and b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_SoshTheme_Light_HighContrast.Icon_Strong_Default_Disabled.png differ diff --git a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_SoshTheme_Light_HighContrast.Icon_Strong_Default_Disabled_Rounded.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_SoshTheme_Light_HighContrast.Icon_Strong_Default_Disabled_Rounded.png new file mode 100644 index 000000000..69734263b Binary files /dev/null and b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_SoshTheme_Light_HighContrast.Icon_Strong_Default_Disabled_Rounded.png differ diff --git a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_SoshTheme_Light_HighContrast.Icon_Strong_Default_Rounded.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_SoshTheme_Light_HighContrast.Icon_Strong_Default_Rounded.png new file mode 100644 index 000000000..eaaea9f8c Binary files /dev/null and b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_SoshTheme_Light_HighContrast.Icon_Strong_Default_Rounded.png differ diff --git a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_SoshTheme_Light_HighContrast.TextAndIcon_Brand_Default.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_SoshTheme_Light_HighContrast.TextAndIcon_Brand_Default.png new file mode 100644 index 000000000..082a52808 Binary files /dev/null and b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_SoshTheme_Light_HighContrast.TextAndIcon_Brand_Default.png differ diff --git a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_SoshTheme_Light_HighContrast.TextAndIcon_Brand_Default_Disabled.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_SoshTheme_Light_HighContrast.TextAndIcon_Brand_Default_Disabled.png new file mode 100644 index 000000000..96fd22a0c Binary files /dev/null and b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_SoshTheme_Light_HighContrast.TextAndIcon_Brand_Default_Disabled.png differ diff --git a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_SoshTheme_Light_HighContrast.TextAndIcon_Brand_Default_Disabled_Rounded.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_SoshTheme_Light_HighContrast.TextAndIcon_Brand_Default_Disabled_Rounded.png new file mode 100644 index 000000000..96fd22a0c Binary files /dev/null and b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_SoshTheme_Light_HighContrast.TextAndIcon_Brand_Default_Disabled_Rounded.png differ diff --git a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_SoshTheme_Light_HighContrast.TextAndIcon_Brand_Default_Rounded.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_SoshTheme_Light_HighContrast.TextAndIcon_Brand_Default_Rounded.png new file mode 100644 index 000000000..082a52808 Binary files /dev/null and b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_SoshTheme_Light_HighContrast.TextAndIcon_Brand_Default_Rounded.png differ diff --git a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_SoshTheme_Light_HighContrast.TextAndIcon_Default_Default_Disabled_Rounded.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_SoshTheme_Light_HighContrast.TextAndIcon_Default_Default_Disabled_Rounded.png new file mode 100644 index 000000000..b9e50f1e0 Binary files /dev/null and b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_SoshTheme_Light_HighContrast.TextAndIcon_Default_Default_Disabled_Rounded.png differ diff --git a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_SoshTheme_Light_HighContrast.TextAndIcon_Default_Default_Rounded.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_SoshTheme_Light_HighContrast.TextAndIcon_Default_Default_Rounded.png new file mode 100644 index 000000000..bb0a9554f Binary files /dev/null and b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_SoshTheme_Light_HighContrast.TextAndIcon_Default_Default_Rounded.png differ diff --git a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_SoshTheme_Light_HighContrast.TextAndIcon_Minimal_Default.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_SoshTheme_Light_HighContrast.TextAndIcon_Minimal_Default.png index bb0a9554f..02cafc956 100644 Binary files a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_SoshTheme_Light_HighContrast.TextAndIcon_Minimal_Default.png and b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_SoshTheme_Light_HighContrast.TextAndIcon_Minimal_Default.png differ diff --git a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_SoshTheme_Light_HighContrast.TextAndIcon_Minimal_Default_Disabled.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_SoshTheme_Light_HighContrast.TextAndIcon_Minimal_Default_Disabled.png index b9e50f1e0..a4c51b4ac 100644 Binary files a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_SoshTheme_Light_HighContrast.TextAndIcon_Minimal_Default_Disabled.png and b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_SoshTheme_Light_HighContrast.TextAndIcon_Minimal_Default_Disabled.png differ diff --git a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_SoshTheme_Light_HighContrast.TextAndIcon_Minimal_Default_Disabled_Rounded.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_SoshTheme_Light_HighContrast.TextAndIcon_Minimal_Default_Disabled_Rounded.png new file mode 100644 index 000000000..a4c51b4ac Binary files /dev/null and b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_SoshTheme_Light_HighContrast.TextAndIcon_Minimal_Default_Disabled_Rounded.png differ diff --git a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_SoshTheme_Light_HighContrast.TextAndIcon_Minimal_Default_Rounded.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_SoshTheme_Light_HighContrast.TextAndIcon_Minimal_Default_Rounded.png new file mode 100644 index 000000000..02cafc956 Binary files /dev/null and b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_SoshTheme_Light_HighContrast.TextAndIcon_Minimal_Default_Rounded.png differ diff --git a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_SoshTheme_Light_HighContrast.TextAndIcon_Negative_Default.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_SoshTheme_Light_HighContrast.TextAndIcon_Negative_Default.png index 008700f25..915005d54 100644 Binary files a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_SoshTheme_Light_HighContrast.TextAndIcon_Negative_Default.png and b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_SoshTheme_Light_HighContrast.TextAndIcon_Negative_Default.png differ diff --git a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_SoshTheme_Light_HighContrast.TextAndIcon_Negative_Default_Disabled.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_SoshTheme_Light_HighContrast.TextAndIcon_Negative_Default_Disabled.png index 6bd6bf300..96fd22a0c 100644 Binary files a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_SoshTheme_Light_HighContrast.TextAndIcon_Negative_Default_Disabled.png and b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_SoshTheme_Light_HighContrast.TextAndIcon_Negative_Default_Disabled.png differ diff --git a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_SoshTheme_Light_HighContrast.TextAndIcon_Negative_Default_Disabled_Rounded.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_SoshTheme_Light_HighContrast.TextAndIcon_Negative_Default_Disabled_Rounded.png new file mode 100644 index 000000000..96fd22a0c Binary files /dev/null and b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_SoshTheme_Light_HighContrast.TextAndIcon_Negative_Default_Disabled_Rounded.png differ diff --git a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_SoshTheme_Light_HighContrast.TextAndIcon_Negative_Default_Rounded.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_SoshTheme_Light_HighContrast.TextAndIcon_Negative_Default_Rounded.png new file mode 100644 index 000000000..915005d54 Binary files /dev/null and b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_SoshTheme_Light_HighContrast.TextAndIcon_Negative_Default_Rounded.png differ diff --git a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_SoshTheme_Light_HighContrast.TextAndIcon_Strong_Default.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_SoshTheme_Light_HighContrast.TextAndIcon_Strong_Default.png index 95c6ffa01..61f87f510 100644 Binary files a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_SoshTheme_Light_HighContrast.TextAndIcon_Strong_Default.png and b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_SoshTheme_Light_HighContrast.TextAndIcon_Strong_Default.png differ diff --git a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_SoshTheme_Light_HighContrast.TextAndIcon_Strong_Default_Disabled.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_SoshTheme_Light_HighContrast.TextAndIcon_Strong_Default_Disabled.png index 6bd6bf300..96fd22a0c 100644 Binary files a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_SoshTheme_Light_HighContrast.TextAndIcon_Strong_Default_Disabled.png and b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_SoshTheme_Light_HighContrast.TextAndIcon_Strong_Default_Disabled.png differ diff --git a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_SoshTheme_Light_HighContrast.TextAndIcon_Strong_Default_Disabled_Rounded.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_SoshTheme_Light_HighContrast.TextAndIcon_Strong_Default_Disabled_Rounded.png new file mode 100644 index 000000000..96fd22a0c Binary files /dev/null and b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_SoshTheme_Light_HighContrast.TextAndIcon_Strong_Default_Disabled_Rounded.png differ diff --git a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_SoshTheme_Light_HighContrast.TextAndIcon_Strong_Default_Rounded.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_SoshTheme_Light_HighContrast.TextAndIcon_Strong_Default_Rounded.png new file mode 100644 index 000000000..61f87f510 Binary files /dev/null and b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_SoshTheme_Light_HighContrast.TextAndIcon_Strong_Default_Rounded.png differ diff --git a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_SoshTheme_Light_HighContrast.Text_Brand_Default.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_SoshTheme_Light_HighContrast.Text_Brand_Default.png new file mode 100644 index 000000000..961ffb84d Binary files /dev/null and b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_SoshTheme_Light_HighContrast.Text_Brand_Default.png differ diff --git a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_SoshTheme_Light_HighContrast.Text_Brand_Default_Disabled.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_SoshTheme_Light_HighContrast.Text_Brand_Default_Disabled.png new file mode 100644 index 000000000..fce2bfe48 Binary files /dev/null and b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_SoshTheme_Light_HighContrast.Text_Brand_Default_Disabled.png differ diff --git a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_SoshTheme_Light_HighContrast.Text_Brand_Default_Disabled_Rounded.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_SoshTheme_Light_HighContrast.Text_Brand_Default_Disabled_Rounded.png new file mode 100644 index 000000000..fce2bfe48 Binary files /dev/null and b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_SoshTheme_Light_HighContrast.Text_Brand_Default_Disabled_Rounded.png differ diff --git a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_SoshTheme_Light_HighContrast.Text_Brand_Default_Rounded.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_SoshTheme_Light_HighContrast.Text_Brand_Default_Rounded.png new file mode 100644 index 000000000..961ffb84d Binary files /dev/null and b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_SoshTheme_Light_HighContrast.Text_Brand_Default_Rounded.png differ diff --git a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_SoshTheme_Light_HighContrast.Text_Default_Default_Disabled_Rounded.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_SoshTheme_Light_HighContrast.Text_Default_Default_Disabled_Rounded.png new file mode 100644 index 000000000..2dfd6a13c Binary files /dev/null and b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_SoshTheme_Light_HighContrast.Text_Default_Default_Disabled_Rounded.png differ diff --git a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_SoshTheme_Light_HighContrast.Text_Default_Default_Rounded.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_SoshTheme_Light_HighContrast.Text_Default_Default_Rounded.png new file mode 100644 index 000000000..24714bc7c Binary files /dev/null and b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_SoshTheme_Light_HighContrast.Text_Default_Default_Rounded.png differ diff --git a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_SoshTheme_Light_HighContrast.Text_Minimal_Default.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_SoshTheme_Light_HighContrast.Text_Minimal_Default.png index 24714bc7c..cfff004a6 100644 Binary files a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_SoshTheme_Light_HighContrast.Text_Minimal_Default.png and b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_SoshTheme_Light_HighContrast.Text_Minimal_Default.png differ diff --git a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_SoshTheme_Light_HighContrast.Text_Minimal_Default_Disabled.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_SoshTheme_Light_HighContrast.Text_Minimal_Default_Disabled.png index 2dfd6a13c..fe784c071 100644 Binary files a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_SoshTheme_Light_HighContrast.Text_Minimal_Default_Disabled.png and b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_SoshTheme_Light_HighContrast.Text_Minimal_Default_Disabled.png differ diff --git a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_SoshTheme_Light_HighContrast.Text_Minimal_Default_Disabled_Rounded.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_SoshTheme_Light_HighContrast.Text_Minimal_Default_Disabled_Rounded.png new file mode 100644 index 000000000..fe784c071 Binary files /dev/null and b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_SoshTheme_Light_HighContrast.Text_Minimal_Default_Disabled_Rounded.png differ diff --git a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_SoshTheme_Light_HighContrast.Text_Minimal_Default_Rounded.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_SoshTheme_Light_HighContrast.Text_Minimal_Default_Rounded.png new file mode 100644 index 000000000..cfff004a6 Binary files /dev/null and b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_SoshTheme_Light_HighContrast.Text_Minimal_Default_Rounded.png differ diff --git a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_SoshTheme_Light_HighContrast.Text_Negative_Default.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_SoshTheme_Light_HighContrast.Text_Negative_Default.png index b30547e17..903aebd34 100644 Binary files a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_SoshTheme_Light_HighContrast.Text_Negative_Default.png and b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_SoshTheme_Light_HighContrast.Text_Negative_Default.png differ diff --git a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_SoshTheme_Light_HighContrast.Text_Negative_Default_Disabled.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_SoshTheme_Light_HighContrast.Text_Negative_Default_Disabled.png index 7c15df488..fce2bfe48 100644 Binary files a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_SoshTheme_Light_HighContrast.Text_Negative_Default_Disabled.png and b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_SoshTheme_Light_HighContrast.Text_Negative_Default_Disabled.png differ diff --git a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_SoshTheme_Light_HighContrast.Text_Negative_Default_Disabled_Rounded.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_SoshTheme_Light_HighContrast.Text_Negative_Default_Disabled_Rounded.png new file mode 100644 index 000000000..fce2bfe48 Binary files /dev/null and b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_SoshTheme_Light_HighContrast.Text_Negative_Default_Disabled_Rounded.png differ diff --git a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_SoshTheme_Light_HighContrast.Text_Negative_Default_Rounded.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_SoshTheme_Light_HighContrast.Text_Negative_Default_Rounded.png new file mode 100644 index 000000000..903aebd34 Binary files /dev/null and b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_SoshTheme_Light_HighContrast.Text_Negative_Default_Rounded.png differ diff --git a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_SoshTheme_Light_HighContrast.Text_Strong_Default.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_SoshTheme_Light_HighContrast.Text_Strong_Default.png index d86fc1e80..1bda1881b 100644 Binary files a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_SoshTheme_Light_HighContrast.Text_Strong_Default.png and b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_SoshTheme_Light_HighContrast.Text_Strong_Default.png differ diff --git a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_SoshTheme_Light_HighContrast.Text_Strong_Default_Disabled.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_SoshTheme_Light_HighContrast.Text_Strong_Default_Disabled.png index 7c15df488..fce2bfe48 100644 Binary files a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_SoshTheme_Light_HighContrast.Text_Strong_Default_Disabled.png and b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_SoshTheme_Light_HighContrast.Text_Strong_Default_Disabled.png differ diff --git a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_SoshTheme_Light_HighContrast.Text_Strong_Default_Disabled_Rounded.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_SoshTheme_Light_HighContrast.Text_Strong_Default_Disabled_Rounded.png new file mode 100644 index 000000000..fce2bfe48 Binary files /dev/null and b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_SoshTheme_Light_HighContrast.Text_Strong_Default_Disabled_Rounded.png differ diff --git a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_SoshTheme_Light_HighContrast.Text_Strong_Default_Rounded.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_SoshTheme_Light_HighContrast.Text_Strong_Default_Rounded.png new file mode 100644 index 000000000..1bda1881b Binary files /dev/null and b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_SoshTheme_Light_HighContrast.Text_Strong_Default_Rounded.png differ diff --git a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_WireframeTheme_Dark_.ColoredSurface_Icon_Default_Default_Disabled_Rounded.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_WireframeTheme_Dark_.ColoredSurface_Icon_Default_Default_Disabled_Rounded.png new file mode 100644 index 000000000..e9d2aed60 Binary files /dev/null and b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_WireframeTheme_Dark_.ColoredSurface_Icon_Default_Default_Disabled_Rounded.png differ diff --git a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_WireframeTheme_Dark_.ColoredSurface_Icon_Default_Default_Rounded.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_WireframeTheme_Dark_.ColoredSurface_Icon_Default_Default_Rounded.png new file mode 100644 index 000000000..33c8884b8 Binary files /dev/null and b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_WireframeTheme_Dark_.ColoredSurface_Icon_Default_Default_Rounded.png differ diff --git a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_WireframeTheme_Dark_.ColoredSurface_Icon_Minimal_Default_Disabled_Rounded.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_WireframeTheme_Dark_.ColoredSurface_Icon_Minimal_Default_Disabled_Rounded.png new file mode 100644 index 000000000..e9d2aed60 Binary files /dev/null and b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_WireframeTheme_Dark_.ColoredSurface_Icon_Minimal_Default_Disabled_Rounded.png differ diff --git a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_WireframeTheme_Dark_.ColoredSurface_Icon_Minimal_Default_Rounded.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_WireframeTheme_Dark_.ColoredSurface_Icon_Minimal_Default_Rounded.png new file mode 100644 index 000000000..33c8884b8 Binary files /dev/null and b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_WireframeTheme_Dark_.ColoredSurface_Icon_Minimal_Default_Rounded.png differ diff --git a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_WireframeTheme_Dark_.ColoredSurface_Icon_Strong_Default_Disabled_Rounded.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_WireframeTheme_Dark_.ColoredSurface_Icon_Strong_Default_Disabled_Rounded.png new file mode 100644 index 000000000..aa113b152 Binary files /dev/null and b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_WireframeTheme_Dark_.ColoredSurface_Icon_Strong_Default_Disabled_Rounded.png differ diff --git a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_WireframeTheme_Dark_.ColoredSurface_Icon_Strong_Default_Rounded.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_WireframeTheme_Dark_.ColoredSurface_Icon_Strong_Default_Rounded.png new file mode 100644 index 000000000..ee44dd3a4 Binary files /dev/null and b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_WireframeTheme_Dark_.ColoredSurface_Icon_Strong_Default_Rounded.png differ diff --git a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_WireframeTheme_Dark_.ColoredSurface_TextAndIcon_Default_Default_Disabled_Rounded.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_WireframeTheme_Dark_.ColoredSurface_TextAndIcon_Default_Default_Disabled_Rounded.png new file mode 100644 index 000000000..13e6c3f5c Binary files /dev/null and b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_WireframeTheme_Dark_.ColoredSurface_TextAndIcon_Default_Default_Disabled_Rounded.png differ diff --git a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_WireframeTheme_Dark_.ColoredSurface_TextAndIcon_Default_Default_Rounded.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_WireframeTheme_Dark_.ColoredSurface_TextAndIcon_Default_Default_Rounded.png new file mode 100644 index 000000000..a20d6df59 Binary files /dev/null and b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_WireframeTheme_Dark_.ColoredSurface_TextAndIcon_Default_Default_Rounded.png differ diff --git a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_WireframeTheme_Dark_.ColoredSurface_TextAndIcon_Minimal_Default_Disabled_Rounded.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_WireframeTheme_Dark_.ColoredSurface_TextAndIcon_Minimal_Default_Disabled_Rounded.png new file mode 100644 index 000000000..13e6c3f5c Binary files /dev/null and b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_WireframeTheme_Dark_.ColoredSurface_TextAndIcon_Minimal_Default_Disabled_Rounded.png differ diff --git a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_WireframeTheme_Dark_.ColoredSurface_TextAndIcon_Minimal_Default_Rounded.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_WireframeTheme_Dark_.ColoredSurface_TextAndIcon_Minimal_Default_Rounded.png new file mode 100644 index 000000000..a20d6df59 Binary files /dev/null and b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_WireframeTheme_Dark_.ColoredSurface_TextAndIcon_Minimal_Default_Rounded.png differ diff --git a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_WireframeTheme_Dark_.ColoredSurface_TextAndIcon_Strong_Default_Disabled_Rounded.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_WireframeTheme_Dark_.ColoredSurface_TextAndIcon_Strong_Default_Disabled_Rounded.png new file mode 100644 index 000000000..c9ceaeb74 Binary files /dev/null and b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_WireframeTheme_Dark_.ColoredSurface_TextAndIcon_Strong_Default_Disabled_Rounded.png differ diff --git a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_WireframeTheme_Dark_.ColoredSurface_TextAndIcon_Strong_Default_Rounded.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_WireframeTheme_Dark_.ColoredSurface_TextAndIcon_Strong_Default_Rounded.png new file mode 100644 index 000000000..de0aa3998 Binary files /dev/null and b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_WireframeTheme_Dark_.ColoredSurface_TextAndIcon_Strong_Default_Rounded.png differ diff --git a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_WireframeTheme_Dark_.ColoredSurface_Text_Default_Default_Disabled_Rounded.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_WireframeTheme_Dark_.ColoredSurface_Text_Default_Default_Disabled_Rounded.png new file mode 100644 index 000000000..f870bafb0 Binary files /dev/null and b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_WireframeTheme_Dark_.ColoredSurface_Text_Default_Default_Disabled_Rounded.png differ diff --git a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_WireframeTheme_Dark_.ColoredSurface_Text_Default_Default_Rounded.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_WireframeTheme_Dark_.ColoredSurface_Text_Default_Default_Rounded.png new file mode 100644 index 000000000..95b742dd6 Binary files /dev/null and b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_WireframeTheme_Dark_.ColoredSurface_Text_Default_Default_Rounded.png differ diff --git a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_WireframeTheme_Dark_.ColoredSurface_Text_Minimal_Default_Disabled_Rounded.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_WireframeTheme_Dark_.ColoredSurface_Text_Minimal_Default_Disabled_Rounded.png new file mode 100644 index 000000000..f870bafb0 Binary files /dev/null and b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_WireframeTheme_Dark_.ColoredSurface_Text_Minimal_Default_Disabled_Rounded.png differ diff --git a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_WireframeTheme_Dark_.ColoredSurface_Text_Minimal_Default_Rounded.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_WireframeTheme_Dark_.ColoredSurface_Text_Minimal_Default_Rounded.png new file mode 100644 index 000000000..95b742dd6 Binary files /dev/null and b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_WireframeTheme_Dark_.ColoredSurface_Text_Minimal_Default_Rounded.png differ diff --git a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_WireframeTheme_Dark_.ColoredSurface_Text_Strong_Default_Disabled_Rounded.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_WireframeTheme_Dark_.ColoredSurface_Text_Strong_Default_Disabled_Rounded.png new file mode 100644 index 000000000..1134fde43 Binary files /dev/null and b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_WireframeTheme_Dark_.ColoredSurface_Text_Strong_Default_Disabled_Rounded.png differ diff --git a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_WireframeTheme_Dark_.ColoredSurface_Text_Strong_Default_Rounded.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_WireframeTheme_Dark_.ColoredSurface_Text_Strong_Default_Rounded.png new file mode 100644 index 000000000..c1b40e16b Binary files /dev/null and b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_WireframeTheme_Dark_.ColoredSurface_Text_Strong_Default_Rounded.png differ diff --git a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_WireframeTheme_Dark_.Icon_Brand_Default.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_WireframeTheme_Dark_.Icon_Brand_Default.png new file mode 100644 index 000000000..bc12f94d0 Binary files /dev/null and b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_WireframeTheme_Dark_.Icon_Brand_Default.png differ diff --git a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_WireframeTheme_Dark_.Icon_Brand_Default_Disabled.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_WireframeTheme_Dark_.Icon_Brand_Default_Disabled.png new file mode 100644 index 000000000..cb44568fa Binary files /dev/null and b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_WireframeTheme_Dark_.Icon_Brand_Default_Disabled.png differ diff --git a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_WireframeTheme_Dark_.Icon_Brand_Default_Disabled_Rounded.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_WireframeTheme_Dark_.Icon_Brand_Default_Disabled_Rounded.png new file mode 100644 index 000000000..cb44568fa Binary files /dev/null and b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_WireframeTheme_Dark_.Icon_Brand_Default_Disabled_Rounded.png differ diff --git a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_WireframeTheme_Dark_.Icon_Brand_Default_Rounded.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_WireframeTheme_Dark_.Icon_Brand_Default_Rounded.png new file mode 100644 index 000000000..bc12f94d0 Binary files /dev/null and b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_WireframeTheme_Dark_.Icon_Brand_Default_Rounded.png differ diff --git a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_WireframeTheme_Dark_.Icon_Default_Default_Disabled_Rounded.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_WireframeTheme_Dark_.Icon_Default_Default_Disabled_Rounded.png new file mode 100644 index 000000000..647ffe4ca Binary files /dev/null and b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_WireframeTheme_Dark_.Icon_Default_Default_Disabled_Rounded.png differ diff --git a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_WireframeTheme_Dark_.Icon_Default_Default_Rounded.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_WireframeTheme_Dark_.Icon_Default_Default_Rounded.png new file mode 100644 index 000000000..03ac0053a Binary files /dev/null and b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_WireframeTheme_Dark_.Icon_Default_Default_Rounded.png differ diff --git a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_WireframeTheme_Dark_.Icon_Minimal_Default_Disabled_Rounded.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_WireframeTheme_Dark_.Icon_Minimal_Default_Disabled_Rounded.png new file mode 100644 index 000000000..027b28265 Binary files /dev/null and b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_WireframeTheme_Dark_.Icon_Minimal_Default_Disabled_Rounded.png differ diff --git a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_WireframeTheme_Dark_.Icon_Minimal_Default_Rounded.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_WireframeTheme_Dark_.Icon_Minimal_Default_Rounded.png new file mode 100644 index 000000000..321709bfd Binary files /dev/null and b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_WireframeTheme_Dark_.Icon_Minimal_Default_Rounded.png differ diff --git a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_WireframeTheme_Dark_.Icon_Negative_Default.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_WireframeTheme_Dark_.Icon_Negative_Default.png index 2412b665c..be1f7f661 100644 Binary files a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_WireframeTheme_Dark_.Icon_Negative_Default.png and b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_WireframeTheme_Dark_.Icon_Negative_Default.png differ diff --git a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_WireframeTheme_Dark_.Icon_Negative_Default_Disabled.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_WireframeTheme_Dark_.Icon_Negative_Default_Disabled.png index e3712c92d..cb44568fa 100644 Binary files a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_WireframeTheme_Dark_.Icon_Negative_Default_Disabled.png and b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_WireframeTheme_Dark_.Icon_Negative_Default_Disabled.png differ diff --git a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_WireframeTheme_Dark_.Icon_Negative_Default_Disabled_Rounded.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_WireframeTheme_Dark_.Icon_Negative_Default_Disabled_Rounded.png new file mode 100644 index 000000000..cb44568fa Binary files /dev/null and b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_WireframeTheme_Dark_.Icon_Negative_Default_Disabled_Rounded.png differ diff --git a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_WireframeTheme_Dark_.Icon_Negative_Default_Rounded.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_WireframeTheme_Dark_.Icon_Negative_Default_Rounded.png new file mode 100644 index 000000000..be1f7f661 Binary files /dev/null and b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_WireframeTheme_Dark_.Icon_Negative_Default_Rounded.png differ diff --git a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_WireframeTheme_Dark_.Icon_Strong_Default.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_WireframeTheme_Dark_.Icon_Strong_Default.png index 33c8884b8..4093c8e53 100644 Binary files a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_WireframeTheme_Dark_.Icon_Strong_Default.png and b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_WireframeTheme_Dark_.Icon_Strong_Default.png differ diff --git a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_WireframeTheme_Dark_.Icon_Strong_Default_Disabled.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_WireframeTheme_Dark_.Icon_Strong_Default_Disabled.png index e3712c92d..cb44568fa 100644 Binary files a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_WireframeTheme_Dark_.Icon_Strong_Default_Disabled.png and b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_WireframeTheme_Dark_.Icon_Strong_Default_Disabled.png differ diff --git a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_WireframeTheme_Dark_.Icon_Strong_Default_Disabled_Rounded.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_WireframeTheme_Dark_.Icon_Strong_Default_Disabled_Rounded.png new file mode 100644 index 000000000..cb44568fa Binary files /dev/null and b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_WireframeTheme_Dark_.Icon_Strong_Default_Disabled_Rounded.png differ diff --git a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_WireframeTheme_Dark_.Icon_Strong_Default_Rounded.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_WireframeTheme_Dark_.Icon_Strong_Default_Rounded.png new file mode 100644 index 000000000..4093c8e53 Binary files /dev/null and b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_WireframeTheme_Dark_.Icon_Strong_Default_Rounded.png differ diff --git a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_WireframeTheme_Dark_.TextAndIcon_Brand_Default.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_WireframeTheme_Dark_.TextAndIcon_Brand_Default.png new file mode 100644 index 000000000..4a2126397 Binary files /dev/null and b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_WireframeTheme_Dark_.TextAndIcon_Brand_Default.png differ diff --git a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_WireframeTheme_Dark_.TextAndIcon_Brand_Default_Disabled.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_WireframeTheme_Dark_.TextAndIcon_Brand_Default_Disabled.png new file mode 100644 index 000000000..71ebcd21d Binary files /dev/null and b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_WireframeTheme_Dark_.TextAndIcon_Brand_Default_Disabled.png differ diff --git a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_WireframeTheme_Dark_.TextAndIcon_Brand_Default_Disabled_Rounded.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_WireframeTheme_Dark_.TextAndIcon_Brand_Default_Disabled_Rounded.png new file mode 100644 index 000000000..71ebcd21d Binary files /dev/null and b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_WireframeTheme_Dark_.TextAndIcon_Brand_Default_Disabled_Rounded.png differ diff --git a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_WireframeTheme_Dark_.TextAndIcon_Brand_Default_Rounded.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_WireframeTheme_Dark_.TextAndIcon_Brand_Default_Rounded.png new file mode 100644 index 000000000..4a2126397 Binary files /dev/null and b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_WireframeTheme_Dark_.TextAndIcon_Brand_Default_Rounded.png differ diff --git a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_WireframeTheme_Dark_.TextAndIcon_Default_Default_Disabled_Rounded.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_WireframeTheme_Dark_.TextAndIcon_Default_Default_Disabled_Rounded.png new file mode 100644 index 000000000..48bd84236 Binary files /dev/null and b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_WireframeTheme_Dark_.TextAndIcon_Default_Default_Disabled_Rounded.png differ diff --git a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_WireframeTheme_Dark_.TextAndIcon_Default_Default_Rounded.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_WireframeTheme_Dark_.TextAndIcon_Default_Default_Rounded.png new file mode 100644 index 000000000..692deb38f Binary files /dev/null and b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_WireframeTheme_Dark_.TextAndIcon_Default_Default_Rounded.png differ diff --git a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_WireframeTheme_Dark_.TextAndIcon_Minimal_Default_Disabled_Rounded.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_WireframeTheme_Dark_.TextAndIcon_Minimal_Default_Disabled_Rounded.png new file mode 100644 index 000000000..59eb25e02 Binary files /dev/null and b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_WireframeTheme_Dark_.TextAndIcon_Minimal_Default_Disabled_Rounded.png differ diff --git a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_WireframeTheme_Dark_.TextAndIcon_Minimal_Default_Rounded.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_WireframeTheme_Dark_.TextAndIcon_Minimal_Default_Rounded.png new file mode 100644 index 000000000..6a55821a1 Binary files /dev/null and b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_WireframeTheme_Dark_.TextAndIcon_Minimal_Default_Rounded.png differ diff --git a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_WireframeTheme_Dark_.TextAndIcon_Negative_Default.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_WireframeTheme_Dark_.TextAndIcon_Negative_Default.png index 8815e2926..4a776a4b1 100644 Binary files a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_WireframeTheme_Dark_.TextAndIcon_Negative_Default.png and b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_WireframeTheme_Dark_.TextAndIcon_Negative_Default.png differ diff --git a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_WireframeTheme_Dark_.TextAndIcon_Negative_Default_Disabled.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_WireframeTheme_Dark_.TextAndIcon_Negative_Default_Disabled.png index 8d9aa1546..71ebcd21d 100644 Binary files a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_WireframeTheme_Dark_.TextAndIcon_Negative_Default_Disabled.png and b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_WireframeTheme_Dark_.TextAndIcon_Negative_Default_Disabled.png differ diff --git a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_WireframeTheme_Dark_.TextAndIcon_Negative_Default_Disabled_Rounded.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_WireframeTheme_Dark_.TextAndIcon_Negative_Default_Disabled_Rounded.png new file mode 100644 index 000000000..71ebcd21d Binary files /dev/null and b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_WireframeTheme_Dark_.TextAndIcon_Negative_Default_Disabled_Rounded.png differ diff --git a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_WireframeTheme_Dark_.TextAndIcon_Negative_Default_Rounded.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_WireframeTheme_Dark_.TextAndIcon_Negative_Default_Rounded.png new file mode 100644 index 000000000..4a776a4b1 Binary files /dev/null and b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_WireframeTheme_Dark_.TextAndIcon_Negative_Default_Rounded.png differ diff --git a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_WireframeTheme_Dark_.TextAndIcon_Strong_Default.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_WireframeTheme_Dark_.TextAndIcon_Strong_Default.png index a20d6df59..318a7d685 100644 Binary files a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_WireframeTheme_Dark_.TextAndIcon_Strong_Default.png and b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_WireframeTheme_Dark_.TextAndIcon_Strong_Default.png differ diff --git a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_WireframeTheme_Dark_.TextAndIcon_Strong_Default_Disabled.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_WireframeTheme_Dark_.TextAndIcon_Strong_Default_Disabled.png index 8d9aa1546..71ebcd21d 100644 Binary files a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_WireframeTheme_Dark_.TextAndIcon_Strong_Default_Disabled.png and b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_WireframeTheme_Dark_.TextAndIcon_Strong_Default_Disabled.png differ diff --git a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_WireframeTheme_Dark_.TextAndIcon_Strong_Default_Disabled_Rounded.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_WireframeTheme_Dark_.TextAndIcon_Strong_Default_Disabled_Rounded.png new file mode 100644 index 000000000..71ebcd21d Binary files /dev/null and b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_WireframeTheme_Dark_.TextAndIcon_Strong_Default_Disabled_Rounded.png differ diff --git a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_WireframeTheme_Dark_.TextAndIcon_Strong_Default_Rounded.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_WireframeTheme_Dark_.TextAndIcon_Strong_Default_Rounded.png new file mode 100644 index 000000000..318a7d685 Binary files /dev/null and b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_WireframeTheme_Dark_.TextAndIcon_Strong_Default_Rounded.png differ diff --git a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_WireframeTheme_Dark_.Text_Brand_Default.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_WireframeTheme_Dark_.Text_Brand_Default.png new file mode 100644 index 000000000..3d2013b2e Binary files /dev/null and b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_WireframeTheme_Dark_.Text_Brand_Default.png differ diff --git a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_WireframeTheme_Dark_.Text_Brand_Default_Disabled.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_WireframeTheme_Dark_.Text_Brand_Default_Disabled.png new file mode 100644 index 000000000..daa1216f4 Binary files /dev/null and b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_WireframeTheme_Dark_.Text_Brand_Default_Disabled.png differ diff --git a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_WireframeTheme_Dark_.Text_Brand_Default_Disabled_Rounded.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_WireframeTheme_Dark_.Text_Brand_Default_Disabled_Rounded.png new file mode 100644 index 000000000..daa1216f4 Binary files /dev/null and b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_WireframeTheme_Dark_.Text_Brand_Default_Disabled_Rounded.png differ diff --git a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_WireframeTheme_Dark_.Text_Brand_Default_Rounded.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_WireframeTheme_Dark_.Text_Brand_Default_Rounded.png new file mode 100644 index 000000000..3d2013b2e Binary files /dev/null and b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_WireframeTheme_Dark_.Text_Brand_Default_Rounded.png differ diff --git a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_WireframeTheme_Dark_.Text_Default_Default_Disabled_Rounded.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_WireframeTheme_Dark_.Text_Default_Default_Disabled_Rounded.png new file mode 100644 index 000000000..b1fa7b23c Binary files /dev/null and b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_WireframeTheme_Dark_.Text_Default_Default_Disabled_Rounded.png differ diff --git a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_WireframeTheme_Dark_.Text_Default_Default_Rounded.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_WireframeTheme_Dark_.Text_Default_Default_Rounded.png new file mode 100644 index 000000000..dc49a3e09 Binary files /dev/null and b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_WireframeTheme_Dark_.Text_Default_Default_Rounded.png differ diff --git a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_WireframeTheme_Dark_.Text_Minimal_Default_Disabled_Rounded.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_WireframeTheme_Dark_.Text_Minimal_Default_Disabled_Rounded.png new file mode 100644 index 000000000..d4cd4e3f6 Binary files /dev/null and b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_WireframeTheme_Dark_.Text_Minimal_Default_Disabled_Rounded.png differ diff --git a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_WireframeTheme_Dark_.Text_Minimal_Default_Rounded.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_WireframeTheme_Dark_.Text_Minimal_Default_Rounded.png new file mode 100644 index 000000000..7b3bb61d7 Binary files /dev/null and b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_WireframeTheme_Dark_.Text_Minimal_Default_Rounded.png differ diff --git a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_WireframeTheme_Dark_.Text_Negative_Default.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_WireframeTheme_Dark_.Text_Negative_Default.png index 9a93538c4..85f89184a 100644 Binary files a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_WireframeTheme_Dark_.Text_Negative_Default.png and b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_WireframeTheme_Dark_.Text_Negative_Default.png differ diff --git a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_WireframeTheme_Dark_.Text_Negative_Default_Disabled.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_WireframeTheme_Dark_.Text_Negative_Default_Disabled.png index 15a00533f..daa1216f4 100644 Binary files a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_WireframeTheme_Dark_.Text_Negative_Default_Disabled.png and b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_WireframeTheme_Dark_.Text_Negative_Default_Disabled.png differ diff --git a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_WireframeTheme_Dark_.Text_Negative_Default_Disabled_Rounded.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_WireframeTheme_Dark_.Text_Negative_Default_Disabled_Rounded.png new file mode 100644 index 000000000..daa1216f4 Binary files /dev/null and b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_WireframeTheme_Dark_.Text_Negative_Default_Disabled_Rounded.png differ diff --git a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_WireframeTheme_Dark_.Text_Negative_Default_Rounded.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_WireframeTheme_Dark_.Text_Negative_Default_Rounded.png new file mode 100644 index 000000000..85f89184a Binary files /dev/null and b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_WireframeTheme_Dark_.Text_Negative_Default_Rounded.png differ diff --git a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_WireframeTheme_Dark_.Text_Strong_Default.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_WireframeTheme_Dark_.Text_Strong_Default.png index 95b742dd6..e8e74c6a3 100644 Binary files a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_WireframeTheme_Dark_.Text_Strong_Default.png and b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_WireframeTheme_Dark_.Text_Strong_Default.png differ diff --git a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_WireframeTheme_Dark_.Text_Strong_Default_Disabled.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_WireframeTheme_Dark_.Text_Strong_Default_Disabled.png index 15a00533f..daa1216f4 100644 Binary files a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_WireframeTheme_Dark_.Text_Strong_Default_Disabled.png and b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_WireframeTheme_Dark_.Text_Strong_Default_Disabled.png differ diff --git a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_WireframeTheme_Dark_.Text_Strong_Default_Disabled_Rounded.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_WireframeTheme_Dark_.Text_Strong_Default_Disabled_Rounded.png new file mode 100644 index 000000000..daa1216f4 Binary files /dev/null and b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_WireframeTheme_Dark_.Text_Strong_Default_Disabled_Rounded.png differ diff --git a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_WireframeTheme_Dark_.Text_Strong_Default_Rounded.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_WireframeTheme_Dark_.Text_Strong_Default_Rounded.png new file mode 100644 index 000000000..e8e74c6a3 Binary files /dev/null and b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_WireframeTheme_Dark_.Text_Strong_Default_Rounded.png differ diff --git a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_WireframeTheme_Dark_HighContrast.ColoredSurface_Icon_Default_Default_Disabled_Rounded.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_WireframeTheme_Dark_HighContrast.ColoredSurface_Icon_Default_Default_Disabled_Rounded.png new file mode 100644 index 000000000..e9d2aed60 Binary files /dev/null and b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_WireframeTheme_Dark_HighContrast.ColoredSurface_Icon_Default_Default_Disabled_Rounded.png differ diff --git a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_WireframeTheme_Dark_HighContrast.ColoredSurface_Icon_Default_Default_Rounded.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_WireframeTheme_Dark_HighContrast.ColoredSurface_Icon_Default_Default_Rounded.png new file mode 100644 index 000000000..33c8884b8 Binary files /dev/null and b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_WireframeTheme_Dark_HighContrast.ColoredSurface_Icon_Default_Default_Rounded.png differ diff --git a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_WireframeTheme_Dark_HighContrast.ColoredSurface_Icon_Minimal_Default_Disabled_Rounded.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_WireframeTheme_Dark_HighContrast.ColoredSurface_Icon_Minimal_Default_Disabled_Rounded.png new file mode 100644 index 000000000..e9d2aed60 Binary files /dev/null and b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_WireframeTheme_Dark_HighContrast.ColoredSurface_Icon_Minimal_Default_Disabled_Rounded.png differ diff --git a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_WireframeTheme_Dark_HighContrast.ColoredSurface_Icon_Minimal_Default_Rounded.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_WireframeTheme_Dark_HighContrast.ColoredSurface_Icon_Minimal_Default_Rounded.png new file mode 100644 index 000000000..33c8884b8 Binary files /dev/null and b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_WireframeTheme_Dark_HighContrast.ColoredSurface_Icon_Minimal_Default_Rounded.png differ diff --git a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_WireframeTheme_Dark_HighContrast.ColoredSurface_Icon_Strong_Default_Disabled_Rounded.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_WireframeTheme_Dark_HighContrast.ColoredSurface_Icon_Strong_Default_Disabled_Rounded.png new file mode 100644 index 000000000..aa113b152 Binary files /dev/null and b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_WireframeTheme_Dark_HighContrast.ColoredSurface_Icon_Strong_Default_Disabled_Rounded.png differ diff --git a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_WireframeTheme_Dark_HighContrast.ColoredSurface_Icon_Strong_Default_Rounded.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_WireframeTheme_Dark_HighContrast.ColoredSurface_Icon_Strong_Default_Rounded.png new file mode 100644 index 000000000..ee44dd3a4 Binary files /dev/null and b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_WireframeTheme_Dark_HighContrast.ColoredSurface_Icon_Strong_Default_Rounded.png differ diff --git a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_WireframeTheme_Dark_HighContrast.ColoredSurface_TextAndIcon_Default_Default_Disabled_Rounded.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_WireframeTheme_Dark_HighContrast.ColoredSurface_TextAndIcon_Default_Default_Disabled_Rounded.png new file mode 100644 index 000000000..13e6c3f5c Binary files /dev/null and b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_WireframeTheme_Dark_HighContrast.ColoredSurface_TextAndIcon_Default_Default_Disabled_Rounded.png differ diff --git a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_WireframeTheme_Dark_HighContrast.ColoredSurface_TextAndIcon_Default_Default_Rounded.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_WireframeTheme_Dark_HighContrast.ColoredSurface_TextAndIcon_Default_Default_Rounded.png new file mode 100644 index 000000000..a20d6df59 Binary files /dev/null and b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_WireframeTheme_Dark_HighContrast.ColoredSurface_TextAndIcon_Default_Default_Rounded.png differ diff --git a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_WireframeTheme_Dark_HighContrast.ColoredSurface_TextAndIcon_Minimal_Default_Disabled_Rounded.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_WireframeTheme_Dark_HighContrast.ColoredSurface_TextAndIcon_Minimal_Default_Disabled_Rounded.png new file mode 100644 index 000000000..13e6c3f5c Binary files /dev/null and b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_WireframeTheme_Dark_HighContrast.ColoredSurface_TextAndIcon_Minimal_Default_Disabled_Rounded.png differ diff --git a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_WireframeTheme_Dark_HighContrast.ColoredSurface_TextAndIcon_Minimal_Default_Rounded.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_WireframeTheme_Dark_HighContrast.ColoredSurface_TextAndIcon_Minimal_Default_Rounded.png new file mode 100644 index 000000000..a20d6df59 Binary files /dev/null and b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_WireframeTheme_Dark_HighContrast.ColoredSurface_TextAndIcon_Minimal_Default_Rounded.png differ diff --git a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_WireframeTheme_Dark_HighContrast.ColoredSurface_TextAndIcon_Strong_Default_Disabled_Rounded.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_WireframeTheme_Dark_HighContrast.ColoredSurface_TextAndIcon_Strong_Default_Disabled_Rounded.png new file mode 100644 index 000000000..c9ceaeb74 Binary files /dev/null and b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_WireframeTheme_Dark_HighContrast.ColoredSurface_TextAndIcon_Strong_Default_Disabled_Rounded.png differ diff --git a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_WireframeTheme_Dark_HighContrast.ColoredSurface_TextAndIcon_Strong_Default_Rounded.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_WireframeTheme_Dark_HighContrast.ColoredSurface_TextAndIcon_Strong_Default_Rounded.png new file mode 100644 index 000000000..de0aa3998 Binary files /dev/null and b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_WireframeTheme_Dark_HighContrast.ColoredSurface_TextAndIcon_Strong_Default_Rounded.png differ diff --git a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_WireframeTheme_Dark_HighContrast.ColoredSurface_Text_Default_Default_Disabled_Rounded.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_WireframeTheme_Dark_HighContrast.ColoredSurface_Text_Default_Default_Disabled_Rounded.png new file mode 100644 index 000000000..f870bafb0 Binary files /dev/null and b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_WireframeTheme_Dark_HighContrast.ColoredSurface_Text_Default_Default_Disabled_Rounded.png differ diff --git a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_WireframeTheme_Dark_HighContrast.ColoredSurface_Text_Default_Default_Rounded.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_WireframeTheme_Dark_HighContrast.ColoredSurface_Text_Default_Default_Rounded.png new file mode 100644 index 000000000..95b742dd6 Binary files /dev/null and b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_WireframeTheme_Dark_HighContrast.ColoredSurface_Text_Default_Default_Rounded.png differ diff --git a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_WireframeTheme_Dark_HighContrast.ColoredSurface_Text_Minimal_Default_Disabled_Rounded.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_WireframeTheme_Dark_HighContrast.ColoredSurface_Text_Minimal_Default_Disabled_Rounded.png new file mode 100644 index 000000000..f870bafb0 Binary files /dev/null and b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_WireframeTheme_Dark_HighContrast.ColoredSurface_Text_Minimal_Default_Disabled_Rounded.png differ diff --git a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_WireframeTheme_Dark_HighContrast.ColoredSurface_Text_Minimal_Default_Rounded.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_WireframeTheme_Dark_HighContrast.ColoredSurface_Text_Minimal_Default_Rounded.png new file mode 100644 index 000000000..95b742dd6 Binary files /dev/null and b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_WireframeTheme_Dark_HighContrast.ColoredSurface_Text_Minimal_Default_Rounded.png differ diff --git a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_WireframeTheme_Dark_HighContrast.ColoredSurface_Text_Strong_Default_Disabled_Rounded.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_WireframeTheme_Dark_HighContrast.ColoredSurface_Text_Strong_Default_Disabled_Rounded.png new file mode 100644 index 000000000..1134fde43 Binary files /dev/null and b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_WireframeTheme_Dark_HighContrast.ColoredSurface_Text_Strong_Default_Disabled_Rounded.png differ diff --git a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_WireframeTheme_Dark_HighContrast.ColoredSurface_Text_Strong_Default_Rounded.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_WireframeTheme_Dark_HighContrast.ColoredSurface_Text_Strong_Default_Rounded.png new file mode 100644 index 000000000..c1b40e16b Binary files /dev/null and b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_WireframeTheme_Dark_HighContrast.ColoredSurface_Text_Strong_Default_Rounded.png differ diff --git a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_WireframeTheme_Dark_HighContrast.Icon_Brand_Default.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_WireframeTheme_Dark_HighContrast.Icon_Brand_Default.png new file mode 100644 index 000000000..bc12f94d0 Binary files /dev/null and b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_WireframeTheme_Dark_HighContrast.Icon_Brand_Default.png differ diff --git a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_WireframeTheme_Dark_HighContrast.Icon_Brand_Default_Disabled.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_WireframeTheme_Dark_HighContrast.Icon_Brand_Default_Disabled.png new file mode 100644 index 000000000..cb44568fa Binary files /dev/null and b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_WireframeTheme_Dark_HighContrast.Icon_Brand_Default_Disabled.png differ diff --git a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_WireframeTheme_Dark_HighContrast.Icon_Brand_Default_Disabled_Rounded.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_WireframeTheme_Dark_HighContrast.Icon_Brand_Default_Disabled_Rounded.png new file mode 100644 index 000000000..cb44568fa Binary files /dev/null and b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_WireframeTheme_Dark_HighContrast.Icon_Brand_Default_Disabled_Rounded.png differ diff --git a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_WireframeTheme_Dark_HighContrast.Icon_Brand_Default_Rounded.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_WireframeTheme_Dark_HighContrast.Icon_Brand_Default_Rounded.png new file mode 100644 index 000000000..bc12f94d0 Binary files /dev/null and b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_WireframeTheme_Dark_HighContrast.Icon_Brand_Default_Rounded.png differ diff --git a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_WireframeTheme_Dark_HighContrast.Icon_Default_Default_Disabled_Rounded.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_WireframeTheme_Dark_HighContrast.Icon_Default_Default_Disabled_Rounded.png new file mode 100644 index 000000000..647ffe4ca Binary files /dev/null and b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_WireframeTheme_Dark_HighContrast.Icon_Default_Default_Disabled_Rounded.png differ diff --git a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_WireframeTheme_Dark_HighContrast.Icon_Default_Default_Rounded.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_WireframeTheme_Dark_HighContrast.Icon_Default_Default_Rounded.png new file mode 100644 index 000000000..03ac0053a Binary files /dev/null and b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_WireframeTheme_Dark_HighContrast.Icon_Default_Default_Rounded.png differ diff --git a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_WireframeTheme_Dark_HighContrast.Icon_Minimal_Default_Disabled_Rounded.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_WireframeTheme_Dark_HighContrast.Icon_Minimal_Default_Disabled_Rounded.png new file mode 100644 index 000000000..027b28265 Binary files /dev/null and b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_WireframeTheme_Dark_HighContrast.Icon_Minimal_Default_Disabled_Rounded.png differ diff --git a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_WireframeTheme_Dark_HighContrast.Icon_Minimal_Default_Rounded.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_WireframeTheme_Dark_HighContrast.Icon_Minimal_Default_Rounded.png new file mode 100644 index 000000000..321709bfd Binary files /dev/null and b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_WireframeTheme_Dark_HighContrast.Icon_Minimal_Default_Rounded.png differ diff --git a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_WireframeTheme_Dark_HighContrast.Icon_Negative_Default.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_WireframeTheme_Dark_HighContrast.Icon_Negative_Default.png index 2412b665c..be1f7f661 100644 Binary files a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_WireframeTheme_Dark_HighContrast.Icon_Negative_Default.png and b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_WireframeTheme_Dark_HighContrast.Icon_Negative_Default.png differ diff --git a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_WireframeTheme_Dark_HighContrast.Icon_Negative_Default_Disabled.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_WireframeTheme_Dark_HighContrast.Icon_Negative_Default_Disabled.png index e3712c92d..cb44568fa 100644 Binary files a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_WireframeTheme_Dark_HighContrast.Icon_Negative_Default_Disabled.png and b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_WireframeTheme_Dark_HighContrast.Icon_Negative_Default_Disabled.png differ diff --git a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_WireframeTheme_Dark_HighContrast.Icon_Negative_Default_Disabled_Rounded.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_WireframeTheme_Dark_HighContrast.Icon_Negative_Default_Disabled_Rounded.png new file mode 100644 index 000000000..cb44568fa Binary files /dev/null and b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_WireframeTheme_Dark_HighContrast.Icon_Negative_Default_Disabled_Rounded.png differ diff --git a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_WireframeTheme_Dark_HighContrast.Icon_Negative_Default_Rounded.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_WireframeTheme_Dark_HighContrast.Icon_Negative_Default_Rounded.png new file mode 100644 index 000000000..be1f7f661 Binary files /dev/null and b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_WireframeTheme_Dark_HighContrast.Icon_Negative_Default_Rounded.png differ diff --git a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_WireframeTheme_Dark_HighContrast.Icon_Strong_Default.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_WireframeTheme_Dark_HighContrast.Icon_Strong_Default.png index 33c8884b8..4093c8e53 100644 Binary files a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_WireframeTheme_Dark_HighContrast.Icon_Strong_Default.png and b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_WireframeTheme_Dark_HighContrast.Icon_Strong_Default.png differ diff --git a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_WireframeTheme_Dark_HighContrast.Icon_Strong_Default_Disabled.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_WireframeTheme_Dark_HighContrast.Icon_Strong_Default_Disabled.png index e3712c92d..cb44568fa 100644 Binary files a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_WireframeTheme_Dark_HighContrast.Icon_Strong_Default_Disabled.png and b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_WireframeTheme_Dark_HighContrast.Icon_Strong_Default_Disabled.png differ diff --git a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_WireframeTheme_Dark_HighContrast.Icon_Strong_Default_Disabled_Rounded.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_WireframeTheme_Dark_HighContrast.Icon_Strong_Default_Disabled_Rounded.png new file mode 100644 index 000000000..cb44568fa Binary files /dev/null and b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_WireframeTheme_Dark_HighContrast.Icon_Strong_Default_Disabled_Rounded.png differ diff --git a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_WireframeTheme_Dark_HighContrast.Icon_Strong_Default_Rounded.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_WireframeTheme_Dark_HighContrast.Icon_Strong_Default_Rounded.png new file mode 100644 index 000000000..4093c8e53 Binary files /dev/null and b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_WireframeTheme_Dark_HighContrast.Icon_Strong_Default_Rounded.png differ diff --git a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_WireframeTheme_Dark_HighContrast.TextAndIcon_Brand_Default.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_WireframeTheme_Dark_HighContrast.TextAndIcon_Brand_Default.png new file mode 100644 index 000000000..4a2126397 Binary files /dev/null and b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_WireframeTheme_Dark_HighContrast.TextAndIcon_Brand_Default.png differ diff --git a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_WireframeTheme_Dark_HighContrast.TextAndIcon_Brand_Default_Disabled.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_WireframeTheme_Dark_HighContrast.TextAndIcon_Brand_Default_Disabled.png new file mode 100644 index 000000000..71ebcd21d Binary files /dev/null and b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_WireframeTheme_Dark_HighContrast.TextAndIcon_Brand_Default_Disabled.png differ diff --git a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_WireframeTheme_Dark_HighContrast.TextAndIcon_Brand_Default_Disabled_Rounded.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_WireframeTheme_Dark_HighContrast.TextAndIcon_Brand_Default_Disabled_Rounded.png new file mode 100644 index 000000000..71ebcd21d Binary files /dev/null and b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_WireframeTheme_Dark_HighContrast.TextAndIcon_Brand_Default_Disabled_Rounded.png differ diff --git a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_WireframeTheme_Dark_HighContrast.TextAndIcon_Brand_Default_Rounded.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_WireframeTheme_Dark_HighContrast.TextAndIcon_Brand_Default_Rounded.png new file mode 100644 index 000000000..4a2126397 Binary files /dev/null and b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_WireframeTheme_Dark_HighContrast.TextAndIcon_Brand_Default_Rounded.png differ diff --git a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_WireframeTheme_Dark_HighContrast.TextAndIcon_Default_Default_Disabled_Rounded.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_WireframeTheme_Dark_HighContrast.TextAndIcon_Default_Default_Disabled_Rounded.png new file mode 100644 index 000000000..48bd84236 Binary files /dev/null and b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_WireframeTheme_Dark_HighContrast.TextAndIcon_Default_Default_Disabled_Rounded.png differ diff --git a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_WireframeTheme_Dark_HighContrast.TextAndIcon_Default_Default_Rounded.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_WireframeTheme_Dark_HighContrast.TextAndIcon_Default_Default_Rounded.png new file mode 100644 index 000000000..692deb38f Binary files /dev/null and b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_WireframeTheme_Dark_HighContrast.TextAndIcon_Default_Default_Rounded.png differ diff --git a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_WireframeTheme_Dark_HighContrast.TextAndIcon_Minimal_Default_Disabled_Rounded.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_WireframeTheme_Dark_HighContrast.TextAndIcon_Minimal_Default_Disabled_Rounded.png new file mode 100644 index 000000000..59eb25e02 Binary files /dev/null and b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_WireframeTheme_Dark_HighContrast.TextAndIcon_Minimal_Default_Disabled_Rounded.png differ diff --git a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_WireframeTheme_Dark_HighContrast.TextAndIcon_Minimal_Default_Rounded.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_WireframeTheme_Dark_HighContrast.TextAndIcon_Minimal_Default_Rounded.png new file mode 100644 index 000000000..6a55821a1 Binary files /dev/null and b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_WireframeTheme_Dark_HighContrast.TextAndIcon_Minimal_Default_Rounded.png differ diff --git a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_WireframeTheme_Dark_HighContrast.TextAndIcon_Negative_Default.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_WireframeTheme_Dark_HighContrast.TextAndIcon_Negative_Default.png index 8815e2926..4a776a4b1 100644 Binary files a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_WireframeTheme_Dark_HighContrast.TextAndIcon_Negative_Default.png and b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_WireframeTheme_Dark_HighContrast.TextAndIcon_Negative_Default.png differ diff --git a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_WireframeTheme_Dark_HighContrast.TextAndIcon_Negative_Default_Disabled.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_WireframeTheme_Dark_HighContrast.TextAndIcon_Negative_Default_Disabled.png index 8d9aa1546..71ebcd21d 100644 Binary files a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_WireframeTheme_Dark_HighContrast.TextAndIcon_Negative_Default_Disabled.png and b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_WireframeTheme_Dark_HighContrast.TextAndIcon_Negative_Default_Disabled.png differ diff --git a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_WireframeTheme_Dark_HighContrast.TextAndIcon_Negative_Default_Disabled_Rounded.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_WireframeTheme_Dark_HighContrast.TextAndIcon_Negative_Default_Disabled_Rounded.png new file mode 100644 index 000000000..71ebcd21d Binary files /dev/null and b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_WireframeTheme_Dark_HighContrast.TextAndIcon_Negative_Default_Disabled_Rounded.png differ diff --git a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_WireframeTheme_Dark_HighContrast.TextAndIcon_Negative_Default_Rounded.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_WireframeTheme_Dark_HighContrast.TextAndIcon_Negative_Default_Rounded.png new file mode 100644 index 000000000..4a776a4b1 Binary files /dev/null and b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_WireframeTheme_Dark_HighContrast.TextAndIcon_Negative_Default_Rounded.png differ diff --git a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_WireframeTheme_Dark_HighContrast.TextAndIcon_Strong_Default.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_WireframeTheme_Dark_HighContrast.TextAndIcon_Strong_Default.png index a20d6df59..318a7d685 100644 Binary files a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_WireframeTheme_Dark_HighContrast.TextAndIcon_Strong_Default.png and b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_WireframeTheme_Dark_HighContrast.TextAndIcon_Strong_Default.png differ diff --git a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_WireframeTheme_Dark_HighContrast.TextAndIcon_Strong_Default_Disabled.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_WireframeTheme_Dark_HighContrast.TextAndIcon_Strong_Default_Disabled.png index 8d9aa1546..71ebcd21d 100644 Binary files a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_WireframeTheme_Dark_HighContrast.TextAndIcon_Strong_Default_Disabled.png and b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_WireframeTheme_Dark_HighContrast.TextAndIcon_Strong_Default_Disabled.png differ diff --git a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_WireframeTheme_Dark_HighContrast.TextAndIcon_Strong_Default_Disabled_Rounded.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_WireframeTheme_Dark_HighContrast.TextAndIcon_Strong_Default_Disabled_Rounded.png new file mode 100644 index 000000000..71ebcd21d Binary files /dev/null and b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_WireframeTheme_Dark_HighContrast.TextAndIcon_Strong_Default_Disabled_Rounded.png differ diff --git a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_WireframeTheme_Dark_HighContrast.TextAndIcon_Strong_Default_Rounded.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_WireframeTheme_Dark_HighContrast.TextAndIcon_Strong_Default_Rounded.png new file mode 100644 index 000000000..318a7d685 Binary files /dev/null and b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_WireframeTheme_Dark_HighContrast.TextAndIcon_Strong_Default_Rounded.png differ diff --git a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_WireframeTheme_Dark_HighContrast.Text_Brand_Default.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_WireframeTheme_Dark_HighContrast.Text_Brand_Default.png new file mode 100644 index 000000000..3d2013b2e Binary files /dev/null and b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_WireframeTheme_Dark_HighContrast.Text_Brand_Default.png differ diff --git a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_WireframeTheme_Dark_HighContrast.Text_Brand_Default_Disabled.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_WireframeTheme_Dark_HighContrast.Text_Brand_Default_Disabled.png new file mode 100644 index 000000000..daa1216f4 Binary files /dev/null and b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_WireframeTheme_Dark_HighContrast.Text_Brand_Default_Disabled.png differ diff --git a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_WireframeTheme_Dark_HighContrast.Text_Brand_Default_Disabled_Rounded.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_WireframeTheme_Dark_HighContrast.Text_Brand_Default_Disabled_Rounded.png new file mode 100644 index 000000000..daa1216f4 Binary files /dev/null and b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_WireframeTheme_Dark_HighContrast.Text_Brand_Default_Disabled_Rounded.png differ diff --git a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_WireframeTheme_Dark_HighContrast.Text_Brand_Default_Rounded.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_WireframeTheme_Dark_HighContrast.Text_Brand_Default_Rounded.png new file mode 100644 index 000000000..3d2013b2e Binary files /dev/null and b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_WireframeTheme_Dark_HighContrast.Text_Brand_Default_Rounded.png differ diff --git a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_WireframeTheme_Dark_HighContrast.Text_Default_Default_Disabled_Rounded.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_WireframeTheme_Dark_HighContrast.Text_Default_Default_Disabled_Rounded.png new file mode 100644 index 000000000..b1fa7b23c Binary files /dev/null and b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_WireframeTheme_Dark_HighContrast.Text_Default_Default_Disabled_Rounded.png differ diff --git a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_WireframeTheme_Dark_HighContrast.Text_Default_Default_Rounded.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_WireframeTheme_Dark_HighContrast.Text_Default_Default_Rounded.png new file mode 100644 index 000000000..dc49a3e09 Binary files /dev/null and b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_WireframeTheme_Dark_HighContrast.Text_Default_Default_Rounded.png differ diff --git a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_WireframeTheme_Dark_HighContrast.Text_Minimal_Default_Disabled_Rounded.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_WireframeTheme_Dark_HighContrast.Text_Minimal_Default_Disabled_Rounded.png new file mode 100644 index 000000000..d4cd4e3f6 Binary files /dev/null and b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_WireframeTheme_Dark_HighContrast.Text_Minimal_Default_Disabled_Rounded.png differ diff --git a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_WireframeTheme_Dark_HighContrast.Text_Minimal_Default_Rounded.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_WireframeTheme_Dark_HighContrast.Text_Minimal_Default_Rounded.png new file mode 100644 index 000000000..7b3bb61d7 Binary files /dev/null and b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_WireframeTheme_Dark_HighContrast.Text_Minimal_Default_Rounded.png differ diff --git a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_WireframeTheme_Dark_HighContrast.Text_Negative_Default.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_WireframeTheme_Dark_HighContrast.Text_Negative_Default.png index 9a93538c4..85f89184a 100644 Binary files a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_WireframeTheme_Dark_HighContrast.Text_Negative_Default.png and b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_WireframeTheme_Dark_HighContrast.Text_Negative_Default.png differ diff --git a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_WireframeTheme_Dark_HighContrast.Text_Negative_Default_Disabled.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_WireframeTheme_Dark_HighContrast.Text_Negative_Default_Disabled.png index 15a00533f..daa1216f4 100644 Binary files a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_WireframeTheme_Dark_HighContrast.Text_Negative_Default_Disabled.png and b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_WireframeTheme_Dark_HighContrast.Text_Negative_Default_Disabled.png differ diff --git a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_WireframeTheme_Dark_HighContrast.Text_Negative_Default_Disabled_Rounded.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_WireframeTheme_Dark_HighContrast.Text_Negative_Default_Disabled_Rounded.png new file mode 100644 index 000000000..daa1216f4 Binary files /dev/null and b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_WireframeTheme_Dark_HighContrast.Text_Negative_Default_Disabled_Rounded.png differ diff --git a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_WireframeTheme_Dark_HighContrast.Text_Negative_Default_Rounded.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_WireframeTheme_Dark_HighContrast.Text_Negative_Default_Rounded.png new file mode 100644 index 000000000..85f89184a Binary files /dev/null and b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_WireframeTheme_Dark_HighContrast.Text_Negative_Default_Rounded.png differ diff --git a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_WireframeTheme_Dark_HighContrast.Text_Strong_Default.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_WireframeTheme_Dark_HighContrast.Text_Strong_Default.png index 95b742dd6..e8e74c6a3 100644 Binary files a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_WireframeTheme_Dark_HighContrast.Text_Strong_Default.png and b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_WireframeTheme_Dark_HighContrast.Text_Strong_Default.png differ diff --git a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_WireframeTheme_Dark_HighContrast.Text_Strong_Default_Disabled.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_WireframeTheme_Dark_HighContrast.Text_Strong_Default_Disabled.png index 15a00533f..daa1216f4 100644 Binary files a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_WireframeTheme_Dark_HighContrast.Text_Strong_Default_Disabled.png and b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_WireframeTheme_Dark_HighContrast.Text_Strong_Default_Disabled.png differ diff --git a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_WireframeTheme_Dark_HighContrast.Text_Strong_Default_Disabled_Rounded.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_WireframeTheme_Dark_HighContrast.Text_Strong_Default_Disabled_Rounded.png new file mode 100644 index 000000000..daa1216f4 Binary files /dev/null and b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_WireframeTheme_Dark_HighContrast.Text_Strong_Default_Disabled_Rounded.png differ diff --git a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_WireframeTheme_Dark_HighContrast.Text_Strong_Default_Rounded.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_WireframeTheme_Dark_HighContrast.Text_Strong_Default_Rounded.png new file mode 100644 index 000000000..e8e74c6a3 Binary files /dev/null and b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_WireframeTheme_Dark_HighContrast.Text_Strong_Default_Rounded.png differ diff --git a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_WireframeTheme_Light_.ColoredSurface_Icon_Default_Default_Disabled_Rounded.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_WireframeTheme_Light_.ColoredSurface_Icon_Default_Default_Disabled_Rounded.png new file mode 100644 index 000000000..d49fabe6d Binary files /dev/null and b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_WireframeTheme_Light_.ColoredSurface_Icon_Default_Default_Disabled_Rounded.png differ diff --git a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_WireframeTheme_Light_.ColoredSurface_Icon_Default_Default_Rounded.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_WireframeTheme_Light_.ColoredSurface_Icon_Default_Default_Rounded.png new file mode 100644 index 000000000..add5d907b Binary files /dev/null and b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_WireframeTheme_Light_.ColoredSurface_Icon_Default_Default_Rounded.png differ diff --git a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_WireframeTheme_Light_.ColoredSurface_Icon_Minimal_Default_Disabled_Rounded.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_WireframeTheme_Light_.ColoredSurface_Icon_Minimal_Default_Disabled_Rounded.png new file mode 100644 index 000000000..d49fabe6d Binary files /dev/null and b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_WireframeTheme_Light_.ColoredSurface_Icon_Minimal_Default_Disabled_Rounded.png differ diff --git a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_WireframeTheme_Light_.ColoredSurface_Icon_Minimal_Default_Rounded.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_WireframeTheme_Light_.ColoredSurface_Icon_Minimal_Default_Rounded.png new file mode 100644 index 000000000..add5d907b Binary files /dev/null and b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_WireframeTheme_Light_.ColoredSurface_Icon_Minimal_Default_Rounded.png differ diff --git a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_WireframeTheme_Light_.ColoredSurface_Icon_Strong_Default_Disabled_Rounded.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_WireframeTheme_Light_.ColoredSurface_Icon_Strong_Default_Disabled_Rounded.png new file mode 100644 index 000000000..879e1e2ce Binary files /dev/null and b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_WireframeTheme_Light_.ColoredSurface_Icon_Strong_Default_Disabled_Rounded.png differ diff --git a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_WireframeTheme_Light_.ColoredSurface_Icon_Strong_Default_Rounded.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_WireframeTheme_Light_.ColoredSurface_Icon_Strong_Default_Rounded.png new file mode 100644 index 000000000..dcd5cf0c1 Binary files /dev/null and b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_WireframeTheme_Light_.ColoredSurface_Icon_Strong_Default_Rounded.png differ diff --git a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_WireframeTheme_Light_.ColoredSurface_TextAndIcon_Default_Default_Disabled_Rounded.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_WireframeTheme_Light_.ColoredSurface_TextAndIcon_Default_Default_Disabled_Rounded.png new file mode 100644 index 000000000..df9602f27 Binary files /dev/null and b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_WireframeTheme_Light_.ColoredSurface_TextAndIcon_Default_Default_Disabled_Rounded.png differ diff --git a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_WireframeTheme_Light_.ColoredSurface_TextAndIcon_Default_Default_Rounded.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_WireframeTheme_Light_.ColoredSurface_TextAndIcon_Default_Default_Rounded.png new file mode 100644 index 000000000..38a20a4f4 Binary files /dev/null and b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_WireframeTheme_Light_.ColoredSurface_TextAndIcon_Default_Default_Rounded.png differ diff --git a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_WireframeTheme_Light_.ColoredSurface_TextAndIcon_Minimal_Default_Disabled_Rounded.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_WireframeTheme_Light_.ColoredSurface_TextAndIcon_Minimal_Default_Disabled_Rounded.png new file mode 100644 index 000000000..df9602f27 Binary files /dev/null and b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_WireframeTheme_Light_.ColoredSurface_TextAndIcon_Minimal_Default_Disabled_Rounded.png differ diff --git a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_WireframeTheme_Light_.ColoredSurface_TextAndIcon_Minimal_Default_Rounded.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_WireframeTheme_Light_.ColoredSurface_TextAndIcon_Minimal_Default_Rounded.png new file mode 100644 index 000000000..38a20a4f4 Binary files /dev/null and b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_WireframeTheme_Light_.ColoredSurface_TextAndIcon_Minimal_Default_Rounded.png differ diff --git a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_WireframeTheme_Light_.ColoredSurface_TextAndIcon_Strong_Default_Disabled_Rounded.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_WireframeTheme_Light_.ColoredSurface_TextAndIcon_Strong_Default_Disabled_Rounded.png new file mode 100644 index 000000000..52ffb3054 Binary files /dev/null and b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_WireframeTheme_Light_.ColoredSurface_TextAndIcon_Strong_Default_Disabled_Rounded.png differ diff --git a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_WireframeTheme_Light_.ColoredSurface_TextAndIcon_Strong_Default_Rounded.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_WireframeTheme_Light_.ColoredSurface_TextAndIcon_Strong_Default_Rounded.png new file mode 100644 index 000000000..6d5b6557a Binary files /dev/null and b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_WireframeTheme_Light_.ColoredSurface_TextAndIcon_Strong_Default_Rounded.png differ diff --git a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_WireframeTheme_Light_.ColoredSurface_Text_Default_Default_Disabled_Rounded.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_WireframeTheme_Light_.ColoredSurface_Text_Default_Default_Disabled_Rounded.png new file mode 100644 index 000000000..8081c3e8b Binary files /dev/null and b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_WireframeTheme_Light_.ColoredSurface_Text_Default_Default_Disabled_Rounded.png differ diff --git a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_WireframeTheme_Light_.ColoredSurface_Text_Default_Default_Rounded.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_WireframeTheme_Light_.ColoredSurface_Text_Default_Default_Rounded.png new file mode 100644 index 000000000..93d916aa7 Binary files /dev/null and b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_WireframeTheme_Light_.ColoredSurface_Text_Default_Default_Rounded.png differ diff --git a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_WireframeTheme_Light_.ColoredSurface_Text_Minimal_Default_Disabled_Rounded.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_WireframeTheme_Light_.ColoredSurface_Text_Minimal_Default_Disabled_Rounded.png new file mode 100644 index 000000000..8081c3e8b Binary files /dev/null and b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_WireframeTheme_Light_.ColoredSurface_Text_Minimal_Default_Disabled_Rounded.png differ diff --git a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_WireframeTheme_Light_.ColoredSurface_Text_Minimal_Default_Rounded.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_WireframeTheme_Light_.ColoredSurface_Text_Minimal_Default_Rounded.png new file mode 100644 index 000000000..93d916aa7 Binary files /dev/null and b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_WireframeTheme_Light_.ColoredSurface_Text_Minimal_Default_Rounded.png differ diff --git a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_WireframeTheme_Light_.ColoredSurface_Text_Strong_Default_Disabled_Rounded.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_WireframeTheme_Light_.ColoredSurface_Text_Strong_Default_Disabled_Rounded.png new file mode 100644 index 000000000..42be610cc Binary files /dev/null and b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_WireframeTheme_Light_.ColoredSurface_Text_Strong_Default_Disabled_Rounded.png differ diff --git a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_WireframeTheme_Light_.ColoredSurface_Text_Strong_Default_Rounded.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_WireframeTheme_Light_.ColoredSurface_Text_Strong_Default_Rounded.png new file mode 100644 index 000000000..c8461f1db Binary files /dev/null and b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_WireframeTheme_Light_.ColoredSurface_Text_Strong_Default_Rounded.png differ diff --git a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_WireframeTheme_Light_.Icon_Brand_Default.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_WireframeTheme_Light_.Icon_Brand_Default.png new file mode 100644 index 000000000..7bc119341 Binary files /dev/null and b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_WireframeTheme_Light_.Icon_Brand_Default.png differ diff --git a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_WireframeTheme_Light_.Icon_Brand_Default_Disabled.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_WireframeTheme_Light_.Icon_Brand_Default_Disabled.png new file mode 100644 index 000000000..599baa597 Binary files /dev/null and b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_WireframeTheme_Light_.Icon_Brand_Default_Disabled.png differ diff --git a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_WireframeTheme_Light_.Icon_Brand_Default_Disabled_Rounded.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_WireframeTheme_Light_.Icon_Brand_Default_Disabled_Rounded.png new file mode 100644 index 000000000..599baa597 Binary files /dev/null and b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_WireframeTheme_Light_.Icon_Brand_Default_Disabled_Rounded.png differ diff --git a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_WireframeTheme_Light_.Icon_Brand_Default_Rounded.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_WireframeTheme_Light_.Icon_Brand_Default_Rounded.png new file mode 100644 index 000000000..7bc119341 Binary files /dev/null and b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_WireframeTheme_Light_.Icon_Brand_Default_Rounded.png differ diff --git a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_WireframeTheme_Light_.Icon_Default_Default_Disabled_Rounded.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_WireframeTheme_Light_.Icon_Default_Default_Disabled_Rounded.png new file mode 100644 index 000000000..0752eedc6 Binary files /dev/null and b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_WireframeTheme_Light_.Icon_Default_Default_Disabled_Rounded.png differ diff --git a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_WireframeTheme_Light_.Icon_Default_Default_Rounded.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_WireframeTheme_Light_.Icon_Default_Default_Rounded.png new file mode 100644 index 000000000..32244faa1 Binary files /dev/null and b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_WireframeTheme_Light_.Icon_Default_Default_Rounded.png differ diff --git a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_WireframeTheme_Light_.Icon_Minimal_Default_Disabled_Rounded.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_WireframeTheme_Light_.Icon_Minimal_Default_Disabled_Rounded.png new file mode 100644 index 000000000..e1c885678 Binary files /dev/null and b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_WireframeTheme_Light_.Icon_Minimal_Default_Disabled_Rounded.png differ diff --git a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_WireframeTheme_Light_.Icon_Minimal_Default_Rounded.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_WireframeTheme_Light_.Icon_Minimal_Default_Rounded.png new file mode 100644 index 000000000..b83b81297 Binary files /dev/null and b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_WireframeTheme_Light_.Icon_Minimal_Default_Rounded.png differ diff --git a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_WireframeTheme_Light_.Icon_Negative_Default.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_WireframeTheme_Light_.Icon_Negative_Default.png index f49960cfe..f21d36cbe 100644 Binary files a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_WireframeTheme_Light_.Icon_Negative_Default.png and b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_WireframeTheme_Light_.Icon_Negative_Default.png differ diff --git a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_WireframeTheme_Light_.Icon_Negative_Default_Disabled.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_WireframeTheme_Light_.Icon_Negative_Default_Disabled.png index a4945005e..599baa597 100644 Binary files a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_WireframeTheme_Light_.Icon_Negative_Default_Disabled.png and b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_WireframeTheme_Light_.Icon_Negative_Default_Disabled.png differ diff --git a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_WireframeTheme_Light_.Icon_Negative_Default_Disabled_Rounded.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_WireframeTheme_Light_.Icon_Negative_Default_Disabled_Rounded.png new file mode 100644 index 000000000..599baa597 Binary files /dev/null and b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_WireframeTheme_Light_.Icon_Negative_Default_Disabled_Rounded.png differ diff --git a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_WireframeTheme_Light_.Icon_Negative_Default_Rounded.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_WireframeTheme_Light_.Icon_Negative_Default_Rounded.png new file mode 100644 index 000000000..f21d36cbe Binary files /dev/null and b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_WireframeTheme_Light_.Icon_Negative_Default_Rounded.png differ diff --git a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_WireframeTheme_Light_.Icon_Strong_Default.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_WireframeTheme_Light_.Icon_Strong_Default.png index add5d907b..b39f8ff7b 100644 Binary files a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_WireframeTheme_Light_.Icon_Strong_Default.png and b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_WireframeTheme_Light_.Icon_Strong_Default.png differ diff --git a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_WireframeTheme_Light_.Icon_Strong_Default_Disabled.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_WireframeTheme_Light_.Icon_Strong_Default_Disabled.png index a4945005e..599baa597 100644 Binary files a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_WireframeTheme_Light_.Icon_Strong_Default_Disabled.png and b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_WireframeTheme_Light_.Icon_Strong_Default_Disabled.png differ diff --git a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_WireframeTheme_Light_.Icon_Strong_Default_Disabled_Rounded.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_WireframeTheme_Light_.Icon_Strong_Default_Disabled_Rounded.png new file mode 100644 index 000000000..599baa597 Binary files /dev/null and b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_WireframeTheme_Light_.Icon_Strong_Default_Disabled_Rounded.png differ diff --git a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_WireframeTheme_Light_.Icon_Strong_Default_Rounded.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_WireframeTheme_Light_.Icon_Strong_Default_Rounded.png new file mode 100644 index 000000000..b39f8ff7b Binary files /dev/null and b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_WireframeTheme_Light_.Icon_Strong_Default_Rounded.png differ diff --git a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_WireframeTheme_Light_.TextAndIcon_Brand_Default.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_WireframeTheme_Light_.TextAndIcon_Brand_Default.png new file mode 100644 index 000000000..04d105ec3 Binary files /dev/null and b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_WireframeTheme_Light_.TextAndIcon_Brand_Default.png differ diff --git a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_WireframeTheme_Light_.TextAndIcon_Brand_Default_Disabled.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_WireframeTheme_Light_.TextAndIcon_Brand_Default_Disabled.png new file mode 100644 index 000000000..a6abd0b85 Binary files /dev/null and b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_WireframeTheme_Light_.TextAndIcon_Brand_Default_Disabled.png differ diff --git a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_WireframeTheme_Light_.TextAndIcon_Brand_Default_Disabled_Rounded.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_WireframeTheme_Light_.TextAndIcon_Brand_Default_Disabled_Rounded.png new file mode 100644 index 000000000..a6abd0b85 Binary files /dev/null and b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_WireframeTheme_Light_.TextAndIcon_Brand_Default_Disabled_Rounded.png differ diff --git a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_WireframeTheme_Light_.TextAndIcon_Brand_Default_Rounded.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_WireframeTheme_Light_.TextAndIcon_Brand_Default_Rounded.png new file mode 100644 index 000000000..04d105ec3 Binary files /dev/null and b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_WireframeTheme_Light_.TextAndIcon_Brand_Default_Rounded.png differ diff --git a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_WireframeTheme_Light_.TextAndIcon_Default_Default_Disabled_Rounded.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_WireframeTheme_Light_.TextAndIcon_Default_Default_Disabled_Rounded.png new file mode 100644 index 000000000..09f408b34 Binary files /dev/null and b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_WireframeTheme_Light_.TextAndIcon_Default_Default_Disabled_Rounded.png differ diff --git a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_WireframeTheme_Light_.TextAndIcon_Default_Default_Rounded.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_WireframeTheme_Light_.TextAndIcon_Default_Default_Rounded.png new file mode 100644 index 000000000..f902e7eb7 Binary files /dev/null and b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_WireframeTheme_Light_.TextAndIcon_Default_Default_Rounded.png differ diff --git a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_WireframeTheme_Light_.TextAndIcon_Minimal_Default_Disabled_Rounded.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_WireframeTheme_Light_.TextAndIcon_Minimal_Default_Disabled_Rounded.png new file mode 100644 index 000000000..51b0dfb25 Binary files /dev/null and b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_WireframeTheme_Light_.TextAndIcon_Minimal_Default_Disabled_Rounded.png differ diff --git a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_WireframeTheme_Light_.TextAndIcon_Minimal_Default_Rounded.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_WireframeTheme_Light_.TextAndIcon_Minimal_Default_Rounded.png new file mode 100644 index 000000000..d4635257b Binary files /dev/null and b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_WireframeTheme_Light_.TextAndIcon_Minimal_Default_Rounded.png differ diff --git a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_WireframeTheme_Light_.TextAndIcon_Negative_Default.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_WireframeTheme_Light_.TextAndIcon_Negative_Default.png index 6cab91c6d..12ca6fe0b 100644 Binary files a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_WireframeTheme_Light_.TextAndIcon_Negative_Default.png and b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_WireframeTheme_Light_.TextAndIcon_Negative_Default.png differ diff --git a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_WireframeTheme_Light_.TextAndIcon_Negative_Default_Disabled.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_WireframeTheme_Light_.TextAndIcon_Negative_Default_Disabled.png index 7d7500611..a6abd0b85 100644 Binary files a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_WireframeTheme_Light_.TextAndIcon_Negative_Default_Disabled.png and b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_WireframeTheme_Light_.TextAndIcon_Negative_Default_Disabled.png differ diff --git a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_WireframeTheme_Light_.TextAndIcon_Negative_Default_Disabled_Rounded.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_WireframeTheme_Light_.TextAndIcon_Negative_Default_Disabled_Rounded.png new file mode 100644 index 000000000..a6abd0b85 Binary files /dev/null and b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_WireframeTheme_Light_.TextAndIcon_Negative_Default_Disabled_Rounded.png differ diff --git a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_WireframeTheme_Light_.TextAndIcon_Negative_Default_Rounded.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_WireframeTheme_Light_.TextAndIcon_Negative_Default_Rounded.png new file mode 100644 index 000000000..12ca6fe0b Binary files /dev/null and b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_WireframeTheme_Light_.TextAndIcon_Negative_Default_Rounded.png differ diff --git a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_WireframeTheme_Light_.TextAndIcon_Strong_Default.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_WireframeTheme_Light_.TextAndIcon_Strong_Default.png index 38a20a4f4..7f61d8608 100644 Binary files a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_WireframeTheme_Light_.TextAndIcon_Strong_Default.png and b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_WireframeTheme_Light_.TextAndIcon_Strong_Default.png differ diff --git a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_WireframeTheme_Light_.TextAndIcon_Strong_Default_Disabled.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_WireframeTheme_Light_.TextAndIcon_Strong_Default_Disabled.png index 7d7500611..a6abd0b85 100644 Binary files a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_WireframeTheme_Light_.TextAndIcon_Strong_Default_Disabled.png and b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_WireframeTheme_Light_.TextAndIcon_Strong_Default_Disabled.png differ diff --git a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_WireframeTheme_Light_.TextAndIcon_Strong_Default_Disabled_Rounded.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_WireframeTheme_Light_.TextAndIcon_Strong_Default_Disabled_Rounded.png new file mode 100644 index 000000000..a6abd0b85 Binary files /dev/null and b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_WireframeTheme_Light_.TextAndIcon_Strong_Default_Disabled_Rounded.png differ diff --git a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_WireframeTheme_Light_.TextAndIcon_Strong_Default_Rounded.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_WireframeTheme_Light_.TextAndIcon_Strong_Default_Rounded.png new file mode 100644 index 000000000..7f61d8608 Binary files /dev/null and b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_WireframeTheme_Light_.TextAndIcon_Strong_Default_Rounded.png differ diff --git a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_WireframeTheme_Light_.Text_Brand_Default.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_WireframeTheme_Light_.Text_Brand_Default.png new file mode 100644 index 000000000..dfe7e6ecd Binary files /dev/null and b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_WireframeTheme_Light_.Text_Brand_Default.png differ diff --git a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_WireframeTheme_Light_.Text_Brand_Default_Disabled.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_WireframeTheme_Light_.Text_Brand_Default_Disabled.png new file mode 100644 index 000000000..43d4d8b80 Binary files /dev/null and b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_WireframeTheme_Light_.Text_Brand_Default_Disabled.png differ diff --git a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_WireframeTheme_Light_.Text_Brand_Default_Disabled_Rounded.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_WireframeTheme_Light_.Text_Brand_Default_Disabled_Rounded.png new file mode 100644 index 000000000..43d4d8b80 Binary files /dev/null and b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_WireframeTheme_Light_.Text_Brand_Default_Disabled_Rounded.png differ diff --git a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_WireframeTheme_Light_.Text_Brand_Default_Rounded.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_WireframeTheme_Light_.Text_Brand_Default_Rounded.png new file mode 100644 index 000000000..dfe7e6ecd Binary files /dev/null and b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_WireframeTheme_Light_.Text_Brand_Default_Rounded.png differ diff --git a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_WireframeTheme_Light_.Text_Default_Default_Disabled_Rounded.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_WireframeTheme_Light_.Text_Default_Default_Disabled_Rounded.png new file mode 100644 index 000000000..26eb1df00 Binary files /dev/null and b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_WireframeTheme_Light_.Text_Default_Default_Disabled_Rounded.png differ diff --git a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_WireframeTheme_Light_.Text_Default_Default_Rounded.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_WireframeTheme_Light_.Text_Default_Default_Rounded.png new file mode 100644 index 000000000..5c9186e6f Binary files /dev/null and b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_WireframeTheme_Light_.Text_Default_Default_Rounded.png differ diff --git a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_WireframeTheme_Light_.Text_Minimal_Default_Disabled_Rounded.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_WireframeTheme_Light_.Text_Minimal_Default_Disabled_Rounded.png new file mode 100644 index 000000000..2ff8a9042 Binary files /dev/null and b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_WireframeTheme_Light_.Text_Minimal_Default_Disabled_Rounded.png differ diff --git a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_WireframeTheme_Light_.Text_Minimal_Default_Rounded.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_WireframeTheme_Light_.Text_Minimal_Default_Rounded.png new file mode 100644 index 000000000..860a0748b Binary files /dev/null and b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_WireframeTheme_Light_.Text_Minimal_Default_Rounded.png differ diff --git a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_WireframeTheme_Light_.Text_Negative_Default.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_WireframeTheme_Light_.Text_Negative_Default.png index b5e1ede59..c3579a319 100644 Binary files a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_WireframeTheme_Light_.Text_Negative_Default.png and b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_WireframeTheme_Light_.Text_Negative_Default.png differ diff --git a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_WireframeTheme_Light_.Text_Negative_Default_Disabled.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_WireframeTheme_Light_.Text_Negative_Default_Disabled.png index 98f32765e..43d4d8b80 100644 Binary files a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_WireframeTheme_Light_.Text_Negative_Default_Disabled.png and b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_WireframeTheme_Light_.Text_Negative_Default_Disabled.png differ diff --git a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_WireframeTheme_Light_.Text_Negative_Default_Disabled_Rounded.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_WireframeTheme_Light_.Text_Negative_Default_Disabled_Rounded.png new file mode 100644 index 000000000..43d4d8b80 Binary files /dev/null and b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_WireframeTheme_Light_.Text_Negative_Default_Disabled_Rounded.png differ diff --git a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_WireframeTheme_Light_.Text_Negative_Default_Rounded.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_WireframeTheme_Light_.Text_Negative_Default_Rounded.png new file mode 100644 index 000000000..c3579a319 Binary files /dev/null and b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_WireframeTheme_Light_.Text_Negative_Default_Rounded.png differ diff --git a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_WireframeTheme_Light_.Text_Strong_Default.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_WireframeTheme_Light_.Text_Strong_Default.png index 93d916aa7..5b3aeb70d 100644 Binary files a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_WireframeTheme_Light_.Text_Strong_Default.png and b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_WireframeTheme_Light_.Text_Strong_Default.png differ diff --git a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_WireframeTheme_Light_.Text_Strong_Default_Disabled.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_WireframeTheme_Light_.Text_Strong_Default_Disabled.png index 98f32765e..43d4d8b80 100644 Binary files a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_WireframeTheme_Light_.Text_Strong_Default_Disabled.png and b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_WireframeTheme_Light_.Text_Strong_Default_Disabled.png differ diff --git a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_WireframeTheme_Light_.Text_Strong_Default_Disabled_Rounded.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_WireframeTheme_Light_.Text_Strong_Default_Disabled_Rounded.png new file mode 100644 index 000000000..43d4d8b80 Binary files /dev/null and b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_WireframeTheme_Light_.Text_Strong_Default_Disabled_Rounded.png differ diff --git a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_WireframeTheme_Light_.Text_Strong_Default_Rounded.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_WireframeTheme_Light_.Text_Strong_Default_Rounded.png new file mode 100644 index 000000000..5b3aeb70d Binary files /dev/null and b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_WireframeTheme_Light_.Text_Strong_Default_Rounded.png differ diff --git a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_WireframeTheme_Light_HighContrast.ColoredSurface_Icon_Default_Default_Disabled_Rounded.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_WireframeTheme_Light_HighContrast.ColoredSurface_Icon_Default_Default_Disabled_Rounded.png new file mode 100644 index 000000000..d49fabe6d Binary files /dev/null and b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_WireframeTheme_Light_HighContrast.ColoredSurface_Icon_Default_Default_Disabled_Rounded.png differ diff --git a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_WireframeTheme_Light_HighContrast.ColoredSurface_Icon_Default_Default_Rounded.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_WireframeTheme_Light_HighContrast.ColoredSurface_Icon_Default_Default_Rounded.png new file mode 100644 index 000000000..add5d907b Binary files /dev/null and b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_WireframeTheme_Light_HighContrast.ColoredSurface_Icon_Default_Default_Rounded.png differ diff --git a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_WireframeTheme_Light_HighContrast.ColoredSurface_Icon_Minimal_Default_Disabled_Rounded.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_WireframeTheme_Light_HighContrast.ColoredSurface_Icon_Minimal_Default_Disabled_Rounded.png new file mode 100644 index 000000000..d49fabe6d Binary files /dev/null and b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_WireframeTheme_Light_HighContrast.ColoredSurface_Icon_Minimal_Default_Disabled_Rounded.png differ diff --git a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_WireframeTheme_Light_HighContrast.ColoredSurface_Icon_Minimal_Default_Rounded.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_WireframeTheme_Light_HighContrast.ColoredSurface_Icon_Minimal_Default_Rounded.png new file mode 100644 index 000000000..add5d907b Binary files /dev/null and b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_WireframeTheme_Light_HighContrast.ColoredSurface_Icon_Minimal_Default_Rounded.png differ diff --git a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_WireframeTheme_Light_HighContrast.ColoredSurface_Icon_Strong_Default_Disabled_Rounded.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_WireframeTheme_Light_HighContrast.ColoredSurface_Icon_Strong_Default_Disabled_Rounded.png new file mode 100644 index 000000000..879e1e2ce Binary files /dev/null and b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_WireframeTheme_Light_HighContrast.ColoredSurface_Icon_Strong_Default_Disabled_Rounded.png differ diff --git a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_WireframeTheme_Light_HighContrast.ColoredSurface_Icon_Strong_Default_Rounded.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_WireframeTheme_Light_HighContrast.ColoredSurface_Icon_Strong_Default_Rounded.png new file mode 100644 index 000000000..dcd5cf0c1 Binary files /dev/null and b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_WireframeTheme_Light_HighContrast.ColoredSurface_Icon_Strong_Default_Rounded.png differ diff --git a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_WireframeTheme_Light_HighContrast.ColoredSurface_TextAndIcon_Default_Default_Disabled_Rounded.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_WireframeTheme_Light_HighContrast.ColoredSurface_TextAndIcon_Default_Default_Disabled_Rounded.png new file mode 100644 index 000000000..df9602f27 Binary files /dev/null and b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_WireframeTheme_Light_HighContrast.ColoredSurface_TextAndIcon_Default_Default_Disabled_Rounded.png differ diff --git a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_WireframeTheme_Light_HighContrast.ColoredSurface_TextAndIcon_Default_Default_Rounded.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_WireframeTheme_Light_HighContrast.ColoredSurface_TextAndIcon_Default_Default_Rounded.png new file mode 100644 index 000000000..38a20a4f4 Binary files /dev/null and b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_WireframeTheme_Light_HighContrast.ColoredSurface_TextAndIcon_Default_Default_Rounded.png differ diff --git a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_WireframeTheme_Light_HighContrast.ColoredSurface_TextAndIcon_Minimal_Default_Disabled_Rounded.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_WireframeTheme_Light_HighContrast.ColoredSurface_TextAndIcon_Minimal_Default_Disabled_Rounded.png new file mode 100644 index 000000000..df9602f27 Binary files /dev/null and b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_WireframeTheme_Light_HighContrast.ColoredSurface_TextAndIcon_Minimal_Default_Disabled_Rounded.png differ diff --git a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_WireframeTheme_Light_HighContrast.ColoredSurface_TextAndIcon_Minimal_Default_Rounded.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_WireframeTheme_Light_HighContrast.ColoredSurface_TextAndIcon_Minimal_Default_Rounded.png new file mode 100644 index 000000000..38a20a4f4 Binary files /dev/null and b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_WireframeTheme_Light_HighContrast.ColoredSurface_TextAndIcon_Minimal_Default_Rounded.png differ diff --git a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_WireframeTheme_Light_HighContrast.ColoredSurface_TextAndIcon_Strong_Default_Disabled_Rounded.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_WireframeTheme_Light_HighContrast.ColoredSurface_TextAndIcon_Strong_Default_Disabled_Rounded.png new file mode 100644 index 000000000..52ffb3054 Binary files /dev/null and b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_WireframeTheme_Light_HighContrast.ColoredSurface_TextAndIcon_Strong_Default_Disabled_Rounded.png differ diff --git a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_WireframeTheme_Light_HighContrast.ColoredSurface_TextAndIcon_Strong_Default_Rounded.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_WireframeTheme_Light_HighContrast.ColoredSurface_TextAndIcon_Strong_Default_Rounded.png new file mode 100644 index 000000000..6d5b6557a Binary files /dev/null and b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_WireframeTheme_Light_HighContrast.ColoredSurface_TextAndIcon_Strong_Default_Rounded.png differ diff --git a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_WireframeTheme_Light_HighContrast.ColoredSurface_Text_Default_Default_Disabled_Rounded.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_WireframeTheme_Light_HighContrast.ColoredSurface_Text_Default_Default_Disabled_Rounded.png new file mode 100644 index 000000000..8081c3e8b Binary files /dev/null and b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_WireframeTheme_Light_HighContrast.ColoredSurface_Text_Default_Default_Disabled_Rounded.png differ diff --git a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_WireframeTheme_Light_HighContrast.ColoredSurface_Text_Default_Default_Rounded.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_WireframeTheme_Light_HighContrast.ColoredSurface_Text_Default_Default_Rounded.png new file mode 100644 index 000000000..93d916aa7 Binary files /dev/null and b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_WireframeTheme_Light_HighContrast.ColoredSurface_Text_Default_Default_Rounded.png differ diff --git a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_WireframeTheme_Light_HighContrast.ColoredSurface_Text_Minimal_Default_Disabled_Rounded.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_WireframeTheme_Light_HighContrast.ColoredSurface_Text_Minimal_Default_Disabled_Rounded.png new file mode 100644 index 000000000..8081c3e8b Binary files /dev/null and b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_WireframeTheme_Light_HighContrast.ColoredSurface_Text_Minimal_Default_Disabled_Rounded.png differ diff --git a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_WireframeTheme_Light_HighContrast.ColoredSurface_Text_Minimal_Default_Rounded.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_WireframeTheme_Light_HighContrast.ColoredSurface_Text_Minimal_Default_Rounded.png new file mode 100644 index 000000000..93d916aa7 Binary files /dev/null and b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_WireframeTheme_Light_HighContrast.ColoredSurface_Text_Minimal_Default_Rounded.png differ diff --git a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_WireframeTheme_Light_HighContrast.ColoredSurface_Text_Strong_Default_Disabled_Rounded.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_WireframeTheme_Light_HighContrast.ColoredSurface_Text_Strong_Default_Disabled_Rounded.png new file mode 100644 index 000000000..42be610cc Binary files /dev/null and b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_WireframeTheme_Light_HighContrast.ColoredSurface_Text_Strong_Default_Disabled_Rounded.png differ diff --git a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_WireframeTheme_Light_HighContrast.ColoredSurface_Text_Strong_Default_Rounded.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_WireframeTheme_Light_HighContrast.ColoredSurface_Text_Strong_Default_Rounded.png new file mode 100644 index 000000000..c8461f1db Binary files /dev/null and b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_WireframeTheme_Light_HighContrast.ColoredSurface_Text_Strong_Default_Rounded.png differ diff --git a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_WireframeTheme_Light_HighContrast.Icon_Brand_Default.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_WireframeTheme_Light_HighContrast.Icon_Brand_Default.png new file mode 100644 index 000000000..7bc119341 Binary files /dev/null and b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_WireframeTheme_Light_HighContrast.Icon_Brand_Default.png differ diff --git a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_WireframeTheme_Light_HighContrast.Icon_Brand_Default_Disabled.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_WireframeTheme_Light_HighContrast.Icon_Brand_Default_Disabled.png new file mode 100644 index 000000000..599baa597 Binary files /dev/null and b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_WireframeTheme_Light_HighContrast.Icon_Brand_Default_Disabled.png differ diff --git a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_WireframeTheme_Light_HighContrast.Icon_Brand_Default_Disabled_Rounded.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_WireframeTheme_Light_HighContrast.Icon_Brand_Default_Disabled_Rounded.png new file mode 100644 index 000000000..599baa597 Binary files /dev/null and b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_WireframeTheme_Light_HighContrast.Icon_Brand_Default_Disabled_Rounded.png differ diff --git a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_WireframeTheme_Light_HighContrast.Icon_Brand_Default_Rounded.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_WireframeTheme_Light_HighContrast.Icon_Brand_Default_Rounded.png new file mode 100644 index 000000000..7bc119341 Binary files /dev/null and b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_WireframeTheme_Light_HighContrast.Icon_Brand_Default_Rounded.png differ diff --git a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_WireframeTheme_Light_HighContrast.Icon_Default_Default_Disabled_Rounded.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_WireframeTheme_Light_HighContrast.Icon_Default_Default_Disabled_Rounded.png new file mode 100644 index 000000000..0752eedc6 Binary files /dev/null and b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_WireframeTheme_Light_HighContrast.Icon_Default_Default_Disabled_Rounded.png differ diff --git a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_WireframeTheme_Light_HighContrast.Icon_Default_Default_Rounded.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_WireframeTheme_Light_HighContrast.Icon_Default_Default_Rounded.png new file mode 100644 index 000000000..32244faa1 Binary files /dev/null and b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_WireframeTheme_Light_HighContrast.Icon_Default_Default_Rounded.png differ diff --git a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_WireframeTheme_Light_HighContrast.Icon_Minimal_Default_Disabled_Rounded.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_WireframeTheme_Light_HighContrast.Icon_Minimal_Default_Disabled_Rounded.png new file mode 100644 index 000000000..e1c885678 Binary files /dev/null and b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_WireframeTheme_Light_HighContrast.Icon_Minimal_Default_Disabled_Rounded.png differ diff --git a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_WireframeTheme_Light_HighContrast.Icon_Minimal_Default_Rounded.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_WireframeTheme_Light_HighContrast.Icon_Minimal_Default_Rounded.png new file mode 100644 index 000000000..b83b81297 Binary files /dev/null and b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_WireframeTheme_Light_HighContrast.Icon_Minimal_Default_Rounded.png differ diff --git a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_WireframeTheme_Light_HighContrast.Icon_Negative_Default.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_WireframeTheme_Light_HighContrast.Icon_Negative_Default.png index f49960cfe..f21d36cbe 100644 Binary files a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_WireframeTheme_Light_HighContrast.Icon_Negative_Default.png and b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_WireframeTheme_Light_HighContrast.Icon_Negative_Default.png differ diff --git a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_WireframeTheme_Light_HighContrast.Icon_Negative_Default_Disabled.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_WireframeTheme_Light_HighContrast.Icon_Negative_Default_Disabled.png index a4945005e..599baa597 100644 Binary files a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_WireframeTheme_Light_HighContrast.Icon_Negative_Default_Disabled.png and b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_WireframeTheme_Light_HighContrast.Icon_Negative_Default_Disabled.png differ diff --git a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_WireframeTheme_Light_HighContrast.Icon_Negative_Default_Disabled_Rounded.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_WireframeTheme_Light_HighContrast.Icon_Negative_Default_Disabled_Rounded.png new file mode 100644 index 000000000..599baa597 Binary files /dev/null and b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_WireframeTheme_Light_HighContrast.Icon_Negative_Default_Disabled_Rounded.png differ diff --git a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_WireframeTheme_Light_HighContrast.Icon_Negative_Default_Rounded.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_WireframeTheme_Light_HighContrast.Icon_Negative_Default_Rounded.png new file mode 100644 index 000000000..f21d36cbe Binary files /dev/null and b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_WireframeTheme_Light_HighContrast.Icon_Negative_Default_Rounded.png differ diff --git a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_WireframeTheme_Light_HighContrast.Icon_Strong_Default.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_WireframeTheme_Light_HighContrast.Icon_Strong_Default.png index add5d907b..b39f8ff7b 100644 Binary files a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_WireframeTheme_Light_HighContrast.Icon_Strong_Default.png and b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_WireframeTheme_Light_HighContrast.Icon_Strong_Default.png differ diff --git a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_WireframeTheme_Light_HighContrast.Icon_Strong_Default_Disabled.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_WireframeTheme_Light_HighContrast.Icon_Strong_Default_Disabled.png index a4945005e..599baa597 100644 Binary files a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_WireframeTheme_Light_HighContrast.Icon_Strong_Default_Disabled.png and b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_WireframeTheme_Light_HighContrast.Icon_Strong_Default_Disabled.png differ diff --git a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_WireframeTheme_Light_HighContrast.Icon_Strong_Default_Disabled_Rounded.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_WireframeTheme_Light_HighContrast.Icon_Strong_Default_Disabled_Rounded.png new file mode 100644 index 000000000..599baa597 Binary files /dev/null and b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_WireframeTheme_Light_HighContrast.Icon_Strong_Default_Disabled_Rounded.png differ diff --git a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_WireframeTheme_Light_HighContrast.Icon_Strong_Default_Rounded.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_WireframeTheme_Light_HighContrast.Icon_Strong_Default_Rounded.png new file mode 100644 index 000000000..b39f8ff7b Binary files /dev/null and b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_WireframeTheme_Light_HighContrast.Icon_Strong_Default_Rounded.png differ diff --git a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_WireframeTheme_Light_HighContrast.TextAndIcon_Brand_Default.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_WireframeTheme_Light_HighContrast.TextAndIcon_Brand_Default.png new file mode 100644 index 000000000..04d105ec3 Binary files /dev/null and b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_WireframeTheme_Light_HighContrast.TextAndIcon_Brand_Default.png differ diff --git a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_WireframeTheme_Light_HighContrast.TextAndIcon_Brand_Default_Disabled.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_WireframeTheme_Light_HighContrast.TextAndIcon_Brand_Default_Disabled.png new file mode 100644 index 000000000..a6abd0b85 Binary files /dev/null and b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_WireframeTheme_Light_HighContrast.TextAndIcon_Brand_Default_Disabled.png differ diff --git a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_WireframeTheme_Light_HighContrast.TextAndIcon_Brand_Default_Disabled_Rounded.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_WireframeTheme_Light_HighContrast.TextAndIcon_Brand_Default_Disabled_Rounded.png new file mode 100644 index 000000000..a6abd0b85 Binary files /dev/null and b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_WireframeTheme_Light_HighContrast.TextAndIcon_Brand_Default_Disabled_Rounded.png differ diff --git a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_WireframeTheme_Light_HighContrast.TextAndIcon_Brand_Default_Rounded.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_WireframeTheme_Light_HighContrast.TextAndIcon_Brand_Default_Rounded.png new file mode 100644 index 000000000..04d105ec3 Binary files /dev/null and b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_WireframeTheme_Light_HighContrast.TextAndIcon_Brand_Default_Rounded.png differ diff --git a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_WireframeTheme_Light_HighContrast.TextAndIcon_Default_Default_Disabled_Rounded.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_WireframeTheme_Light_HighContrast.TextAndIcon_Default_Default_Disabled_Rounded.png new file mode 100644 index 000000000..09f408b34 Binary files /dev/null and b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_WireframeTheme_Light_HighContrast.TextAndIcon_Default_Default_Disabled_Rounded.png differ diff --git a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_WireframeTheme_Light_HighContrast.TextAndIcon_Default_Default_Rounded.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_WireframeTheme_Light_HighContrast.TextAndIcon_Default_Default_Rounded.png new file mode 100644 index 000000000..f902e7eb7 Binary files /dev/null and b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_WireframeTheme_Light_HighContrast.TextAndIcon_Default_Default_Rounded.png differ diff --git a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_WireframeTheme_Light_HighContrast.TextAndIcon_Minimal_Default_Disabled_Rounded.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_WireframeTheme_Light_HighContrast.TextAndIcon_Minimal_Default_Disabled_Rounded.png new file mode 100644 index 000000000..51b0dfb25 Binary files /dev/null and b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_WireframeTheme_Light_HighContrast.TextAndIcon_Minimal_Default_Disabled_Rounded.png differ diff --git a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_WireframeTheme_Light_HighContrast.TextAndIcon_Minimal_Default_Rounded.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_WireframeTheme_Light_HighContrast.TextAndIcon_Minimal_Default_Rounded.png new file mode 100644 index 000000000..d4635257b Binary files /dev/null and b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_WireframeTheme_Light_HighContrast.TextAndIcon_Minimal_Default_Rounded.png differ diff --git a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_WireframeTheme_Light_HighContrast.TextAndIcon_Negative_Default.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_WireframeTheme_Light_HighContrast.TextAndIcon_Negative_Default.png index 6cab91c6d..12ca6fe0b 100644 Binary files a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_WireframeTheme_Light_HighContrast.TextAndIcon_Negative_Default.png and b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_WireframeTheme_Light_HighContrast.TextAndIcon_Negative_Default.png differ diff --git a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_WireframeTheme_Light_HighContrast.TextAndIcon_Negative_Default_Disabled.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_WireframeTheme_Light_HighContrast.TextAndIcon_Negative_Default_Disabled.png index 7d7500611..a6abd0b85 100644 Binary files a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_WireframeTheme_Light_HighContrast.TextAndIcon_Negative_Default_Disabled.png and b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_WireframeTheme_Light_HighContrast.TextAndIcon_Negative_Default_Disabled.png differ diff --git a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_WireframeTheme_Light_HighContrast.TextAndIcon_Negative_Default_Disabled_Rounded.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_WireframeTheme_Light_HighContrast.TextAndIcon_Negative_Default_Disabled_Rounded.png new file mode 100644 index 000000000..a6abd0b85 Binary files /dev/null and b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_WireframeTheme_Light_HighContrast.TextAndIcon_Negative_Default_Disabled_Rounded.png differ diff --git a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_WireframeTheme_Light_HighContrast.TextAndIcon_Negative_Default_Rounded.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_WireframeTheme_Light_HighContrast.TextAndIcon_Negative_Default_Rounded.png new file mode 100644 index 000000000..12ca6fe0b Binary files /dev/null and b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_WireframeTheme_Light_HighContrast.TextAndIcon_Negative_Default_Rounded.png differ diff --git a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_WireframeTheme_Light_HighContrast.TextAndIcon_Strong_Default.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_WireframeTheme_Light_HighContrast.TextAndIcon_Strong_Default.png index 38a20a4f4..7f61d8608 100644 Binary files a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_WireframeTheme_Light_HighContrast.TextAndIcon_Strong_Default.png and b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_WireframeTheme_Light_HighContrast.TextAndIcon_Strong_Default.png differ diff --git a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_WireframeTheme_Light_HighContrast.TextAndIcon_Strong_Default_Disabled.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_WireframeTheme_Light_HighContrast.TextAndIcon_Strong_Default_Disabled.png index 7d7500611..a6abd0b85 100644 Binary files a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_WireframeTheme_Light_HighContrast.TextAndIcon_Strong_Default_Disabled.png and b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_WireframeTheme_Light_HighContrast.TextAndIcon_Strong_Default_Disabled.png differ diff --git a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_WireframeTheme_Light_HighContrast.TextAndIcon_Strong_Default_Disabled_Rounded.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_WireframeTheme_Light_HighContrast.TextAndIcon_Strong_Default_Disabled_Rounded.png new file mode 100644 index 000000000..a6abd0b85 Binary files /dev/null and b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_WireframeTheme_Light_HighContrast.TextAndIcon_Strong_Default_Disabled_Rounded.png differ diff --git a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_WireframeTheme_Light_HighContrast.TextAndIcon_Strong_Default_Rounded.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_WireframeTheme_Light_HighContrast.TextAndIcon_Strong_Default_Rounded.png new file mode 100644 index 000000000..7f61d8608 Binary files /dev/null and b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_WireframeTheme_Light_HighContrast.TextAndIcon_Strong_Default_Rounded.png differ diff --git a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_WireframeTheme_Light_HighContrast.Text_Brand_Default.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_WireframeTheme_Light_HighContrast.Text_Brand_Default.png new file mode 100644 index 000000000..dfe7e6ecd Binary files /dev/null and b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_WireframeTheme_Light_HighContrast.Text_Brand_Default.png differ diff --git a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_WireframeTheme_Light_HighContrast.Text_Brand_Default_Disabled.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_WireframeTheme_Light_HighContrast.Text_Brand_Default_Disabled.png new file mode 100644 index 000000000..43d4d8b80 Binary files /dev/null and b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_WireframeTheme_Light_HighContrast.Text_Brand_Default_Disabled.png differ diff --git a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_WireframeTheme_Light_HighContrast.Text_Brand_Default_Disabled_Rounded.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_WireframeTheme_Light_HighContrast.Text_Brand_Default_Disabled_Rounded.png new file mode 100644 index 000000000..43d4d8b80 Binary files /dev/null and b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_WireframeTheme_Light_HighContrast.Text_Brand_Default_Disabled_Rounded.png differ diff --git a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_WireframeTheme_Light_HighContrast.Text_Brand_Default_Rounded.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_WireframeTheme_Light_HighContrast.Text_Brand_Default_Rounded.png new file mode 100644 index 000000000..dfe7e6ecd Binary files /dev/null and b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_WireframeTheme_Light_HighContrast.Text_Brand_Default_Rounded.png differ diff --git a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_WireframeTheme_Light_HighContrast.Text_Default_Default_Disabled_Rounded.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_WireframeTheme_Light_HighContrast.Text_Default_Default_Disabled_Rounded.png new file mode 100644 index 000000000..26eb1df00 Binary files /dev/null and b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_WireframeTheme_Light_HighContrast.Text_Default_Default_Disabled_Rounded.png differ diff --git a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_WireframeTheme_Light_HighContrast.Text_Default_Default_Rounded.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_WireframeTheme_Light_HighContrast.Text_Default_Default_Rounded.png new file mode 100644 index 000000000..5c9186e6f Binary files /dev/null and b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_WireframeTheme_Light_HighContrast.Text_Default_Default_Rounded.png differ diff --git a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_WireframeTheme_Light_HighContrast.Text_Minimal_Default_Disabled_Rounded.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_WireframeTheme_Light_HighContrast.Text_Minimal_Default_Disabled_Rounded.png new file mode 100644 index 000000000..2ff8a9042 Binary files /dev/null and b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_WireframeTheme_Light_HighContrast.Text_Minimal_Default_Disabled_Rounded.png differ diff --git a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_WireframeTheme_Light_HighContrast.Text_Minimal_Default_Rounded.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_WireframeTheme_Light_HighContrast.Text_Minimal_Default_Rounded.png new file mode 100644 index 000000000..860a0748b Binary files /dev/null and b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_WireframeTheme_Light_HighContrast.Text_Minimal_Default_Rounded.png differ diff --git a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_WireframeTheme_Light_HighContrast.Text_Negative_Default.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_WireframeTheme_Light_HighContrast.Text_Negative_Default.png index b5e1ede59..c3579a319 100644 Binary files a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_WireframeTheme_Light_HighContrast.Text_Negative_Default.png and b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_WireframeTheme_Light_HighContrast.Text_Negative_Default.png differ diff --git a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_WireframeTheme_Light_HighContrast.Text_Negative_Default_Disabled.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_WireframeTheme_Light_HighContrast.Text_Negative_Default_Disabled.png index 98f32765e..43d4d8b80 100644 Binary files a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_WireframeTheme_Light_HighContrast.Text_Negative_Default_Disabled.png and b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_WireframeTheme_Light_HighContrast.Text_Negative_Default_Disabled.png differ diff --git a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_WireframeTheme_Light_HighContrast.Text_Negative_Default_Disabled_Rounded.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_WireframeTheme_Light_HighContrast.Text_Negative_Default_Disabled_Rounded.png new file mode 100644 index 000000000..43d4d8b80 Binary files /dev/null and b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_WireframeTheme_Light_HighContrast.Text_Negative_Default_Disabled_Rounded.png differ diff --git a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_WireframeTheme_Light_HighContrast.Text_Negative_Default_Rounded.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_WireframeTheme_Light_HighContrast.Text_Negative_Default_Rounded.png new file mode 100644 index 000000000..c3579a319 Binary files /dev/null and b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_WireframeTheme_Light_HighContrast.Text_Negative_Default_Rounded.png differ diff --git a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_WireframeTheme_Light_HighContrast.Text_Strong_Default.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_WireframeTheme_Light_HighContrast.Text_Strong_Default.png index 93d916aa7..5b3aeb70d 100644 Binary files a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_WireframeTheme_Light_HighContrast.Text_Strong_Default.png and b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_WireframeTheme_Light_HighContrast.Text_Strong_Default.png differ diff --git a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_WireframeTheme_Light_HighContrast.Text_Strong_Default_Disabled.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_WireframeTheme_Light_HighContrast.Text_Strong_Default_Disabled.png index 98f32765e..43d4d8b80 100644 Binary files a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_WireframeTheme_Light_HighContrast.Text_Strong_Default_Disabled.png and b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_WireframeTheme_Light_HighContrast.Text_Strong_Default_Disabled.png differ diff --git a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_WireframeTheme_Light_HighContrast.Text_Strong_Default_Disabled_Rounded.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_WireframeTheme_Light_HighContrast.Text_Strong_Default_Disabled_Rounded.png new file mode 100644 index 000000000..43d4d8b80 Binary files /dev/null and b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_WireframeTheme_Light_HighContrast.Text_Strong_Default_Disabled_Rounded.png differ diff --git a/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_WireframeTheme_Light_HighContrast.Text_Strong_Default_Rounded.png b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_WireframeTheme_Light_HighContrast.Text_Strong_Default_Rounded.png new file mode 100644 index 000000000..5b3aeb70d Binary files /dev/null and b/DesignToolbox/DesignToolboxSnapshotsTests/__Snapshots__/Components/Test Cases/__Snapshots__/ButtonUITestsTestCase/test_WireframeTheme_Light_HighContrast.Text_Strong_Default_Rounded.png differ