-
Notifications
You must be signed in to change notification settings - Fork 0
/
themeConfig.js
53 lines (47 loc) · 1.72 KB
/
themeConfig.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
import { breakpointsVuetify } from '@vueuse/core'
import { VIcon } from 'vuetify/components'
import { defineThemeConfig } from '@core'
import { RouteTransitions, Skins } from '@core/enums'
// ❗ Logo SVG must be imported with ?raw suffix
// import logo from '@images/logo.svg?raw'
import logo from '@images/logo_customchatgpt.svg?raw'
import { AppContentLayoutNav, ContentWidth, FooterType, NavbarType } from '@layouts/enums'
export const { themeConfig, layoutConfig } = defineThemeConfig({
app: {
title: 'CustomGPT.ai',
logo: h('div', { innerHTML: logo, style: 'line-height:0; color: rgb(var(--v-global-theme-primary))' }),
contentWidth: ContentWidth.Boxed,
contentLayoutNav: AppContentLayoutNav.Vertical,
overlayNavFromBreakpoint: breakpointsVuetify.md + 16,
enableI18n: false,
theme: 'light',
isRtl: false,
skin: Skins.Default,
routeTransition: RouteTransitions.Fade,
iconRenderer: VIcon,
},
navbar: {
type: NavbarType.Sticky,
navbarBlur: true,
},
footer: { type: FooterType.Static },
verticalNav: {
isVerticalNavCollapsed: false,
defaultNavItemIconProps: { icon: 'tabler-circle', size: 10 },
isVerticalNavSemiDark: false,
},
horizontalNav: {
type: 'sticky',
transition: 'slide-y-reverse-transition',
},
icons: {
chevronDown: { icon: 'tabler-chevron-down' },
chevronRight: { icon: 'tabler-chevron-right', size: 18 },
close: { icon: 'tabler-x' },
// verticalNavPinned: { icon: 'tabler-circle-dot' },
// verticalNavUnPinned: { icon: 'tabler-circle' },
verticalNavPinned: { icon: 'custom-indent-decrease' },
verticalNavUnPinned: { icon: 'custom-indent-increase' },
sectionTitlePlaceholder: { icon: 'tabler-separator' },
},
})