@dammgo/vena-visual-engine 0.3.0-alpha.2 → 0.3.0-alpha.3

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.
@@ -4,6 +4,9 @@
4
4
  */
5
5
  export declare const coreTheme: {
6
6
  colors: {
7
+ void: string;
8
+ cobalt: string;
9
+ armor: string;
7
10
  bos: {
8
11
  slate: string;
9
12
  pink: string;
@@ -5,6 +5,11 @@ import { presetUno, presetWebFonts } from 'unocss';
5
5
  */
6
6
  export const coreTheme = {
7
7
  colors: {
8
+ // --- SOVEREIGN TOKENS (Direct Access) ---
9
+ void: '#030712', // Negro abisal (Sovereign Base)
10
+ cobalt: '#00d4ff', // VENA Intelligence (Cyan Electric)
11
+ armor: '#1e293b', // Gris blindaje (Border/Infrastructure)
12
+ // --- LEGACY NAMESPACE (BOS) ---
8
13
  bos: {
9
14
  slate: '#020617',
10
15
  pink: '#E91E63',
@@ -44,6 +49,9 @@ export const coreShortcuts = [
44
49
  ['precision-bracket', '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-bos-pink 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-bos-pink'],
45
50
  ['infra-grid', 'relative before:content-[""] before:absolute before:inset-0 before:opacity-0 before:pointer-events-none before:[background-image:radial-gradient(#f8fafc_1px,transparent_1px)] before:[background-size:10px_10px] focus-within:before:opacity-10 before:transition-opacity'],
46
51
  ['synapse-line', 'h-1 bg-white/5 relative overflow-hidden after:content-[""] after:absolute after:inset-0 after:bg-gradient-to-r after:from-transparent after:via-bos-pink after:to-transparent after:animate-pulse'],
52
+ // --- CINEMATIC SHORCUTS ---
53
+ ['glass-armor', 'backdrop-blur-md bg-void/10 border border-armor/20'],
54
+ ['text-glow', 'drop-shadow-[0_0_10px_currentColor]'],
47
55
  ];
48
56
  /**
49
57
  * Reality Category Preflights (The Elastic Root)
@@ -1,7 +1,16 @@
1
1
  export const venaShortcuts = [
2
2
  // --- IDENTIDAD DE INTELIGENCIA (ATÓMICA) ---
3
- ['vena-monitor', 'bg-black border-[0.5px] border-bos-cobalt/20 font-mono text-[11px] text-bos-cobalt/80'],
4
- ['vena-pulse-line', 'h-[1px] bg-bos-cobalt/10 relative overflow-hidden after:content-[""] after:absolute after:inset-0 after:bg-bos-cobalt after:animate-scan'],
3
+ ['vena-monitor', 'bg-black border-[0.5px] border-cobalt/20 font-mono text-[11px] text-cobalt/80'],
4
+ ['vena-pulse-line', 'h-[1px] bg-cobalt/10 relative overflow-hidden after:content-[""] after:absolute after:inset-0 after:bg-cobalt after:animate-scan'],
5
+ // --- ESTRUCTURAS CINEMÁTICAS (Soberanía Visual) ---
6
+ ['vena-glass-armor', 'glass-armor'],
7
+ ['vena-text-glow', 'text-glow'],
8
+ // --- PROTOCOLOS DE CAPTURA (Ingeniería de Precisión) ---
9
+ // El input cinemático de VENA: Fondo abisal, texto blanco y brackets de cobalto al enfocar.
10
+ ['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
+ // --- ACCIONES SOBERANAS (Contraste Máximo) ---
12
+ // El botón de vanguardia: Cobalto con texto abisal. Invierte en hover.
13
+ ['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.3)] shadow-glow disabled:opacity-50 disabled:cursor-not-allowed'],
5
14
  ];
6
15
  export const venaRules = [
7
16
  ['animate-scan', { animation: 'scan 2s linear infinite' }],
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@dammgo/vena-visual-engine",
3
- "version": "0.3.0-alpha.2",
3
+ "version": "0.3.0-alpha.3",
4
4
  "description": "The Sovereign Visual Engine. Reality-Aware Infrastructure for the erpbsg ecosystem.",
5
5
  "type": "module",
6
6
  "main": "./dist/index.js",