-
Notifications
You must be signed in to change notification settings - Fork 1
/
tailwind.config.js
66 lines (65 loc) · 1.31 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
/** @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}',
],
mode: 'jit',
theme: {
container: {
center: true,
padding: {
DEFAULT: '12px',
sm: '12px',
lg: '20px',
'2xl': '46px',
},
},
extend: {
screens: {
sm: '640px',
md: '768px',
lg: '1024px',
xl: '1280px',
'2xl': '1440px',
},
maxWidth: {
'8xl': '1440px',
},
fontFamily: {
manrope: ['var(--manrope)'],
'cormorant-infant': ['var(--cormorant)'],
'noto-serif': ['var(--noto)'],
},
colors: {
pampas: {
DEFAULT: '#F3EFEB',
50: '#FFFFFF',
100: '#FFFFFF',
200: '#FFFFFF',
300: '#FFFFFF',
400: '#FFFFFF',
500: '#F3EFEB',
600: '#DED3C8',
700: '#C9B7A5',
800: '#B49B82',
900: '#9E7F5F',
950: '#8D7155',
},
},
backgroundColor: {
input: 'rgba(255, 255, 255, 0.11)',
},
backgroundImage: {
'gradient-button': 'linear-gradient(93deg, #ffe8db -108.14%, #fccdb1 90.48%)',
circle:
'radial-gradient(50% 50% at 50% 50%, #FFF 0%, #FDF4EC 58.33%, rgba(253, 244, 236, 0.00) 97.4%)',
},
boxShadow: {
btn: '0px 0px 20px 0px #CE8C65',
},
},
},
plugins: [],
};