diff options
| author | Ruben Beltran del Rio <ruben@unlimited.pizza> | 2022-05-01 15:02:56 +0200 |
|---|---|---|
| committer | Ruben Beltran del Rio <ruben@unlimited.pizza> | 2022-05-01 15:02:56 +0200 |
| commit | 5ae12afbb94e0b029373a91622280d5a875272db (patch) | |
| tree | 74cc0af750e4bd4a7e8802a0a39ee6a290b8ac81 | |
| parent | 2ab71001d511b656f008316c08e09f89972028d8 (diff) | |
Add font stacks to tailwind
| -rw-r--r-- | tailwind.config.cjs | 38 |
1 files changed, 38 insertions, 0 deletions
diff --git a/tailwind.config.cjs b/tailwind.config.cjs index 790ce27..2f63341 100644 --- a/tailwind.config.cjs +++ b/tailwind.config.cjs @@ -1,4 +1,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')] }; |