summaryrefslogtreecommitdiff
path: root/tailwind.config.js
blob: 7c37183c02af7d611c94a36088f4c354b9d5c38a (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.blue,
      secondary: colors.zinc,
      neutral: colors.gray,
      ...colors
    },
    extend: {},
  },
  plugins: [],
}