-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtailwind.config.ts
More file actions
35 lines (33 loc) · 994 Bytes
/
tailwind.config.ts
File metadata and controls
35 lines (33 loc) · 994 Bytes
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
import type { Config } from 'tailwindcss';
const config: Config = {
content: ['./src/app/**/*.{ts,tsx,js,jsx,mdx}', './src/components/**/*.{ts,tsx,js,jsx,mdx}'],
theme: {
extend: {
fontFamily: {
pretendard: ['var(--font-pretendard)'],
gowun: ['var(--font-gowun-dodum)'],
sans: ['var(--font-pretendard)', 'system-ui', 'sans-serif'],
},
zIndex: {
base: 'var(--z-base)',
dropdown: 'var(--z-dropdown)',
sticky: 'var(--z-sticky)',
overlay: 'var(--z-overlay)',
modal: 'var(--z-modal)',
popover: 'var(--z-popover)',
tooltip: 'var(--z-tooltip)',
},
transitionTimingFunction: {
standard: 'var(--ease-standard)',
emphasized: 'var(--ease-emphasized)',
},
transitionDuration: {
fast: 'var(--duration-fast)',
normal: 'var(--duration-normal)',
slow: 'var(--duration-slow)',
},
},
},
plugins: [],
};
export default config;