-
Notifications
You must be signed in to change notification settings - Fork 0
/
tailwind.config.js
57 lines (55 loc) · 1.79 KB
/
tailwind.config.js
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
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
const defaultTheme = require('tailwindcss/defaultTheme');
module.exports = {
mode: 'jit', //JITモードを有効化
// パージの対象ファイルを設定
purge: ['./src/pages/**/*.{js,ts,jsx,tsx}', './src/components/**/*.{js,ts,jsx,tsx}'],
darkMode: false, // or 'media' or 'class'
theme: {
fontFamily: {
// スプレッドで展開している前に、メインとしたいフォント名を追加する
// フォント名にスペースがある場合は、'Noto\\ Sans\\ JP'のように \ (バックスラッシュ)でエスケープする
// Serif 体がメインの場合は、 `...defaultTheme.fontFamily.serif` を展開する
ja: [...defaultTheme.fontFamily.sans],
en: [...defaultTheme.fontFamily.sans],
},
extend: {
colors: {
// 開発で使用するカラーを設定する
// `DEFAULT` で設定しているものは、`text-theme` や `bg-primary` のように使用できる
// それ以外は、 `text-theme-light` や `bg-primary-dark` のように使用する
// テキストなどに使うベースカラー
theme: {
light: '#ffffff',
medium: '#cccccc',
DEFAULT: '#242424',
dark: '#111111',
},
// メインカラー
primary: {
// light: '',
// medium: '',
DEFAULT: '#242424',
// dark: '',
},
// サブカラー
// secondary: {
// light: '',
// medium: '',
// DEFAULT: '',
// dark: '',
// },
// アクセントカラー
// accent: {
// light: '',
// medium: '',
// DEFAULT: '',
// dark: '',
// },
},
},
},
variants: {
extend: {},
},
plugins: [],
};