-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathtailwind.config.js
50 lines (48 loc) · 1.38 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
41
42
43
44
45
46
47
48
49
/** @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}",
// Or if using `src` directory:
"./src/**/*.{js,ts,jsx,tsx,mdx}",
],
theme: {
extend: {
colors: {
'primary-bg': '#0A1929',
'secondary-bg': '#172554',
'cards-bg': '#1E293B',
'primary-accent': '#0077BE',
'secondary-accent': '#8B5CF6',
'highlights': '#2DD4BF',
'alerts': '#F56565',
'white': '#FFFFFF',
'light-gray': '#CBD5E1',
},
boxShadow: {
'glow': '0 0 15px rgba(59, 130, 246, 0.3)',
'glow-intense': '0 0 25px rgba(59, 130, 246, 0.5)',
'glow-sm': '0 0 10px rgba(59, 130, 246, 0.2)',
},
backgroundImage: {
'grid-pattern': 'linear-gradient(to right, #172554 1px, transparent 1px), linear-gradient(to bottom, #172554 1px, transparent 1px)',
},
animation: {
'fadeIn': 'fadeIn 0.3s ease-in-out',
'float': 'float 3s ease-in-out infinite',
},
keyframes: {
fadeIn: {
'0%': { opacity: '0' },
'100%': { opacity: '1' },
},
float: {
'0%, 100%': { transform: 'translateY(0)' },
'50%': { transform: 'translateY(-10px)' },
},
},
},
},
plugins: [],
}