-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtailwind.config.js
37 lines (36 loc) · 996 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
/** @type {import('tailwindcss').Config} */
export default {
content: ['./index.html', './src/**/*.{js,ts,jsx,tsx}'],
theme: {
extend: {
colors: {
'green-850': '#0C1617',
'primary-500': '#DFAD9A',
'secondary-500': '#E4DEDE',
'secondary-400': '#FBFFF8',
},
backgroundImage: {
noise: "url('./assets/icons/Шум.png')",
blic1: "url('./assets/bg/blik1.png')",
blic2: "url('./assets/bg/blik2.png')",
blicForBril: "url('./assets/bg/blikForBrill.png')",
},
fontFamily: {
geo: ['Geometria', 'sans-serif'],
geoMed: ['GeometriaMedium', 'sans-serif'],
geoItal: ['GeometriaItalic', 'sans-serif'],
bergamasco: ['Bergamasco', 'sans-serif'],
perpetua: ['Perpetua', 'sans-serif']
},
content: {},
},
screens: {
xs: '480px',
sm: '768px',
md: '1060px',
xl: '1300px',
'2xl': '1500px',
},
},
plugins: [],
}