๐Ÿ“ฆ paulshen / bypaulshen.com

๐Ÿ“„ tailwind.config.js ยท 27 lines
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27const defaultTheme = require("tailwindcss/defaultTheme");
const tailwindColors = require("tailwindcss/colors");

/** @type {import('tailwindcss').Config} */
module.exports = {
  content: [
    "./app/**/*.{js,ts,jsx,tsx}",
    "./pages/**/*.{js,ts,jsx,tsx}",
    "./components/**/*.{js,ts,jsx,tsx}",
    "./lib/**/*.{js,ts,jsx,tsx}",
  ],
  theme: {
    extend: {
      fontFamily: {
        sans: ["var(--font-inter)", ...defaultTheme.fontFamily.sans],
        mono: ["var(--font-roboto-mono)", ...defaultTheme.fontFamily.mono],
      },
      colors: {
        neutral: tailwindColors.gray,
        accent: tailwindColors.slate,
        tan: "#f8f3e6",
      },
    },
  },
  plugins: [],
};