Added corporate identity

This commit is contained in:
2026-03-18 23:16:18 +01:00
parent d54d01e62a
commit 85cb509820
48 changed files with 75 additions and 63 deletions

View File

@@ -7,7 +7,7 @@
<MudLayout>
<MudAppBar Elevation="1">
<MudIconButton Icon="@Icons.Material.Filled.Menu" Color="Color.Inherit" Edge="Edge.Start" OnClick="@((e) => DrawerToggle())" />
<MudText Typo="Typo.h5" Class="ml-3">Application</MudText>
<MudText Typo="Typo.h5" Class="ml-3">OnProfNext</MudText>
<MudSpacer />
<MudIconButton Icon="@(DarkLightModeButtonIcon)" Color="Color.Inherit" OnClick="@DarkModeToggle" />
<MudIconButton Icon="@Icons.Material.Filled.MoreVert" Color="Color.Inherit" Edge="Edge.End" />
@@ -56,40 +56,51 @@
private readonly PaletteLight _lightPalette = new()
{
Black = "#110e2d",
AppbarText = "#424242",
AppbarBackground = "rgba(255,255,255,0.8)",
Primary = "rgb(0,67,136)", // Basic Blue
Secondary = "rgb(0,166,226)", // Accent Blue
Tertiary = "rgb(63,63,63)", // Dark Grey
AppbarBackground = "rgb(0,67,136)", // Basic Blue for Appbar
AppbarText = "#ffffff",
Background = "rgb(249,249,249)", // Very light
Surface = "#ffffff",
DrawerBackground = "#ffffff",
GrayLight = "#e8e8e8",
GrayLighter = "#f9f9f9",
TextPrimary = "rgb(63,63,63)", // Dark Grey
TextSecondary = "rgb(156,158,159)", // Dark Grey Abstufung 1
LinesDefault = "rgb(217,218,219)", // Dark Grey Abstufung 2
TableLines = "rgb(217,218,219)",
Divider = "rgb(217,218,219)",
ActionDefault = "rgb(156,158,159)",
Info = "rgb(0,166,226)" // Accent Blue
};
private readonly PaletteDark _darkPalette = new()
{
Primary = "#7e6fff",
Surface = "#1e1e2d",
Background = "#1a1a27",
BackgroundGray = "#151521",
AppbarText = "#92929f",
AppbarBackground = "rgba(26,26,39,0.8)",
DrawerBackground = "#1a1a27",
ActionDefault = "#74718e",
Primary = "rgb(128,161,195)", // Basic Blue Abstufung 1 (heller für DarkMode)
Secondary = "rgb(0,166,226)", // Accent Blue
Tertiary = "rgb(204,217,231)", // Basic Blue Abstufung 2
Surface = "rgb(63,63,63)", // Dark Grey
Background = "#1a1a1a", // Dunkler Hintergrund
BackgroundGray = "rgb(63,63,63)", // Dark Grey
AppbarText = "#ffffff",
AppbarBackground = "rgb(63,63,63)", // Appbar in Dark Grey
DrawerBackground = "rgb(63,63,63)", // Drawer in Dark Grey
ActionDefault = "rgb(217,218,219)", // Dark Grey Abstufung 2
ActionDisabled = "#9999994d",
ActionDisabledBackground = "#605f6d4d",
TextPrimary = "#b2b0bf",
TextSecondary = "#92929f",
TextPrimary = "#ffffff",
TextSecondary = "rgb(217,218,219)", // Dark Grey Abstufung 2
TextDisabled = "#ffffff33",
DrawerIcon = "#92929f",
DrawerText = "#92929f",
DrawerIcon = "rgb(217,218,219)",
DrawerText = "rgb(217,218,219)",
GrayLight = "#2a2833",
GrayLighter = "#1e1e2d",
Info = "#4a86ff",
Info = "rgb(128,210,241)", // Accent Blue Abstufung 1
Success = "#3dcb6c",
Warning = "#ffb545",
Error = "#ff3f5f",
LinesDefault = "#33323e",
TableLines = "#33323e",
Divider = "#292838",
LinesDefault = "rgb(156,158,159)", // Dark Grey Abstufung 1
TableLines = "rgb(156,158,159)",
Divider = "rgb(156,158,159)",
OverlayLight = "#1e1e2d80",
};