forked from Hacktoberfest-GYE/hacktoberfestgye-landing
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtailwind.config.mjs
37 lines (36 loc) · 904 Bytes
/
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
/** @type {import('tailwindcss').Config} */
import defaultTheme from "tailwindcss/defaultTheme";
export default {
content: ["./src/**/*.{astro,html,js,jsx,md,mdx,svelte,ts,tsx,vue}"],
theme: {
extend: {
fontFamily: {
sans: ["Inter Variable", ...defaultTheme.fontFamily.sans],
},
colors: {
body: "#f7fafc",
primary: "#d1ff19",
secondary: "#15171a",
"secondary-blue": "#1f2937",
muted: "#94a3b8",
},
backgroundImage: {
"radial-gradient":
"radial-gradient(circle 500px at 50% 200px, rgba(209, 255, 25, 0.18), transparent)",
},
typography: {
DEFAULT: {
css: {
maxWidth: "100ch",
},
},
},
container: {
screens: {
"2xl": "1300px",
},
},
},
},
plugins: [require("@tailwindcss/typography")],
};