thesis/slides/lib.typ
Jean-Marie Mineau 1f5f70779b
All checks were successful
/ test_checkout (push) Successful in 1m47s
template
2025-10-13 18:55:27 +02:00

31 lines
661 B
Typst

#import "sns_polylux_template.typ": *
#import "figures.typ": figures, get_figure
#let pirat-color = (
black: rgb("#000000"),
white: rgb("#FFFFFF"),
red: rgb("#E33d1C"),
blue: rgb("#4AC3CB"),
)
#let sns-polylux-template_sns-pirat = (
pirat-color.blue.darken(30%), //rgb("#00728D"),
pirat-color.blue.darken(50%),
pirat-color.blue.darken(80%),
rgb("#AB3502"),
rgb("#E69426"),
pirat-color.red,
)
#let colortest = [
#for th in (
sns-polylux-template_sns-pirat,
sns-polylux-template_sns-colormap,
sns-polylux-template_unipi-colormap,
) {
stack(dir: ltr, ..for c in th {
(rect(width: 30pt, height: 30pt, fill: c),)
})
}
]