Files
Beam/Beam.Temporary.Cli/CssData.cs.obsolete
T
qwsdcvghyu89 a7d148a96f Introduce Beam.Fluent and Beam.Models projects
Added new Beam.Fluent and Beam.Models projects with staged download builder and data context models. Refactored and moved model classes from Beam.Temporary.Cli to Beam.Models. Added new data providers and extended DataBindings in Beam.Dynamic. Renamed Beam.Puppeteer to Beam.Playwright and updated related classes. Updated project references and package versions. Removed obsolete and unused files from Beam.Temporary.Cli.
2025-09-18 18:32:25 +10:00

31 lines
1.1 KiB
Plaintext

//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";
// }
//}