openhands-index / constants.py
openhands
Add 'Mark systems by' selector for scatter plot icons (Company/Openness/Country)
ed6e90d
raw
history blame contribute delete
392 Bytes
# Single source of truth for styling constants
# Font settings
FONT_FAMILY = "Arial, sans-serif"
FONT_FAMILY_SHORT = "Arial" # For places that don't accept fallbacks
# 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