Hi,
In our app we want end-user to choose theme. Curently, when new version for Syncfusion.Blazor is available I download .css files from theme studio and manually reference it to the project. This isn't convenient because there is release every week and too much manual work involve. I really like how fabric.css/material.css/bootstrap4.css are shipped along with Syncfusion.Blazor library. Can dark theme also be shipped along with the nuget package?
Ideally I want to access dark theme like so,
<link rel='nofollow' href="_content/Syncfusion.Blazor/styles/fabric-dark.css" rel="stylesheet" />
<link rel='nofollow' href="_content/Syncfusion.Blazor/styles/material-dark.css" rel="stylesheet" />
<link rel='nofollow' href="_content/Syncfusion.Blazor/styles/bootstrap4-dark.css" rel="stylesheet" />
@if (AppState.IsDarkMode)
<link rel='nofollow' href="_content/MYAPP.Component/styles-dark.css" rel="stylesheet" />
<link rel="stylesheet" rel='nofollow' href="/css/bootstrap/bootstrap-dark.min.css" />
<link rel='nofollow' href="css/site-dark.css" rel="stylesheet" />
<link rel='nofollow' href="@($"/css/syncfusion/ej2/17.4.55/css/{AppState.SelectedTheme}")" rel="stylesheet" />
<link rel='nofollow' href="_content/MYAPP.Component/styles.css" rel="stylesheet" />
<link rel="stylesheet" rel='nofollow' href="/css/bootstrap/bootstrap.min.css" />
<link rel='nofollow' href="css/site.css" rel="stylesheet" />
<link rel='nofollow' href="@($"_content/Syncfusion.Blazor/styles/{AppState.SelectedTheme}")" rel="stylesheet" />
Possible values for "AppState.SelectedTheme":
1. fabric.css
2. fabric-dark.css
3. material.css
4. material-dark.css
5. bootstrap4.css
6. bootstrap4-dark.css
7. highcontrast.css