aboutsummaryrefslogtreecommitdiff
path: root/tailwind.config.cjs
blob: bc16b37ac6fd53ee808ab29e884e2a4c35f3abc8 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
import flowbite from "flowbite/plugin";

/** @type {import('tailwindcss').Config}*/
const config = {
  content: [
    "./src/**/*.{html,js,svelte,ts}",
    "./node_modules/flowbite/**/*.js",
    "./node_modules/flowbite-svelte/**/*.{html,js,svelte,ts}",
  ],

  theme: {
    extend: {
      colors: {
        primary: {
          0: '#efe6dc',
          50: '#decdb9',
          100: '#d6c1a8',
          200: '#c6a885',
          300: '#b58f62',
          400: '#ad8351',
          500: '#9c7649',
          600: '#795c39',
          700: '#574229',
          800: '#342718',
          900: '#231a10',
          1000: '#110d08',
        },
      }
    },
  },

  plugins: [
    flowbite(),
  ],

  darkMode: 'class',
};

module.exports = config;