2
0

🚀 (theme) Add new aqua glass theme

This commit is contained in:
Baptiste Arnaud
2024-04-18 09:50:42 +02:00
parent 7bec58e745
commit fb847e17dd
2 changed files with 28 additions and 2 deletions

View File

@ -94,7 +94,6 @@ export const useTemplates = (): TemplateProps[] => {
emoji: '🤖',
fileName: 'audio-chat-gpt.json',
description: t('templates.modal.other.audioChatGpt.description'),
isNew: true,
},
{
name: t('templates.modal.other.chatGptPersonas.name'),
@ -120,7 +119,6 @@ export const useTemplates = (): TemplateProps[] => {
name: t('templates.modal.other.openAiConditions.name'),
emoji: '🧠',
fileName: 'openai-conditions.json',
isNew: true,
description: t('templates.modal.other.openAiConditions.description'),
},
]

View File

@ -109,4 +109,32 @@ export const galleryTemplates: Pick<ThemeTemplate, 'id' | 'name' | 'theme'>[] =
},
},
},
{
id: 'aqua-glass',
name: 'Aqua Glass',
theme: {
general: {
background: {
type: BackgroundType.IMAGE,
content:
'https://images.unsplash.com/photo-1552083974-186346191183?crop=entropy&cs=tinysrgb&fit=max&fm=jpg&ixid=M3w0MjU2MDR8MHwxfHNlYXJjaHw4fHxhYnN0cmFjdHxlbnwwfDB8fHwxNzEzMjg2NDY1fDA&ixlib=rb-4.0.3&q=80&w=1080',
},
},
chat: {
container: {
maxWidth: '750px',
maxHeight: '80%',
backgroundColor: '#ffffff',
blur: 5,
opacity: 0.6,
border: {
thickness: 2,
color: '#FFFFFF',
roundeness: 'large',
opacity: 0.5,
},
},
},
},
},
]