forked from codeit-13-3team/mogazoa
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtailwind.config.js
More file actions
37 lines (37 loc) · 771 Bytes
/
tailwind.config.js
File metadata and controls
37 lines (37 loc) · 771 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
36
37
/** @type {import('tailwindcss').Config} */
module.exports = {
content: [
'./src/**/*.{js,ts,jsx,tsx}',
'./pages/**/*.{ts,tsx}',
'./components/**/*.{ts,tsx}',
'./app/**/*.{ts,tsx}',
],
theme: {
extend: {
fontFamily: {
sans: ['"Pretendard"', 'ui-sans-serif', 'system-ui'],
},
colors: {
black: {
300: '#353542',
400: '#252530',
500: '#1C1C22',
},
main: {
blue: '#5097FA',
indigo: '#5363FF',
},
gray: {
50: '#F1F1F5',
100: '#9FA6B2',
200: '#6E6E82',
},
yellow: '#FFC83C',
green: '#05D58B',
pink: '#FF2F9F',
red: '#FF0000',
},
},
},
plugins: [],
};