Skip to content

LogoTitleCard

Collin Heist edited this page Jun 27, 2022 · 27 revisions

Background

This card is practically identical to the StandardTitleCard, with a few major differences:

  • It does not use unique images for each card - instead using a logo to make all cards spoiler-free
  • Supports customizing the background color
  • Requires specific "extras" to work (see details/recommendation below)

This card type is used whenever card_type is specified as logo, or reality tv.

Example

Spoiler

Blurred

This card is inherently "spoiler-free" (beyond title spoilers), but still supports blurring the logo/background (if desired).

How to Use

Specification

This card uses the extras data within a series YAML file. It is required that a logo be provided, and optional to adjust the background to something other than black (the default).

This would look like the following:

extras:
  logo:        # Some file goes here
  background:  # Optional color/hexcode goes here

Example

The below example showcases how to specify some logo file and a red background for the series of Survivor:

series:
  Survivor:
    year: 2000
    card_type: reality tv
    extras:
      logo: ./source/Survivor (2000)/logo.png
      background: red  # Could also be a hex code like #FF0000

Recommended Template

To save yourself some typing, it's recommended to use a template for all series of this style. Below is an example:

templates:
  reality-tv:
    year: <<year>>
    library: <<library>>
    card_type: reality tv
    extras:
      logo: ./source/<<title>> (<<year>>)/logo.png
      background: <<background>> 

Which could then be used/specified like so:

series:
  Survivor:
    template: {name: reality-tv, year: 2000, library: TV, title: Survivor, background: black}

Customization

Separator Character

The character between the season and episode text (a.k.a. the separator) can also be customized. By default, a · character is used. This can be changed as a series extra, like so:

extras:
  separator: "-"

Title Characteristics

Maximum Line Width

This card begins splitting titles at 32 characters. This was selected using the default font, and leaves a small side margin.

Maximum Line Count

This card will split titles into at most 2 lines (unless manually specified). With the standard font, this stops the title just below where the logo can be placed.

Title Style

This card will split titles bottom heavy, meaning titles will be split such that they're longer at the bottom than the top. For example:

The One Where
Rachel's Sister Babysits

Default Title Font

Font

The default font used for titles is Sequel-Neue, seen below:

NOTE: This font's upper and lowercase characters are identical.

Case

The default font case is upper.

Color

The default font color is #EBEBEB.

Replacements

The default font swaps the [] and () characters, so a font replacement is used:

replacements:
  "[": (
  "]": )
  "(": [
  ")": ]
Clone this wiki locally