-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtailwind.config.js
44 lines (40 loc) · 1020 Bytes
/
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
/** @type {import('tailwindcss').Config} */
export default {
content: ["./index.html", "./src/**/*.{js,ts,jsx,tsx}"],
theme: {
extend: {
backgroundImage: {
"hero-3-vectors": "url('/src/assets/images/HomePage/3-vectors.svg')",
},
},
colors: {
transparent: "transparent",
current: "currentColor",
black: "#000",
white: "#fff",
violet: "#583fbc",
"violet-dark": "#181945",
"violet-hover": "#a78bfa",
primary: "#9fa0b2",
"sky-light": "#dbeffa",
"violet-light": "#dbdefa",
"fuchsia-light": "#f6dbfa",
"orange-light": "#fadbe2",
},
fontFamily: {
"bricolage-grotesque": ["Bricolage Grotesque", "sans-serif"],
"open-sans": ["Open Sans", "sans-serif"],
},
screens: {
mobile: "320px",
mobileM: "475px",
mobileL: "580px",
mobileXL: "640px",
tablet: "768px",
tabletL: "962px",
laptop: "1024px",
laptopM: "1280px",
},
},
plugins: [],
};