stargazer-theme
stargazer-theme(aspect-ratio: "16-9", align: horizon, alpha: 20%, title, header-right: self => self.info.logo, progress-bar: true, footer-columns: (25%, 25%, 1fr, 5em), footer-a: self => self.info.author, footer-b: self => utils.display-info-date(self), footer-c, footer-d, ..args, body)(source)Touying stargazer theme.
Example:
#show: stargazer-theme.with(aspect-ratio: "16-9", config-colors(primary: blue))`
Consider using:
#set text(font: "Fira Sans", weight: "light", size: 20pt)`
#show math.equation: set text(font: "Fira Math")
#set strong(delta: 100)
#set par(justify: true)
The default colors:
config-colors(
primary: rgb("#005bac"),
primary-dark: rgb("#004078"),
secondary: rgb("#ffffff"),
tertiary: rgb("#005bac"),
neutral-lightest: rgb("#ffffff"),
neutral-darkest: rgb("#000000"),
)
aspect-ratio : string default: "16-9"
is the aspect ratio of the slides. The default is 16-9.
align : alignment default: horizon
is the alignment of the content. The default is horizon.
title : content | function
is the title in the header of the slide. The default is self => utils.display-current-heading(depth: self.slide-level).
header-right : content | function default: self => self.info.logo
is the right part of the header. The default is self => self.info.logo.
footer : content | function
is the footer of the slide. The default is none.
footer-right : content | function
is the right part of the footer. The default is context utils.slide-counter.display() + " / " + utils.last-slide-number.
progress-bar : boolean default: true
is whether to show the progress bar in the footer. The default is true.
footer-columns : array default: (25%, 25%, 1fr, 5em)
is the columns of the footer. The default is (25%, 25%, 1fr, 5em).
footer-a : content | function default: self => self.info.author
is the left part of the footer. The default is self => self.info.author.
footer-b : content | function default: self => utils.display-info-date(self)
is the second left part of the footer. The default is self => utils.display-info-date(self).
footer-c : content | function
is the second right part of the footer. The default is self => if self.info.short-title == auto { self.info.title } else { self.info.short-title }.
footer-d : content | function
is the right part of the footer. The default is context utils.slide-counter.display() + " / " + utils.last-slide-number.