/
va1eriy
/
taskwards
Обзор
Документация
Войти
/
va1eriy
/
taskwards
Код
Запросы
0
Задачи
Вики
Пакеты
0
Релизы
0
CI/CD
Аналитика
Безопасность
master
Taskwards.Web/Infrastructure/Theme/TaskwardsTheme.cs
91 строка
3 KB
Valeriy Kokorev
feat: implement MainLayout with sidebar, appbar and theme switching
28 фев 2026, 13:09
28 фев 2026, 13:09
45ff214
Код
Авторство
О чём код?
using MudBlazor; namespace Taskwards.Web.Infrastructure.Theme; public static class TaskwardsTheme { public static readonly MudTheme Theme = new() { PaletteLight = new PaletteLight { Primary = "#D4654A", PrimaryDarken = "#C05A42", Secondary = "#D4954A", Success = "#6B9E78", Background = "#F8F7F4", Surface = "#FFFFFF", TextPrimary = "#2D2D2D", TextSecondary = "#8A8A8A", DrawerBackground = "#FFFFFF", DrawerText = "#2D2D2D", AppbarBackground = "#FFFFFF", AppbarText = "#2D2D2D", Divider = "#E8E6E1", LinesDefault = "#E8E6E1" }, PaletteDark = new PaletteDark { Primary = "#D4654A", PrimaryDarken = "#C05A42", Secondary = "#D4954A", Success = "#6B9E78", Background = "#1A1A1E", Surface = "#242428", TextPrimary = "#E8E6E1", TextSecondary = "#9A9A9A", DrawerBackground = "#242428", DrawerText = "#E8E6E1", AppbarBackground = "#242428", AppbarText = "#E8E6E1", Divider = "#3A3A3E", LinesDefault = "#3A3A3E" }, Typography = new Typography { Default = new DefaultTypography { FontFamily = ["Nunito", "sans-serif"] }, H1 = new H1Typography { FontFamily = ["Nunito", "sans-serif"], FontSize = "1.75rem", FontWeight = "700", LineHeight = "1.2" }, H2 = new H2Typography { FontFamily = ["Nunito", "sans-serif"], FontSize = "1.25rem", FontWeight = "600", LineHeight = "1.2" }, Body1 = new Body1Typography { FontFamily = ["Nunito", "sans-serif"], FontSize = "1rem", FontWeight = "400", LineHeight = "1.5" }, Body2 = new Body2Typography { FontFamily = ["Nunito", "sans-serif"], FontSize = "0.875rem", FontWeight = "400", LineHeight = "1.5" }, Button = new ButtonTypography { FontFamily = ["Nunito", "sans-serif"], FontSize = "1rem", FontWeight = "600" } }, LayoutProperties = new LayoutProperties { DefaultBorderRadius = "8px", DrawerWidthLeft = "240px", DrawerMiniWidthLeft = "70px" } }; }