3 writes to EffectiveTheme
Aspire.Dashboard (1)
Components\Layout\MainLayout.razor.cs (1)
246ThemeManager.EffectiveTheme = await _jsModule!.InvokeAsync<string>("updateTheme", theme);
Aspire.Dashboard.Components.Tests (2)
Controls\TextVisualizerDialogTests.cs (2)
210themeManager.EffectiveTheme = "Light"; 217themeManager.EffectiveTheme = "Dark";
2 references to EffectiveTheme
Aspire.Dashboard (2)
Components\Controls\Chart\ChartContainer.razor.cs (1)
94_instrumentViewModel.Theme = ThemeManager.EffectiveTheme;
Components\Controls\TextVisualizer.razor.cs (1)
120return $"log-content highlight-line language-{ViewModel.FormatKind} theme-a11y-{ThemeManager.EffectiveTheme.ToLowerInvariant()}-min";