-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtailwind.config.mjs
More file actions
29 lines (28 loc) · 859 Bytes
/
tailwind.config.mjs
File metadata and controls
29 lines (28 loc) · 859 Bytes
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
const defaultTheme = require("tailwindcss/defaultTheme");
/** @type {import('tailwindcss').Config} */
export default {
content: ["./src/**/*.{astro,html,js,jsx,md,mdx,svelte,ts,tsx,vue}"],
theme: {
extend: {
fontFamily: {
sans: ["InterVariable", "Inter", ...defaultTheme.fontFamily.sans],
callout: ["Rock Salt", "Inter"],
},
animation: {
"spin-slow": "rotate ease-in-out 45s infinite",
},
backgroundImage: {
"custom-gradient":
"linear-gradient(140deg, rgba(10,10,10,1) 0%, rgba(49,27,107,1) 100%)",
},
dropShadow: {
"fancy-text": ["0 5px 10px rgba(255, 255, 255, 0.10)"],
"fancy-icon-shadow": [
"-5px 0px 15px rgba(255, 255, 255, 0.10)",
"5px 0px 15px rgba(255, 255, 255, 0.10)",
],
},
},
},
plugins: [],
};