Documentation Index
Fetch the complete documentation index at: https://mintlify.com/kapishdima/fonttrio/llms.txt
Use this file to discover all available pages before exploring further.
Function Signature
Description
Retrieves a single font pairing by its unique identifier. This function searches through the Fonttrio registry and returns the matching pairing configuration, orundefined if no pairing with the given name exists.
Parameters
The unique identifier of the pairing to retrieve. Examples include:
"agency"- Nordic minimalism with Schibsted Grotesk"architect"- Structured design with Outfit"minimal"- Clean, modern aesthetics
Return Value
Returns the matching
PairingData object if found, or undefined if no pairing exists with the given name.Usage Examples
Example Response
Notes
Performance: This function uses
Array.find() which has O(n) complexity. For repeated lookups, consider caching the result or using a Map-based lookup if you need frequent access.Related Functions
getAllPairings- Get all available pairingsgetPairingsByMood- Filter pairings by moodgetPairingsByCategory- Filter pairings by font category