Word Cloud

Neon Developer Stack

Modern development tools with vibrant neon colors

Output
Neon Developer Stack
Python
import matplotlib.pyplot as plt
from wordcloud import WordCloud

text = """React Next.js Remix Astro Svelte Vue Nuxt Angular Solid
Tailwind CSS Styled Components Framer Motion GSAP Three.js WebGL
TypeScript Rust Go Zig Bun Deno Node Express Fastify Hono Elysia
Prisma Drizzle Supabase PlanetScale Neon Vercel Netlify Railway
GraphQL tRPC REST WebSocket Server Components RSC Streaming SSR SSG ISR
Turborepo Nx Vite Webpack esbuild SWC Rome Biome ESLint Prettier
Zod Yup React Query TanStack SWR Zustand Jotai Redux Recoil"""

def electric_blue(word, font_size, position, orientation, random_state=None, **kwargs):
    intensity = min(font_size / 100, 1.0)
    if intensity > 0.7:
        return '#00ffff'
    elif intensity > 0.4:
        return '#27D3F5'
    else:
        return '#0891b2'

wordcloud = WordCloud(
    width=1200, height=600,
    background_color='#0a0a0f',
    color_func=electric_blue,
    max_words=90,
    max_font_size=140,
    min_font_size=10,
    relative_scaling=0.45,
    prefer_horizontal=0.75
).generate(text)

fig, ax = plt.subplots(figsize=(12, 6), facecolor='#0a0a0f')
ax.imshow(wordcloud, interpolation='bilinear')
ax.axis('off')
plt.tight_layout(pad=0)
plt.show()
Library

Matplotlib

Category

Text Visualization

Did this help you?

Support PyLucid to keep it free & growing

Support