mirror of
https://github.com/ThisTine/Snip.git
synced 2026-08-18 23:18:47 +07:00
19 lines
449 B
JavaScript
19 lines
449 B
JavaScript
/** @type {import('tailwindcss').Config} */
|
|
export default {
|
|
darkMode: "class",
|
|
content: ["./index.html", "./src/**/*.{ts,tsx}"],
|
|
theme: {
|
|
extend: {
|
|
fontFamily: {
|
|
sans: ['"Inter"', "ui-sans-serif", "system-ui", "sans-serif"],
|
|
mono: ['"JetBrains Mono"', "ui-monospace", "SFMono-Regular", "monospace"],
|
|
},
|
|
borderRadius: {
|
|
xl: "0.75rem",
|
|
"2xl": "1rem",
|
|
},
|
|
},
|
|
},
|
|
plugins: [],
|
|
};
|