31 lines
661 B
Typst
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),)
|
|
})
|
|
}
|
|
]
|