-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtailwind.config.js
More file actions
61 lines (60 loc) · 1.45 KB
/
tailwind.config.js
File metadata and controls
61 lines (60 loc) · 1.45 KB
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} */
module.exports = {
// NOTE: Update this to include the paths to all files that contain Nativewind classes.
content: [
"./App.{js,jsx,ts,tsx}",
"./src/**/*.{js,jsx,ts,tsx}",
"./src/**/**/*.{js,jsx,ts,tsx}",
],
presets: [require("nativewind/preset")],
theme: {
extend: {
fontFamily: {
'sans': ['GowunBatang-Regular', 'sans-serif'],
'gowun': ['GowunBatang-Regular', 'sans-serif'],
'catways': ['Catways', 'sans-serif'],
},
colors: {
// Gray Scale
gray: {
100: '#ffffff',
200: '#f9f9f9',
300: '#eeeeee',
400: '#cccccc',
500: '#767676',
600: '#555555',
700: '#333333',
},
// Brand Colors
brand: {
100: '#ffe4e8',
200: '#ffccd2',
300: '#ff99a9',
400: '#ff8094',
500: '#ff6b81',
600: '#e64e66',
700: '#cc3a52',
active: '#E63946',
},
// Sub Colors (Green)
sub: {
100: '#f4fbf4',
200: '#dff3df',
300: '#c8ecc8',
400: '#b3e6b4',
500: '#a2e2a4',
600: '#74bf77',
700: '#539c58',
},
// Semantic Colors
semantic: {
error: '#f03e3e',
success: '#2baa67',
caution: '#ffb648',
info: '#3d9df6',
},
},
},
},
plugins: [],
}