-
Notifications
You must be signed in to change notification settings - Fork 0
/
tailwind.config.js
63 lines (63 loc) · 1.36 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
/** @type {import('tailwindcss').Config} */
module.exports = {
content: [
'./pages/**/*.{js,ts,jsx,tsx,mdx}',
'./components/**/*.{js,ts,jsx,tsx,mdx}',
'./app/**/*.{js,ts,jsx,tsx,mdx}',
],
theme: {
extend: {
backgroundImage: {
'gradient-radial': 'radial-gradient(var(--tw-gradient-stops))',
'gradient-conic':
'conic-gradient(from 180deg at 50% 50%, var(--tw-gradient-stops))',
},
},
fontFamily: {
main: ['Libre Baskerville', "serif"],
},
width: {
120: '30rem',
},
colors: {
main: '#3F51B5',
sub: '#757de8',
black: '#000000',
white: '#FFFFFF',
red: {
100: '#FFCDD2',
200: '#EF9A9A',
300: '#E57373',
400: '#EF5350',
500: '#F44336',
600: '#E53935',
700: '#D32F2F',
800: '#C62828',
900: '#B71C1C',
},
gray: {
100: '#F5F5F5',
200: '#E0E0E0',
300: '#BDBDBD',
400: '#9E9E9E',
500: '#757575',
600: '#616161',
700: '#424242',
800: '#212121',
900: '#121212',
},
blue: {
100:'#dbeafe',
200:'#bfdbfe',
300:'#93C5FD',
400:'#60A5FA',
500:'#3b82f6',
600:'#2563EB',
700:'#1d4ed8',
800:'#1e40af',
900:'#1e3a8a',
}
}
},
plugins: [],
}