Files
shadcn-ui/apps/v4/registry/fonts.ts
shadcn 86d9b00084 chore: update deps (#9022)
* feat: init

* fix

* fix

* fix

* feat

* feat

* fix

* fix

* fix

* fix

* fix

* fix

* fix

* fix

* fix

* fix

* fix

* fix

* fix

* feat: implement icons

* fix

* fix

* fix

* fix

* fix

* fix

* fix

* fix

* fix

* fix

* fix

* fix

* fix

* fix

* fix

* fix

* fix

* fix

* fix

* fix

* fix

* fix

* fix

* fix

* fix

* fix

* fix

* fix

* fix

* feat: update init command

* fix

* fix

* fix

* fix

* fix

* fix

* fix

* fix

* fix

* fix

* fix

* fix

* fix

* fix

* fix

* fix

* fix

* feat: dialog

* feat

* fix

* fix

* fix

* fix

* fix

* fix

* fix

* fix

* fix

* fix

* fix

* fix

* fix

* fix

* fix

* fix

* fix

* feat: add registry:base item type

* feat: rename frame to canva

* fix

* feat

* fix

* fix

* fix

* fix

* fix

* fix

* fix

* fix

* fix

* fix

* fix

* fix

* fix

* fix

* fix

* fix

* fix

* fix

* fix

* fix

* fix

* fix

* fix

* fix

* fix

* fix

* fix

* fix

* fix

* fix

* fi

* fix

* fix

* fix

* fix

* fix

* fix

* fix

* fix

* fix

* fix

* fix

* fix

* fix

* fix

* fix

* fix

* fix

* fix

* fix

* fix

* feat: add all colors

* fix

* fix

* fix

* fix

* fix

* fix

* fix

* fix

* fix

* fix

* fix

* fix

* fix

* fix

* fix

* fix

* fix

* fix

* fix

* fix

* fix

* fix

* fix

* fix

* fix

* fix

* fix

* fix

* fix

* fix

* fix

* fix

* fix

* fix

* fix

* fix

* fix

* fix

* fix

* fix

* fix

* fix

* fix

* fix

* fix

* fix

* feat: add outfit font

* fix

* fix

* fix

* fix

* fix

* chore: changeset

* fix

* fix

* fix

* fix

* fix

* fix

* fix

* fix
2025-12-12 21:01:44 +04:00

147 lines
3.1 KiB
TypeScript

import { type RegistryItem } from "shadcn/schema"
export const fonts = [
{
name: "font-geist-sans",
title: "Geist Sans",
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-sans",
// subsets: ["latin"],
// import: "Geist_Mono",
// },
// },
] satisfies RegistryItem[]