An open API service indexing awesome lists of open source software.

https://github.com/sebasg22/slidev-prft-theme


https://github.com/sebasg22/slidev-prft-theme

Last synced: 3 months ago
JSON representation

Awesome Lists containing this project

README

          

# @slidev/theme-prft-theme

A Perficient like theme for [Slidev](https://github.com/slidevjs/slidev).

This theme match the perficient look and feel.

Inspired by the [Apple Theme](https://github.com/slidevjs/themes/tree/main/packages/theme-apple-basic) for Slidev.

## Install
Add the dependency into your package.json from github.

"slidev-theme-prft-theme": "github:SebasG22/slidev-prft-theme#6f4b16e8c0e659632dd5c1c46d64c0cc63bc727a"

Then use it on your slides:

---

theme: prft-theme
---

Learn more about [how to use a theme](https://sli.dev/themes/use).

## Layouts

This theme provides the following layouts:

### Title
Usage:
```

---
layout: intro
header: 'Presentation Title'
text: 'Presentation Subtitle'
---

Author and Date.

```
- Light:
intro-light

- Dark:
intro-dark

---

### Title & Photo right
Usage:
```
---
layout: image-right
image: 'image-url'
---

# Slide Title
## Slide Subtitle

* Slide bullet text
```

- Light:
image-right-light

- Dark:
image-right-dark

---

### Bullets
Usage:
```
---
layout: bullets
---

* Slide bullet text

```

- Light:

bullets-light

- Dark:

bullets-dark

---

### Section
Usage:
```
---
layout: section
---

# Section Title

```

- Light:
section-light

- Dark:
section-dark

---

### Statement
Usage:
```
---
layout: statement
---

# Statement

```
- Light:
statement-light

- Dark:
statement-dark

---

### Big fact
Usage:
```
---
layout: fact
---

# 100%
Fact information

```

- Light:
fact-light

- Dark:
fact-dark

---

### Quote
Usage:
```
---
layout: quote
---

# "Notable quote"
Attribution

```
- Light:
quote-light

- Dark:
quote-dark

---

### Photo - 3
Usage:
```
---
layout: 3-images
imageLeft: 'image-url'
imageTopRight: 'image-url'
imageBottomRight: 'image-url'
---
```
- Light:
3-images-light

- Dark:
3-images-dark

---