1
0
Fork 0
mirror of https://github.com/muerwre/vault-frontend.git synced 2025-06-19 00:04:47 +07:00

add sansevieria theme
Some checks failed
Build & Publish / Build & Publish (push) Has been cancelled

This commit is contained in:
Fedor Katurov 2025-04-05 14:33:01 +07:00
parent 29c8bcd145
commit 84cae094f1
6 changed files with 817 additions and 1 deletions

View file

@ -1,6 +1,7 @@
export enum Theme {
Default = 'Default',
Horizon = 'Horizon',
Sansevieria = 'Sansevieria',
}
interface ThemeColors {
@ -28,4 +29,13 @@ export const themeColors: Record<Theme, ThemeColors> = {
],
background: 'url("/images/horizon_bg.svg") 50% 50% / cover rgb(28, 30, 38)',
},
[Theme.Sansevieria]: {
name: 'Сансевирия',
colors: [
'linear-gradient(165deg, #f4e7aa -50%, #a23500 150%)',
'linear-gradient(165deg, #ff7e56 -50%, #280003 150%)',
'linear-gradient(170deg, #476695, #22252d)',
],
background: '#1f2625',
},
};