VibeCoderzVibeCoderz
Telegram
All Prompts
Gradient V Logo SVG Icon preview
svgiconlogobranding

Gradient V Logo SVG Icon

SVG иконка логотипа с градиентом от коралла до золота, вырезом и эффектом свечения. Идеальна для брендинга, иконок приложений.

Prompt

<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100" width="512" height="512">
  <defs>
    <!-- Coral to Gold Gradient (Left to Right) -->
    <linearGradient id="vyrality-main" x1="0%" y1="0%" x2="100%" y2="50%">
      <stop offset="0%" stop-color="#F97316"/>
      <stop offset="60%" stop-color="#FB923C"/>
      <stop offset="100%" stop-color="#EAB308"/>
    </linearGradient>
    
    <!-- Ignition Point Radial Glow -->
    <radialGradient id="ignition" cx="50%" cy="50%" r="50%">
      <stop offset="0%" stop-color="#FDE047"/>
      <stop offset="30%" stop-color="#FBBF24"/>
      <stop offset="70%" stop-color="#F97316" stop-opacity="0.5"/>
      <stop offset="100%" stop-color="#F97316" stop-opacity="0"/>
    </radialGradient>
    
    <!-- Glow Filter -->
    <filter id="glow" x="-100%" y="-100%" width="300%" height="300%">
      <feGaussianBlur stdDeviation="1.5" result="blur"/>
      <feMerge>
        <feMergeNode in="blur"/>
        <feMergeNode in="SourceGraphic"/>
      </feMerge>
    </filter>
  </defs>
  
  <!-- V Shape - Stroke Based with Rounded Caps -->
  <path 
    d="M 18 28 
       C 18 26, 20 24, 22 26
       L 50 62
       L 78 26
       C 80 24, 82 26, 82 28
       L 50 75
       C 50 76, 50 76, 50 75
       L 18 28 Z"
    fill="url(#vyrality-main)"
    stroke="none"
  />
  
  <!-- Inner Cutout Triangle -->
  <path 
    d="M 32 35 
       L 50 58 
       L 68 35 
       C 60 45, 40 45, 32 35 Z"
    fill="#000000"
  />
  
  <!-- Ignition Glow (larger, softer) -->
  <ellipse 
    cx="50" 
    cy="52" 
    rx="8" 
    ry="6" 
    fill="url(#ignition)"
    filter="url(#glow)"
    opacity="0.9"
  />
  
  <!-- Ignition Core (bright center) -->
  <ellipse 
    cx="50" 
    cy="52" 
    rx="2.5" 
    ry="2" 
    fill="#FEF3C7"
  />
</svg>
All Prompts