Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
35 changes: 35 additions & 0 deletions packages/font/src/google/font-data.json
Original file line number Diff line number Diff line change
Expand Up @@ -1841,6 +1841,26 @@
],
"subsets": ["latin", "latin-ext"]
},
"Betania Patmos": {
"weights": ["400"],
"styles": ["normal"],
"subsets": ["latin", "latin-ext"]
},
"Betania Patmos GDL": {
"weights": ["400"],
"styles": ["normal"],
"subsets": ["latin", "latin-ext"]
},
"Betania Patmos In": {
"weights": ["400"],
"styles": ["normal"],
"subsets": ["latin", "latin-ext"]
},
"Betania Patmos In GDL": {
"weights": ["400"],
"styles": ["normal"],
"subsets": ["latin", "latin-ext"]
},
"Beth Ellen": {
"weights": ["400"],
"styles": ["normal"],
Expand Down Expand Up @@ -6264,6 +6284,11 @@
"styles": ["normal"],
"subsets": ["latin", "latin-ext", "telugu"]
},
"Gveret Levin": {
"weights": ["400"],
"styles": ["normal"],
"subsets": ["hebrew", "latin"]
},
"Gwendolyn": {
"weights": ["400", "700"],
"styles": ["normal"],
Expand Down Expand Up @@ -6799,6 +6824,11 @@
"styles": ["normal"],
"subsets": ["latin"]
},
"Idiqlat": {
"weights": ["200", "300", "400"],
"styles": ["normal"],
"subsets": ["latin", "syriac"]
},
"Imbue": {
"weights": [
"100",
Expand Down Expand Up @@ -14956,6 +14986,11 @@
"styles": ["normal"],
"subsets": ["cyrillic", "latin", "latin-ext"]
},
"Ramsina": {
"weights": ["400"],
"styles": ["normal"],
"subsets": ["latin", "syriac"]
},
"Ranchers": {
"weights": ["400"],
"styles": ["normal"],
Expand Down
84 changes: 84 additions & 0 deletions packages/font/src/google/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -3110,6 +3110,54 @@ export declare function Besley<
adjustFontFallback?: boolean
subsets?: Array<'latin' | 'latin-ext'>
}): T extends undefined ? NextFont : NextFontWithVariable
export declare function Betania_Patmos<
T extends CssVariable | undefined = undefined,
>(options: {
weight: '400' | Array<'400'>
style?: 'normal' | Array<'normal'>
display?: Display
variable?: T
preload?: boolean
fallback?: string[]
adjustFontFallback?: boolean
subsets?: Array<'latin' | 'latin-ext'>
}): T extends undefined ? NextFont : NextFontWithVariable
export declare function Betania_Patmos_GDL<
T extends CssVariable | undefined = undefined,
>(options: {
weight: '400' | Array<'400'>
style?: 'normal' | Array<'normal'>
display?: Display
variable?: T
preload?: boolean
fallback?: string[]
adjustFontFallback?: boolean
subsets?: Array<'latin' | 'latin-ext'>
}): T extends undefined ? NextFont : NextFontWithVariable
export declare function Betania_Patmos_In<
T extends CssVariable | undefined = undefined,
>(options: {
weight: '400' | Array<'400'>
style?: 'normal' | Array<'normal'>
display?: Display
variable?: T
preload?: boolean
fallback?: string[]
adjustFontFallback?: boolean
subsets?: Array<'latin' | 'latin-ext'>
}): T extends undefined ? NextFont : NextFontWithVariable
export declare function Betania_Patmos_In_GDL<
T extends CssVariable | undefined = undefined,
>(options: {
weight: '400' | Array<'400'>
style?: 'normal' | Array<'normal'>
display?: Display
variable?: T
preload?: boolean
fallback?: string[]
adjustFontFallback?: boolean
subsets?: Array<'latin' | 'latin-ext'>
}): T extends undefined ? NextFont : NextFontWithVariable
export declare function Beth_Ellen<
T extends CssVariable | undefined = undefined,
>(options: {
Expand Down Expand Up @@ -9572,6 +9620,18 @@ export declare function Gurajada<
adjustFontFallback?: boolean
subsets?: Array<'latin' | 'latin-ext' | 'telugu'>
}): T extends undefined ? NextFont : NextFontWithVariable
export declare function Gveret_Levin<
T extends CssVariable | undefined = undefined,
>(options: {
weight: '400' | Array<'400'>
style?: 'normal' | Array<'normal'>
display?: Display
variable?: T
preload?: boolean
fallback?: string[]
adjustFontFallback?: boolean
subsets?: Array<'hebrew' | 'latin'>
}): T extends undefined ? NextFont : NextFontWithVariable
export declare function Gwendolyn<
T extends CssVariable | undefined = undefined,
>(options: {
Expand Down Expand Up @@ -10592,6 +10652,18 @@ export declare function Iceland<
adjustFontFallback?: boolean
subsets?: Array<'latin'>
}): T extends undefined ? NextFont : NextFontWithVariable
export declare function Idiqlat<
T extends CssVariable | undefined = undefined,
>(options: {
weight: '200' | '300' | '400' | Array<'200' | '300' | '400'>
style?: 'normal' | Array<'normal'>
display?: Display
variable?: T
preload?: boolean
fallback?: string[]
adjustFontFallback?: boolean
subsets?: Array<'latin' | 'syriac'>
}): T extends undefined ? NextFont : NextFontWithVariable
export declare function Imbue<
T extends CssVariable | undefined = undefined,
>(options?: {
Expand Down Expand Up @@ -23557,6 +23629,18 @@ export declare function Rampart_One<
adjustFontFallback?: boolean
subsets?: Array<'cyrillic' | 'latin' | 'latin-ext'>
}): T extends undefined ? NextFont : NextFontWithVariable
export declare function Ramsina<
T extends CssVariable | undefined = undefined,
>(options: {
weight: '400' | Array<'400'>
style?: 'normal' | Array<'normal'>
display?: Display
variable?: T
preload?: boolean
fallback?: string[]
adjustFontFallback?: boolean
subsets?: Array<'latin' | 'syriac'>
}): T extends undefined ? NextFont : NextFontWithVariable
export declare function Ranchers<
T extends CssVariable | undefined = undefined,
>(options: {
Expand Down
Loading