-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtailwind.config.js
76 lines (71 loc) · 1.62 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: [
'./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-jamjuree)',
},
colors: {
gray: {
50: '#eaeaea',
100: '#bebebf',
200: '#9e9ea0',
300: '#727275',
400: '#56565a',
500: '#2c2c31',
600: '#292929',
700: '#1f1f23',
800: '#111111',
900: '#121215',
},
purple: {
50: '#f3eefc',
100: '#d8cbf7',
200: '#c6b2f3',
300: '#ab8eee',
400: '#9b79ea',
500: '#8257e5',
600: '#764fd0',
700: '#5c3ea3',
800: '#48307e',
900: '#372560',
},
green: {
50: '#e6fbef',
100: '#b1f1ce',
200: '#8cebb6',
300: '#57e295',
400: '#36dc81',
500: '#04d361',
600: '#04c058',
700: '#039645',
800: '#027435',
900: '#025929',
},
red: {
100: '#F84655',
},
},
backgroundImage: {
stripes:
'linear-gradient(to bottom, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.1) 12.5%, transparent 12.5%, transparent)',
},
fontSize: {
'5xl': '2.5rem',
},
backgroundSize: {
stripes: '100% 8px',
},
blur: {
full: '194px',
},
},
},
plugins: [],
}