This folder contains the Slidev-compatible presentation for the Anant Limitless inference engine.
slides.md- The main Slidev presentation filelogo.png- The Anant logo (use withfilter: inverton light backgrounds)
- Install Slidev globally:
npm i -g @slidev/cli- Navigate to this folder and run:
slidev slides.md- Or create a new Slidev project and copy these files:
npm init slidev
cp slides.md ./slides.md
cp logo.png ./public/slides/logo.png| Token | Value | Description |
|---|---|---|
| Paper (Background) | #FAF7F5 |
Warm, blush-tinted off-white |
| Ink (Text) | #2A2220 |
Deep warm brown-black |
| Primary (Terracotta) | #C65D52 |
Earthy, strong, high-contrast |
| Secondary (Clay) | #E6B89C |
Muted Clay/Saffron for highlights |
| Accent Tech (Indigo) | #2E3A59 |
Deep Indigo for code blocks |
| Success (Banyan Green) | #4A6C4F |
Muted green for success states |
| Error (Red Clay) | #B33E3E |
Deep red for errors |
- Sans: Inter, Tiro Devanagari Hindi
- Serif: Tiro Devanagari Hindi (for headings/logo)
- Mono: JetBrains Mono (for code)
Edit slides.md to customize content. The presentation uses inline Tailwind CSS with the brand colors hardcoded.
For global theme changes, add a custom CSS file:
/* style.css */
:root {
--slidev-theme-primary: #C65D52;
--slidev-theme-background: #FAF7F5;
}Then import in your slides:
---
css: style.css
---