diff --git a/.vscode/settings.json b/.vscode/settings.json index 25fa621..6a8bdc6 100644 --- a/.vscode/settings.json +++ b/.vscode/settings.json @@ -1,3 +1,23 @@ { - "typescript.tsdk": "node_modules/typescript/lib" + "typescript.tsdk": "node_modules/typescript/lib", + "workbench.colorCustomizations": { + "activityBar.activeBackground": "#0037c5", + "activityBar.background": "#0037c5", + "activityBar.foreground": "#e7e7e7", + "activityBar.inactiveForeground": "#e7e7e799", + "activityBarBadge.background": "#200009", + "activityBarBadge.foreground": "#e7e7e7", + "commandCenter.border": "#e7e7e799", + "sash.hoverBorder": "#0037c5", + "statusBar.background": "#002992", + "statusBar.foreground": "#e7e7e7", + "statusBarItem.hoverBackground": "#0037c5", + "statusBarItem.remoteBackground": "#002992", + "statusBarItem.remoteForeground": "#e7e7e7", + "titleBar.activeBackground": "#002992", + "titleBar.activeForeground": "#e7e7e7", + "titleBar.inactiveBackground": "#00299299", + "titleBar.inactiveForeground": "#e7e7e799" + }, + "peacock.color": "#002992" } diff --git a/feature-flow.css b/feature-flow.css index c79af3c..c81d72c 100644 --- a/feature-flow.css +++ b/feature-flow.css @@ -33,7 +33,7 @@ ul { margin-top: 1rem; border: 3px solid var(--primary-color); color: var(--primary-color); - background-color: white; + background-color: var(--color); min-height: var(--feature-item-height); display: flex; flex-direction: column; @@ -48,7 +48,7 @@ ul { .blue-bin { background-color: var(--primary-color); - color: white; + color: var(--color); font-size: 18pt; } diff --git a/src/modules/feature/FeatureControls.vue b/src/modules/feature/FeatureControls.vue new file mode 100644 index 0000000..c0e6b1a --- /dev/null +++ b/src/modules/feature/FeatureControls.vue @@ -0,0 +1,40 @@ + + + + + diff --git a/src/modules/feature/FeatureStep.vue b/src/modules/feature/FeatureStep.vue index 9e5ec08..d0a0ce0 100644 --- a/src/modules/feature/FeatureStep.vue +++ b/src/modules/feature/FeatureStep.vue @@ -116,7 +116,7 @@ const isLive = computed( background-color: var(--primary-color); padding: 0.35rem; text-align: center; - color: white; + color: var(--color); } li { diff --git a/src/modules/feature/FeatureSteps.vue b/src/modules/feature/FeatureSteps.vue index 481cebc..2964248 100644 --- a/src/modules/feature/FeatureSteps.vue +++ b/src/modules/feature/FeatureSteps.vue @@ -1,4 +1,5 @@