iA / Presenter / Support / Visuals

Custom Themes

Aside from choosing from iA Presenter’s default Themes, you can create your own custom themes too.

You can change your presentation’s style by:

💡 Creating custom themes requires some knowledge of HTML and CSS.

Theme Structure

A screenshot of the elements included in a theme in iA Presenter.

Every theme consists of:

  1. Themes assets
  2. Presets (predefined sets of CSS variables)
  3. Custom fonts
  4. Theme CSS definitions
  5. Theme thumbnail
  6. Theme definition

Slides HTML Structures

A schema showing the structural layout of a slide.

Layouts

Cover

A screenshot of the Presenter's Editor with a preview of the cover layout.

Title

A screenshot of the Presenter's Editor with a preview of the Heading 2 layout.

Section

A screenshot of the Presenter's Editor with a preview of the Heading 3 layout.

Split

A screenshot of the Presenter's Editor with a preview of the split layout.

Grid

A screenshot of the Presenter's Editor with a preview of the grid layout.

The Grid layout also has a CSS class indicating the number of grid cells at the slide content DIV level: grid-items-2 , grid-items-3 , grid-items-4 , and so forth.

Caption

A screenshot of the Presenter's Editor with a preview of the caption layout.

Image Title

A screenshot of the Presenter's Editor with a preview of the image title layout.

Default (Text)

A screenshot of the Presenter's Editor with a preview of the body textlayout.

Custom Fonts

Follow these steps to add a custom font to your theme:

1. Add the Font Files to Your Theme Folder

Roboto-Slab-Regular.woff2
Roboto-Slab-Bold.woff2

2. Reference these Fonts at the Beginning of Your CSS

@font-face {
  font-family: 'Roboto Slab';
  font-style: normal;
  font-weight: 400;
  src: url(Roboto-Slab-Regular.woff2) format('woff2');
}
@font-face {
  font-family: 'Roboto Slab';
  font-style: normal;
  font-weight: 700;
  src: url(roboto-slab-Bold.woff2) format('woff2');
}

3. Inform Metadata

a. In template.json 

"TitleFont": "New York",
  "BodyFont": "New York",

Here you need to inform the display name of your custom fonts. That's the name that will appear in the Style Inspector.

Above is an example for the New York font.

b. In presets.json

"TitleFont": "-apple-system-ui-serif, ui-serif",
"BodyFont": "-apple-system-ui-serif, ui-serif",

Here you need to inform the CSS name of your custom font.
Above is an example for the New York font. You will notice the name is different from the display name.

💡 You could directly set your custom font in CSS, but would lose the ability to override it using the Style Inspector.

Using Images From Your Theme in CSS

When your custom theme is installed, iA Presenter preserves the directory structure.

You can then reference an image using the url(...) function. Example:

.backgrounds .default-container{
  background-image: url("image1.jpg");
  background-size: cover;
  background-position: center;
}

Alignments

You need to target the inner div of each layout (see table above).

Example:

.layout-cover > div {
    justify-content: flex-end; /* vertical alignment */
    align-items: flex-start; /* horizontal alignment */
} 

Horizontal Alignment

Property: align-items

Alignment Value
Left flex-start
Center center
Right flex-end

Vertical Alignment

Property: justify-content

Alignment Value
Top flex-start
Center center
Bottom flex-end

Backgrounds

.backgrounds .v-split-container{
  background-image: url('data:image/svg+xml;utf8,');
  background-size: cover;
  background-position: center;
}

If you use inline SVG as the URL directly in your CSS files, you need to take care of how you declare colors. Colors in hexadecimal format (like #FFFFFF) will break your CSS. Use the rgb(0,0,0) format instead.

If you want to target all backgrounds regardless of the layout, target the .slide-background class.

Gradient Background

Example:

{
  "Presets": [
    {
      "Name": "Default",
      "TitleFont": "system-ui",
      "BodyFont": "system-ui",
      "Appearance" : "dark",
      "DarkBodyTextColor": "#000000",
      "LightBodyTextColor": "#ffffff",
      "DarkTitleTextColor": "#000000",
      "LightTitleTextColor": "#ffffff",
      "DarkBackgroundColor": "transparent",
      "LightBackgroundColor": "transparent",
      "Accent1": "#f94144",
      "Accent2": "#43aa8b",
      "Accent3": "#f9c74f",
      "Accent4": "#90be6d",
      "Accent5": "#f8961e",
      "Accent6": "#577590",
      "LightBgGradient":[
          "#c7e7ff",
          "#f0c8ff",
          "#ffdada",
          "#ffebb2"
      ],
      "DarkBgGradient":[
          "#15354c",
          "#3e154c",
          "#4c2828",
          "#4c3900"
      ],
    },...

Appearances

iA Presenter uses the .dark and .light CSS classes. These classes are set per layout. You can force the appearance for a specific layout in a custom Theme, in the template.json file. For example:

{
  "Name": "New York",
  "Version": 0.1,
  "Author": "iA",
  "ShortDescription": "Stylish, bold, classy.",
  "LongDescription": "Stylish, bold, classy\
- Different sizes for headlines\
- Simple color background\
- Default white on black\
- Default font: New York",
  "Css": "newyork.css",
  "TitleFont": "New York",
  "BodyFont": "New York",
  "Layouts":[
     {
          "Name": "Cover",
          "Classes": "invert",
     },
     {
          "Name": "Title",
          "Classes": "invert",
     }
  ]
}

Responsiveness

iA Presenter themes are responsive. By default, CSS applies to mobile devices. If you want to target non-mobile devices:

@media (min-width: 768px) {
...
}

You can add additional breakpoints if, for instance, you want to provide different font-size/margins depending on the viewport size. However, iA Presenter already has its logic, and defaults should be enough.

Developing Custom Themes

1. Create a New Theme

Go to SettingsThemes. Click on +, Create Theme and enter a name.

2. Navigate to the New Theme Files

Click on the Reveal Themes folder in Finder button. Navigate then to the folder of the newly created Theme.

3. Use Your New Theme

Open a presentation, go to the Theme and Style tab in the Inspector, and set the newly created theme.

4. Bring Your Modification

Open your Theme.css in your preferred editor and add your custom CSS.

Visuals