Dracula

Dracula

A Dark theme for Marp

Explore the many features of Marp in style!

Daniel Nicolas Gisolfi

Gisolfi
Dracula

Screen portrayals

Year Title Actor
1970 Jonathan Paul Albert Krumm
1995 Monster Mash Anthony Crivello
2004 Blade: Trinity Dominic Purcell
2008 Supernatural Todd Stashwick
2020 Dracula Claes Bang
Gisolfi
Dracula

Words from the Source

There are darknesses in life and there are lights, and you are one of the lights, the light of all lights.

-- Bram Stoker, Dracula

Gisolfi
Dracula

Bats - About

  • Small
  • Fast

  • Mammals

  • Scientific name: Chiroptera

Gisolfi
Dracula

Bats - Implementation

class Bat:
    def __init__(name:str, age:int):
        self.__name = name
        self.__age = age
    @property
    def name(self):
        return self.__name
    @property
    def age(self):
        return self.__age
    @property
    def speed(self):
        return 10 - self.age
Gisolfi