taxonomy/tailwind.config.js

44 lines
995 B
JavaScript
Raw Permalink Normal View History

2022-10-26 13:18:06 +00:00
const { colors } = require("tailwindcss/colors")
const { fontFamily } = require("tailwindcss/defaultTheme")
2022-10-26 13:18:06 +00:00
/** @type {import('tailwindcss').Config} */
module.exports = {
2022-11-06 10:41:57 +00:00
content: [
"./app/**/*.{ts,tsx}",
"./components/**/*.{ts,tsx}",
"./ui/**/*.{ts,tsx}",
"./content/**/*.{md,mdx}",
2022-11-06 10:41:57 +00:00
],
2022-10-26 13:18:06 +00:00
theme: {
container: {
center: true,
padding: "1.5rem",
screens: {
"2xl": "1440px",
},
},
2022-10-26 13:18:06 +00:00
extend: {
fontFamily: {
sans: ["var(--font-inter)", ...fontFamily.sans],
},
2022-10-26 13:18:06 +00:00
colors: {
...colors,
brand: {
50: "#f3f3f3",
100: "#e7e7e7",
200: "#c4c4c4",
300: "#a0a0a0",
400: "#585858",
500: "#111111",
600: "#0f0f0f",
700: "#0d0d0d",
800: "#0a0a0a",
900: "#080808",
DEFAULT: "#111111",
},
},
},
},
plugins: [require("tailwindcss-animate"), require("@tailwindcss/typography")],
}