-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtailwind.config.mjs
53 lines (53 loc) · 1.3 KB
/
tailwind.config.mjs
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
53
/** @type {import('tailwindcss').Config} */
export default {
content: ["./src/**/*.{html,ts,js}"],
darkMode: ['class'],
prefix: '',
separator: ':',
theme: {
extend: {
fontFamily: {
manrope: ["Manrope", "sans-serif"],
montserrat: ["Montserrat", "sans-serif"],
},
backgroundImage: {
"ml-text-white": "var(--ml-text-white)",
"ml-text-red": "var(--ml-text-red)",
"ml-bg-purple": "var(--ml-bg-img)",
},
colors: {
transparents: {
purple: "#66008057",
},
dark: "#1b1b1b",
light: "#f5f5f5",
primary: "#b565fd", // 240,86,199
primaryDark: "#58E6D9", // 80,230,217
primaryBlueDark: "#050816",
secondary: "#aaa6c3",
tertiary: "#151030",
},
boxShadow: {
card: "var(--shadow-card)",
skiil: "var(--shadow-skills)",
liquid: "var(--shadow-liquid)",
"contact-box": "var(--shadow-contact)",
},
screens: {
xs: "450px",
mxs: "576px",
tablet: "780px",
mlg: "992px",
},
maxWidth: {
maxCalc: "calc(100dvh - 305px)",
},
},
},
plugins: [],
future: {
hoverOnlyWhenSupported: true,
removeDeprecatedGapUtilities: true,
standardFontWeights: true,
},
};