1
0
Fork 0
mirror of https://github.com/muerwre/vault-frontend.git synced 2025-04-24 20:36:40 +07:00

Добавил тему "Веспера"

This commit is contained in:
muerwre 2022-08-14 15:19:54 +07:00 committed by GitHub
parent 5d34090238
commit aee4b662d5
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
148 changed files with 1331 additions and 1338 deletions

View file

@ -0,0 +1,30 @@
export enum Theme {
Default = 'Default',
Horizon = 'Horizon',
}
interface ThemeColors {
colors: string[];
background: string;
name: string;
}
export const themeColors: Record<Theme, ThemeColors> = {
[Theme.Default]: {
name: 'Волт',
colors: [
'linear-gradient(170deg, #00ac35 -50%, #007962 150%)',
'linear-gradient(165deg, #ff7549 -50%, #ff3344 150%)',
],
background: `url('/images/noise_top.png') 0% 0% #23201f`,
},
[Theme.Horizon]: {
name: 'Веспера',
colors: [
'linear-gradient(170deg, #f09483 -150%, #e95678 100%)',
'linear-gradient(165deg, #fab795 -50%, #fab795 150%)',
'linear-gradient(170deg, #25b0bc, #7693d6)',
],
background: `url("/images/horizon_bg.svg") 50% 50% / cover rgb(28, 30, 38)`,
},
};