Skip to content
Snippets Groups Projects
tailwind.config.js 365 B
Newer Older
Joohyun Park's avatar
Joohyun Park committed
/** @type {import('tailwindcss').Config} */
module.exports = {
  content: [
    "./src/**/*.{js,ts,jsx,tsx,mdx}",
  ],
  theme: {
Joohyun Park's avatar
Joohyun Park committed
    extend: {
      fontFamily: {
        custom: ['MainFont', 'sans-serif'],
    },
      colors: {
        vtMaroon: "#861F41", // Chicago Maroon
        vtHokieStone: "#75787b", // Hokie Stone
      },
    },
Joohyun Park's avatar
Joohyun Park committed
  },
  plugins: [],
}