-
Notifications
You must be signed in to change notification settings - Fork 0
/
tailwind.config.js
60 lines (60 loc) · 1.84 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
module.exports = {
mode: 'jit',
purge: ['./pages/**/*.{js,ts,jsx,tsx}', './components/**/*.{js,ts,jsx,tsx}'],
darkMode: false, // or 'media' or 'class'
theme: {
extend: {
backgroundImage: () => ({
person1: "url('/assets/testimonials/person1.png')",
person2: "url('/assets/testimonials/person2.png')",
person3: "url('/assets/testimonials/person3.png')",
cta: "url('/assets/cta/bg-cta.png')",
'hero-5': "url('/assets/heros/hero5background.svg')",
'register-page': "url('/assets/register-pages/register-background.png');",
'3d-mockup': "url('/assets/features/mockupbackground.svg');",
'trans-grad': "url('/assets/features/transparentgrad.svg');",
cta6: "url('/assets/cta/cta6back.jpg')",
}),
cursor: {
grab: 'grabbing',
},
fontFamily: {
'dm-sans': ['DMSans', 'sans-serif'],
},
colors: {
// Configuration theme colors
'slate-light': '#F9F9F9', // theme: slate, background color
'slate-orange': '#FF5930', // theme: slate, primary orange
'slate-headline': '#1C202B', // theme: slate, headline color
'slate-body': '#2C3242', // theme: slate, body text color
'slate-blue': 'rgba(67, 83, 255, 1)', // theme: slate, primary blue
'feeling-moody-start': '#E1ECF6', // theme: slate, start of gradient
'feeling-moody-end': '#F0E3E3', // theme: slate, end of gradient
'slate-border': 'rgba(25, 49, 60, 0.1)', // theme: slate, end of the border
},
boxShadow: {
slight: '0px 13px 19px 8px #C8DDE53B',
},
fontSize: {
'desktop-h1': '48px;',
'desktop-h2': '42px',
'desktop-subheading': '21px',
'desktop-h4': '20px',
'desktop-paragraph': '18px',
'mobile-h2': '32px',
'mobile-h1': '38px',
'mobile-h3': '26px',
},
maxWidth: {
default: '1146px',
},
padding: {
mob: '24px',
},
},
},
variants: {
extend: {},
},
plugins: [],
};