mirror of
http://88.130.71.182:3000/BlitTech/contexta_fe.git
synced 2026-06-12 23:23:22 +00:00
49 lines
1.3 KiB
JavaScript
49 lines
1.3 KiB
JavaScript
/** @type {import('tailwindcss').Config} */
|
|
export default {
|
|
content: [
|
|
"./index.html",
|
|
"./src/**/*.{js,ts,jsx,tsx}",
|
|
],
|
|
theme: {
|
|
extend: {
|
|
colors: {
|
|
primary: {
|
|
400: '#33f3ff',
|
|
500: '#00f0ff',
|
|
600: '#00b8cc',
|
|
700: '#009fb3',
|
|
},
|
|
secondary: {
|
|
500: '#ff0080',
|
|
600: '#cc0066',
|
|
},
|
|
},
|
|
animation: {
|
|
'float': 'float 3s ease-in-out infinite',
|
|
'float-slow': 'floatSlow 6s ease-in-out infinite',
|
|
'glow': 'glow 2s ease-in-out infinite',
|
|
'pulse-slow': 'pulse 3s ease-in-out infinite',
|
|
},
|
|
keyframes: {
|
|
float: {
|
|
'0%, 100%': { transform: 'translateY(0px)' },
|
|
'50%': { transform: 'translateY(-15px)' },
|
|
},
|
|
floatSlow: {
|
|
'0%, 100%': { transform: 'translateY(0px) rotate(0deg)' },
|
|
'50%': { transform: 'translateY(-10px) rotate(5deg)' },
|
|
},
|
|
glow: {
|
|
'0%, 100%': {
|
|
boxShadow: '0 0 20px rgba(0, 240, 255, 0.5), 0 0 40px rgba(0, 240, 255, 0.3)',
|
|
},
|
|
'50%': {
|
|
boxShadow: '0 0 30px rgba(0, 240, 255, 0.8), 0 0 60px rgba(0, 240, 255, 0.5)',
|
|
},
|
|
},
|
|
},
|
|
},
|
|
},
|
|
plugins: [],
|
|
}
|