-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathtailwind.configff.ts
51 lines (49 loc) · 1.41 KB
/
tailwind.configff.ts
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
50
51
import type { Config } from 'tailwindcss';
const config: Config = {
content: [
'./pages/**/*.{js,ts,jsx,tsx,mdx}',
'./components/**/*.{js,ts,jsx,tsx,mdx}',
'./app/**/*.{js,ts,jsx,tsx,mdx}',
'./public/assets/**/*.{js,ts,jsx,tsx}',
],
theme: {
extend: {
colors: {
// 'primary-bg': '#0A1929',
'primary-bg': '#000000',
'secondary-bg': '#172554',
'cards-bg': '#1E293B',
'primary-accent': '#3B82F6',
'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: [],
}
export default config