summaryrefslogtreecommitdiff
path: root/main.typ
blob: 1b4c0685f70a0dd8a3ebe73fb955f2568219ac0b (plain)
#set text(
  font: "Gentium Book",
  size: 12pt,
  lang: "en",
  region: "us",
  script: "latn",
)
#set par(
  leading: 0.5em,
  spacing: 0.5em,
  linebreaks: "optimized",
)
#set page(
  width: 4.5in,
  height: 5.5in,
  margin: (x: 0.5in, y: 0.75in),
)
#set document(
  title: "The Lightened Black",
  author: "Mica White",
  description: "A story of a sleepless night alone"
)
#set quote(block: true)

#let black = cmyk(0%, 0%, 0%, 100%)
#let white = cmyk(0%, 0%, 0%, 0%)
#let page-white(body) = [
  #set page(fill: white)
  #set text(fill: black)
  #body
]
#let page-black(body) = [
  #set page(fill: black)
  #set text(fill: white)
  #body
]
#let page-red(body) = [
  #set page(fill: cmyk(0%, 40%, 40%, 0%))
  #set text(fill: black)
  #body
]

#let eyes(name) = pad(
  top: 0.25in,
  bottom: 0.25in,
  align(center, image("eye-" + name + ".svg", width: 50%))
)

#let titlepage = {
  counter(page).update(0)
  context page(
    margin: ( top: 25% ),
    numbering: none,
    fill: black, //gradient.radial(cmyk(0%, 0%, 0%, 75%), black),
    align(center)[
      #show: set text(fill: white, font: "Amita")
      #align(end, image("title.svg", width: 100%, alt: "The Lightened Black"))
      #document.author.map(
        (author) => par(text(size: 1.15em, author))
      ).join()
    ]
  )
}
#let copyrightpage(content) = {
  counter(page).update(0)
  page(
    numbering: none,
    align(center, content)
  )
}

#show: page-white

#copyrightpage[
Copyright #sym.copyright 2026 by Mica White

#linebreak()

Any resemblance to actual persons or events would be very disappointing.

#linebreak()

First edition
]
#titlepage

#let left() = {
  let current = counter(page).get()
  calc.odd(current.first())
}
#set page(
  header: context {
    align(center, text(
      size: 0.9em,
      if left() {
        "The Lightened Black"
      } else {
        "Mica White"
      }
    ))
  },
  footer: context {
    align(
      if left() {start} else {end},
      text(
        size: 0.9em,
        [#counter(page).get().first()]
      ),
    )
  },
)

#let p(content) = [
  #linebreak()
  #{
    if content.has("children") {
      content
        .at("children")
        .filter(item => item.fields().len() > 0)
        .enumerate()
        .map(((i, item)) => par(
          item,
          first-line-indent: if i == 0 { 0em } else { 1.3em })
        ).join()
    } else {
      par(content)
    }
  }
]

#eyes("open")
#p[
  #[I had been awake for nearly 23 hours now, and yet I was still dreaming.]
  #[Oh Teresa, how I miss you. As hard as I'ved tried, I could not get you out of my head. I want you to come back. But I needed you to go away.]
  #[Every time I closed my eyes I saw you. I would blink and in the darkness, it is your face I saw.]
  #[I always wondered what should I have done? Is there something I could've done to keep you here? Oh, if only I could go back, I'd think of something to keep you beside me. To think I let you go so easily. I wouldn't let it happen again, I swear!]
  #[I wished I could just stop thinking of you. I thought it might be better if I had never known you? All those memories feel so tainted now. For a time, I did not want them. I went through so much trouble for you, and I could go through so much more, but I've never felt anything like what I felt after you passed.]
  #[This night went on for a very long time and it showed no sign of stopping. I couldn't sleep, for if I did, I'd dream of you. I did everything I could do to stay awake. I tried taping my eyes open, but the tape always comes off. My hands held them open. My eyes strained to stay open. If I so much as blinked, I'd regret it dearly.]
]
#p[#[*_Ding!_*]]
#p[#[My phone went off, startling my eyes to send me into darkness. Into a nightmare I tried so hard to avoid.]]

#show: page-black
#eyes("closed")

#p[
  #[I found myself stretched out across a couch. Ths sun was shining bright that day. I had to cover my eyes to keep it out. I let out a yawn, and stretched out my arms and legs. One of my legs bumped into something. I looked ahead to see my beautiful Teresa, looking back at me.]
  #["Good morning, Frank!" she said, in the sweetest voice I have ever heard. "Did you have a nice nap?"]
  #["Yep," I groaned, as I got myself sat up next to her. She had a sketchpad in her hands. It contained a half-finished drawing of what looked to me like a teenage boy, but I've never been good at telling that sort of thing. "What are you working on?"]
  #["Oh?" She looked down at the sketchpad she was just using. "This is my brother. His birthday is coming up, and I thought this might make a good present."]
  #["Oh yeah, Jeff." I was still struggling to wake myself up from my nap.]
  #[Teresa put down the sketchpad on the armrest next to her, then turned towards me. She always has the best smile on her face. She could get excited over literally anything. My waking up was probably the highlight of her day. "So, did you get those tickets?"]
  #["Huh?" My brain was still waking up. "Oh yeah, those. I got them yesterday." We were planning a trip to Spain as a summer vacation. We both loved to travel. I guess we both liked to see the different cultures and learn from them. "I also checked, and the hotel we were looking at is pretty close to the airport, so we shouldn't have trouble walking there if we need to. I also got the hotel reservation."]
  #["Great!" Teresa practically squealed with excitement. She leaned over to hug me. "It seems like you got everything covered for us. It'll be a great trip!" She left a kiss on my cheek, in exchange for my proactivity.]
  #["As long as we don't get stranded at the airport again..." Our last trip had us up all night, waiting all night. There was nothing I could do to prevent that.]
  #["Oh, quit your worrying!" She stroked my cheek. "That's not gonna happen again!" That was just a one-time thing.]
  #[With the benefit of hindsight, she was right, but I wasn't convinced at the time. "Alright," I said reluctantly. "I'll stop worrying."]
]
#p[#[It was then, when I jolted up from this dream.]]

#show: page-white
#eyes("open")

#p[
  #[My mouth gaped open. The sight of her face was burned into my memory. I hated both seeing her, and not seeing her. Like a cold shower you never want to enter, and never want to leave.]
  #[When I awoke, I was still looking towards the nightstand, still illuminated by dinging phone. I looked around just to remember where I was, and started to reckon with the fact that Teresa was not here. Why could her death not be the dream? Why could this not be the nightmare?]
  #[I knew that before I could check my phone, I must first do more to ensure that I did not blink again, lest I go through another nightmare.]
  #[I grabbed some more tape. I cut it into several pieces. I put a couple on my eyelids, and left the rest to the side in preparation for it to come off. I held my hand on the tape to help it last. All the while my eyes strained to stay as wide as possible. The average person blinks 15 times every minute, and I was trying to bring that down to zero. Sure sounds impossible in retrospect, doesn't it? In truth, maybe I was blinking that whole time and I just didn't notice most of them. But I doubt that would have mattered to me then. I just needed to make sure I didn't see _her_.]
  #[I picked up the phone to see what the fuss was about. I was careful to make sure the sudden light did not disturb me this time. The notification was for an email I received, telling me about a new comment on an old blog post I wrote.]
]

#quote("\"Nice! It seems like you had a lot of fun! Can't wait to hear about more of your adventures.\"")

#p[#[I knew this must have been an old post, because I had no recollection of ever writing it. I opened the email and scrolled up to figure out what on Earth I had written about.]]

#quote("My girlfriend and I spent the week together on a trip to visit her relatives in Connecticut. On our journey we went hiking, saw some neat sights and critters [...]")

#p[
  #[This was just about the worst message I could have received at this time.]
  #[I gritted my teeth, and let out a small yell. I wondered why I ever opened the phone in the first place.]
  #[I tossed the phone to the other side of the room, hitting a lamp and knocking it over. I honestly didn't care to check whether either the lamp or the phone survived.]
  #[In a stroke of foolishness, I buried my face in my hands. The room was so dark already. My hands hid the last of the remaining light. And in the darkness, Teresa's face came to me once again.]
]

#show: page-black
#eyes("closed")

_Crap, I'm driving._

#p[
  #[I looked around my surroundings to get my bearings. I just needed to make sure I didn't crash into anything before I figured out where I ended up.]
  #[Once I was sure I wasn't about to die, I looked to my right and saw Teresa, talking on the phone.]
  #["Yes, we really enjoyed our trip! Right, Frank?" Her eyes turned towards me.]
  #[I was still getting acquiesced to this situation. "Yeah, of course. There were so many neat critters and sights." I could only think to quote my own blog post at that time.]
  #["Those last minute complications with the hotel were annoying, but Frank pulled through, like he always does."]
  #[_Oh, right. That._ I finally turned to look towards her. She had that same bright smile I always loved. Her family loves so much. It's not hard to imagine why. And Teresa loved them back. She always made sure to keep in touch with them, and tell them about all of her great stories.]
  #["Frank, look out!"]
  #[_Oh shit!_ A car was pulled over in front of me, and a police officer stood just outside. I slammed on my brakes to avoid hitting either one of them. It's a good thing Teresa saw it when she did. I swerved a bit to the left, and still just barely missed them.]
  #[The officer did not look too happy. Neither did Teresa. Her face was uncharacteristically neutral.]
  #["Hey, let me put you on hold for a sec... Yeah, we're okay. We just need to take care of something real quick."]
  #[The officer walked over to Teresa's side of the car. He already held a slip of paper in his hand. Without saying a word, he handed the slip of paper to Teresa, and walked back towards the other car.]
  #["Are we free to leave?" I asked.]
  #["Get out of here before you cause another accident!" he yelled back.]
  #[Teresa looked at me and I looked back. Then, I shrugged, looked ahead of me, and started driving again, careful to avoid the officer.]
  #["So, we're good?" she asked.]
  #["Yeah, I guess." I let out a deep sigh. "Sorry about that."]
  #["No, it's fine. I think you handled it well." She spoke in a tone that made me not really sure she believed that. She rang up her mom again. I guess we took long enough that her mom must've hung up. Or maybe Teresa did. In any case, Teresa called her mom back. She still had a small smile on her face, but not quite the one that I was used to. "Yeah, we're okay. Don't worry about it."]
  #[Of course, Teresa would never have willingly told her mom about what happened. She was always so optimistic about the future, and she never dwelled on the past. I remember her being stern the rest of the day, but I never really knew what she was thinking.]
]

#show: page-white
#eyes("open")