Spaces:
Running
Running
File size: 602 Bytes
acd5bf8 734891b acd5bf8 734891b ed6e90d | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 | # Single source of truth for styling constants
# Aligned with OpenHands-Design (Inter + JetBrains Mono)
# Font settings
FONT_FAMILY = "'Inter', system-ui, sans-serif"
FONT_FAMILY_MONO = "'JetBrains Mono', ui-monospace, monospace"
FONT_MONO_NAME = "JetBrains Mono" # First font for gr.themes.Base(font_mono=...)
FONT_FAMILY_SHORT = "Inter" # Gradio theme / primary stack name
# Marker options for plot icons
MARK_BY_COMPANY = "Company"
MARK_BY_OPENNESS = "Openness"
MARK_BY_COUNTRY = "Country"
MARK_BY_CHOICES = [MARK_BY_COMPANY, MARK_BY_OPENNESS, MARK_BY_COUNTRY]
MARK_BY_DEFAULT = MARK_BY_COMPANY
|