]> git.r.bdr.sh - rbdr/forum/blob - tailwind.config.cjs
Don't remember what this WIP was about
[rbdr/forum] / tailwind.config.cjs
1 module.exports = {
2 theme: {
3 fontFamily: {
4 serif: [
5 '"ヒラギノ明朝 ProN"',
6 '"Hiragino Mincho ProN"',
7 '"游明朝"',
8 '"游明朝体"',
9 'YuMincho',
10 '"Yu Mincho"',
11 '"MS 明朝"',
12 '"MS Mincho"',
13 'HiraMinProN-W3',
14 '"TakaoEx明朝"',
15 'TakaoExMincho',
16 'MotoyaLCedar',
17 '"Droid Sans Japanese"',
18 'serif'
19 ],
20 sans: [
21 '"ヒラギノ角ゴ ProN"',
22 '"Hiragino Kaku Gothic ProN"',
23 '"游ゴシック"',
24 '"游ゴシック体"',
25 'YuGothic',
26 '"Yu Gothic"',
27 '"メイリオ"',
28 'Meiryo',
29 '"MS ゴシック"',
30 '"MS Gothic"',
31 'HiraKakuProN-W3',
32 '"TakaoExゴシック"',
33 'TakaoExGothic',
34 'MotoyaLCedar',
35 '"Droid Sans Japanese"',
36 'sans-serif'
37 ]
38 }
39 },
40 content: ['./src/**/*.{html,js,svelte,ts}'],
41 plugins: [require('@tailwindcss/typography'), require('daisyui')]
42 };