tooling overhaul
This commit is contained in:
20
tailwind.config.ts
Normal file
20
tailwind.config.ts
Normal file
@@ -0,0 +1,20 @@
|
||||
import typography from "@tailwindcss/typography"
|
||||
import { type Config } from "tailwindcss"
|
||||
|
||||
export default {
|
||||
content: ["./packages/*/src/**/*.{ts,tsx,md,astro}"],
|
||||
theme: {
|
||||
fontFamily: {
|
||||
sans: ["RubikVariable", "sans-serif"],
|
||||
monospace: ["'JetBrains Mono'", "monospace"],
|
||||
},
|
||||
boxShadow: {
|
||||
DEFAULT: "0 2px 9px 0 rgb(0 0 0 / 0.3), 0 2px 4px -2px rgb(0 0 0 / 0.3)",
|
||||
},
|
||||
extend: {},
|
||||
},
|
||||
corePlugins: {
|
||||
container: false,
|
||||
},
|
||||
plugins: [typography],
|
||||
} satisfies Config
|
||||
Reference in New Issue
Block a user