blob: 07e3b9b3ff44bd0080a57bf17f36ab7708d754aa (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
import SwiftUI
extension Font {
public struct theme {
// Map
static let note = Font.system(size: 12, design: .serif)
static let axisLabel = Font.system(size: 14, design: .serif)
static let vertexLabel = Font.system(size: 12, design: .serif)
// UI
static let smallControl = Font.system(size: 9)
static let body = Font.system(size: 13)
}
}
|