Anduin Design
Design Tokens

Font Family

Design tokens for font family.

fontFamily: {
  sans: [
    "system-ui",       // Modern system UI font (preferred default across browsers)
    "-apple-system",   // Apple system font fallback for older Safari / Firefox on macOS
    "Roboto",          // Default system font on Android
    "Oxygen",          // KDE desktop environment font (Linux)
    "Cantarell",       // GNOME desktop environment font (Linux)
    "Ubuntu",          // Ubuntu system font (Linux distributions)
    "Segoe UI",        // Windows system UI font (including legacy Edge)
    "sans-serif",      // Generic fallback if no system fonts are available
  ],
  mono: [
    "monospace",       // Generic fixed-width system font for code and technical content
  ],
}