-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtailwind.config.js
77 lines (76 loc) · 1.73 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
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
/** @type {import('tailwindcss').Config} */
module.exports = {
content: ["./App.tsx", "./app/**/*.{js,jsx,ts,tsx}"],
theme: {
extend:
{
fontFamily: {
title: 'Roboto_700Bold',
body: 'Roboto_400Regular',
alt: 'BaiJamjuree_700Bold',
},
colors: {
gray: {
50: '#eaeaea',
100: '#bebebf',
200: '#9e9ea0',
300: '#727275',
400: '#56565a',
500: '#2c2c31',
600: '#28282d',
700: '#1f1f23',
800: '#18181b',
900: '#121215',
},
purple: {
50: '#f3eefc',
100: '#d8cbf7',
200: '#c6b2f3',
300: '#ab8eee',
400: '#9b79ea',
500: '#8257e5',
600: '#764fd0',
700: '#5c3ea3',
800: '#48307e',
900: '#372560',
},
orange: {
50: '#ffefeb',
100: '#ffccc2',
200: '#ffb4a4',
300: '#ff927b',
400: '#ff7d61',
500: '#ff5c3a',
600: '#e85435',
700: '#b54129',
800: '#8c3320',
900: '#6b2718',
},
yellow: {
50: '#fff9ec',
100: '#ffebc4',
200: '#ffe2a7',
300: '#ffd47f',
400: '#ffcc66',
500: '#ffbf40',
600: '#e8ae3a',
700: '#b5882d',
800: '#8c6923',
900: '#6b501b',
},
green: {
50: '#e6fbef',
100: '#b1f1ce',
200: '#8cebb6',
300: '#57e295',
400: '#36dc81',
500: '#04d361',
600: '#04c058',
700: '#039645',
800: '#027435',
900: '#025929',
},
}, },
},
plugins: [],
}