├── .gitattributes ├── .github └── workflows │ └── vale.yml ├── .gitignore ├── CODEOWNERS ├── CS └── switcher │ ├── switcher.sln │ └── switcher │ ├── Components │ ├── App.razor │ ├── Layout │ │ ├── Drawer.razor │ │ ├── Drawer.razor.css │ │ ├── MainLayout.razor │ │ ├── MainLayout.razor.css │ │ ├── NavMenu.razor │ │ ├── NavMenu.razor.css │ │ └── SizeChanger.razor │ ├── Pages │ │ ├── Counter.razor │ │ ├── Counter.razor.css │ │ ├── Error.razor │ │ ├── Index.razor │ │ ├── Index.razor.css │ │ └── Weather.razor │ ├── Routes.razor │ ├── ThemeSwitcher │ │ ├── ThemeSwitcher.razor │ │ ├── ThemeSwitcherContainer.razor │ │ └── ThemeSwitcherItem.razor │ └── _Imports.razor │ ├── NOTICE.txt │ ├── Program.cs │ ├── Properties │ └── launchSettings.json │ ├── Services │ ├── CookiesService.cs │ ├── SizeManager.cs │ ├── Themes.cs │ ├── ThemesService.cs │ └── UrlGenerator.cs │ ├── appsettings.Development.json │ ├── appsettings.json │ ├── switcher.csproj │ └── wwwroot │ ├── css │ ├── open-iconic │ │ ├── FONT-LICENSE.txt │ │ ├── ICON-LICENSE.txt │ │ ├── README.md │ │ └── font │ │ │ ├── css │ │ │ └── open-iconic-bootstrap.min.css │ │ │ └── fonts │ │ │ ├── open-iconic.eot │ │ │ ├── open-iconic.otf │ │ │ ├── open-iconic.svg │ │ │ ├── open-iconic.ttf │ │ │ └── open-iconic.woff │ ├── site.css │ ├── theme-bs.css │ └── theme-fluent.css │ ├── favicon.ico │ ├── images │ ├── account │ │ ├── log-in-fluent.svg │ │ ├── log-in.svg │ │ ├── log-out-fluent.svg │ │ ├── log-out.svg │ │ ├── manage-email-fluent.svg │ │ ├── manage-email.svg │ │ ├── manage-password-fluent.svg │ │ ├── manage-password.svg │ │ ├── manage-personal-fluent.svg │ │ ├── manage-personal.svg │ │ ├── manage-profile-fluent.svg │ │ ├── manage-profile.svg │ │ ├── manage-two-factor-fluent.svg │ │ ├── manage-two-factor.svg │ │ ├── providers │ │ │ ├── facebook-logo-fluent.svg │ │ │ ├── facebook-logo.svg │ │ │ ├── google-logo-fluent.svg │ │ │ ├── google-logo.svg │ │ │ ├── microsoft-logo-fluent.svg │ │ │ ├── microsoft-logo.svg │ │ │ ├── x-logo-fluent.svg │ │ │ └── x-logo.svg │ │ ├── settings-fluent.svg │ │ ├── settings.svg │ │ ├── user-fluent.svg │ │ └── user.svg │ ├── back-fluent.svg │ ├── back.svg │ ├── cards.svg │ ├── close-fluent.svg │ ├── close.svg │ ├── counter-fluent.svg │ ├── counter.svg │ ├── demos-fluent.svg │ ├── demos.svg │ ├── doc-fluent.svg │ ├── doc.svg │ ├── home-fluent.svg │ ├── home.svg │ ├── logo.svg │ ├── menu-fluent.svg │ ├── menu.svg │ ├── theme.svg │ ├── themeswitcher-fluent-mode-dark.svg │ ├── themeswitcher-fluent-mode-light.svg │ ├── themeswitcher-no-color-icon.svg │ ├── weather-fluent.svg │ └── weather.svg │ └── switcher-resources │ ├── js │ ├── cookies-manager.js │ └── size-manager.js │ └── theme-switcher.css ├── LICENSE ├── Readme.md ├── config.json └── images └── blazor-theme-and-size-mode-switcher.png /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevExpress-Examples/blazor-theme-and-size-mode-switcher/HEAD/.gitattributes -------------------------------------------------------------------------------- /.github/workflows/vale.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevExpress-Examples/blazor-theme-and-size-mode-switcher/HEAD/.github/workflows/vale.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevExpress-Examples/blazor-theme-and-size-mode-switcher/HEAD/.gitignore -------------------------------------------------------------------------------- /CODEOWNERS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevExpress-Examples/blazor-theme-and-size-mode-switcher/HEAD/CODEOWNERS -------------------------------------------------------------------------------- /CS/switcher/switcher.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevExpress-Examples/blazor-theme-and-size-mode-switcher/HEAD/CS/switcher/switcher.sln -------------------------------------------------------------------------------- /CS/switcher/switcher/Components/App.razor: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevExpress-Examples/blazor-theme-and-size-mode-switcher/HEAD/CS/switcher/switcher/Components/App.razor -------------------------------------------------------------------------------- /CS/switcher/switcher/Components/Layout/Drawer.razor: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevExpress-Examples/blazor-theme-and-size-mode-switcher/HEAD/CS/switcher/switcher/Components/Layout/Drawer.razor -------------------------------------------------------------------------------- /CS/switcher/switcher/Components/Layout/Drawer.razor.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevExpress-Examples/blazor-theme-and-size-mode-switcher/HEAD/CS/switcher/switcher/Components/Layout/Drawer.razor.css -------------------------------------------------------------------------------- /CS/switcher/switcher/Components/Layout/MainLayout.razor: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevExpress-Examples/blazor-theme-and-size-mode-switcher/HEAD/CS/switcher/switcher/Components/Layout/MainLayout.razor -------------------------------------------------------------------------------- /CS/switcher/switcher/Components/Layout/MainLayout.razor.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevExpress-Examples/blazor-theme-and-size-mode-switcher/HEAD/CS/switcher/switcher/Components/Layout/MainLayout.razor.css -------------------------------------------------------------------------------- /CS/switcher/switcher/Components/Layout/NavMenu.razor: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevExpress-Examples/blazor-theme-and-size-mode-switcher/HEAD/CS/switcher/switcher/Components/Layout/NavMenu.razor -------------------------------------------------------------------------------- /CS/switcher/switcher/Components/Layout/NavMenu.razor.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevExpress-Examples/blazor-theme-and-size-mode-switcher/HEAD/CS/switcher/switcher/Components/Layout/NavMenu.razor.css -------------------------------------------------------------------------------- /CS/switcher/switcher/Components/Layout/SizeChanger.razor: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevExpress-Examples/blazor-theme-and-size-mode-switcher/HEAD/CS/switcher/switcher/Components/Layout/SizeChanger.razor -------------------------------------------------------------------------------- /CS/switcher/switcher/Components/Pages/Counter.razor: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevExpress-Examples/blazor-theme-and-size-mode-switcher/HEAD/CS/switcher/switcher/Components/Pages/Counter.razor -------------------------------------------------------------------------------- /CS/switcher/switcher/Components/Pages/Counter.razor.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevExpress-Examples/blazor-theme-and-size-mode-switcher/HEAD/CS/switcher/switcher/Components/Pages/Counter.razor.css -------------------------------------------------------------------------------- /CS/switcher/switcher/Components/Pages/Error.razor: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevExpress-Examples/blazor-theme-and-size-mode-switcher/HEAD/CS/switcher/switcher/Components/Pages/Error.razor -------------------------------------------------------------------------------- /CS/switcher/switcher/Components/Pages/Index.razor: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevExpress-Examples/blazor-theme-and-size-mode-switcher/HEAD/CS/switcher/switcher/Components/Pages/Index.razor -------------------------------------------------------------------------------- /CS/switcher/switcher/Components/Pages/Index.razor.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevExpress-Examples/blazor-theme-and-size-mode-switcher/HEAD/CS/switcher/switcher/Components/Pages/Index.razor.css -------------------------------------------------------------------------------- /CS/switcher/switcher/Components/Pages/Weather.razor: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevExpress-Examples/blazor-theme-and-size-mode-switcher/HEAD/CS/switcher/switcher/Components/Pages/Weather.razor -------------------------------------------------------------------------------- /CS/switcher/switcher/Components/Routes.razor: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevExpress-Examples/blazor-theme-and-size-mode-switcher/HEAD/CS/switcher/switcher/Components/Routes.razor -------------------------------------------------------------------------------- /CS/switcher/switcher/Components/ThemeSwitcher/ThemeSwitcher.razor: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevExpress-Examples/blazor-theme-and-size-mode-switcher/HEAD/CS/switcher/switcher/Components/ThemeSwitcher/ThemeSwitcher.razor -------------------------------------------------------------------------------- /CS/switcher/switcher/Components/ThemeSwitcher/ThemeSwitcherContainer.razor: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevExpress-Examples/blazor-theme-and-size-mode-switcher/HEAD/CS/switcher/switcher/Components/ThemeSwitcher/ThemeSwitcherContainer.razor -------------------------------------------------------------------------------- /CS/switcher/switcher/Components/ThemeSwitcher/ThemeSwitcherItem.razor: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevExpress-Examples/blazor-theme-and-size-mode-switcher/HEAD/CS/switcher/switcher/Components/ThemeSwitcher/ThemeSwitcherItem.razor -------------------------------------------------------------------------------- /CS/switcher/switcher/Components/_Imports.razor: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevExpress-Examples/blazor-theme-and-size-mode-switcher/HEAD/CS/switcher/switcher/Components/_Imports.razor -------------------------------------------------------------------------------- /CS/switcher/switcher/NOTICE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevExpress-Examples/blazor-theme-and-size-mode-switcher/HEAD/CS/switcher/switcher/NOTICE.txt -------------------------------------------------------------------------------- /CS/switcher/switcher/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevExpress-Examples/blazor-theme-and-size-mode-switcher/HEAD/CS/switcher/switcher/Program.cs -------------------------------------------------------------------------------- /CS/switcher/switcher/Properties/launchSettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevExpress-Examples/blazor-theme-and-size-mode-switcher/HEAD/CS/switcher/switcher/Properties/launchSettings.json -------------------------------------------------------------------------------- /CS/switcher/switcher/Services/CookiesService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevExpress-Examples/blazor-theme-and-size-mode-switcher/HEAD/CS/switcher/switcher/Services/CookiesService.cs -------------------------------------------------------------------------------- /CS/switcher/switcher/Services/SizeManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevExpress-Examples/blazor-theme-and-size-mode-switcher/HEAD/CS/switcher/switcher/Services/SizeManager.cs -------------------------------------------------------------------------------- /CS/switcher/switcher/Services/Themes.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevExpress-Examples/blazor-theme-and-size-mode-switcher/HEAD/CS/switcher/switcher/Services/Themes.cs -------------------------------------------------------------------------------- /CS/switcher/switcher/Services/ThemesService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevExpress-Examples/blazor-theme-and-size-mode-switcher/HEAD/CS/switcher/switcher/Services/ThemesService.cs -------------------------------------------------------------------------------- /CS/switcher/switcher/Services/UrlGenerator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevExpress-Examples/blazor-theme-and-size-mode-switcher/HEAD/CS/switcher/switcher/Services/UrlGenerator.cs -------------------------------------------------------------------------------- /CS/switcher/switcher/appsettings.Development.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevExpress-Examples/blazor-theme-and-size-mode-switcher/HEAD/CS/switcher/switcher/appsettings.Development.json -------------------------------------------------------------------------------- /CS/switcher/switcher/appsettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevExpress-Examples/blazor-theme-and-size-mode-switcher/HEAD/CS/switcher/switcher/appsettings.json -------------------------------------------------------------------------------- /CS/switcher/switcher/switcher.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevExpress-Examples/blazor-theme-and-size-mode-switcher/HEAD/CS/switcher/switcher/switcher.csproj -------------------------------------------------------------------------------- /CS/switcher/switcher/wwwroot/css/open-iconic/FONT-LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevExpress-Examples/blazor-theme-and-size-mode-switcher/HEAD/CS/switcher/switcher/wwwroot/css/open-iconic/FONT-LICENSE.txt -------------------------------------------------------------------------------- /CS/switcher/switcher/wwwroot/css/open-iconic/ICON-LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevExpress-Examples/blazor-theme-and-size-mode-switcher/HEAD/CS/switcher/switcher/wwwroot/css/open-iconic/ICON-LICENSE.txt -------------------------------------------------------------------------------- /CS/switcher/switcher/wwwroot/css/open-iconic/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevExpress-Examples/blazor-theme-and-size-mode-switcher/HEAD/CS/switcher/switcher/wwwroot/css/open-iconic/README.md -------------------------------------------------------------------------------- /CS/switcher/switcher/wwwroot/css/open-iconic/font/css/open-iconic-bootstrap.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevExpress-Examples/blazor-theme-and-size-mode-switcher/HEAD/CS/switcher/switcher/wwwroot/css/open-iconic/font/css/open-iconic-bootstrap.min.css -------------------------------------------------------------------------------- /CS/switcher/switcher/wwwroot/css/open-iconic/font/fonts/open-iconic.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevExpress-Examples/blazor-theme-and-size-mode-switcher/HEAD/CS/switcher/switcher/wwwroot/css/open-iconic/font/fonts/open-iconic.eot -------------------------------------------------------------------------------- /CS/switcher/switcher/wwwroot/css/open-iconic/font/fonts/open-iconic.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevExpress-Examples/blazor-theme-and-size-mode-switcher/HEAD/CS/switcher/switcher/wwwroot/css/open-iconic/font/fonts/open-iconic.otf -------------------------------------------------------------------------------- /CS/switcher/switcher/wwwroot/css/open-iconic/font/fonts/open-iconic.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevExpress-Examples/blazor-theme-and-size-mode-switcher/HEAD/CS/switcher/switcher/wwwroot/css/open-iconic/font/fonts/open-iconic.svg -------------------------------------------------------------------------------- /CS/switcher/switcher/wwwroot/css/open-iconic/font/fonts/open-iconic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevExpress-Examples/blazor-theme-and-size-mode-switcher/HEAD/CS/switcher/switcher/wwwroot/css/open-iconic/font/fonts/open-iconic.ttf -------------------------------------------------------------------------------- /CS/switcher/switcher/wwwroot/css/open-iconic/font/fonts/open-iconic.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevExpress-Examples/blazor-theme-and-size-mode-switcher/HEAD/CS/switcher/switcher/wwwroot/css/open-iconic/font/fonts/open-iconic.woff -------------------------------------------------------------------------------- /CS/switcher/switcher/wwwroot/css/site.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevExpress-Examples/blazor-theme-and-size-mode-switcher/HEAD/CS/switcher/switcher/wwwroot/css/site.css -------------------------------------------------------------------------------- /CS/switcher/switcher/wwwroot/css/theme-bs.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevExpress-Examples/blazor-theme-and-size-mode-switcher/HEAD/CS/switcher/switcher/wwwroot/css/theme-bs.css -------------------------------------------------------------------------------- /CS/switcher/switcher/wwwroot/css/theme-fluent.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevExpress-Examples/blazor-theme-and-size-mode-switcher/HEAD/CS/switcher/switcher/wwwroot/css/theme-fluent.css -------------------------------------------------------------------------------- /CS/switcher/switcher/wwwroot/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevExpress-Examples/blazor-theme-and-size-mode-switcher/HEAD/CS/switcher/switcher/wwwroot/favicon.ico -------------------------------------------------------------------------------- /CS/switcher/switcher/wwwroot/images/account/log-in-fluent.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevExpress-Examples/blazor-theme-and-size-mode-switcher/HEAD/CS/switcher/switcher/wwwroot/images/account/log-in-fluent.svg -------------------------------------------------------------------------------- /CS/switcher/switcher/wwwroot/images/account/log-in.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevExpress-Examples/blazor-theme-and-size-mode-switcher/HEAD/CS/switcher/switcher/wwwroot/images/account/log-in.svg -------------------------------------------------------------------------------- /CS/switcher/switcher/wwwroot/images/account/log-out-fluent.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevExpress-Examples/blazor-theme-and-size-mode-switcher/HEAD/CS/switcher/switcher/wwwroot/images/account/log-out-fluent.svg -------------------------------------------------------------------------------- /CS/switcher/switcher/wwwroot/images/account/log-out.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevExpress-Examples/blazor-theme-and-size-mode-switcher/HEAD/CS/switcher/switcher/wwwroot/images/account/log-out.svg -------------------------------------------------------------------------------- /CS/switcher/switcher/wwwroot/images/account/manage-email-fluent.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevExpress-Examples/blazor-theme-and-size-mode-switcher/HEAD/CS/switcher/switcher/wwwroot/images/account/manage-email-fluent.svg -------------------------------------------------------------------------------- /CS/switcher/switcher/wwwroot/images/account/manage-email.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevExpress-Examples/blazor-theme-and-size-mode-switcher/HEAD/CS/switcher/switcher/wwwroot/images/account/manage-email.svg -------------------------------------------------------------------------------- /CS/switcher/switcher/wwwroot/images/account/manage-password-fluent.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevExpress-Examples/blazor-theme-and-size-mode-switcher/HEAD/CS/switcher/switcher/wwwroot/images/account/manage-password-fluent.svg -------------------------------------------------------------------------------- /CS/switcher/switcher/wwwroot/images/account/manage-password.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevExpress-Examples/blazor-theme-and-size-mode-switcher/HEAD/CS/switcher/switcher/wwwroot/images/account/manage-password.svg -------------------------------------------------------------------------------- /CS/switcher/switcher/wwwroot/images/account/manage-personal-fluent.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevExpress-Examples/blazor-theme-and-size-mode-switcher/HEAD/CS/switcher/switcher/wwwroot/images/account/manage-personal-fluent.svg -------------------------------------------------------------------------------- /CS/switcher/switcher/wwwroot/images/account/manage-personal.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevExpress-Examples/blazor-theme-and-size-mode-switcher/HEAD/CS/switcher/switcher/wwwroot/images/account/manage-personal.svg -------------------------------------------------------------------------------- /CS/switcher/switcher/wwwroot/images/account/manage-profile-fluent.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevExpress-Examples/blazor-theme-and-size-mode-switcher/HEAD/CS/switcher/switcher/wwwroot/images/account/manage-profile-fluent.svg -------------------------------------------------------------------------------- /CS/switcher/switcher/wwwroot/images/account/manage-profile.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevExpress-Examples/blazor-theme-and-size-mode-switcher/HEAD/CS/switcher/switcher/wwwroot/images/account/manage-profile.svg -------------------------------------------------------------------------------- /CS/switcher/switcher/wwwroot/images/account/manage-two-factor-fluent.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevExpress-Examples/blazor-theme-and-size-mode-switcher/HEAD/CS/switcher/switcher/wwwroot/images/account/manage-two-factor-fluent.svg -------------------------------------------------------------------------------- /CS/switcher/switcher/wwwroot/images/account/manage-two-factor.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevExpress-Examples/blazor-theme-and-size-mode-switcher/HEAD/CS/switcher/switcher/wwwroot/images/account/manage-two-factor.svg -------------------------------------------------------------------------------- /CS/switcher/switcher/wwwroot/images/account/providers/facebook-logo-fluent.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevExpress-Examples/blazor-theme-and-size-mode-switcher/HEAD/CS/switcher/switcher/wwwroot/images/account/providers/facebook-logo-fluent.svg -------------------------------------------------------------------------------- /CS/switcher/switcher/wwwroot/images/account/providers/facebook-logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevExpress-Examples/blazor-theme-and-size-mode-switcher/HEAD/CS/switcher/switcher/wwwroot/images/account/providers/facebook-logo.svg -------------------------------------------------------------------------------- /CS/switcher/switcher/wwwroot/images/account/providers/google-logo-fluent.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevExpress-Examples/blazor-theme-and-size-mode-switcher/HEAD/CS/switcher/switcher/wwwroot/images/account/providers/google-logo-fluent.svg -------------------------------------------------------------------------------- /CS/switcher/switcher/wwwroot/images/account/providers/google-logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevExpress-Examples/blazor-theme-and-size-mode-switcher/HEAD/CS/switcher/switcher/wwwroot/images/account/providers/google-logo.svg -------------------------------------------------------------------------------- /CS/switcher/switcher/wwwroot/images/account/providers/microsoft-logo-fluent.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevExpress-Examples/blazor-theme-and-size-mode-switcher/HEAD/CS/switcher/switcher/wwwroot/images/account/providers/microsoft-logo-fluent.svg -------------------------------------------------------------------------------- /CS/switcher/switcher/wwwroot/images/account/providers/microsoft-logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevExpress-Examples/blazor-theme-and-size-mode-switcher/HEAD/CS/switcher/switcher/wwwroot/images/account/providers/microsoft-logo.svg -------------------------------------------------------------------------------- /CS/switcher/switcher/wwwroot/images/account/providers/x-logo-fluent.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevExpress-Examples/blazor-theme-and-size-mode-switcher/HEAD/CS/switcher/switcher/wwwroot/images/account/providers/x-logo-fluent.svg -------------------------------------------------------------------------------- /CS/switcher/switcher/wwwroot/images/account/providers/x-logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevExpress-Examples/blazor-theme-and-size-mode-switcher/HEAD/CS/switcher/switcher/wwwroot/images/account/providers/x-logo.svg -------------------------------------------------------------------------------- /CS/switcher/switcher/wwwroot/images/account/settings-fluent.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevExpress-Examples/blazor-theme-and-size-mode-switcher/HEAD/CS/switcher/switcher/wwwroot/images/account/settings-fluent.svg -------------------------------------------------------------------------------- /CS/switcher/switcher/wwwroot/images/account/settings.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevExpress-Examples/blazor-theme-and-size-mode-switcher/HEAD/CS/switcher/switcher/wwwroot/images/account/settings.svg -------------------------------------------------------------------------------- /CS/switcher/switcher/wwwroot/images/account/user-fluent.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevExpress-Examples/blazor-theme-and-size-mode-switcher/HEAD/CS/switcher/switcher/wwwroot/images/account/user-fluent.svg -------------------------------------------------------------------------------- /CS/switcher/switcher/wwwroot/images/account/user.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevExpress-Examples/blazor-theme-and-size-mode-switcher/HEAD/CS/switcher/switcher/wwwroot/images/account/user.svg -------------------------------------------------------------------------------- /CS/switcher/switcher/wwwroot/images/back-fluent.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevExpress-Examples/blazor-theme-and-size-mode-switcher/HEAD/CS/switcher/switcher/wwwroot/images/back-fluent.svg -------------------------------------------------------------------------------- /CS/switcher/switcher/wwwroot/images/back.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevExpress-Examples/blazor-theme-and-size-mode-switcher/HEAD/CS/switcher/switcher/wwwroot/images/back.svg -------------------------------------------------------------------------------- /CS/switcher/switcher/wwwroot/images/cards.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevExpress-Examples/blazor-theme-and-size-mode-switcher/HEAD/CS/switcher/switcher/wwwroot/images/cards.svg -------------------------------------------------------------------------------- /CS/switcher/switcher/wwwroot/images/close-fluent.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevExpress-Examples/blazor-theme-and-size-mode-switcher/HEAD/CS/switcher/switcher/wwwroot/images/close-fluent.svg -------------------------------------------------------------------------------- /CS/switcher/switcher/wwwroot/images/close.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevExpress-Examples/blazor-theme-and-size-mode-switcher/HEAD/CS/switcher/switcher/wwwroot/images/close.svg -------------------------------------------------------------------------------- /CS/switcher/switcher/wwwroot/images/counter-fluent.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevExpress-Examples/blazor-theme-and-size-mode-switcher/HEAD/CS/switcher/switcher/wwwroot/images/counter-fluent.svg -------------------------------------------------------------------------------- /CS/switcher/switcher/wwwroot/images/counter.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevExpress-Examples/blazor-theme-and-size-mode-switcher/HEAD/CS/switcher/switcher/wwwroot/images/counter.svg -------------------------------------------------------------------------------- /CS/switcher/switcher/wwwroot/images/demos-fluent.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevExpress-Examples/blazor-theme-and-size-mode-switcher/HEAD/CS/switcher/switcher/wwwroot/images/demos-fluent.svg -------------------------------------------------------------------------------- /CS/switcher/switcher/wwwroot/images/demos.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevExpress-Examples/blazor-theme-and-size-mode-switcher/HEAD/CS/switcher/switcher/wwwroot/images/demos.svg -------------------------------------------------------------------------------- /CS/switcher/switcher/wwwroot/images/doc-fluent.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevExpress-Examples/blazor-theme-and-size-mode-switcher/HEAD/CS/switcher/switcher/wwwroot/images/doc-fluent.svg -------------------------------------------------------------------------------- /CS/switcher/switcher/wwwroot/images/doc.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevExpress-Examples/blazor-theme-and-size-mode-switcher/HEAD/CS/switcher/switcher/wwwroot/images/doc.svg -------------------------------------------------------------------------------- /CS/switcher/switcher/wwwroot/images/home-fluent.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevExpress-Examples/blazor-theme-and-size-mode-switcher/HEAD/CS/switcher/switcher/wwwroot/images/home-fluent.svg -------------------------------------------------------------------------------- /CS/switcher/switcher/wwwroot/images/home.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevExpress-Examples/blazor-theme-and-size-mode-switcher/HEAD/CS/switcher/switcher/wwwroot/images/home.svg -------------------------------------------------------------------------------- /CS/switcher/switcher/wwwroot/images/logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevExpress-Examples/blazor-theme-and-size-mode-switcher/HEAD/CS/switcher/switcher/wwwroot/images/logo.svg -------------------------------------------------------------------------------- /CS/switcher/switcher/wwwroot/images/menu-fluent.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevExpress-Examples/blazor-theme-and-size-mode-switcher/HEAD/CS/switcher/switcher/wwwroot/images/menu-fluent.svg -------------------------------------------------------------------------------- /CS/switcher/switcher/wwwroot/images/menu.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevExpress-Examples/blazor-theme-and-size-mode-switcher/HEAD/CS/switcher/switcher/wwwroot/images/menu.svg -------------------------------------------------------------------------------- /CS/switcher/switcher/wwwroot/images/theme.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevExpress-Examples/blazor-theme-and-size-mode-switcher/HEAD/CS/switcher/switcher/wwwroot/images/theme.svg -------------------------------------------------------------------------------- /CS/switcher/switcher/wwwroot/images/themeswitcher-fluent-mode-dark.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevExpress-Examples/blazor-theme-and-size-mode-switcher/HEAD/CS/switcher/switcher/wwwroot/images/themeswitcher-fluent-mode-dark.svg -------------------------------------------------------------------------------- /CS/switcher/switcher/wwwroot/images/themeswitcher-fluent-mode-light.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevExpress-Examples/blazor-theme-and-size-mode-switcher/HEAD/CS/switcher/switcher/wwwroot/images/themeswitcher-fluent-mode-light.svg -------------------------------------------------------------------------------- /CS/switcher/switcher/wwwroot/images/themeswitcher-no-color-icon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevExpress-Examples/blazor-theme-and-size-mode-switcher/HEAD/CS/switcher/switcher/wwwroot/images/themeswitcher-no-color-icon.svg -------------------------------------------------------------------------------- /CS/switcher/switcher/wwwroot/images/weather-fluent.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevExpress-Examples/blazor-theme-and-size-mode-switcher/HEAD/CS/switcher/switcher/wwwroot/images/weather-fluent.svg -------------------------------------------------------------------------------- /CS/switcher/switcher/wwwroot/images/weather.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevExpress-Examples/blazor-theme-and-size-mode-switcher/HEAD/CS/switcher/switcher/wwwroot/images/weather.svg -------------------------------------------------------------------------------- /CS/switcher/switcher/wwwroot/switcher-resources/js/cookies-manager.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevExpress-Examples/blazor-theme-and-size-mode-switcher/HEAD/CS/switcher/switcher/wwwroot/switcher-resources/js/cookies-manager.js -------------------------------------------------------------------------------- /CS/switcher/switcher/wwwroot/switcher-resources/js/size-manager.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevExpress-Examples/blazor-theme-and-size-mode-switcher/HEAD/CS/switcher/switcher/wwwroot/switcher-resources/js/size-manager.js -------------------------------------------------------------------------------- /CS/switcher/switcher/wwwroot/switcher-resources/theme-switcher.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevExpress-Examples/blazor-theme-and-size-mode-switcher/HEAD/CS/switcher/switcher/wwwroot/switcher-resources/theme-switcher.css -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevExpress-Examples/blazor-theme-and-size-mode-switcher/HEAD/LICENSE -------------------------------------------------------------------------------- /Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevExpress-Examples/blazor-theme-and-size-mode-switcher/HEAD/Readme.md -------------------------------------------------------------------------------- /config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevExpress-Examples/blazor-theme-and-size-mode-switcher/HEAD/config.json -------------------------------------------------------------------------------- /images/blazor-theme-and-size-mode-switcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevExpress-Examples/blazor-theme-and-size-mode-switcher/HEAD/images/blazor-theme-and-size-mode-switcher.png --------------------------------------------------------------------------------