-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtailwind.config.ts
56 lines (55 loc) · 1.32 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
import type { Config } from 'tailwindcss'
const config: Config = {
content: ['./app/**/*.{js,ts,jsx,tsx,mdx}', './src/**/*.{js,ts,jsx,tsx,mdx}'],
theme: {
extend: {
fontFamily: {
sans: ['var(--font-pretendard)'],
},
colors: {
gray: {
50: '#F5F6F8', // background_elevated
100: '#EDEFF2',
200: '#DFE1E6',
300: '#D4D7DE',
400: '#B4B8C5',
500: '#A0A3B4',
600: '#8A8BA1',
700: '#77798B',
800: '#616272', // text_secondary
900: '#52535D',
950: '#303136', // text_primary
},
primary: {
100: '#D7F4DF',
200: '#B2E8C3',
300: '#80D5A0',
400: '#4CBB7A',
500: '#289A5B', // main_primary
600: '#1B804B',
700: '#15673D',
800: '#135232',
900: '#11432B',
},
red: {
100: '#FFF5F6',
200: '#FFCAD3',
300: '#FF4D6C',
},
blue: {
100: '#EEF7FF',
200: '#CAE8FF',
300: '#067DFD',
},
},
boxShadow: {
DEFAULT: '0px 0px 10px 0px rgba(0, 0, 0, 0.25)',
},
borderRadius: {
DEFAULT: '20px',
},
},
},
plugins: [require('tailwindcss-animate')],
}
export default config