-
-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathtailwind.config.mjs
More file actions
51 lines (51 loc) · 1.32 KB
/
tailwind.config.mjs
File metadata and controls
51 lines (51 loc) · 1.32 KB
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
/** @type {import('tailwindcss').Config} */
export default {
content: ["./src/**/*.{astro,html,js,jsx,md,mdx,svelte,ts,tsx,vue}"],
theme: {
fontFamily: {
hatch: ['"Hatch"', "serif"],
zeitung: ["zeitung-mono", "sans-serif"],
macho: ['"Macho"', "sans-serif"],
hydrophilia: ["hydrophilia-iced", "sans-serif"],
// Add more custom font families as needed
},
extend: {
typography: {
lg: {
css: [
{
color: "inherit",
"h1, h2": {
color: "#FF38EB",
},
"h3, h4, h5, h6": {
color: "inherit",
},
strong: {
color: "inherit",
},
},
],
},
},
colors: {
"lemon-dark": "#ffbf00",
"lemon-dark-transparent": "#ffbf0080",
lemon: "#f6d880",
"teal-dark": "#5a99dc",
teal: "#5be2ef",
"teal-light": "#c8f4f4",
"fujo-blue": "#4360F7",
"fujo-pink": "#FF38EB",
"fujo-purple": "#4D2E91",
"fujo-green": "#A7FF90",
"kickstarter-green": "#05ce78",
"nyancat-blue": "#013466",
},
dropShadow: {
purple: "0px 1px 1.5px #5514e0e5",
},
},
},
plugins: [require("@tailwindcss/typography")],
};