An easily customisable, minimalist lightweight startpage for Lantern Theme.
Go into Settings -> Tabs -> New Tab Page -> Last Option (Enter either file location or url)
r/startpages/how-to-set-a-custom-new-tab-page-in-firefox
To do any configuration you should fork the repository and then edit the files.
Go into index.html and add new entries with <li><a href="new-link-url">text i want to see</a></li>
.
Go into index.html and add a new box with:
<fieldset>
<legend>text in the border of the box</legend>
<ul>
<li><a href="new-link-url">text i want to see</a></li>
</ul>
</fieldset>
Go into index.html file and change the image source like this: <img src="new-gif-link.gif">
Colour configuration is done via changing 5 variables:
:root {
--background: #261b17; /* Affects the background of the page */
--shadow: #1b110e; /* Affects the shadow under the link boxes */
--accent: #e86420; /* Affects link on hover colour and heading shadow colour */
--foreground: #e4cbb3; /* Affects the text colour */
--accent-alt: #e01d1d; /* Affects link on click colour */
}