"""CSS styles and utilities for ALwrity pages.""" def get_base_styles() -> str: """ Get the base CSS styles for ALwrity. Returns: str: CSS styles as a string """ return """ """ def get_glassmorphic_styles() -> str: """ Get the glassmorphic CSS styles for ALwrity. Returns: str: CSS styles as a string """ return """ """ def get_glass_container(content: str) -> str: """Wrap content in a glass container.""" return f"""
{content}
""" def get_info_section(content: str) -> str: """Wrap content in an info section.""" return f"""
{content}
""" def get_example_box(content: str) -> str: """Wrap content in an example box.""" return f"""
{content}
""" def get_analysis_section(title: str, content: str) -> str: """Create an analysis section with title and content.""" return f"""

{title}

{content}
""" def get_style_guide_html() -> str: """ Get the style guide HTML content. Returns: str: HTML content for the style guide section """ return """ ### How ALwrity Discovers Your Style **AI-Powered Style Analysis** ALwrity AI analyzes your existing content to understand your unique writing style and preferences. This helps us generate content that matches your voice perfectly. **Step 1: Content Analysis** We'll analyze your website content or written samples to understand: - Writing tone and voice - Vocabulary and language style - Content structure and formatting - Target audience and engagement style **Step 2: Style Recommendations** Based on the analysis, we'll provide: - Personalized writing guidelines - Content structure templates - Tone and voice recommendations - Audience engagement strategies **Step 3: Content Generation** Finally, we'll use these insights to: - Generate content that matches your style - Maintain consistency across all content - Optimize for your target audience - Ensure brand voice alignment """ def get_test_config_styles() -> str: """ Get all CSS styles for test configuration settings page. Returns: str: Combined CSS styles as a string """ return f"{get_base_styles()}{get_glassmorphic_styles()}"