From fc042670743e9dcb3161423d8a317b9ec44ce471 Mon Sep 17 00:00:00 2001 From: Oliver Davies Date: Sun, 10 Mar 2019 09:04:53 +0000 Subject: [PATCH] Update colours in markup --- public/index.html | 2 +- src/App.vue | 12 ++-- .../Application/ApplicationCard.vue | 12 ++-- .../ApplicationDisplaySwitcher.vue | 6 +- src/components/Application/StarToggle.vue | 2 +- src/components/Environment/ActionCards.vue | 58 +++++++++---------- .../Environment/EnvironmentCards.vue | 18 +++--- src/components/Environment/QuickHelp.vue | 8 +-- .../Environment/TaskLog/TaskLog.vue | 2 +- .../Environment/TaskLog/TaskLogItem.vue | 10 ++-- src/components/Environment/ToggleHelp.vue | 2 +- src/components/HeaderButtons.vue | 2 +- src/components/Navbar.vue | 10 ++-- src/components/Sidebar.vue | 10 ++-- src/components/TitleBlock.vue | 4 +- src/views/Applications.vue | 2 +- src/views/Environment.vue | 30 +++++----- src/views/Environments.vue | 6 +- 18 files changed, 98 insertions(+), 98 deletions(-) diff --git a/public/index.html b/public/index.html index 18101a5..db7b8f7 100644 --- a/public/index.html +++ b/public/index.html @@ -7,7 +7,7 @@ Rebuilding Acquia - + diff --git a/src/App.vue b/src/App.vue index 530d548..361232b 100644 --- a/src/App.vue +++ b/src/App.vue @@ -18,29 +18,29 @@ h2 { } .btn { - @apply text-sm font-thin antialiased text-white px-4 py-3 no-underline rounded mx-1 bg-blue-dark; + @apply text-sm font-thin antialiased text-white px-4 py-3 no-underline rounded mx-1 bg-blue-3; &:hover, &:focus { - @apply bg-blue-darker + @apply bg-blue-4 } } .btn.is-secondary { - @apply bg-grey-dark; + @apply bg-grey-5; &:hover, &:focus { - @apply bg-grey-darker + @apply bg-grey-6 } } .tag { - @apply text-2xs uppercase py-1 px-2 rounded border border-grey bg-white mr-2 mb-2 + @apply text-2xs uppercase py-1 px-2 rounded border border-grey-4 bg-white mr-2 mb-2 } .tag.is-type { - @apply bg-blue-light border-blue-light text-white + @apply bg-blue-1 border-blue-1 text-white } @tailwind utilities; diff --git a/src/components/Application/ApplicationCard.vue b/src/components/Application/ApplicationCard.vue index 510c1b7..8e5e41b 100644 --- a/src/components/Application/ApplicationCard.vue +++ b/src/components/Application/ApplicationCard.vue @@ -1,14 +1,14 @@