diff --git a/Daniel Chen.typ b/Daniel Chen.typ index 21a9c8b..fb66701 100644 --- a/Daniel Chen.typ +++ b/Daniel Chen.typ @@ -10,7 +10,7 @@ #set list(indent: 1em) // Change the theme color of the cv. -#let color = black +#let color = rgb("#ff983e") #let name = "Daniel Chen" #let contact_data = ( @@ -119,6 +119,6 @@ "University of Waterloo", "Candidate for B.A.Sc. in Computer Engineering", start_date: "Sep 2022", end_date: "Apr 2027", location: "Waterloo, ON", details: ( - [Secretary, Creative Writing Club], + [Courses: Object-oriented programming, data structures & algorithms, digital computers & circuits ], )) ] diff --git a/lib.typ b/lib.typ index 12c0ed0..e23e694 100644 --- a/lib.typ +++ b/lib.typ @@ -117,10 +117,10 @@ #let template(name, contact_data, color, doc) = { set page(margin: (rest: 0.5in, top: 0.4in), paper: "us-letter") set list(indent: 1.25em, marker: [•]) - set text(font: "Latin Modern Sans", 11pt) + set text(font: ("Latin Modern Sans"), 11pt) set par(justify: true, leading: 0.65em) align(center)[ - #text(size: 2em)[*#name*] + #text(size: 2em, font: "Bitter", fill: color)[*#name*] #block(above: 0em, below: 1em) #{ if contact_data != none and contact_data.len() > 0 { @@ -136,13 +136,16 @@ set align(left) let title = smallcaps(i.body) - set block(above: 1em) - set text(weight: "light", size: 0.9em, fill: color, font: "New Computer Modern") + // add line to right of heading + + set block(above: 1em, below: 1em) + set text(size: 0.9em, fill: color, font: "Bitter") stack( - dir: ttb, - spacing: 1.5mm, + dir: ltr, + spacing: 2mm, title, - line(length: 100%, stroke: color + 0.4pt) + line(length: 100%, stroke: color + 0.4pt), + ) }