-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtailwind.config.cjs
36 lines (36 loc) · 1.02 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
/** @type {import('tailwindcss').Config} */
module.exports = {
content: ["./src/**/*.{astro,html,js,jsx,md,mdx,svelte,ts,tsx,vue}"],
theme: {
fontFamily: {
"display-primary": ["TiltNeon", "sans-serif"],
"body-primary": ["TiltNeon", "sans-serif"],
"asatic-r": ["NM_R", "sans-serif"],
alesh: ["IBMMono", "monospace"],
"birch-b": ["Amatic-b", "cursive"],
piros: ["acumin-pro", "sans-serif"],
},
extend: {
backgroundImage: {
"work-title":
"linear-gradient(to right, white 0%, white 60px, black 60px, black 100%)",
"work-title-sm":
"linear-gradient(to bottom, white 0%, white 25px, black 25px, black 100%)",
},
spacing: {
xxxs: ".1rem",
xxs: ".25rem",
xs: ".5rem",
sm: "1rem",
md: "1.5rem",
lg: "2rem",
xl: "3rem",
"1.5xl": "4.5rem",
"2xl": "6rem",
"2.5xl": "7.5rem",
"3xl": "9rem",
},
},
},
plugins: [require("@tailwindcss/typography")],
};