-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtailwind.config.mjs
45 lines (44 loc) · 1.05 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
/** @type {import('tailwindcss').Config} */
export default {
content: ["./src/**/*.{astro,html,js,jsx,md,mdx,svelte,ts,tsx,vue}"],
theme: {
colors: {
black: "#000000",
white: "#FFFFFF",
almostwhite: "#FEFEFE",
dimwhite: "#F3F2F2",
dimmerwhite: "#D9D9D9",
lightgray: "#B8B8B8",
gray: "#5F5F5F",
gray2: "#171717",
red: "#E0383E",
yellow: "#F0CB78",
blue: "#083D87",
orange: "#E79F5A",
},
extend: {
// screens: {
// md: "790px",
// },
backgroundImage: {
"hero-gradient": "url('/img/Frame 1.svg')",
},
fontSize: {
header: "2rem",
body: "0.875rem",
},
fontFamily: {
exo: ['"Exo 2 Variable"'],
reddit: ['"Reddit Sans Variable"'],
jost: ['"Jost Variable"'],
roboto: ["Roboto"],
},
gridTemplateRows: {
hero: "repeat(5, minmax(80px, auto));",
meet: "repeat(9, minmax(auto));",
meetMd: "repeat(9, minmax(5px, auto));",
},
},
},
plugins: [],
};