%PDF- %PDF-
| Direktori : /www/varak.net/nextcloud.varak.net/apps_old/apps/bookmarks/src/mixins/ |
| Current File : /www/varak.net/nextcloud.varak.net/apps_old/apps/bookmarks/src/mixins/AppGlobal.js |
/*
* Copyright (c) 2020. The Nextcloud Bookmarks contributors.
*
* This file is licensed under the Affero General Public License version 3 or later. See the COPYING file.
*/
export default {
methods: {
t,
n,
},
computed: {
routes() {
return this.$store.getters.getRoutes()
},
isPublic() {
return this.$store.state.public
},
colorPrimaryElement() {
return getComputedStyle(document.documentElement).getPropertyValue('--color-primary-element')
},
colorPrimaryText() {
return getComputedStyle(document.documentElement).getPropertyValue('--color-primary-element-text')
},
colorMainText() {
return getComputedStyle(document.documentElement).getPropertyValue('--color-main-text')
},
colorMainBackground() {
return getComputedStyle(document.documentElement).getPropertyValue('--color-main-background')
},
colorPlaceholderDark() {
return getComputedStyle(document.documentElement).getPropertyValue('--color-placeholder-dark')
},
},
}