-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtailwind.config.js
41 lines (41 loc) · 1001 Bytes
/
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
/** @type {import('tailwindcss').Config} */
export default {
content: ['./index.html', './src/**/*.{js,ts,jsx,tsx}'],
theme: {
extend: {
fontFamily: {
Inter: ['Inter'],
Prosto: ['Prosto One'],
Roboto: ['Roboto'],
},
colors: {
'button-main': '#977656',
'button-main-hover': '#55412E',
'button-main-text-color': '#F2DAC2',
'button-nav-text-color': '#F2DAC2',
'button-nav-text-color-hover': '#977656',
'AboutUs': '#C4C4C4',
'blackBgColor': '#272727',
},
backgroundImage: {
'main-page': "url('main.png')",
},
borderRadius: {
'img': '8px',
'backgroundImg': '24px',
},
padding: {
'default': '60px',
'modile': '20px',
},
boxShadow: {
'filter': '0 0 10px 10px rgba(255, 255, 0, 0.5)',
},
screens: {
'small': '1354px',
'verySmall': '450px',
},
},
},
plugins: [],
};