aboutsummaryrefslogtreecommitdiff
path: root/tailwind.config.cjs
blob: 2f633410f1265f0a06fa0c8deca0ef5289a8726c (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
40
41
42
module.exports = {
	theme: {
		fontFamily: {
			serif: [
				'"ヒラギノ明朝 ProN"',
				'"Hiragino Mincho ProN"',
				'"游明朝"',
				'"游明朝体"',
				'YuMincho',
				'"Yu Mincho"',
				'"MS 明朝"',
				'"MS Mincho"',
				'HiraMinProN-W3',
				'"TakaoEx明朝"',
				'TakaoExMincho',
				'MotoyaLCedar',
				'"Droid Sans Japanese"',
				'serif'
			],
			sans: [
				'"ヒラギノ角ゴ ProN"',
				'"Hiragino Kaku Gothic ProN"',
				'"游ゴシック"',
				'"游ゴシック体"',
				'YuGothic',
				'"Yu Gothic"',
				'"メイリオ"',
				'Meiryo',
				'"MS ゴシック"',
				'"MS Gothic"',
				'HiraKakuProN-W3',
				'"TakaoExゴシック"',
				'TakaoExGothic',
				'MotoyaLCedar',
				'"Droid Sans Japanese"',
				'sans-serif'
			]
		}
	},
	content: ['./src/**/*.{html,js,svelte,ts}'],
	plugins: [require('@tailwindcss/typography'), require('daisyui')]
};