mirror of
https://github.com/shadcn-ui/ui.git
synced 2026-07-08 06:28:37 +00:00
147 lines
3.1 KiB
TypeScript
147 lines
3.1 KiB
TypeScript
import { type RegistryItem } from "shadcn/schema"
|
|
|
|
export const fonts = [
|
|
{
|
|
name: "font-geist",
|
|
title: "Geist",
|
|
type: "registry:font",
|
|
font: {
|
|
family: "'Geist Variable', sans-serif",
|
|
provider: "google",
|
|
variable: "--font-sans",
|
|
subsets: ["latin"],
|
|
import: "Geist",
|
|
},
|
|
},
|
|
{
|
|
name: "font-inter",
|
|
title: "Inter",
|
|
type: "registry:font",
|
|
font: {
|
|
family: "'Inter Variable', sans-serif",
|
|
provider: "google",
|
|
variable: "--font-sans",
|
|
subsets: ["latin"],
|
|
import: "Inter",
|
|
},
|
|
},
|
|
{
|
|
name: "font-noto-sans",
|
|
title: "Noto Sans",
|
|
type: "registry:font",
|
|
font: {
|
|
family: "'Noto Sans Variable', sans-serif",
|
|
provider: "google",
|
|
variable: "--font-sans",
|
|
import: "Noto_Sans",
|
|
},
|
|
},
|
|
{
|
|
name: "font-nunito-sans",
|
|
title: "Nunito Sans",
|
|
type: "registry:font",
|
|
font: {
|
|
family: "'Nunito Sans Variable', sans-serif",
|
|
provider: "google",
|
|
variable: "--font-sans",
|
|
import: "Nunito_Sans",
|
|
},
|
|
},
|
|
{
|
|
name: "font-figtree",
|
|
title: "Figtree",
|
|
type: "registry:font",
|
|
font: {
|
|
family: "'Figtree Variable', sans-serif",
|
|
provider: "google",
|
|
variable: "--font-sans",
|
|
subsets: ["latin"],
|
|
import: "Figtree",
|
|
},
|
|
},
|
|
{
|
|
name: "font-roboto",
|
|
title: "Roboto",
|
|
type: "registry:font",
|
|
font: {
|
|
family: "'Roboto', sans-serif",
|
|
provider: "google",
|
|
variable: "--font-sans",
|
|
subsets: ["latin"],
|
|
import: "Roboto",
|
|
},
|
|
},
|
|
{
|
|
name: "font-raleway",
|
|
title: "Raleway",
|
|
type: "registry:font",
|
|
font: {
|
|
family: "'Raleway', sans-serif",
|
|
provider: "google",
|
|
variable: "--font-sans",
|
|
subsets: ["latin"],
|
|
import: "Raleway",
|
|
},
|
|
},
|
|
{
|
|
name: "font-dm-sans",
|
|
title: "DM Sans",
|
|
type: "registry:font",
|
|
font: {
|
|
family: "'DM Sans', sans-serif",
|
|
provider: "google",
|
|
variable: "--font-sans",
|
|
subsets: ["latin"],
|
|
import: "DM_Sans",
|
|
},
|
|
},
|
|
{
|
|
name: "font-public-sans",
|
|
title: "Public Sans",
|
|
type: "registry:font",
|
|
font: {
|
|
family: "'Public Sans', sans-serif",
|
|
provider: "google",
|
|
variable: "--font-sans",
|
|
subsets: ["latin"],
|
|
import: "Public_Sans",
|
|
},
|
|
},
|
|
{
|
|
name: "font-outfit",
|
|
title: "Outfit",
|
|
type: "registry:font",
|
|
font: {
|
|
family: "'Outfit', sans-serif",
|
|
provider: "google",
|
|
variable: "--font-sans",
|
|
subsets: ["latin"],
|
|
import: "Outfit",
|
|
},
|
|
},
|
|
{
|
|
name: "font-jetbrains-mono",
|
|
title: "JetBrains Mono",
|
|
type: "registry:font",
|
|
font: {
|
|
family: "'JetBrains Mono Variable', monospace",
|
|
provider: "google",
|
|
variable: "--font-sans",
|
|
subsets: ["latin"],
|
|
import: "JetBrains_Mono",
|
|
},
|
|
},
|
|
{
|
|
name: "font-geist-mono",
|
|
title: "Geist Mono",
|
|
type: "registry:font",
|
|
font: {
|
|
family: "'Geist Mono Variable', monospace",
|
|
provider: "google",
|
|
variable: "--font-mono",
|
|
subsets: ["latin"],
|
|
import: "Geist_Mono",
|
|
},
|
|
},
|
|
] satisfies RegistryItem[]
|