forked from ureca-poject-unear/unear-frontend
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtailwind.config.js
More file actions
65 lines (65 loc) ยท 2.24 KB
/
tailwind.config.js
File metadata and controls
65 lines (65 loc) ยท 2.24 KB
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
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
/** @type {import('tailwindcss').Config} */
export default {
content: ['./index.html', './src/**/*.{js,ts,jsx,tsx}'],
theme: {
extend: {
fontFamily: {
// font-[์ง์ ๋ช
]
thin: ['LGEIHeadline-Thin', 'sans-serif'],
light: ['LGEIHeadline-Light', 'sans-serif'],
regular: ['LGEIHeadline-Regular', 'sans-serif'],
semibold: ['LGEIHeadline-Semibold', 'sans-serif'],
bold: ['LGEIHeadline-Bold', 'sans-serif'],
},
colors: {
// bg-[์ง์ ๋ช
]
// text-[์ง์ ๋ช
]
background: '#F6F7FB', //๋ฐฐ๊ฒฝ์ฉ ์ฐํ ํ์
primary: '#E6007E', // ํํฌ
black: '#333333', // ๊ฒ์
white: '#FFFFFF', // ํฐ์
story: '#0F0034', // ์คํ ๋ฆฌ ๋ค์ด๋น
storycard: '#251A49', // ์คํ ๋ฆฌ ์นด๋ ๋ค์ด๋น
},
backgroundImage: {
// bg-[์ง์ ๋ช
]
storyicon: 'linear-gradient(180deg, #094275 0%, #0F0034 100%)', //ํ๋จ๋ฐ ์คํ ๋ฆฌ ์์ด์ฝ
storybackground1: 'linear-gradient(180deg, #0F0034 0%, #094275 100%)', //์คํ ๋ฆฌ ํ์ด์ง ๋ฐฐ๊ฒฝ1
storybackground2: 'radial-gradient(ellipse 90% 40% at center, #094275 20%, #0F0034 60%)', //์คํ ๋ฆฌ ํ์ด์ง ๋ฐฐ๊ฒฝ2
storybackground3: 'radial-gradient(ellipse at center, #0F0034 20%, #094275 60%)', //์คํ ๋ฆฌ ํ์ด์ง ๋ฐฐ๊ฒฝ3
},
fontSize: {
// text-[์ง์ ๋ช
]
xs: '0.625rem', // 10px
s: '0.75rem', // 12px
sm: '0.875rem', // 14px
m: '1rem', // ๊ธฐ๋ณธ๊ฐ(16px)
lm: '1.125rem', // 18px
lg: '1.5rem', // 24px
xl: '2rem', // 32px
xxl: '2.25rem', //36px
},
keyframes: {
blinkPulse: {
'0%': { opacity: '0.1' },
'50%': { opacity: '0.8' },
'100%': { opacity: '0.1' },
},
zoom: {
'0%': { transform: 'scale(1)' },
'100%': { transform: 'scale(1.1)' },
},
slideLeft: {
'0%': { transform: 'translateX(0)' },
'100%': { transform: 'translateX(-50%)' },
},
},
animation: {
'blink-pulse': 'blinkPulse 2.5s ease-in-out infinite',
zoom: 'zoom 6s ease-in-out forwards',
slideLeft: 'slideLeft 20s linear infinite',
},
},
},
plugins: [],
};