├── .editorconfig ├── .gitattributes ├── .github ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── FUNDING.yml ├── ISSUE_TEMPLATE │ ├── bug_report.md │ └── feature_request.md └── workflows │ ├── Windows.runsettings │ └── build.yaml ├── .gitignore ├── LICENSE ├── README.md ├── SolutionColors.sln ├── art ├── border-settings.png ├── colors.png ├── context-menu-disable.png ├── context-menu-none.png ├── context-menu.png ├── custom-colors.png ├── options.png ├── solution-context-menu.png ├── solution-label.png ├── taskbar-icons.png ├── taskbar.png └── top.png ├── nuget.config ├── src ├── ColorCache.cs ├── ColorHelper.cs ├── Commands │ ├── CustomCommand.cs │ ├── IconCommands.cs │ ├── OptionsCommand.cs │ ├── SetColorCommandFolder.cs │ └── SetColorCommandSolution.cs ├── ExtensionMethods │ ├── BrushExtensions.cs │ ├── SolutionExtensions.cs │ └── WpfExtensions.cs ├── GitHelper.cs ├── Options │ ├── BorderEditor.cs │ ├── BorderEditorDialog.Designer.cs │ ├── BorderEditorDialog.cs │ ├── BorderEditorDialog.resx │ ├── BorderSettings.cs │ ├── BorderTypeConverter.cs │ ├── EnumDescriptionConverter.cs │ ├── General.cs │ └── TaskBarOptions.cs ├── Properties │ └── AssemblyInfo.cs ├── Resources │ └── Icon.png ├── SolutionColors.csproj ├── SolutionColorsPackage.cs ├── Telemetry.cs ├── VSCommandTable.cs ├── VSCommandTable.vsct ├── source.extension.cs └── source.extension.vsixmanifest └── vs-publish.json /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madskristensen/SolutionColors/HEAD/.editorconfig -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madskristensen/SolutionColors/HEAD/.gitattributes -------------------------------------------------------------------------------- /.github/CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madskristensen/SolutionColors/HEAD/.github/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /.github/CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madskristensen/SolutionColors/HEAD/.github/CONTRIBUTING.md -------------------------------------------------------------------------------- /.github/FUNDING.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madskristensen/SolutionColors/HEAD/.github/FUNDING.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madskristensen/SolutionColors/HEAD/.github/ISSUE_TEMPLATE/bug_report.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madskristensen/SolutionColors/HEAD/.github/ISSUE_TEMPLATE/feature_request.md -------------------------------------------------------------------------------- /.github/workflows/Windows.runsettings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madskristensen/SolutionColors/HEAD/.github/workflows/Windows.runsettings -------------------------------------------------------------------------------- /.github/workflows/build.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madskristensen/SolutionColors/HEAD/.github/workflows/build.yaml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madskristensen/SolutionColors/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madskristensen/SolutionColors/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madskristensen/SolutionColors/HEAD/README.md -------------------------------------------------------------------------------- /SolutionColors.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madskristensen/SolutionColors/HEAD/SolutionColors.sln -------------------------------------------------------------------------------- /art/border-settings.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madskristensen/SolutionColors/HEAD/art/border-settings.png -------------------------------------------------------------------------------- /art/colors.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madskristensen/SolutionColors/HEAD/art/colors.png -------------------------------------------------------------------------------- /art/context-menu-disable.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madskristensen/SolutionColors/HEAD/art/context-menu-disable.png -------------------------------------------------------------------------------- /art/context-menu-none.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madskristensen/SolutionColors/HEAD/art/context-menu-none.png -------------------------------------------------------------------------------- /art/context-menu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madskristensen/SolutionColors/HEAD/art/context-menu.png -------------------------------------------------------------------------------- /art/custom-colors.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madskristensen/SolutionColors/HEAD/art/custom-colors.png -------------------------------------------------------------------------------- /art/options.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madskristensen/SolutionColors/HEAD/art/options.png -------------------------------------------------------------------------------- /art/solution-context-menu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madskristensen/SolutionColors/HEAD/art/solution-context-menu.png -------------------------------------------------------------------------------- /art/solution-label.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madskristensen/SolutionColors/HEAD/art/solution-label.png -------------------------------------------------------------------------------- /art/taskbar-icons.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madskristensen/SolutionColors/HEAD/art/taskbar-icons.png -------------------------------------------------------------------------------- /art/taskbar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madskristensen/SolutionColors/HEAD/art/taskbar.png -------------------------------------------------------------------------------- /art/top.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madskristensen/SolutionColors/HEAD/art/top.png -------------------------------------------------------------------------------- /nuget.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madskristensen/SolutionColors/HEAD/nuget.config -------------------------------------------------------------------------------- /src/ColorCache.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madskristensen/SolutionColors/HEAD/src/ColorCache.cs -------------------------------------------------------------------------------- /src/ColorHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madskristensen/SolutionColors/HEAD/src/ColorHelper.cs -------------------------------------------------------------------------------- /src/Commands/CustomCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madskristensen/SolutionColors/HEAD/src/Commands/CustomCommand.cs -------------------------------------------------------------------------------- /src/Commands/IconCommands.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madskristensen/SolutionColors/HEAD/src/Commands/IconCommands.cs -------------------------------------------------------------------------------- /src/Commands/OptionsCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madskristensen/SolutionColors/HEAD/src/Commands/OptionsCommand.cs -------------------------------------------------------------------------------- /src/Commands/SetColorCommandFolder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madskristensen/SolutionColors/HEAD/src/Commands/SetColorCommandFolder.cs -------------------------------------------------------------------------------- /src/Commands/SetColorCommandSolution.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madskristensen/SolutionColors/HEAD/src/Commands/SetColorCommandSolution.cs -------------------------------------------------------------------------------- /src/ExtensionMethods/BrushExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madskristensen/SolutionColors/HEAD/src/ExtensionMethods/BrushExtensions.cs -------------------------------------------------------------------------------- /src/ExtensionMethods/SolutionExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madskristensen/SolutionColors/HEAD/src/ExtensionMethods/SolutionExtensions.cs -------------------------------------------------------------------------------- /src/ExtensionMethods/WpfExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madskristensen/SolutionColors/HEAD/src/ExtensionMethods/WpfExtensions.cs -------------------------------------------------------------------------------- /src/GitHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madskristensen/SolutionColors/HEAD/src/GitHelper.cs -------------------------------------------------------------------------------- /src/Options/BorderEditor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madskristensen/SolutionColors/HEAD/src/Options/BorderEditor.cs -------------------------------------------------------------------------------- /src/Options/BorderEditorDialog.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madskristensen/SolutionColors/HEAD/src/Options/BorderEditorDialog.Designer.cs -------------------------------------------------------------------------------- /src/Options/BorderEditorDialog.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madskristensen/SolutionColors/HEAD/src/Options/BorderEditorDialog.cs -------------------------------------------------------------------------------- /src/Options/BorderEditorDialog.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madskristensen/SolutionColors/HEAD/src/Options/BorderEditorDialog.resx -------------------------------------------------------------------------------- /src/Options/BorderSettings.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madskristensen/SolutionColors/HEAD/src/Options/BorderSettings.cs -------------------------------------------------------------------------------- /src/Options/BorderTypeConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madskristensen/SolutionColors/HEAD/src/Options/BorderTypeConverter.cs -------------------------------------------------------------------------------- /src/Options/EnumDescriptionConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madskristensen/SolutionColors/HEAD/src/Options/EnumDescriptionConverter.cs -------------------------------------------------------------------------------- /src/Options/General.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madskristensen/SolutionColors/HEAD/src/Options/General.cs -------------------------------------------------------------------------------- /src/Options/TaskBarOptions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madskristensen/SolutionColors/HEAD/src/Options/TaskBarOptions.cs -------------------------------------------------------------------------------- /src/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madskristensen/SolutionColors/HEAD/src/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /src/Resources/Icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madskristensen/SolutionColors/HEAD/src/Resources/Icon.png -------------------------------------------------------------------------------- /src/SolutionColors.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madskristensen/SolutionColors/HEAD/src/SolutionColors.csproj -------------------------------------------------------------------------------- /src/SolutionColorsPackage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madskristensen/SolutionColors/HEAD/src/SolutionColorsPackage.cs -------------------------------------------------------------------------------- /src/Telemetry.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madskristensen/SolutionColors/HEAD/src/Telemetry.cs -------------------------------------------------------------------------------- /src/VSCommandTable.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madskristensen/SolutionColors/HEAD/src/VSCommandTable.cs -------------------------------------------------------------------------------- /src/VSCommandTable.vsct: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madskristensen/SolutionColors/HEAD/src/VSCommandTable.vsct -------------------------------------------------------------------------------- /src/source.extension.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madskristensen/SolutionColors/HEAD/src/source.extension.cs -------------------------------------------------------------------------------- /src/source.extension.vsixmanifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madskristensen/SolutionColors/HEAD/src/source.extension.vsixmanifest -------------------------------------------------------------------------------- /vs-publish.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madskristensen/SolutionColors/HEAD/vs-publish.json --------------------------------------------------------------------------------