-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtailwind.config.cjs
54 lines (50 loc) · 1.06 KB
/
tailwind.config.cjs
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
54
/** @type {import('tailwindcss').Config} */
module.exports = {
content: ["./src/**/*.{astro,html,js,jsx,md,mdx,svelte,ts,tsx,vue}"],
safelist: [
// Backdrop
"overflow-y-hidden",
"fixed",
"w-screen",
"h-screen",
"bg-neutral-900",
"opacity-50",
"z-20",
"transition",
"top-0",
"left-0",
],
theme: {
extend: {
container: {
center: true,
padding: {
DEFAULT: "0.75rem",
sm: "2rem",
lg: "2rem",
xl: "3rem",
"2xl": "6rem",
},
},
colors: {
primary: "#86add3",
secondary: "#255a8c",
dark: "#0a082b",
light: "#F9F9F9",
// Text colors
header: "#000",
"light-header": "#ffffff",
text: "#4d5154",
"light-text": "#eee",
},
screens: {
"2xl": "1475px", // 1475px + 2*6rem = 1283px container (so like in Figma)
},
fontFamily: {
header: ["manrope", "sans-serif"],
text: ["manrope", "sans-serif"],
},
},
},
plugins: [],
};