-
Notifications
You must be signed in to change notification settings - Fork 1
/
tailwind.config.ts
86 lines (81 loc) · 2.42 KB
/
tailwind.config.ts
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
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
import type { Config } from 'tailwindcss';
const config: Config = {
content: [
'./src/pages/**/*.{js,ts,jsx,tsx,mdx}',
'./src/components/**/*.{js,ts,jsx,tsx,mdx}',
'./src/app/**/*.{js,ts,jsx,tsx,mdx}'
],
theme: {
screens: {
xs: { min: ' 350px', max: '380px' },
sm: { min: '381p', max: '551px' },
md: { min: '552px' }
// ...
},
extend: {
colors: {
'space-purple': '#4E32BB',
'space-purple-light': '#EDEBF8',
'space-purple-light-hover': '#E4E0F5',
'space-purple-light-active': '#C8BFEA',
'space-purple-normal': '#4E32BB',
'space-purple-normal-hover': '#462DA8',
'space-purple-normal-active': '#3E2896',
'space-purple-dark': '#3B268C',
'space-purple-dark-hover': '#2F1E70',
'space-purple-dark-active': '#231654',
'space-purple-darker': '#1B1241',
'space-blue': '#3248E2',
'space-blue-light': '#EBEEFF',
'space-blue-light-hover': '#E1E5FE',
'space-blue-light-active': '#C1C9FE',
'space-blue-normal': '#3850FB',
'space-blue-normal-hover': '#3248E2',
'space-blue-normal-active': '#2D40C9',
'space-blue-dark': '#2A3CBC',
'space-blue-dark-hover': '#223097',
'space-blue-dark-active': '#192471',
'space-blue-darker': '#141C58',
'space-black': '#212121',
'gray-50': '#f8f8f8',
'gray-100': '#f0f0f0',
'gray-200': '#e6e6e6',
'gray-300': '#d5d5d5',
'gray-400': '#b1b1b1',
'gray-500': '#919191',
'gray-600': '#696969',
'gray-700': '#565656',
'gray-800': '#373737',
'gray-900': '#212121',
'text-neutral-800': '#212121'
},
inset: {
'1/2': '50%',
'1/4': '25%',
'3/4': '75%',
'1/5': '20%',
'1/6': '16.666667%',
'2/5': '40%',
'1/3': '33.333333%'
},
width: {
'1/4vw': '25vw',
'1/2vw': '50vw',
'3/4vw': '75vw',
'4/5vw': '80vw',
'1/5vw': '20vw',
'1vw': '100vw'
},
fontFamily: {
pretendard: ['var(--font-pretendard)']
},
backgroundImage: {
'gradient-radial': 'radial-gradient(var(--tw-gradient-stops))',
'gradient-conic':
'conic-gradient(from 180deg at 50% 50%, var(--tw-gradient-stops))'
}
}
},
plugins: [require('@tailwindcss/typography')]
};
export default config;