-
Notifications
You must be signed in to change notification settings - Fork 0
/
tailwind.config.js
52 lines (47 loc) · 1.79 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
/** @type {import('tailwindcss').Config} */
module.exports = {
content: ["./src/**/*.{js,jsx,ts,tsx}"],
theme: {
extend: {
colors: {
primary: {"50":"#eff6ff","100":"#dbeafe","200":"#bfdbfe","300":"#93c5fd","400":"#60a5fa","500":"#3b82f6","600":"#2563eb","700":"#1d4ed8","800":"#1e40af","900":"#1e3a8a","950":"#172554"}
},
rotate: {
60: "15deg",
50: "22deg",
},
backgroundImage: {
firstCard:
"url('https://res.cloudinary.com/dmurcewte/image/upload/v1682944738/Card1.jpg')",
secondCard:
"url('https://res.cloudinary.com/dmurcewte/image/upload/v1682944753/Card2.webp')",
thirdCard:
"url('https://res.cloudinary.com/dmurcewte/image/upload/v1682944768/Card3.webp')",
fourthCard:
"url('https://res.cloudinary.com/dmurcewte/image/upload/v1682944788/Card4.webp')",
fifthCard:
"url('https://res.cloudinary.com/dmurcewte/image/upload/c_scale,w_336/v1682944738/Card1.jpg')",
sixCard:
"url('https://res.cloudinary.com/dmurcewte/image/upload/c_scale,w_336/v1682944753/Card2.webp')",
sevenCard:
"url('https://res.cloudinary.com/dmurcewte/image/upload/c_scale,w_336/v1682944768/Card3.webp')",
eightCard:
"url('https://res.cloudinary.com/dmurcewte/image/upload/c_scale,w_336/v1682944788/Card4.webp')",
},
screens: {
sm: "300px",
md: "720px",
lg: "1040px",
},
fontFamily: {
nunito: ["nunito", "sans-serif"],
Sans: ["Source Sans Pro", "sans-serif"],
merri: ["Merriweather", "serif"],
play: ["Playfair Display", "serif"],
mon: ["Montserrat", "sans-serif"],
roboto: ["Roboto Condensed", "sans-serif"],
},
},
},
plugins: [],
};