slidev-theme-vibe
v1.0.1
Published
A dark-mode Slidev theme with glassmorphism and neon accents
Downloads
263
Maintainers
Readme
slidev-theme-vibe
A premium dark-mode theme for Slidev featuring glassmorphism, neon accents, and sophisticated aesthetics. Inspired by SpaceX cockpit UIs, high-end EV dashboards, and minimalist cyberpunk design.
Install
Add the following frontmatter to your slides.md. Start Slidev then it will prompt you to install the theme automatically.
Learn more about how to use a theme.
Layouts
This theme provides the following layouts:
cover
A full-screen title slide with an animated particle background, gradient heading (white to cyan), and fade-in-up entrance animations. Ideal for opening slides.
intro
A full-screen introduction layout with animated background. Similar to cover but without uppercase text transformation — better suited for introductory content.
default
The standard content layout with clean heading hierarchy and comfortable padding. Use this for regular text-heavy slides.
center
Centers all content both vertically and horizontally. Good for single statements, key takeaways, or focused messaging.
section
A section divider layout with a left gradient accent bar and slide-in animations. Use it to mark major topic transitions.

two-cols
A two-column grid layout with a decorative gradient divider line between the columns. Use the default slot for the left column and the right named slot for the right column.

---
layout: two-cols
---
# Left column
Content here
::right::
# Right column
Content hereimage-right
Content on the left with an image on the right. The image container has a rounded border, glow effect, and drop shadow. Pass the image URL via the image frontmatter prop or use the image named slot.

---
layout: image-right
image: /path/to/image.png
---
# Your content hereimage-left
Mirror of image-right — image on the left, content on the right. Accepts the same image prop and image named slot.
---
layout: image-left
image: /path/to/image.png
---
# Your content herequote
A quote layout with a glass-morphism card, frosted glass effect, and a large decorative quotation mark. The last paragraph is automatically styled as the author attribution.

---
layout: quote
---
This is the quote text.
Author NameComponents
This theme provides the following components:
VibeBackground
An animated canvas background featuring floating particles and a scrolling grid pattern. Used internally by the cover and intro layouts. No props required.
GlassCard
A reusable glass-morphism card container with a semi-transparent background, backdrop blur, and a subtle cyan border.
| Prop | Type | Default | Description |
|------|------|---------|-------------|
| glow | boolean | false | Applies a permanent cyan glow shadow |
| hover | boolean | true | Enables border brightening and glow on hover |
<GlassCard>
Default card with hover effect
</GlassCard>
<GlassCard glow>
Card with permanent glow
</GlassCard>
<GlassCard :hover="false">
Static card without hover effect
</GlassCard>Contributing
npm installnpm run devto start theme preview ofexample.md- Edit the
example.mdand style to see the changes npm run exportto generate the preview PDFnpm run screenshotto generate the preview PNG
