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
68 changes: 68 additions & 0 deletions packages/font/src/google/font-data.json
Original file line number Diff line number Diff line change
Expand Up @@ -448,6 +448,11 @@
"styles": ["normal"],
"subsets": ["latin", "latin-ext", "vietnamese"]
},
"Allkin": {
"weights": ["400"],
"styles": ["normal"],
"subsets": []
},
"Allura": {
"weights": ["400"],
"styles": ["normal"],
Expand Down Expand Up @@ -536,6 +541,19 @@
],
"subsets": ["cyrillic", "cyrillic-ext", "latin", "latin-ext", "vietnamese"]
},
"Alyamama": {
"weights": ["300", "400", "500", "600", "700", "800", "900", "variable"],
"styles": ["normal"],
"axes": [
{
"tag": "wght",
"min": 300,
"max": 900,
"defaultValue": 400
}
],
"subsets": ["arabic", "greek", "latin", "latin-ext"]
},
"Amarante": {
"weights": ["400"],
"styles": ["normal"],
Expand Down Expand Up @@ -1841,6 +1859,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 @@ -2960,6 +2998,21 @@
"styles": ["normal"],
"subsets": ["latin", "latin-ext"]
},
"Bpmf Huninn": {
"weights": ["400"],
"styles": ["normal"],
"subsets": ["latin", "latin-ext"]
},
"Bpmf Iansui": {
"weights": ["400"],
"styles": ["normal"],
"subsets": ["latin", "latin-ext"]
},
"Bpmf Zihi Kai Std": {
"weights": ["400"],
"styles": ["normal"],
"subsets": ["latin", "latin-ext"]
},
"Braah One": {
"weights": ["400"],
"styles": ["normal"],
Expand Down Expand Up @@ -6264,6 +6317,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 +6857,11 @@
"styles": ["normal"],
"subsets": ["latin"]
},
"Idiqlat": {
"weights": ["200", "300", "400"],
"styles": ["normal"],
"subsets": ["latin", "syriac"]
},
"Imbue": {
"weights": [
"100",
Expand Down Expand Up @@ -14956,6 +15019,11 @@
"styles": ["normal"],
"subsets": ["cyrillic", "latin", "latin-ext"]
},
"Ramsina": {
"weights": ["400"],
"styles": ["normal"],
"subsets": ["latin", "syriac"]
},
"Ranchers": {
"weights": ["400"],
"styles": ["normal"],
Expand Down
152 changes: 152 additions & 0 deletions packages/font/src/google/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -775,6 +775,17 @@ export declare function Allison<
adjustFontFallback?: boolean
subsets?: Array<'latin' | 'latin-ext' | 'vietnamese'>
}): T extends undefined ? NextFont : NextFontWithVariable
export declare function Allkin<
T extends CssVariable | undefined = undefined,
>(options: {
weight: '400' | Array<'400'>
style?: 'normal' | Array<'normal'>
display?: Display
variable?: T

fallback?: string[]
adjustFontFallback?: boolean
}): T extends undefined ? NextFont : NextFontWithVariable
export declare function Allura<
T extends CssVariable | undefined = undefined,
>(options: {
Expand Down Expand Up @@ -927,6 +938,27 @@ export declare function Alumni_Sans_SC<
'cyrillic' | 'cyrillic-ext' | 'latin' | 'latin-ext' | 'vietnamese'
>
}): T extends undefined ? NextFont : NextFontWithVariable
export declare function Alyamama<
T extends CssVariable | undefined = undefined,
>(options?: {
weight?:
| '300'
| '400'
| '500'
| '600'
| '700'
| '800'
| '900'
| 'variable'
| Array<'300' | '400' | '500' | '600' | '700' | '800' | '900'>
style?: 'normal' | Array<'normal'>
display?: Display
variable?: T
preload?: boolean
fallback?: string[]
adjustFontFallback?: boolean
subsets?: Array<'arabic' | 'greek' | 'latin' | 'latin-ext'>
}): T extends undefined ? NextFont : NextFontWithVariable
export declare function Amarante<
T extends CssVariable | undefined = undefined,
>(options: {
Expand Down Expand Up @@ -3110,6 +3142,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 @@ -4032,6 +4112,42 @@ export declare function Bowlby_One_SC<
adjustFontFallback?: boolean
subsets?: Array<'latin' | 'latin-ext'>
}): T extends undefined ? NextFont : NextFontWithVariable
export declare function Bpmf_Huninn<
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 Bpmf_Iansui<
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 Bpmf_Zihi_Kai_Std<
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 Braah_One<
T extends CssVariable | undefined = undefined,
>(options: {
Expand Down Expand Up @@ -9572,6 +9688,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 +10720,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 +23697,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