-
Notifications
You must be signed in to change notification settings - Fork 1
/
tailwind.config.mjs
48 lines (48 loc) · 1.18 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
46
47
48
/** @type {import('tailwindcss').Config} */
export default {
content: ["./src/**/*.{astro,html,js,jsx,md,mdx,svelte,ts,tsx,vue}"],
theme: {
extend: {
colors: {
primary: {
50: "#6366f166",
100: "#6366f1",
200: "#8083f2",
300: "#686bed",
400: "#6366f1",
500: "#5053d9",
600: "#4144ba",
},
border: "#282e3d",
text: "#fff",
textAlt: "rgb(107 114 128)",
"bg-base": "#1e2432",
"bg-alt": "#282d43",
"bg-dark": "#171c24",
"bg-black": "#0f1326",
},
fontFamily: {
heading: "'Jost Variable', sans-serif",
body: "'Inter Tight Variable', sans-serif",
},
gridTemplateColumns: {
responsive: "repeat(auto-fill, minmax(15rem, 1fr))",
},
keyframes: {
fadeIn: {
"0%": { opacity: 0 },
"100%": { opacity: 1 },
},
fadeOut: {
"0%": { opacity: 1 },
"100%": { opacity: 0 },
},
},
animation: {
fadeIn: "fadeIn 0.2s ease-in-out forwards",
fadeOut: "fadeOut 0.2s ease-in-out forwards",
},
},
},
plugins: [],
};