-
Notifications
You must be signed in to change notification settings - Fork 0
/
tailwind.config.js
96 lines (93 loc) · 2.18 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
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
/** @type {import('tailwindcss').Config} */
module.exports = {
content: [
'./src/pages/**/*.{js,ts,jsx,tsx,mdx}',
'./src/components/**/*.{js,ts,jsx,tsx,mdx}',
'./src/app/**/*.{js,ts,jsx,tsx,mdx}',
],
theme: {
extend: {
fontFamily: {
sans: 'var(--font-roboto)',
alt: 'var(--font-bai-janjuree)',
},
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',
}
},
fontSize: {
'5xl': '2.5rem',
},
backgroundImage: {
stripes: 'linear-gradient(to bottom, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.1) 12.5%, transparent 12.5%, transparent 87.5%, rgba(255, 255, 255, 0.1) 87.5%, rgba(255, 255, 255, 0.1) 100%)',
},
backgroundSize: {
stripes: '100% 8px'
},
blur: {
full: '194px'
}
},
},
plugins: [
require("@tailwindcss/forms")
],
}