FINESE_SCHOOL / src /ui /__init__.py
Jack-ki1's picture
Upload 47 files
29ca14e verified
Raw
History Blame Contribute Delete
1.08 kB
"""
F1 Predictor 2026 - UI Package
3-file consolidated UI system.
Colors: skyblue #3B82F6, darkblue #1E3A8A, darkgray #475569, black #0F172A, red #EF4444, green #10B981
NO WHITE TEXT ANYWHERE.
"""
# Theme
from src.ui.theme import (
COLORS,
TEAM_COLOR_MAP,
bar_colors_from_teams,
f1_plotly_layout,
apply_theme,
apply_page_config,
)
# Components
from src.ui.components import (
hero,
section_title,
divider,
card,
metric_card,
metrics_grid,
data_table,
stat_row,
progress_bar,
podium,
alert,
weather,
team_badge,
empty_state,
session_tabs,
navbar,
)
__all__ = [
# Theme
"COLORS",
"TEAM_COLOR_MAP",
"bar_colors_from_teams",
"f1_plotly_layout",
"apply_theme",
"apply_page_config",
# Components
"hero",
"section_title",
"divider",
"card",
"metric_card",
"metrics_grid",
"data_table",
"stat_row",
"progress_bar",
"podium",
"alert",
"weather",
"team_badge",
"empty_state",
"session_tabs",
"navbar",
]