Skip to content

Comment on The first dead Unicorn will be Evernoteparent

Comments

One thing I've used to great success is to detect pixel density and bump up the font-weight for those users. CSS snippet:

  .co-m-text-light {
    font-weight: 500;
  }

  @media  only screen and (-webkit-min-device-pixel-ratio: 1.3),
    only screen and (-o-min-device-pixel-ratio: 13/10),
    only screen and (min-resolution: 120dpi) {
      .co-m-text-light {
        font-weight: 300;
      }
  }
AboutSource Built by g1lg1l

Hackerly is an independent reader for Hacker News, built on the public HN API. Not affiliated with Y Combinator.