16 lines
358 B
TypeScript
16 lines
358 B
TypeScript
|
|
// Rust Vibe Theme for Slidev
|
||
|
|
// Extends the default Slidev theme with Rust-inspired styling
|
||
|
|
import '@slidev/theme-default/styles/index.css'
|
||
|
|
import './styles/index.css'
|
||
|
|
|
||
|
|
export default {
|
||
|
|
// Theme configuration
|
||
|
|
colorSchema: 'dark',
|
||
|
|
highlighter: 'shiki',
|
||
|
|
|
||
|
|
// Theme metadata
|
||
|
|
name: 'rust-vibe',
|
||
|
|
version: '1.0.0',
|
||
|
|
author: 'Jesús Pérez Lorenzo',
|
||
|
|
}
|