forked from kenny-io/moqa
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtailwind.config.js
40 lines (40 loc) · 1.02 KB
/
tailwind.config.js
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
/** @type {import('tailwindcss').Config} */
module.exports = {
content: [
'./pages/**/*.{js,ts,jsx,tsx,mdx}',
'./components/**/*.{js,ts,jsx,tsx,mdx}',
'./app/**/*.{js,ts,jsx,tsx,mdx}',
],
theme: {
extend: {
fontFamily: {
heading: ['var(--font-exo2)', 'sans-serif'],
},
colors: {
background: "#030711",
foreground: "#ffffff",
primary: {
DEFAULT: "#7C3AED", // vibrant purple
foreground: "#ffffff",
},
secondary: {
DEFAULT: "#1E293B",
foreground: "#ffffff",
},
muted: {
DEFAULT: "#1E293B",
foreground: "#94A3B8",
},
card: {
DEFAULT: "rgba(17, 24, 39, 0.7)",
foreground: "#ffffff",
},
},
backgroundImage: {
'gradient-radial': 'radial-gradient(var(--tw-gradient-stops))',
'hero-glow': 'radial-gradient(circle at center, rgba(124, 58, 237, 0.15) 0%, rgba(17, 24, 39, 0) 70%)',
},
},
},
plugins: [],
}