]> git.r.bdr.sh - rbdr/map/blob - Map/Presentation/Theme/Font+theme.swift
07e3b9b3ff44bd0080a57bf17f36ab7708d754aa
[rbdr/map] / Map / Presentation / Theme / Font+theme.swift
1 import SwiftUI
2
3 extension Font {
4 public struct theme {
5
6 // Map
7 static let note = Font.system(size: 12, design: .serif)
8 static let axisLabel = Font.system(size: 14, design: .serif)
9 static let vertexLabel = Font.system(size: 12, design: .serif)
10
11 // UI
12 static let smallControl = Font.system(size: 9)
13 static let body = Font.system(size: 13)
14 }
15 }