-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtailwind.config.js
More file actions
89 lines (44 loc) · 1.13 KB
/
Copy pathtailwind.config.js
File metadata and controls
89 lines (44 loc) · 1.13 KB
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
/** @type {import('tailwindcss').Config} */
export default {
content: [
"./index.html",
"./src/**/*.{js,ts,jsx,tsx}",
],
theme: {
extend: {
fontFamily: {
lato: ["Lato", "serif"]
},
colors: {
primary: {
light: '#4F9DDE',
dark: '#6FCF97'
},
background: {
light: '#EDF4C2',
dark: '#3f3a3a'
},
text: {
light: '#333333',
dark: '#E0E0E0'
},
accent: {
light: '#EB5A3C',
dark: '#FFD166'
},
primary: {
light: '#EB5A3C'
},
secondary: {
light: 'white'
}
},
backgroundImage: {
'slide1-bg' : "url('https://i.ibb.co.com/B4gBfXj/ai-generated-8577448-1280.png')",
'slide2-bg' : "url('https://i.ibb.co.com/YWN0PHw/ai-generated-8575440-1280.jpg')",
'slide3-bg' : "url('https://i.ibb.co.com/Kmy2HPt/giovanni-gagliardi-fv-T3t9i-Oa-JI-unsplash.jpg')",
}
},
},
plugins: [require('daisyui'),],
};