18 lines
676 B
TypeScript
18 lines
676 B
TypeScript
|
|
/** 專案字型設定與授權說明 */
|
|||
|
|
|
|||
|
|
export const FONTS = {
|
|||
|
|
/** 縫合像素字體 12px 比例繁體 — SIL OFL 1.1,免費可商用 */
|
|||
|
|
pixel: {
|
|||
|
|
name: "Fusion Pixel 12px Proportional",
|
|||
|
|
family: "Fusion Pixel 12px Proportional",
|
|||
|
|
license: "SIL Open Font License 1.1",
|
|||
|
|
source: "https://github.com/TakWolf/fusion-pixel-font",
|
|||
|
|
file: "app/fonts/fusion-pixel-12px-proportional-zh-hant.woff2",
|
|||
|
|
},
|
|||
|
|
/** Noto Sans TC — SIL OFL 1.1,Google Fonts 免費可商用;長文閱讀備援 */
|
|||
|
|
readable: {
|
|||
|
|
name: "Noto Sans TC",
|
|||
|
|
license: "SIL Open Font License 1.1",
|
|||
|
|
source: "https://fonts.google.com/noto/specimen/Noto+Sans+TC",
|
|||
|
|
},
|
|||
|
|
} as const;
|