diff --git a/src/PowerShellEditorServices/Services/PowerShell/Console/ColorConfiguration.cs b/src/PowerShellEditorServices/Services/PowerShell/Console/ColorConfiguration.cs
deleted file mode 100644
index 1bd80051c..000000000
--- a/src/PowerShellEditorServices/Services/PowerShell/Console/ColorConfiguration.cs
+++ /dev/null
@@ -1,38 +0,0 @@
-// Copyright (c) Microsoft Corporation.
-// Licensed under the MIT License.
-
-using System;
-
-namespace Microsoft.PowerShell.EditorServices.Services.PowerShell.Console
-{
- internal class ColorConfiguration
- {
- public ConsoleColor ForegroundColor { get; set; }
-
- public ConsoleColor BackgroundColor { get; set; }
-
- public ConsoleColor FormatAccentColor { get; set; }
-
- public ConsoleColor ErrorAccentColor { get; set; }
-
- public ConsoleColor ErrorForegroundColor { get; set; }
-
- public ConsoleColor ErrorBackgroundColor { get; set; }
-
- public ConsoleColor WarningForegroundColor { get; set; }
-
- public ConsoleColor WarningBackgroundColor { get; set; }
-
- public ConsoleColor DebugForegroundColor { get; set; }
-
- public ConsoleColor DebugBackgroundColor { get; set; }
-
- public ConsoleColor VerboseForegroundColor { get; set; }
-
- public ConsoleColor VerboseBackgroundColor { get; set; }
-
- public ConsoleColor ProgressForegroundColor { get; set; }
-
- public ConsoleColor ProgressBackgroundColor { get; set; }
- }
-}
diff --git a/src/PowerShellEditorServices/Services/PowerShell/Host/ConsoleColorProxy.cs b/src/PowerShellEditorServices/Services/PowerShell/Host/ConsoleColorProxy.cs
deleted file mode 100644
index 75b1bb4be..000000000
--- a/src/PowerShellEditorServices/Services/PowerShell/Host/ConsoleColorProxy.cs
+++ /dev/null
@@ -1,151 +0,0 @@
-// Copyright (c) Microsoft. All rights reserved.
-// Licensed under the MIT license. See LICENSE file in the project root for full license information.
-
-/*
-using System;
-using System.Management.Automation.Host;
-
-namespace Microsoft.PowerShell.EditorServices.Services.PowerShell.Host
-{
- internal class ConsoleColorProxy
- {
- internal ConsoleColorProxy(EditorServicesConsolePSHostUserInterface hostUserInterface)
- {
- if (hostUserInterface == null) throw new ArgumentNullException();
- _hostUserInterface = hostUserInterface;
- }
-
- ///
- /// The Accent Color for Formatting
- ///
- public ConsoleColor FormatAccentColor
- {
- get
- { return _hostUserInterface.FormatAccentColor; }
- set
- { _hostUserInterface.FormatAccentColor = value; }
- }
-
- ///
- /// The Accent Color for Error
- ///
- public ConsoleColor ErrorAccentColor
- {
- get
- { return _hostUserInterface.ErrorAccentColor; }
- set
- { _hostUserInterface.ErrorAccentColor = value; }
- }
-
- ///
- /// The ForegroundColor for Error
- ///
- public ConsoleColor ErrorForegroundColor
- {
- get
- { return _hostUserInterface.ErrorForegroundColor; }
- set
- { _hostUserInterface.ErrorForegroundColor = value; }
- }
-
- ///
- /// The BackgroundColor for Error
- ///
- public ConsoleColor ErrorBackgroundColor
- {
- get
- { return _hostUserInterface.ErrorBackgroundColor; }
- set
- { _hostUserInterface.ErrorBackgroundColor = value; }
- }
-
- ///
- /// The ForegroundColor for Warning
- ///
- public ConsoleColor WarningForegroundColor
- {
- get
- { return _hostUserInterface.WarningForegroundColor; }
- set
- { _hostUserInterface.WarningForegroundColor = value; }
- }
-
- ///
- /// The BackgroundColor for Warning
- ///
- public ConsoleColor WarningBackgroundColor
- {
- get
- { return _hostUserInterface.WarningBackgroundColor; }
- set
- { _hostUserInterface.WarningBackgroundColor = value; }
- }
-
- ///
- /// The ForegroundColor for Debug
- ///
- public ConsoleColor DebugForegroundColor
- {
- get
- { return _hostUserInterface.DebugForegroundColor; }
- set
- { _hostUserInterface.DebugForegroundColor = value; }
- }
-
- ///
- /// The BackgroundColor for Debug
- ///
- public ConsoleColor DebugBackgroundColor
- {
- get
- { return _hostUserInterface.DebugBackgroundColor; }
- set
- { _hostUserInterface.DebugBackgroundColor = value; }
- }
-
- ///
- /// The ForegroundColor for Verbose
- ///
- public ConsoleColor VerboseForegroundColor
- {
- get
- { return _hostUserInterface.VerboseForegroundColor; }
- set
- { _hostUserInterface.VerboseForegroundColor = value; }
- }
-
- ///
- /// The BackgroundColor for Verbose
- ///
- public ConsoleColor VerboseBackgroundColor
- {
- get
- { return _hostUserInterface.VerboseBackgroundColor; }
- set
- { _hostUserInterface.VerboseBackgroundColor = value; }
- }
-
- ///
- /// The ForegroundColor for Progress
- ///
- public ConsoleColor ProgressForegroundColor
- {
- get
- { return _hostUserInterface.ProgressForegroundColor; }
- set
- { _hostUserInterface.ProgressForegroundColor = value; }
- }
-
- ///
- /// The BackgroundColor for Progress
- ///
- public ConsoleColor ProgressBackgroundColor
- {
- get
- { return _hostUserInterface.ProgressBackgroundColor; }
- set
- { _hostUserInterface.ProgressBackgroundColor = value; }
- }
- }
-}
-*/