forked from Akshay6405/tedx-comingsoon-page
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtailwind.config.js
More file actions
33 lines (32 loc) · 871 Bytes
/
tailwind.config.js
File metadata and controls
33 lines (32 loc) · 871 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
30
31
32
/** @type {import('tailwindcss').Config} */
module.exports = {
content: [
"./app/**/*.{js,ts,jsx,tsx,mdx}",
"./pages/**/*.{js,ts,jsx,tsx,mdx}",
"./components/**/*.{js,ts,jsx,tsx,mdx}",
"./src/**/*.{js,ts,jsx,tsx,mdx}",
],
theme: {
extend: {
fontFamily: {
// These link to the variables we will set up in layout.tsx later
montserrat: ["var(--font-montserrat)"],
orbitron: ["var(--font-orbitron)"],
"rubik-glitch": ["var(--font-teko)"],
},
backgroundImage: {
"gradient-radial": "radial-gradient(var(--tw-gradient-stops))",
},
animation: {
pulse: "pulse 6s cubic-bezier(0.4, 0, 0.6, 1) infinite",
},
keyframes: {
pulse: {
"0%, 100%": { opacity: "1" },
"50%": { opacity: "0.5" },
},
},
},
},
plugins: [],
};