@@ -23,7 +23,12 @@ export default {
...mapState({
message: state => state.TimelineSpace.Contents.SideBar.TootDetail.message,
ancestors: state => state.TimelineSpace.Contents.SideBar.TootDetail.ancestors,
- descendants: state => state.TimelineSpace.Contents.SideBar.TootDetail.descendants
+ descendants: state => state.TimelineSpace.Contents.SideBar.TootDetail.descendants,
+ theme: (state) => {
+ return {
+ '--theme-selected-color': state.App.theme.selected_background_color
+ }
+ }
})
},
created () {
@@ -53,10 +58,14 @@ export default {
diff --git a/src/renderer/components/TimelineSpace/HeaderMenu.vue b/src/renderer/components/TimelineSpace/HeaderMenu.vue
index 2d033c1b..55c49cbf 100644
--- a/src/renderer/components/TimelineSpace/HeaderMenu.vue
+++ b/src/renderer/components/TimelineSpace/HeaderMenu.vue
@@ -14,7 +14,7 @@ export default {
title: state => state.TimelineSpace.HeaderMenu.title,
theme: (state) => {
return {
- '--theme-background-color': state.App.theme.selected_background_color
+ '--theme-background-color': state.App.theme.header_menu_color
}
}
})
diff --git a/src/renderer/store/App.js b/src/renderer/store/App.js
index 2eb66e7f..4d317505 100644
--- a/src/renderer/store/App.js
+++ b/src/renderer/store/App.js
@@ -10,7 +10,9 @@ const App = {
global_header_color: '#393f4f', // #4a5664
side_menu_color: '#191b22', // #373d48
primary_color: '#ffffff', // #303133
- border_color: '#606266' // #ebeef5
+ border_color: '#606266', // #ebeef5
+ header_menu_color: '#444b5d', // #ffffff
+ wrapper_mask_color: 'rgba(0, 0, 0, 0.7)' // rgba(255, 255, 255, 0.7)
}
},
mutations: {},