This commit is contained in:
2025-09-28 15:06:45 +09:00
parent a691df7b3f
commit 597e69db21
2 changed files with 35 additions and 28 deletions
+1
View File
@@ -7,6 +7,7 @@
body body
{ {
@apply overflow-x-clip; @apply overflow-x-clip;
@apply font-jpSans;
} }
a a
+20 -14
View File
@@ -16,21 +16,27 @@ export default {
theme: { theme: {
extend: { extend: {
animation: { animation: {
'rainbow-scroll': 'rainbow-scroll .25s linear infinite', 'rainbow-scroll': 'rainbow-scroll .25s linear infinite' },
},
colors: { colors: {
red: { red: { 925: '#5f1414',
925: '#5f1414', 975: '#230505' } },
975: '#230505',
}
},
keyframes: { keyframes: {
'rainbow-scroll': { 'rainbow-scroll': {
'0%': { backgroundPosition: '0% 50%' }, '0%': { backgroundPosition: '0% 50%' },
'100%': { backgroundPosition: '200% 50%' }, '100%': { backgroundPosition: '200% 50%' } } },
}, fontFamily: {
}, jpSans: ['Noto Sans JP',
} 'Hiragino Kaku Gothic ProN',
}, 'ヒラギノ角ゴ ProN W3',
plugins: [], 'Yu Gothic',
} satisfies Config '游ゴシック体',
'Meiryo',
'sans-serif'],
jpSerif: ['Noto Serif JP',
'Hiragino Mincho ProN',
'ヒラギノ明朝 ProN W3',
'Yu Mincho',
'游明朝',
'MS PMincho',
'serif'] } } },
plugins: [] } satisfies Config