feat: update cube component color scheme from cyan to blue
- Changed cube gradient colors from cyan to blue for better visual consistency - Updated glow effects and shadows to use blue (rgba(59, 130, 246)) instead of cyan - Modified background aura gradients in StackSection for enhanced depth perception - Replaced HomeFeaturesDark component with new HomeSlider in HomePage layout - Added isolate property to StackSection to prevent gradient bleeding - Enhanced background layer in StackSection with additional
This commit is contained in:
32
tailwind.config.js
Normal file
32
tailwind.config.js
Normal file
@@ -0,0 +1,32 @@
|
||||
/** @type {import('tailwindcss').Config} */
|
||||
export default {
|
||||
content: [
|
||||
"./index.html",
|
||||
"./src/**/*.{js,ts,jsx,tsx}",
|
||||
],
|
||||
theme: {
|
||||
extend: {
|
||||
keyframes: {
|
||||
'glitch-1': {
|
||||
'0%': { transform: 'none' },
|
||||
'25%': { transform: 'skew(-0.5deg, -0.5deg)' },
|
||||
'50%': { transform: 'none' },
|
||||
'75%': { transform: 'skew(0.5deg, 0.5deg)' },
|
||||
'100%': { transform: 'none' },
|
||||
},
|
||||
'glitch-2': {
|
||||
'0%': { transform: 'none' },
|
||||
'25%': { transform: 'skew(-0.5deg, -0.5deg)' },
|
||||
'50%': { transform: 'none' },
|
||||
'75%': { transform: 'skew(0.5deg, 0.5deg)' },
|
||||
'100%': { transform: 'none' },
|
||||
},
|
||||
},
|
||||
animation: {
|
||||
'glitch-1': 'glitch-1 1s infinite',
|
||||
'glitch-2': 'glitch-2 1s infinite',
|
||||
},
|
||||
},
|
||||
},
|
||||
plugins: [],
|
||||
}
|
||||
Reference in New Issue
Block a user