Add "Nord" style

This commit is contained in:
2021-12-24 12:56:15 +00:00
parent 2daacd3bde
commit 04646d23b8
2 changed files with 10 additions and 0 deletions

View File

@@ -134,6 +134,15 @@ for (let i = 0; i < dataThemeButtons.length; i++) {
});
return;
case 'nord':
setTheme({
'color-background': '#2E3440',
'color-text-pri': '#E5E9F0',
'color-text-acc': '#8FBCBB'
});
return;
}
})
}

View File

@@ -36,6 +36,7 @@
<button data-theme="chalk" class="theme-button theme-chalk">Chalk</button>
<button data-theme="tron" class="theme-button theme-tron">Tron</button>
<button data-theme="paper" class="theme-button theme-paper">Paper</button>
<button data-theme="nord" class="theme-button theme-nord">Nord</button>
</div>
</div>