47 lines
No EOL
1.5 KiB
TOML
47 lines
No EOL
1.5 KiB
TOML
# Corporate Theme Configuration
|
|
# Professional theme with conservative colors and clean design
|
|
|
|
[metadata]
|
|
name = "Corporate"
|
|
description = "Professional theme with conservative colors for business applications"
|
|
version = "1.0.0"
|
|
author = "Rustelo Contributors"
|
|
extends = "default" # Inherit from default theme
|
|
|
|
[colors]
|
|
# Corporate brand colors (more conservative)
|
|
primary = "#1e40af" # Blue-800 (darker, more professional)
|
|
primary_hover = "#1d4ed8" # Blue-700
|
|
secondary = "#374151" # Gray-700
|
|
secondary_hover = "#4b5563" # Gray-600
|
|
accent = "#d97706" # Amber-600
|
|
|
|
# Semantic colors (muted for professional look)
|
|
success = "#059669" # Emerald-600
|
|
warning = "#d97706" # Amber-600
|
|
error = "#dc2626" # Red-600
|
|
info = "#0891b2" # Cyan-600
|
|
|
|
# Typography (more conservative)
|
|
[typography]
|
|
font_family_sans = "system-ui, -apple-system, 'Segoe UI', sans-serif"
|
|
line_height_normal = "1.6" # Slightly more relaxed for readability
|
|
|
|
[components]
|
|
# Professional component styling
|
|
|
|
[components.button]
|
|
border_radius = "0.25rem" # Less rounded for corporate look
|
|
font_weight = "600" # Slightly bolder
|
|
|
|
[components.card]
|
|
border_radius = "0.5rem" # Less rounded
|
|
shadow = "base" # More pronounced shadow
|
|
|
|
[components.input]
|
|
border_radius = "0.25rem" # Less rounded
|
|
|
|
[assets]
|
|
# Corporate assets (would typically be company-specific)
|
|
logo_light = "/images/logo-corporate-light.svg"
|
|
logo_dark = "/images/logo-corporate-dark.svg" |