]>
Commit | Line | Data |
---|---|---|
e2c37ac1 RBR |
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 | } |