mirror of
https://github.com/ghostty-org/ghostty.git
synced 2025-05-29 02:51:25 +00:00
21 lines
476 B
TypeScript
21 lines
476 B
TypeScript
import type { Config } from "tailwindcss";
|
|
import tailwindTypography from "@tailwindcss/typography";
|
|
|
|
const config: Config = {
|
|
content: [
|
|
"./pages/**/*.{js,ts,jsx,tsx,mdx}",
|
|
"./components/**/*.{js,ts,jsx,tsx,mdx}",
|
|
"./app/**/*.{js,ts,jsx,tsx,mdx}",
|
|
],
|
|
theme: {
|
|
extend: {
|
|
fontFamily: {
|
|
sans: ["var(--font-inter)"],
|
|
mono: ["var(--font-jetbrains-mono)"],
|
|
},
|
|
},
|
|
},
|
|
plugins: [tailwindTypography],
|
|
};
|
|
export default config;
|