summaryrefslogtreecommitdiff
path: root/tailwind.config.js
blob: d36f1b1c1beac2b3c9b7a5e9b4bd77b7ace0990e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
/** @type {import('tailwindcss').Config} */
export default {
  content: [
    "./index.html",
    "./src/**/*.{js,ts,jsx,tsx}",
    "./node_modules/tw-elements/dist/js/**/*.js"
  ],
  theme: {
    extend: {
      colors: {
        blue: {
          600: "#394490"
        }
      }
    },
  },
  plugins: [require("tw-elements/dist/plugin.cjs")],
}