You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
35 lines
720 B
35 lines
720 B
1 year ago
|
#import "@preview/fontawesome:0.1.0"
|
||
|
|
||
|
#let process_colors(colors) = {
|
||
|
if colors.at("base", none) == none {
|
||
|
colors.insert("base", rgb(#b00b69))
|
||
|
}
|
||
|
if colors.at("light", none) == none {
|
||
|
colors.insert("light", colors.base.lighten(35%))
|
||
|
}
|
||
|
if colors.at("lighter", none) == none {
|
||
|
colors.insert("lighter", colors.base.lighten(70%))
|
||
|
}
|
||
|
if colors.at("dark", none) == none {
|
||
|
colors.insert("dark", colors.base.darken(35%))
|
||
|
}
|
||
|
if colors.at("darker", none) == none {
|
||
|
colors.insert("darker", colors.base.darken(70%))
|
||
|
}
|
||
|
}
|
||
|
|
||
|
#let cv(
|
||
|
colors: {},
|
||
|
self,
|
||
|
left_col,
|
||
|
right_col,
|
||
|
|
||
|
) = {
|
||
|
process_colors(colors)
|
||
|
set page("a4", margin: 1cm)
|
||
|
set text(
|
||
|
font: "Inter",
|
||
|
size: 10pt
|
||
|
)
|
||
|
|
||
|
}
|