@@ -344,7 +344,7 @@ export const ResumeScreen = (props: TResumeScreenProps) => {
344344 < >
345345 < Spacing tw = "h-12" />
346346 < StResumeSection >
347- < H2 className = "mb-1 body-sm-regular leading-6 text-neutral-100 " > Projects</ H2 >
347+ < H2 className = "mb-1 body-sm-regular leading-6 text-secondary " > Projects</ H2 >
348348 { projects . map ( ( { title, year, linkUrl, client, description } ) => (
349349 < ResumeEntry
350350 key = { title }
@@ -362,7 +362,7 @@ export const ResumeScreen = (props: TResumeScreenProps) => {
362362 < >
363363 < Spacing tw = "h-12" />
364364 < StResumeSection >
365- < H2 className = "mb-1 body-sm-regular leading-6 text-neutral-100 " > Side Projects</ H2 >
365+ < H2 className = "mb-1 body-sm-regular leading-6 text-secondary " > Side Projects</ H2 >
366366 { sideProjects . map ( ( { title, year, linkUrl, client, description } ) => (
367367 < ResumeEntry
368368 key = { title }
@@ -380,7 +380,7 @@ export const ResumeScreen = (props: TResumeScreenProps) => {
380380 < >
381381 < Spacing tw = "h-12" />
382382 < StResumeSection >
383- < H2 className = "mb-1 body-sm-regular leading-6 text-neutral-100 " > Writing</ H2 >
383+ < H2 className = "mb-1 body-sm-regular leading-6 text-secondary " > Writing</ H2 >
384384 { writing . map ( ( { title, year, linkUrl, publisher, description } ) => (
385385 < ResumeEntry
386386 key = { title }
@@ -398,7 +398,7 @@ export const ResumeScreen = (props: TResumeScreenProps) => {
398398 < >
399399 < Spacing tw = "h-12" />
400400 < StResumeSection >
401- < H2 className = "mb-1 body-sm-regular leading-6 text-neutral-100 " > Speaking</ H2 >
401+ < H2 className = "mb-1 body-sm-regular leading-6 text-secondary " > Speaking</ H2 >
402402 { speaking . map ( ( { title, year, linkUrl, event, location, description } ) => (
403403 < ResumeEntry
404404 key = { title }
@@ -417,7 +417,7 @@ export const ResumeScreen = (props: TResumeScreenProps) => {
417417 < >
418418 < Spacing tw = "h-12" />
419419 < StResumeSection >
420- < H2 className = "mb-1 body-sm-regular leading-6 text-neutral-100 " > Awards</ H2 >
420+ < H2 className = "mb-1 body-sm-regular leading-6 text-secondary " > Awards</ H2 >
421421 { awards . map ( ( { title, year, linkUrl, presentedBy, description } ) => (
422422 < ResumeEntry
423423 key = { title }
@@ -435,7 +435,7 @@ export const ResumeScreen = (props: TResumeScreenProps) => {
435435 < >
436436 < Spacing tw = "h-12" />
437437 < StResumeSection >
438- < H2 className = "mb-1 body-sm-regular leading-6 text-neutral-100 " > Work Experience</ H2 >
438+ < H2 className = "mb-1 body-sm-regular leading-6 text-secondary " > Work Experience</ H2 >
439439 { workExperience . map (
440440 ( { title, from, to, linkUrl, company, location, description } ) => (
441441 < ResumeEntry
@@ -456,7 +456,7 @@ export const ResumeScreen = (props: TResumeScreenProps) => {
456456 < >
457457 < Spacing tw = "h-12" />
458458 < StResumeSection >
459- < H2 className = "mb-1 body-sm-regular leading-6 text-neutral-100 " > Volunteering</ H2 >
459+ < H2 className = "mb-1 body-sm-regular leading-6 text-secondary " > Volunteering</ H2 >
460460 { volunteering . map ( ( { title, from, to, linkUrl, company, location, description } ) => (
461461 < ResumeEntry
462462 key = { title }
@@ -475,7 +475,7 @@ export const ResumeScreen = (props: TResumeScreenProps) => {
475475 < >
476476 < Spacing tw = "h-12" />
477477 < StResumeSection >
478- < H2 className = "mb-1 body-sm-regular leading-6 text-neutral-100 " > Education</ H2 >
478+ < H2 className = "mb-1 body-sm-regular leading-6 text-secondary " > Education</ H2 >
479479 { education . map ( ( { title, from, to, linkUrl, institute, location, description } ) => (
480480 < ResumeEntry
481481 key = { title }
@@ -494,9 +494,7 @@ export const ResumeScreen = (props: TResumeScreenProps) => {
494494 < >
495495 < Spacing tw = "h-12" />
496496 < StResumeSection >
497- < H2 className = "mb-1 body-sm-regular leading-6 text-neutral-100" >
498- { ctaSection . title }
499- </ H2 >
497+ < H2 className = "mb-1 body-sm-regular leading-6 text-secondary" > { ctaSection . title } </ H2 >
500498 { ctaSection . ctaLinks . map ( ( { socialLinkType, linkTitle, linkUrl } ) => (
501499 < ResumeEntry
502500 key = { linkTitle }
@@ -515,7 +513,7 @@ export const ResumeScreen = (props: TResumeScreenProps) => {
515513
516514/* --- Styles ---------------------------------------------------------------------------------- */
517515
518- const StScreenContainer = twStyled . View `w-full items-center px-4`
516+ const StScreenContainer = twStyled . View `w-full min-h-full items-center px-4 bg-primary `
519517
520518const StResumeContainer = twStyled . Article `w-full md:max-w-[550px] py-16 flex-col`
521519
0 commit comments