Files
Beam/Beam.Temporary.Cli/CssData.cs
T
2025-04-19 20:47:58 +03:00

31 lines
1.0 KiB
C#

namespace Beam.Temporary.Cli {
public class CssData {
// Primary background color (e.g., for the body)
public string PrimaryColor { get; set; } = "#f5f5f5";
// Secondary color (e.g., for header background)
public string SecondaryColor { get; set; } = "#e0e0e0";
// Tertiary color (e.g., for content sections)
public string TertiaryColor { get; set; } = "#ffffff";
// Button background color
public string ButtonColor { get; set; } = "#007bff";
// Foreground text color
public string ForegroundColor { get; set; } = "#333333";
// Font family for main content
public string ContentFont { get; set; } = "Arial, sans-serif";
// Font size for main content
public string ContentFontSize { get; set; } = "16px";
// Font family for titles
public string TitleFont { get; set; } = "Georgia, serif";
// Font size for titles
public string TitleFontSize { get; set; } = "32px";
}
}