-
Notifications
You must be signed in to change notification settings - Fork 0
/
tailwind.config.js
60 lines (59 loc) · 1.3 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
56
57
58
59
60
/** @type {import('tailwindcss').Config} */
const nativewind = require('nativewind/tailwind/native');
module.exports = {
darkMode: ['class'],
content: [
'./App.{js,jsx,ts,tsx}',
'./src/screens/**/*.{ts,tsx}',
'./src/components/**/*.{ts,tsx}',
],
theme: {
extend: {
fontFamily: {
bold: ['Pretendard-Bold'],
light: ['Pretendard-Light'],
medium: ['Pretendard-Medium'],
SokchoBadaDotum: ['SokchoBadaDotum'],
MangoByeol: ['MangoByeolbyeol'],
},
},
colors: {
gray: {
50: '#FCFCFC',
100: '#F8F8F9',
200: '#E9ECEF',
300: '#C9CCD1',
400: '#9EA4AA',
500: '#72787F',
600: '#454C53',
},
dark: {
800: '#26282B',
900: '#1D2002',
},
green: {
50: '#FBFFF5',
100: '#F2FFE0',
200: '#E3FCBF',
300: '#CBFAC4',
400: '#B8F1B0',
500: '#84DE77',
600: '#14C38E',
},
white: '#FFFFFF',
black: '#000000',
error: '#ff3E3E',
warning: '#FFB800',
main: '#00F0A1',
blue: '#2485E6',
social: {
google: '#FFFFFF',
apple: '#000000',
kakao: '#FEE501',
naver: '#02C300',
},
hover: '#f1f5f9',
},
},
plugins: [nativewind()],
};