summaryrefslogtreecommitdiff
path: root/tailwind.config.js
blob: c901e71e0ae75a19f7251bee6597c1d36f4e9d7d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
/** @type {import('tailwindcss').Config} */

const colors = require('tailwindcss/colors')

module.exports = {
  content: ["./templates/**/*.{html,js}"],
  theme: {
    colors: {
      primary: colors.fuchsia,
      secondary: colors.teal,
      neutral: colors.gray,
      ...colors
    },
    extend: {},
  },
  plugins: [],
}