gitextract_i3_ujbve/ ├── .editorconfig ├── .github/ │ └── ISSUE_TEMPLATE/ │ ├── bug_report.md │ ├── feature_request.md │ └── other-issue.md ├── .gitignore ├── LICENSE ├── MSIXPkg2/ │ ├── MSIXPkg2.wapproj │ └── Package.appxmanifest ├── README.md ├── RainbowTaskbar/ │ ├── App.xaml │ ├── App.xaml.cs │ ├── AssemblyInfo.cs │ ├── Configuration/ │ │ ├── Config.cs │ │ ├── Instruction/ │ │ │ ├── DefaultPresets.cs │ │ │ ├── Instruction.cs │ │ │ ├── InstructionConfig.cs │ │ │ ├── InstructionGroup.cs │ │ │ ├── InstructionPreset.cs │ │ │ └── Instructions/ │ │ │ ├── BorderRadiusInstruction.cs │ │ │ ├── ClearLayerInstruction.cs │ │ │ ├── ColorInstruction.cs │ │ │ ├── DelayInstruction.cs │ │ │ ├── ImageInstruction.cs │ │ │ ├── ShapeInstruction.cs │ │ │ ├── TextInstruction.cs │ │ │ └── TransparencyInstruction.cs │ │ └── Web/ │ │ └── WebConfig.cs │ ├── Drawing/ │ │ ├── CanvasManager.cs │ │ └── LayerManager.cs │ ├── Editor/ │ │ ├── DebugWindow.xaml │ │ ├── DebugWindow.xaml.cs │ │ ├── EditorViewModel.cs │ │ ├── EditorWindow.xaml │ │ ├── EditorWindow.xaml.cs │ │ └── Pages/ │ │ ├── About.xaml │ │ ├── About.xaml.cs │ │ ├── Browse.xaml │ │ ├── Browse.xaml.cs │ │ ├── Configs.xaml │ │ ├── Configs.xaml.cs │ │ ├── Controls/ │ │ │ ├── ConfigListItemControl.xaml │ │ │ ├── ConfigListItemControl.xaml.cs │ │ │ ├── InstructionContextMenu.xaml │ │ │ ├── InstructionContextMenu.xaml.cs │ │ │ ├── InstructionControls/ │ │ │ │ ├── BorderRadiusInstructionControl.xaml │ │ │ │ ├── BorderRadiusInstructionControl.xaml.cs │ │ │ │ ├── ClearLayerInstructionControl.xaml │ │ │ │ ├── ClearLayerInstructionControl.xaml.cs │ │ │ │ ├── ColorInstructionControl.xaml │ │ │ │ ├── ColorInstructionControl.xaml.cs │ │ │ │ ├── Converters/ │ │ │ │ │ ├── ColorConverter.cs │ │ │ │ │ ├── DivideHalf.cs │ │ │ │ │ ├── FileExists.cs │ │ │ │ │ └── FloatToPercentage.cs │ │ │ │ ├── DelayInstructionControl.xaml │ │ │ │ ├── DelayInstructionControl.xaml.cs │ │ │ │ ├── ImageInstructionControl.xaml │ │ │ │ ├── ImageInstructionControl.xaml.cs │ │ │ │ ├── ShapeInstructionControl.xaml │ │ │ │ ├── ShapeInstructionControl.xaml.cs │ │ │ │ ├── TextInstructionControl.xaml │ │ │ │ ├── TextInstructionControl.xaml.cs │ │ │ │ ├── TransparencyInstructionControl.xaml │ │ │ │ └── TransparencyInstructionControl.xaml.cs │ │ │ ├── IssueControl.xaml │ │ │ ├── IssueControl.xaml.cs │ │ │ ├── LoginControl.xaml │ │ │ ├── LoginControl.xaml.cs │ │ │ ├── ResultListItemControl.xaml │ │ │ ├── ResultListItemControl.xaml.cs │ │ │ ├── UnsafeImage.cs │ │ │ └── WebControls/ │ │ │ ├── AddPropertyDialogControl.xaml │ │ │ └── AddPropertyDialogControl.xaml.cs │ │ ├── Edit/ │ │ │ ├── EditInfo.xaml │ │ │ ├── EditInfo.xaml.cs │ │ │ ├── EditPage.cs │ │ │ ├── InstructionEditPage.xaml │ │ │ ├── InstructionEditPage.xaml.cs │ │ │ ├── ViewComments.xaml │ │ │ ├── ViewComments.xaml.cs │ │ │ ├── ViewInfo.xaml │ │ │ ├── ViewInfo.xaml.cs │ │ │ ├── WebEditPage.xaml │ │ │ ├── WebEditPage.xaml.cs │ │ │ └── WebView2Fixed.cs │ │ ├── EmptyPageBadFix.xaml │ │ ├── EmptyPageBadFix.xaml.cs │ │ ├── EmptyPageBadFix2.xaml │ │ ├── EmptyPageBadFix2.xaml.cs │ │ ├── Home.xaml │ │ ├── Home.xaml.cs │ │ ├── Settings.xaml │ │ └── Settings.xaml.cs │ ├── ExplorerTAP/ │ │ └── ExplorerTAP.cs │ ├── FodyWeavers.xml │ ├── HTTPAPI/ │ │ └── WorkshopAPI.cs │ ├── Helpers/ │ │ ├── AutoUpdate.cs │ │ ├── Cache.cs │ │ ├── DPIUtil.cs │ │ ├── HiddenWebViewHost.xaml │ │ ├── HiddenWebViewHost.xaml.cs │ │ ├── JsonColorConverter.cs │ │ ├── Taskbar.cs │ │ └── Window.cs │ ├── Interpolation/ │ │ └── ColorInterpolation.cs │ ├── Languages/ │ │ ├── Localization.cs │ │ ├── Translators.cs │ │ ├── en_US.xaml │ │ ├── en_US.xaml.cs │ │ ├── fr_FR.xaml │ │ ├── fr_FR.xaml.cs │ │ ├── ro_RO.xaml │ │ ├── ro_RO.xaml.cs │ │ ├── zh_CN.cs │ │ └── zh_CN.xaml │ ├── Preferences/ │ │ └── Settings.cs │ ├── Properties/ │ │ ├── Resources.Designer.cs │ │ ├── Resources.resx │ │ ├── Settings.Designer.cs │ │ ├── Settings.settings │ │ └── launchSettings.json │ ├── RainbowTaskbar.csproj │ ├── Taskbar.xaml │ ├── Taskbar.xaml.cs │ ├── TaskbarViewModel.cs │ ├── TrayWindow.xaml │ ├── TrayWindow.xaml.cs │ ├── V2Legacy/ │ │ └── Configuration/ │ │ ├── Config.cs │ │ ├── Instruction.cs │ │ ├── InstructionPreset.cs │ │ └── Instructions/ │ │ ├── BorderRadiusInstruction.cs │ │ ├── ClearLayerInstruction.cs │ │ ├── ColorInstruction.cs │ │ ├── DelayInstruction.cs │ │ ├── ImageInstruction.cs │ │ ├── ShapeInstruction.cs │ │ ├── TextInstruction.cs │ │ └── TransparencyInstruction.cs │ └── msix.build.props ├── RainbowTaskbar.sln ├── RainbowTaskbarDLL/ │ ├── AppearanceServiceAPI.cpp │ ├── AppearanceServiceAPI.h │ ├── ArmFix/ │ │ └── RpcProxy.h │ ├── ErrorDebug.h │ ├── Factory.h │ ├── IUnused.h │ ├── IUnused.idl │ ├── RainbowTaskbarDLL.def │ ├── RainbowTaskbarDLL.idl │ ├── RainbowTaskbarDLL.vcxproj │ ├── RainbowTaskbarDLL.vcxproj.filters │ ├── TAP.cpp │ ├── TAP.h │ ├── Taskbar.h │ ├── VisualTreeWatch.cpp │ ├── VisualTreeWatch.h │ ├── csharpinterop.cpp │ ├── dllmain.cpp │ ├── framework.h │ ├── packages.config │ └── winrt.h ├── SetupARM64.iss └── SetupX64.iss