aboutsummaryrefslogtreecommitdiff
path: root/tailwind.config.js
blob: 978aa9e1ecb7f101aec1deb9edde78a5a1a290fa (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
/** @type {import('tailwindcss').Config} */
module.exports = {
  content: ["./src/**/*.{js,jsx,ts,tsx,mdx}"],
  theme: {
    extend: {
      colors: {
        text: "#000000",
        background: "#E3DFF2",
        primary: "#7df9ff",
        secondary: "#9723c9",
        accent: "#fffF00",
      },
    },
  },
  plugins: [],
};