-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
3 changed files
with
46 additions
and
17 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
26 changes: 26 additions & 0 deletions
26
Presentation/Presentation/Sources/Common/DesignSystem/AirplainFont.swift
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,26 @@ | ||
// | ||
// AirplainFont.swift | ||
// Presentation | ||
// | ||
// Created by 최정인 on 11/11/24. | ||
// | ||
|
||
import UIKit | ||
|
||
enum AirplainFont { | ||
static let Heading1 = UIFont.systemFont(ofSize: 36, weight: .bold) | ||
static let Heading2 = UIFont.systemFont(ofSize: 33, weight: .bold) | ||
static let Heading3 = UIFont.systemFont(ofSize: 21, weight: .bold) | ||
static let Heading4 = UIFont.systemFont(ofSize: 19, weight: .bold) | ||
|
||
static let Subtitle1 = UIFont.systemFont(ofSize: 17, weight: .medium) | ||
static let Subtitle2 = UIFont.systemFont(ofSize: 15, weight: .medium) | ||
static let Subtitle3 = UIFont.systemFont(ofSize: 13, weight: .medium) | ||
|
||
static let Body1 = UIFont.systemFont(ofSize: 17, weight: .regular) | ||
static let Body2 = UIFont.systemFont(ofSize: 15, weight: .regular) | ||
static let Body3 = UIFont.systemFont(ofSize: 13, weight: .regular) | ||
static let Body4 = UIFont.systemFont(ofSize: 11, weight: .regular) | ||
static let Body5 = UIFont.systemFont(ofSize: 9, weight: .regular) | ||
static let Body6 = UIFont.systemFont(ofSize: 7, weight: .regular) | ||
} |
13 changes: 0 additions & 13 deletions
13
Presentation/Presentation/Sources/PresentationStruct.swift
This file was deleted.
Oops, something went wrong.