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