Trying to install a theme from Github to my sire

I’m trying to install this theme: GitHub - pages-themes/midnight: Midnight is a Jekyll theme for GitHub Pages to my site: GitHub - AgentArachnid66/AgentArachnid66.github.io

It’s not working but I’m not being given any errors or warnings in the bundle exec jekyll serve.

I’ve added this to my gemfile:

gem “jekyll”, “~> 4.3.2”

This is the default theme for new Jekyll sites. You may change this to anything you like.

If you want to use GitHub Pages, remove the “gem “jekyll”” above and

uncomment the line below. To upgrade, run bundle update github-pages.

gem “github-pages”, group: :jekyll_plugins

If you have any plugins, put them here!

group :jekyll_plugins do
gem “jekyll-feed”, “~> 0.12”
gem “jekyll-seo-tag”
gem “jekyll-paginate-v2”
gem “jekyll-remote-theme”
end
gem “webrick”, “~> 1.8”

In my Config.yaml:

remote_theme: tajacks/lightspeed
plugins:

  • jekyll-feed
  • jekyll-seo-tag
  • jekyll-remote-theme

You need to comment your local theme

# theme: minima

and add a new line to enable the remote theme

remote_theme: pages-themes/midnight

This is the first time I’ve seen “remote_theme” mentioned. TY @feeshy!