Added nordic theme
This commit is contained in:
parent
0e4cf7ebbc
commit
116e6a47ec
1 changed files with 22 additions and 0 deletions
|
@ -23,6 +23,7 @@ const defaultTheme: Theme = {
|
|||
export enum Themes {
|
||||
Classic = "classic",
|
||||
Paper = "paper",
|
||||
Nordic = "nordic",
|
||||
Aqua = "aqua"
|
||||
}
|
||||
|
||||
|
@ -44,6 +45,27 @@ export default {
|
|||
stackedInfoboxes: true,
|
||||
floatingTabs: false
|
||||
} as Theme,
|
||||
// Based on https://www.nordtheme.com
|
||||
nordic: {
|
||||
...defaultTheme,
|
||||
variables: {
|
||||
...defaultTheme.variables,
|
||||
"--color": "#D8DEE9",
|
||||
"--points": "#E5E9F0",
|
||||
"--background": "#2E3440",
|
||||
"--secondary-background": "#3B4252",
|
||||
"--locked": "#3B4252",
|
||||
"--bought": "#8FBCBB",
|
||||
"--link": "#88C0D0",
|
||||
"--separator": "#3B4252",
|
||||
"--border-radius": "4px",
|
||||
"--danger": "#D08770",
|
||||
"--modal-border": "solid 2px #3B4252",
|
||||
"--feature-margin": "5px"
|
||||
},
|
||||
stackedInfoboxes: true,
|
||||
floatingTabs: false
|
||||
} as Theme,
|
||||
aqua: {
|
||||
...defaultTheme,
|
||||
variables: {
|
||||
|
|
Loading…
Reference in a new issue