File size: 841 Bytes
f704d2b
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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
/** @type {import('tailwindcss').Config} */
module.exports = {
    content: [
      "./templates/index.html", // HTMLファイルのパス(Flaskなどのテンプレートエンジンを考慮)
      "./templates/feedback.html",
      "./templates/reset.html",
      "./templates/talkDetail.html",
      "./templates/userRegister.html",
      "./templates/userSelect.html",
    ],
    darkMode: 'class', // ダークモードをクラスベースで適用
    theme: {
      extend: {
        colors: {
          primary: '#1f2937', // メインカラー
          secondary: '#2c3e50', // サブカラー
        },
        fontFamily: {
          sans: ['Arial', 'sans-serif'], // デフォルトフォント
        },
        borderRadius: {
          'xl': '1rem', // 角丸の拡張
        },
      },
    },
    plugins: [],
  };