template
All checks were successful
/ test_checkout (push) Successful in 1m47s

This commit is contained in:
Jean-Marie Mineau 2025-10-13 18:55:27 +02:00
parent 033656e159
commit 1f5f70779b
Signed by: histausse
GPG key ID: B66AEEDA9B645AD2
11 changed files with 801 additions and 21 deletions

31
slides/lib.typ Normal file
View file

@ -0,0 +1,31 @@
#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),)
})
}
]