-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtailwind.config.js
50 lines (50 loc) · 1.1 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
/** @type {import('tailwindcss').Config} */
export default {
content: [
"./index.html",
"./src/**/*.{js,ts,jsx,tsx}",
],
theme: {
extend: {
screens: {
phone: "390px",
tablet: "600px",
laptop: "1025px",
desktop: "1300px",
},
backgroundImage:
{
'iphone': "url('/iphone-frame.png')",
},
colors: {
lightBlue: "#B8D3E9",
blue: "#9AA7CC",
darkBlue: "#0B487A",
black: "#222222",
white: "#FFFDFA",
orange: "#FFAE00"
},
fontFamily: {
street: ["Street", "sans-serif"],
body: ["Manrope", "sans-serif"],
heading: ["Anton", "sans-serif"],
},
keyframes: {
fadeIn: {
'0%': { opacity: '0' },
'100%': { opacity: '1' },
},
fadeInOut: {
'0%': { opacity: '0' },
'50%': { opacity: '1' },
'100%': { opacity: '0' },
},
},
animation: {
fadeIn: 'fadeIn 2s ease-out',
fadeInOut: 'fadeInOut 3s ease-in-out infinite',
},
},
},
plugins: [],
}