/** @type {import('tailwindcss').Config} */
module.exports = {
  content: [
    "./*.html",
    "./assets/**/*.{html,js}",
    "./src/**/*.{html,js}"
  ],
  theme: {
    extend: {
      fontFamily: {
        'gt-alpina': ['GT Alpina', 'serif'],
        'calibre': ['Calibre', 'sans-serif'],
      },
      colors: {
        'wealthfront-purple': '#6366f1',
        'wealthfront-blue': '#3b82f6',
      }
    },
  },
  plugins: [],
}