You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
39 lines
1.2 KiB
TypeScript
39 lines
1.2 KiB
TypeScript
4 months ago
|
import Latin from "./Nunito-Regular-XRXI3I6Li01BKofiOc5wtlZ2di8HDIkhdTQ3j6zbXWjgeg.woff2";
|
||
|
import LatinExt from "./Nunito-Regular-XRXI3I6Li01BKofiOc5wtlZ2di8HDIkhdTo3j6zbXWjgevT5.woff2";
|
||
|
import Cyrilic from "./Nunito-Regular-XRXI3I6Li01BKofiOc5wtlZ2di8HDIkhdTA3j6zbXWjgevT5.woff2";
|
||
|
import CyrilicExt from "./Nunito-Regular-XRXI3I6Li01BKofiOc5wtlZ2di8HDIkhdTk3j6zbXWjgevT5.woff2";
|
||
|
import Vietnamese from "./Nunito-Regular-XRXI3I6Li01BKofiOc5wtlZ2di8HDIkhdTs3j6zbXWjgevT5.woff2";
|
||
|
|
||
4 months ago
|
import { GOOGLE_FONTS_RANGES } from "../FontMetadata";
|
||
|
|
||
|
import { type ExcalidrawFontFaceDescriptor } from "../Fonts";
|
||
4 months ago
|
|
||
|
export const NunitoFontFaces: ExcalidrawFontFaceDescriptor[] = [
|
||
|
{
|
||
|
uri: CyrilicExt,
|
||
|
descriptors: {
|
||
|
unicodeRange: GOOGLE_FONTS_RANGES.CYRILIC_EXT,
|
||
|
weight: "500",
|
||
|
},
|
||
|
},
|
||
|
{
|
||
|
uri: Cyrilic,
|
||
|
descriptors: { unicodeRange: GOOGLE_FONTS_RANGES.CYRILIC, weight: "500" },
|
||
|
},
|
||
|
{
|
||
|
uri: Vietnamese,
|
||
|
descriptors: {
|
||
|
unicodeRange: GOOGLE_FONTS_RANGES.VIETNAMESE,
|
||
|
weight: "500",
|
||
|
},
|
||
|
},
|
||
|
{
|
||
|
uri: LatinExt,
|
||
|
descriptors: { unicodeRange: GOOGLE_FONTS_RANGES.LATIN_EXT, weight: "500" },
|
||
|
},
|
||
|
{
|
||
|
uri: Latin,
|
||
|
descriptors: { unicodeRange: GOOGLE_FONTS_RANGES.LATIN, weight: "500" },
|
||
|
},
|
||
|
];
|