-
Notifications
You must be signed in to change notification settings - Fork 0
/
tailwind.config.js
55 lines (55 loc) · 1.14 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
/** @type {import('tailwindcss').Config} */
module.exports = {
darkMode: ['class'],
content: [
'./pages/**/*.{ts,tsx}',
'./components/**/*.{ts,tsx}',
'./app/**/*.{ts,tsx}',
'./src/**/*.{ts,tsx}',
'./index.html'
],
theme: {
container: {
center: true,
padding: '2rem',
screens: {
'2xl': '1400px'
}
},
extend: {
fontFamily: {
inter: ['Inter var', 'sans-serif']
},
colors: {
lumored: {
50: '#fdf4f3',
100: '#fce6e4',
200: '#fad2ce',
300: '#f5b3ac',
400: '#ed877c',
500: '#e26254',
600: '#ce4334',
700: '#ad3528',
800: '#8f2f25',
900: '#772d25'
},
lumobeige: {
50: '#FAF4F0',
100: '#eeeae8',
200: '#d9d2ce',
300: '#c1b5ae',
400: '#a79790',
500: '#94817a',
600: '#87736e',
700: '#6f5f5d',
800: '#5a5453',
900: '#484747'
}
},
padding: {
'1/3': '33.333333%'
}
}
},
plugins: [require('tailwindcss-animate')]
};