-
Notifications
You must be signed in to change notification settings - Fork 0
/
tailwind.config.js
46 lines (46 loc) · 1.28 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
/** @type {import('tailwindcss').Config} */
module.exports = {
content: ["./src/**/*.tsx"],
theme: {
extend: {
screens: {
mbl: { max: "630px" }, // mbl == mobile
// => @media (max-width: 630px) { ... }
},
backgroundImage: {
bgHeroSection: "url(../../src/assets/bg-hero-section.png)",
vectorHowWillLearn: "url(../../src/assets/svg/vectorHowWillLearn.svg)",
vectorOurSolutions: "url(../../src/assets/svg/vectorOurSolutions.svg)",
vectorIntellionExperience:
"url(../../src/assets/svg/vectorIntellionExperience.svg)",
vectorTryForFree: "url(../../src/assets/svg/vectorTryForFree.svg)",
},
fontFamily: {
inter: "Inter, sans-serif",
},
colors: {
product: {
lightPurple: "#3D3A6C",
purple: "#381571",
mediumPurple: "#242145",
darkPurple: "#1B1834",
lightPink: "#F05695",
pink: "#e7005e",
darkPink: "#76174E",
},
pink: {
100: "#faccdf",
200: "#f599bf",
300: "#f1669e",
400: "#ec337e",
500: "#e7005e",
600: "#b9004b",
700: "#8b0038",
800: "#5c0026",
900: "#2e0013",
},
},
},
},
plugins: [],
};