File size: 16,480 Bytes
7880373 35676b4 bbf6900 e58b701 35676b4 d42057a 21359be 35676b4 3d69c69 00eb30b 3d69c69 c60e11b 3d69c69 e6496c0 35676b4 7880373 35676b4 1843630 35676b4 c60e11b 3d69c69 35676b4 00eb30b 35676b4 00eb30b 35676b4 00eb30b 35676b4 00eb30b 35676b4 e6496c0 21359be e6496c0 21359be e6496c0 21359be e6496c0 21359be e6496c0 21359be 35676b4 7880373 35676b4 3d69c69 00eb30b 3d69c69 de15094 00eb30b de15094 35676b4 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 | """Centralized design tokens and CSS injection for Amplegest."""
from __future__ import annotations
import streamlit as st
# ββ Brand βββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββ
BRAND_GREEN = "#10b981"
BRAND_GREEN_DARK = "#059669"
# ββ Surfaces ββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββ
BG = "#ffffff"
BG_MUTED = "#fafaf9"
BORDER = "#e5e7eb"
BORDER_STRONG = "#d4d4d4"
# ββ Text ββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββ
TEXT = "#0a0a0a"
TEXT_MUTED = "#6b7280"
TEXT_FAINT = "#9ca3af"
# ββ Semantic palette (light pastel tints) βββββββββββββββββββββββββββββββββββββ
GREEN = "#10b981"
BULL = "#10b981"
BULL_BG = "#ecfdf5"
BULL_BORDER = "#a7f3d0"
RED = "#ef4444"
BEAR = "#ef4444"
BEAR_BG = "#fef2f2"
BEAR_BORDER = "#fecaca"
AMBER = "#f59e0b"
WARN = "#f59e0b"
WARN_BG = "#fffbeb"
WARN_BORDER = "#fde68a"
BLUE = "#3b82f6"
INFO = "#3b82f6"
INFO_BG = "#eff6ff"
INFO_BORDER = "#bfdbfe"
GRAY = "#6b7280"
PURPLE = "#8b5cf6"
AI_BG = "#faf5ff"
AI_BORDER = "#ddd6fe"
AI_COLOR = "#7c3aed"
AI_BADGE_BG = "#ede9fe"
IMPACT_HIGH_BG = "#0f172a" # slate-900
IMPACT_HIGH_TEXT = "#ffffff"
IMPACT_MED_BG = "#64748b" # slate-500
IMPACT_MED_TEXT = "#ffffff"
IMPACT_LOW_BG = "transparent"
IMPACT_LOW_TEXT = "#94a3b8" # slate-400
IMPACT_LOW_BORDER = "#cbd5e1" # slate-300
# ββ Plotly rgba aliases βββββββββββββββββββββββββββββββββββββββββββββββββββββββ
GREEN_A53 = "rgba(16,185,129,0.53)"
GREEN_A40 = "rgba(16,185,129,0.40)"
RED_A40 = "rgba(239,68,68,0.40)"
PURPLE_A53 = "rgba(139,92,246,0.53)"
BLUE_A53 = "rgba(96,165,250,0.53)"
# ββ Radius ββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββ
RADIUS_CARD = "12px"
RADIUS_BTN = "8px"
RADIUS_CHIP = "6px"
# ββ Typographic scale βββββββββββββββββββββββββββββββββββββββββββββββββββββββββ
FS_PAGE = "1.55rem" # ~25px page/screen title
FS_SECTION = "1.05rem" # ~17px section sub-header
FS_CARD = "0.95rem" # ~15px card headline (semibold)
FS_BODY = "0.9rem" # ~14.5px body text
FS_META = "0.75rem" # ~12px meta/attribution line
FS_EYEBROW = "0.6rem" # uppercase micro-label (was scattered 0.56β0.72rem)
FS_SECTION_LABEL = "0.78rem"
# ββ Spacing scale βββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββ
SPACE_1 = "4px"
SPACE_2 = "8px"
SPACE_3 = "12px"
SPACE_4 = "16px"
SPACE_5 = "20px"
SPACE_6 = "28px" # intentionally 8px jump β used for section-break vertical rhythm
# NAV_GROUPS now lives in dashboard.nav β imported from there in app.py.
# Kept as a re-export for any legacy callers.
def _lazy_nav_groups(): # noqa: F401 β accessed via dashboard.nav.NAV_GROUPS
from dashboard.nav import NAV_GROUPS # noqa: F401
return NAV_GROUPS
# ββ Logo SVG β geometric P in emerald rounded square βββββββββββββββββββββββββ
LOGO_SVG = """<svg width="36" height="36" viewBox="0 0 36 36" fill="none" xmlns="http://www.w3.org/2000/svg">
<rect width="36" height="36" rx="9" fill="#10b981"/>
<path d="M12 26V11H19.5C20.9 11 22.1 11.5 23.1 12.5C24.1 13.5 24.6 14.7 24.6 16.2C24.6 17.7 24.1 18.9 23.1 19.9C22.1 20.9 20.9 21.4 19.5 21.4H15.5V26H12Z" fill="white"/>
<path d="M15.5 18.2H19C19.8 18.2 20.4 17.9 20.9 17.4C21.4 16.9 21.6 16.2 21.6 15.4C21.6 14.6 21.4 14 20.9 13.5C20.4 13 19.8 12.7 19 12.7H15.5V18.2Z" fill="#10b981"/>
</svg>"""
def inject_global_css() -> None:
"""Inject Inter font + global Amplegest styles. Call once from app.py."""
st.html(
"""
<link rel="preconnect" href="https://fonts.googleapis.com">
<link href="https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&display=swap" rel="stylesheet">
<style>
/* ββ Typography βββββββββββββββββββββββββββββββββββββββββββββββββββββββ */
html, body, .stApp, .main, [data-testid="stAppViewContainer"],
[data-testid="stSidebar"], button, input, select, textarea {
font-family: Inter, ui-sans-serif, -apple-system, "Segoe UI", sans-serif !important;
}
html, body, .stApp, .main, [data-testid="stAppViewContainer"],
[data-testid="stSidebar"] {
line-height: 1.6 !important;
}
/* ββ Hide default Streamlit chrome ββββββββββββββββββββββββββββββββββββ */
#MainMenu { visibility: hidden; }
header[data-testid="stHeader"] { background: transparent !important; }
footer { visibility: hidden; }
/* ββ Canvas background ββββββββββββββββββββββββββββββββββββββββββββββββββββ */
.stApp, [data-testid="stAppViewContainer"] {
background: #fafaf9 !important;
}
/* ββ Sidebar ββββββββββββββββββββββββββββββββββββββββββββββββββββββββββ */
[data-testid="stSidebar"] {
background-color: #ffffff !important;
border-right: 1px solid #e5e7eb !important;
}
/* ββ Logo row (custom div) ββββββββββββββββββββββββββββββββββββββββββββ */
.primer-logo-row {
display: flex;
align-items: center;
gap: 10px;
padding: 20px 16px 16px;
border-bottom: 1px solid #e5e7eb;
margin-bottom: 12px;
}
.primer-logo-wordmark {
font-size: 1rem;
font-weight: 700;
color: #0a0a0a;
letter-spacing: -0.02em;
line-height: 1.2;
}
.primer-logo-tagline {
font-size: 0.65rem;
color: #9ca3af;
font-weight: 400;
margin-top: 1px;
}
/* ββ Text inputs ββββββββββββββββββββββββββββββββββββββββββββββββββββββ */
[data-testid="stTextInput"] input {
border-radius: 8px !important;
border: 1px solid #e5e7eb !important;
font-size: 0.9rem !important;
background: #ffffff !important;
color: #0a0a0a !important;
}
[data-testid="stTextInput"] input:focus {
border-color: #10b981 !important;
box-shadow: 0 0 0 2px rgba(16,185,129,0.12) !important;
}
/* ββ Primary button β dark, not green ββββββββββββββββββββββββββββββββ */
[data-testid="stBaseButton-primary"] {
background: #0a0a0a !important;
color: #ffffff !important;
border-radius: 8px !important;
border: none !important;
font-weight: 500 !important;
font-size: 0.875rem !important;
letter-spacing: 0.01em !important;
}
[data-testid="stBaseButton-primary"]:hover {
background: #1a1a1a !important;
border: none !important;
}
/* ββ Secondary / default buttons ββββββββββββββββββββββββββββββββββββββ */
[data-testid="stBaseButton-secondary"] {
border-radius: 8px !important;
border: 1px solid #e5e7eb !important;
font-weight: 500 !important;
color: #0a0a0a !important;
}
/* ββ Download button ββββββββββββββββββββββββββββββββββββββββββββββββββ */
[data-testid="stDownloadButton"] button {
border-radius: 8px !important;
border: 1px solid #e5e7eb !important;
font-weight: 500 !important;
color: #0a0a0a !important;
}
/* ββ Bordered containers ββββββββββββββββββββββββββββββββββββββββββββββ */
[data-testid="stVerticalBlockBorderWrapper"] {
border-radius: 12px !important;
border: 1px solid #e5e7eb !important;
box-shadow: 0 1px 3px rgba(0,0,0,0.06), 0 1px 2px rgba(0,0,0,0.04) !important;
background: #ffffff !important;
padding: 20px 24px !important;
}
/* ββ Custom card shadow class βββββββββββββββββββββββββββββββββββββββββ */
.primer-card {
box-shadow: 0 1px 3px rgba(0,0,0,0.06), 0 1px 2px rgba(0,0,0,0.04);
}
/* ββ Section cards (HTML-rendered sections) βββββββββββββββββββββββββββββββ */
.primer-section-card {
background: #ffffff;
border: 1px solid #e5e7eb;
border-radius: 12px;
padding: 22px 26px;
margin: 0 0 18px;
box-shadow: 0 1px 3px rgba(0,0,0,0.06), 0 1px 2px rgba(0,0,0,0.04);
}
/* ββ Dividers βββββββββββββββββββββββββββββββββββββββββββββββββββββββββ */
hr { border-color: #e5e7eb !important; }
/* ββ Status box βββββββββββββββββββββββββββββββββββββββββββββββββββββββ */
[data-testid="stStatus"] {
border-radius: 8px !important;
border: 1px solid #e5e7eb !important;
}
/* ββ Expanders ββββββββββββββββββββββββββββββββββββββββββββββββββββββββ */
[data-testid="stExpander"] {
border: 1px solid #e5e7eb !important;
border-radius: 8px !important;
box-shadow: none !important;
}
/* ββ Inner tabs (e.g. Numbers chart tabs) βββββββββββββββββββββββββββββ */
[data-testid="stTabs"] [role="tab"] {
font-size: 0.82rem !important;
font-weight: 500 !important;
color: #6b7280 !important;
}
[data-testid="stTabs"] [role="tab"][aria-selected="true"] {
color: #0a0a0a !important;
}
[data-testid="stTabs"] [role="tablist"] {
border-bottom: 1px solid #e5e7eb !important;
}
/* ββ Captions βββββββββββββββββββββββββββββββββββββββββββββββββββββββββ */
.stCaption { color: #9ca3af !important; font-size: 0.78rem !important; }
/* ββ Alerts / info boxes ββββββββββββββββββββββββββββββββββββββββββββββ */
[data-testid="stAlert"] {
border-radius: 8px !important;
}
/* ββ Sidebar nav group expanders (deep-dive accordion) ββββββββββββββββ */
[data-testid="stSidebar"] [data-testid="stExpander"] {
border: none !important;
border-top: 1px solid #f0f0ef !important;
border-radius: 0 !important;
box-shadow: none !important;
background: transparent !important;
margin-top: 2px !important;
}
[data-testid="stSidebar"] [data-testid="stExpander"] summary {
font-size: 0.6rem !important;
font-weight: 700 !important;
text-transform: uppercase !important;
letter-spacing: 0.1em !important;
color: #9ca3af !important;
padding: 6px 2px !important;
}
[data-testid="stSidebar"] [data-testid="stExpander"] summary:hover {
color: #6b7280 !important;
}
[data-testid="stSidebar"] [data-testid="stExpander"] summary svg {
width: 12px !important;
height: 12px !important;
color: #9ca3af !important;
}
/* ββ Content max-width ββββββββββββββββββββββββββββββββββββββββββββββββ */
.main .block-container {
max-width: 1280px !important;
padding-top: 24px !important;
}
/* ββ Prose width (text blocks) βββββββββββββββββββββββββββββββββββββββββββ */
.primer-prose {
max-width: 700px;
}
/* ββ Sticky summary bar βββββββββββββββββββββββββββββββββββββββββββββββββββ */
.primer-sticky-bar {
position: sticky;
top: 0;
z-index: 50;
background: rgba(250, 250, 249, 0.92);
backdrop-filter: blur(6px);
-webkit-backdrop-filter: blur(6px);
border-bottom: 1px solid #e5e7eb;
padding: 10px 0;
margin: 0 0 16px;
}
/* ββ Chat messages ββββββββββββββββββββββββββββββββββββββββββββββββββββ */
[data-testid="stChatMessage"] {
border-radius: 10px !important;
border: 1px solid #e5e7eb !important;
background: #ffffff !important;
padding: 12px 14px !important;
margin-bottom: 8px !important;
box-shadow: 0 1px 2px rgba(0,0,0,0.04) !important;
}
[data-testid="stChatMessage"][data-message-author-role="user"] {
background: #ffffff !important;
border-color: #e5e7eb !important;
}
[data-testid="stChatMessage"][data-message-author-role="assistant"] {
background: #faf5ff !important;
border-color: #ddd6fe !important;
}
/* ββ Chat input βββββββββββββββββββββββββββββββββββββββββββββββββββββββ */
[data-testid="stChatInput"] {
border-radius: 10px !important;
border: 1px solid #e5e7eb !important;
box-shadow: 0 1px 3px rgba(0,0,0,0.06) !important;
}
[data-testid="stChatInput"]:focus-within {
border-color: #10b981 !important;
box-shadow: 0 0 0 2px rgba(16,185,129,0.12) !important;
}
[data-testid="stChatInput"] textarea {
font-family: Inter, ui-sans-serif, -apple-system, "Segoe UI", sans-serif !important;
font-size: 0.9rem !important;
color: #0a0a0a !important;
}
</style>
""",
)
|