@dammgo/vena-visual-engine 0.3.0-alpha.3 → 0.3.0-alpha.5
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/protocols/vena.js +5 -4
- package/package.json +1 -1
package/dist/protocols/vena.js
CHANGED
|
@@ -6,11 +6,12 @@ export const venaShortcuts = [
|
|
|
6
6
|
['vena-glass-armor', 'glass-armor'],
|
|
7
7
|
['vena-text-glow', 'text-glow'],
|
|
8
8
|
// --- PROTOCOLOS DE CAPTURA (Ingeniería de Precisión) ---
|
|
9
|
-
// El input cinemático de VENA: Fondo abisal
|
|
10
|
-
|
|
9
|
+
// El input cinemático de VENA: Fondo abisal real (#030712) y brackets de cobalto al enfocar.
|
|
10
|
+
// Usamos ! para garantizar que no sea sobrescrito por resets de navegador o estilos globales.
|
|
11
|
+
['vena-input', '!bg-void !border !border-armor/50 px-4 py-3 font-mono text-sm !text-white placeholder:text-armor/50 outline-none transition-all focus:!border-cobalt/50 relative before:content-[""] before:absolute before:-top-1 before:-left-1 before:w-2 before:h-2 before:border-t-1 before:border-l-1 before:border-cobalt before:opacity-0 focus:before:opacity-100 after:content-[""] after:absolute after:-bottom-1 after:-right-1 after:w-2 after:h-2 after:border-b-1 after:border-r-1 after:border-cobalt after:opacity-0 focus:after:opacity-100'],
|
|
11
12
|
// --- ACCIONES SOBERANAS (Contraste Máximo) ---
|
|
12
|
-
// El botón de vanguardia: Cobalto con texto abisal
|
|
13
|
-
['vena-btn-primary', 'bg-cobalt text-void font-black uppercase tracking-[0.2em] text-[10px] px-8 py-4 hover
|
|
13
|
+
// El botón de vanguardia: Cobalto intenso con texto abisal oscuro.
|
|
14
|
+
['vena-btn-primary', '!bg-cobalt !text-void font-black uppercase tracking-[0.2em] text-[10px] px-8 py-4 hover:!bg-white hover:!text-void transition-all duration-500 shadow-[0_0_15px_rgba(0,212,255,0.4)] disabled:opacity-50 disabled:cursor-not-allowed'],
|
|
14
15
|
];
|
|
15
16
|
export const venaRules = [
|
|
16
17
|
['animate-scan', { animation: 'scan 2s linear infinite' }],
|
package/package.json
CHANGED