tailwind.config.js 293 Bytes
Newer Older
Yoon, Daeki's avatar
Yoon, Daeki committed
1
2
3
4
/** @type {import('tailwindcss').Config} */
module.exports = {
  content: ["./src/**/*.{html,js,jsx,ts,tsx}"],
  theme: {
Jiwon Yoon's avatar
Jiwon Yoon committed
5
6
    extend: {
      colors: {
jang dong hyeok's avatar
jang dong hyeok committed
7
8
9
        'themeColor': '#0A8A8A',
        'themeColor2': '#41C1C1',
        'themeColor3' : '#EAF4F4',
Jiwon Yoon's avatar
Jiwon Yoon committed
10
11
      },
    },
Yoon, Daeki's avatar
Yoon, Daeki committed
12
13
14
  },
  plugins: [],
};