Make Gruvbox the default blog theme (active CSS + theme switcher default)

This commit is contained in:
trilium-share-gruvbox
2026-09-08 07:04:36 +02:00
parent 71a021fd69
commit 4ad056fbec
2 changed files with 4 additions and 4 deletions
+3 -3
View File
@@ -17,14 +17,14 @@
// Replace the __THEME_*_ID__ placeholders with the note IDs of your theme notes
// (code notes, mime text/css, living under the .blog system note).
var THEMES = [
{ id: "gruvbox", name: "Gruvbox", url: "api/notes/__THEME_GRUVBOX_ID__/download" },
{ id: "tokyonight", name: "Tokyo Night", url: "api/notes/__THEME_TOKYO_ID__/download" },
{ id: "solarized", name: "Solarized", url: "api/notes/__THEME_SOLARIZED_ID__/download" },
{ id: "coffee", name: "Coffee", url: "api/notes/__THEME_COFFEE_ID__/download" },
{ id: "harbor", name: "Harbor", url: "api/notes/__THEME_HARBOR_ID__/download" },
{ id: "gruvbox", name: "Gruvbox", url: "api/notes/__THEME_GRUVBOX_ID__/download" }
{ id: "harbor", name: "Harbor", url: "api/notes/__THEME_HARBOR_ID__/download" }
];
var KEY = "blogTheme";
var DEFAULT = "tokyonight";
var DEFAULT = "gruvbox";
var currentLink = null;
function chosen() {