diff --git a/wake/Info.plist b/wake/Info.plist index d4f0a89..23b998e 100644 --- a/wake/Info.plist +++ b/wake/Info.plist @@ -24,6 +24,11 @@ Quicksand x.ttf SankeiCutePopanime.ttf + Quicksand-Regular.ttf + Quicksand-Bold.ttf + Quicksand-SemiBold.ttf + Quicksand-Medium.ttf + Quicksand-Light.ttf diff --git a/wake/Resources/Fonts/Quicksand-Bold.ttf b/wake/Resources/Fonts/Quicksand-Bold.ttf new file mode 100644 index 0000000..0106805 Binary files /dev/null and b/wake/Resources/Fonts/Quicksand-Bold.ttf differ diff --git a/wake/Resources/Fonts/Quicksand-Light.ttf b/wake/Resources/Fonts/Quicksand-Light.ttf new file mode 100644 index 0000000..fcf86af Binary files /dev/null and b/wake/Resources/Fonts/Quicksand-Light.ttf differ diff --git a/wake/Resources/Fonts/Quicksand-Medium.ttf b/wake/Resources/Fonts/Quicksand-Medium.ttf new file mode 100644 index 0000000..afca2d9 Binary files /dev/null and b/wake/Resources/Fonts/Quicksand-Medium.ttf differ diff --git a/wake/Resources/Fonts/Quicksand-Regular.ttf b/wake/Resources/Fonts/Quicksand-Regular.ttf new file mode 100644 index 0000000..c03548a Binary files /dev/null and b/wake/Resources/Fonts/Quicksand-Regular.ttf differ diff --git a/wake/Resources/Fonts/Quicksand-SemiBold.ttf b/wake/Resources/Fonts/Quicksand-SemiBold.ttf new file mode 100644 index 0000000..83475ea Binary files /dev/null and b/wake/Resources/Fonts/Quicksand-SemiBold.ttf differ diff --git a/wake/Typography.swift b/wake/Typography.swift index c60e934..6517649 100644 --- a/wake/Typography.swift +++ b/wake/Typography.swift @@ -5,6 +5,7 @@ import SwiftUI enum FontFamily: String, CaseIterable { case sankeiCute = "SankeiCutePopanime" // 可爱风格字体 case quicksand = "Quicksand x" // 主题字体 + case quicksandBold = "Quicksand-Bold" // 后续添加新字体库时在这里添加新 case // 例如: case anotherFont = "AnotherFontName"