From 78a53befb59181f1df74daa11776dbb0141b1383 Mon Sep 17 00:00:00 2001 From: Paul Tsouchlos Date: Mon, 22 Jul 2024 10:49:52 -0400 Subject: [PATCH] fix: theming issues and update docs --- lib.typ | 9 ++++++--- 1 file changed, 6 insertions(+), 3 deletions(-) diff --git a/lib.typ b/lib.typ index c17f14f..44371f6 100644 --- a/lib.typ +++ b/lib.typ @@ -6,7 +6,7 @@ #let color-darkgray = rgb("#333333") #let color-gray = rgb("#5d5d5d") #let default-accent-color = rgb("#262F99") -#let default-location-color = rgb("#000") +#let default-location-color = rgb("#333333") // const icons #let linkedin-icon = box( @@ -375,14 +375,17 @@ /// - location (string): The location of the resume entry /// - date (string): The date of the resume entry, this can be a range (e.g. "Jan 2020 - Dec 2020") /// - description (content): The body of the resume entry +/// - title-link (string): The link to use for the title (can be none) +/// - accent-color (color): Override the accent color of the resume-entry +/// - location-color (color): Override the default color of the "location" for a resume entry. #let resume-entry( title: none, location: "", date: "", description: "", + title-link: none, accent-color: default-accent-color, location-color: default-location-color, - title-link: none, ) = { let title-content if type(title-link) == "string" { @@ -392,7 +395,7 @@ } pad[ - #justified-header(title-content, text(fill: location-color)[#location]) + #justified-header(title-content, location) #secondary-justified-header(description, date) ] }