Files
web-temp/tailwind.config.ts
2025-09-16 19:44:29 +09:00

34 lines
1.2 KiB
TypeScript

import type { Config } from 'tailwindcss'
export default {
content: ['./app/**/*.{js,vue,ts}', './layers/**/*.{js,vue,ts}'],
theme: {
extend: {
screens: {
xs: '360px', // Mobile: 360px ~ 767px
sm: '768px', // Tablet: 768px ~ 1023px
md: '1024px', // PC: 1024px ~ 1439px
lg: '1440px', // Large PC: 1440px+
},
spacing: {},
colors: {
'theme-foreground': 'var(--foreground)',
'theme-foreground-10': 'var(--foreground-10)',
'theme-foreground-reversal': 'var(--foreground-reversal)',
'theme-foreground-reversal-10': 'var(--foreground-reversal-10)',
'theme-foreground-reversal-30': 'var(--foreground-reversal-30)',
'theme-foreground-reversal-40': 'var(--foreground-reversal-40)',
'theme-foreground-reversal-70': 'var(--foreground-reversal-70)',
// 게임별 동적 색상 (CSS 변수로 설정)
'game-primary': 'var(--game-primary)',
'game-alternative-01': 'var(--game-alternative-01)',
'game-alternative-02': 'var(--game-alternative-02)',
'game-text-primary': 'var(--game-text-primary)',
'game-text-secondary': 'var(--game-text-secondary)',
},
},
},
} satisfies Config