Did you say you wanted dark mode?

Did you say you wanted dark mode?

I happened upon folks talking about how the user portal in Ghost couldn't be customized.  I really hate "can't", so I went and built a dark mode for portal, and it only took a simple change to one file:  I flipped all the white-to-black color assignments, similar to what I did to convert a theme to darkmode.  It continues to respect theme accent colors.

0:00
/
Demo of dark mode for Portal. Yes, my theme itself isn't in dark mode, so it looks a little funky.

If you want darkmode Portal on your site, you need to edit config.(production or development).config in your main site directory, adding something like:

  --- first option - put the .js file and .map file in the root directory of your THEME.
  
  "portal": {
    "url": "http://yoursite.url/portal.min.js",
    "version": "~2.1.1"
  }
  
  --- Or, to load remotely: ---
  
    "portal": {
    "url": "https://cdn.statically.io/gh/cathysarisky/portal-dark/main/umd/portal.min.js",
    "version": "~2.1.1"
  }
Use the top or bottom code bit, not both.

You don't need to do anything else (except restart Ghost) if you're loading the js remotely.  If you went with the first option, you also need to grab portal.min.js and portal.min.js.map from my Github repository.  Consider starring the repository while you're there, would you please?  My coding work is fueled by stars, stubbornness, and caffeine, in roughly equal amounts.

There is ONE small fix I haven't managed yet. When you click the emailed link, a 'toast' message pops up briefly, and right now, it's black on black in Portal darkmode. I'll update Github when I find it, but I'm having trouble finding it with my usual Chrome inspector tricks because it disappears before I can. Gonna have to read the code, or someone who knows where the problem is could make a PR. :)

I found it!  Everything should look good in dark mode.  Help yourself to the file - the CDN link above is good, or you can pull it from Github and self host it.  And don't forget, I run on stars. :) ⭐⭐

Not a page error, just showing you that I found the problem!