-
Notifications
You must be signed in to change notification settings - Fork 0
/
tailwind.config.js
45 lines (45 loc) · 924 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
42
43
44
45
module.exports = {
content: ['./src/**/*.{js,jsx,ts,tsx}'],
theme: {
container: {
padding: {
DEFAULT: '1rem',
lg: '0',
},
},
fontFamily: {
primary: 'Rubik',
},
extend: {
colors: {
darkblue: {
DEFAULT: '#0D0D2B',
secondary: '#252540',
},
blue: {
DEFAULT: '#3671E9',
hover: '#2766E6',
},
gray: {
DEFAULT: '#E0E0E0',
},
violet: '#2B076E',
white: '#ffffff',
},
boxShadow: {
primary: '0px 20px 200px rgba(57, 23, 119, 0.05)',
},
backgroundImage: {
newsletter: "url('/src/assets/img/newsletter-bg.png')",
newsletterBox: "url('/src/assets/img/newsletter-box.png')",
},
},
screens: {
sm: '640px',
md: '768px',
lg: '1024px',
xl: '1200px',
},
},
plugins: [],
};