From 62ecf82723713863079b54791037e274e7ec1c24 Mon Sep 17 00:00:00 2001 From: jesseonol Date: Tue, 23 Jun 2020 16:47:18 +0100 Subject: [PATCH] [feat] allow custom fonts --- Source/Configuration/FontList.swift | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/Source/Configuration/FontList.swift b/Source/Configuration/FontList.swift index ca164a8..6e8f7a3 100644 --- a/Source/Configuration/FontList.swift +++ b/Source/Configuration/FontList.swift @@ -10,4 +10,8 @@ public struct FontList { public struct Whistle { public static var title = UIFont.systemFont(ofSize: 12) } + + public struct Whisper { + public static var title = UIFont(name: "HelveticaNeue", size: 13)! + } }