aboutsummaryrefslogtreecommitdiff
path: root/src/components
diff options
context:
space:
mode:
authorTerry Truong <terry06890@gmail.com>2022-06-25 00:33:32 +1000
committerTerry Truong <terry06890@gmail.com>2022-06-25 01:41:40 +1000
commita1c5e2017ef80d360cc0d08ae73437ce32766c6e (patch)
tree2cf6dabda84fb0244eae81bbb267d11239127d57 /src/components
parent212c35691f822cb2f7518ba2678fa2d14b6da60f (diff)
Convert UI options towards using bg/alt-color set
Diffstat (limited to 'src/components')
-rw-r--r--src/components/Tile.vue2
-rw-r--r--src/components/TutorialPane.vue2
2 files changed, 2 insertions, 2 deletions
diff --git a/src/components/Tile.vue b/src/components/Tile.vue
index 5e4bccf..df281f5 100644
--- a/src/components/Tile.vue
+++ b/src/components/Tile.vue
@@ -220,7 +220,7 @@ export default defineComponent({
height: this.lytOpts.headerSz + 'px',
borderTopLeftRadius: 'inherit',
borderTopRightRadius: 'inherit',
- backgroundColor: this.uiOpts.nonleafHeaderBgColor,
+ backgroundColor: this.uiOpts.bgColorDark,
};
if (this.isOverflownRoot){
styles = {
diff --git a/src/components/TutorialPane.vue b/src/components/TutorialPane.vue
index e32fedd..fdebc8b 100644
--- a/src/components/TutorialPane.vue
+++ b/src/components/TutorialPane.vue
@@ -20,7 +20,7 @@ export default defineComponent({
computed: {
styles(): Record<string,string> {
return {
- backgroundColor: this.uiOpts.tutPaneBgColor,
+ backgroundColor: this.uiOpts.bgColorDark,
color: this.uiOpts.textColor,
height: this.height,
};