Use common colours in old and new design

This commit is contained in:
Maikel Linke
2023-12-15 16:21:43 +11:00
parent 35ca66cbb7
commit f758daadc0
3 changed files with 5 additions and 3 deletions

View File

@@ -18,10 +18,10 @@
display: flex;
justify-content: space-between;
background-color: #f8f9fa;
background-color: $color-14;
border: none;
border-left: 4px solid #008397;
border-radius: 4px;
border-left: $border-radius solid $color-3;
border-radius: $border-radius;
box-shadow: 0px 1px 0px rgba(0, 0, 0, 0.05), 0px 2px 2px rgba(0, 0, 0, 0.07);
margin: 2em 0;
padding: 0.5em 1em;

View File

@@ -13,6 +13,7 @@ $color-3: $spree-blue !default; // Light Blue
$color-4: #6788a2 !default; // Dark Blue
$color-5: #c60f13 !default; // Red
$color-6: #ff9300 !default; // Yellow
$color-14: #f8f9fa !default; // Lighter grey
$dark-grey: #333;
$light-grey: #ddd;

View File

@@ -34,3 +34,4 @@ $color-10: $orient;
$color-11: $mystic;
$color-12: $fair-pink;
$color-13: $roof-terracotta;
$color-14: $lighter-grey;