From 1a1c8e71fcd14858f595029f089b2d4a00202b32 Mon Sep 17 00:00:00 2001
From: ogi <Administrator@S-OGI-PC>
Date: Fri, 05 Dec 2025 09:24:16 +0900
Subject: [PATCH] プロジェクトファイルを追加。
---
HotelPms.Client.Blazor/Models/MudBlazorAdminDashboard.cs | 134 ++++++++++++++++++++++++++++++++++++++++++++
1 files changed, 134 insertions(+), 0 deletions(-)
diff --git a/HotelPms.Client.Blazor/Models/MudBlazorAdminDashboard.cs b/HotelPms.Client.Blazor/Models/MudBlazorAdminDashboard.cs
new file mode 100644
index 0000000..956c267
--- /dev/null
+++ b/HotelPms.Client.Blazor/Models/MudBlazorAdminDashboard.cs
@@ -0,0 +1,134 @@
+using MudBlazor;
+
+namespace HotelPms.Client.Blazor.Shared
+{
+ public class MudBlazorAdminDashboard : MudTheme
+ {
+ public MudBlazorAdminDashboard()
+ {
+ Palette = new Palette()
+ {
+ Primary = Colors.Blue.Darken1,
+ Secondary = Colors.DeepPurple.Accent2,
+ Background = Colors.Grey.Lighten5,
+ //AppbarBackground = Colors.Indigo.Darken1,
+ AppbarBackground = "#395FAC",
+ //AppbarBackground = Colors.Blue.Darken1,
+ DrawerBackground = "#FFF",
+ //DrawerBackground = "#24343B",
+ HoverOpacity = 0.2,
+ DrawerText = "rgba(0,0,0, 0.7)",
+ Success = "#06d79c"
+ };
+
+ LayoutProperties = new LayoutProperties()
+ {
+ DefaultBorderRadius = "6px",
+ DrawerWidthLeft = "240px",
+ DrawerWidthRight = "240px",
+ };
+
+ Typography = new Typography()
+ {
+ Default = new Default()
+ {
+ FontFamily = new[] { "Montserrat", "Helvetica", "Arial", "sans-serif" },
+ FontSize = ".875rem",
+ FontWeight = 400,
+ LineHeight = 1.43,
+ LetterSpacing = ".01071em"
+ },
+ H1 = new H1()
+ {
+ FontFamily = new[] { "Montserrat", "Helvetica", "Arial", "sans-serif" },
+ FontSize = "6rem",
+ FontWeight = 300,
+ LineHeight = 1.167,
+ LetterSpacing = "-.01562em"
+ },
+ H2 = new H2()
+ {
+ FontFamily = new[] { "Montserrat", "Helvetica", "Arial", "sans-serif" },
+ FontSize = "3.75rem",
+ FontWeight = 300,
+ LineHeight = 1.2,
+ LetterSpacing = "-.00833em"
+ },
+ H3 = new H3()
+ {
+ FontFamily = new[] { "Montserrat", "Helvetica", "Arial", "sans-serif" },
+ FontSize = "3rem",
+ FontWeight = 400,
+ LineHeight = 1.167,
+ LetterSpacing = "0"
+ },
+ H4 = new H4()
+ {
+ FontFamily = new[] { "Montserrat", "Helvetica", "Arial", "sans-serif" },
+ FontSize = "2.125rem",
+ FontWeight = 400,
+ LineHeight = 1.235,
+ LetterSpacing = ".00735em"
+ },
+ H5 = new H5()
+ {
+ FontFamily = new[] { "Montserrat", "Helvetica", "Arial", "sans-serif" },
+ FontSize = "1.5rem",
+ FontWeight = 400,
+ LineHeight = 1.334,
+ LetterSpacing = "0"
+ },
+ H6 = new H6()
+ {
+ FontFamily = new[] { "Montserrat", "Helvetica", "Arial", "sans-serif" },
+ FontSize = "1.25rem",
+ FontWeight = 400,
+ LineHeight = 1.6,
+ LetterSpacing = ".0075em"
+ },
+ Button = new Button()
+ {
+ FontFamily = new[] { "Montserrat", "Helvetica", "Arial", "sans-serif" },
+ FontSize = ".875rem",
+ FontWeight = 500,
+ LineHeight = 1.75,
+ LetterSpacing = ".02857em"
+ },
+ Body1 = new Body1()
+ {
+ FontFamily = new[] { "Montserrat", "Helvetica", "Arial", "sans-serif" },
+ FontSize = "1rem",
+ FontWeight = 400,
+ LineHeight = 1.5,
+ LetterSpacing = ".00938em"
+ },
+ Body2 = new Body2()
+ {
+ FontFamily = new[] { "Montserrat", "Helvetica", "Arial", "sans-serif" },
+ FontSize = ".875rem",
+ FontWeight = 400,
+ LineHeight = 1.43,
+ LetterSpacing = ".01071em"
+ },
+ Caption = new Caption()
+ {
+ FontFamily = new[] { "Montserrat", "Helvetica", "Arial", "sans-serif" },
+ FontSize = ".75rem",
+ FontWeight = 400,
+ LineHeight = 1.66,
+ LetterSpacing = ".03333em"
+ },
+ Subtitle2 = new Subtitle2()
+ {
+ FontFamily = new[] { "Montserrat", "Helvetica", "Arial", "sans-serif" },
+ FontSize = ".875rem",
+ FontWeight = 500,
+ LineHeight = 1.57,
+ LetterSpacing = ".00714em"
+ }
+ };
+ Shadows = new Shadow();
+ ZIndex = new ZIndex();
+ }
+ }
+}
--
Gitblit v1.10.0