forked from TATA-V/fromnow-client
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtailwind.config.js
55 lines (55 loc) · 1.48 KB
/
tailwind.config.js
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
/** @type {import('tailwindcss').Config} */
module.exports = {
content: ['./App.{js,jsx,ts,tsx}', './src/**/*.{js,jsx,ts,tsx}'],
theme: {
extend: {
colors: {
fnRed: '#F04438',
fnPink: '#FEC7C6',
fnBlue: '#8EB9E6',
fnYellow: '#FEE987',
fnGreen: '#B0DDC1',
black900: '#1C1C1E',
black700: '#6E6D73',
black500: '#B3B4B9',
black400: '#D9D9DC',
black300: '#E4E5EA',
black200: '#F3F3F8',
black100: '#FBFBFD',
success: '#12B76A',
kakao: '#FEE500',
kakaoTxt: '#212121',
},
},
fontFamily: {
PTDBlack: ['Pretendard-Black'],
PTDBold: ['Pretendard-Bold'],
PTDExtraBold: ['Pretendard-ExtraBold'],
PTDExtraLight: ['Pretendard-ExtraLight'],
PTDLight: ['Pretendard-Light'],
PTDMedium: ['Pretendard-Medium'],
PTDRegular: ['Pretendard-Regular'],
PTDSemiBold: ['Pretendard-SemiBold'],
PTDThin: ['Pretendard-Thin'],
UhBeeBold: ['UhBeemysenBold'],
UhBee: ['UhBeemysen'],
},
},
plugins: [
function ({ addUtilities }) {
const newUtilities = {
'.error-text': {
color: '#B3B4B9',
fontFamily: 'Pretendard-Light',
fontSize: '12px',
},
'.default-label': {
color: '#1C1C1E',
fontFamily: 'Pretendard-Light',
fontSize: '12px',
},
};
addUtilities(newUtilities, ['responsive', 'hover', 'focus']);
},
],
};