Skip to content

Commit

Permalink
fix(ui): change quoteblock color to dark gray
Browse files Browse the repository at this point in the history
  • Loading branch information
RaneHyv committed Feb 7, 2024
1 parent cb2cb9e commit 00079ef
Show file tree
Hide file tree
Showing 3 changed files with 13 additions and 17 deletions.
4 changes: 2 additions & 2 deletions frontend/theme/extras/footer.less
Original file line number Diff line number Diff line change
Expand Up @@ -117,8 +117,8 @@ footer.site-footer {
display: inline-block;
min-height: 53px;
padding: 7px 17px;
border: 1px solid @theme-color-light-blue;
background-color: @theme-color-light-blue;
border: 1px solid @theme-color-blue;
background-color: @theme-color-blue;
border-radius: 0;
box-shadow: none;
color: @primaryText;
Expand Down
8 changes: 4 additions & 4 deletions frontend/theme/extras/main.less
Original file line number Diff line number Diff line change
Expand Up @@ -135,9 +135,9 @@ body.multiple-content-view:not(.section-edit) {
display: inline-block;
min-height: 23px;
padding: 7px 12px;
border: 1px solid @theme-color-light-blue;
border: 1px solid @theme-color-blue;
margin-right: 53px;
background-color: @theme-color-light-blue;
background-color: @theme-color-blue;
border-radius: 0;
box-shadow: none;
color: @primaryText;
Expand All @@ -156,7 +156,7 @@ body.multiple-content-view:not(.section-edit) {
top: -1px;
right: -47px;
border-bottom: 33px solid transparent;
border-left: 46px solid @theme-color-light-blue;
border-left: 46px solid @theme-color-blue;
content: '';
transition: border-color 0.3s ease;
}
Expand Down Expand Up @@ -287,7 +287,7 @@ h1.documentFirstHeading {
border: 0;
margin: 0 auto 35px;
background: none;
color: @theme-color-dark-green;
color: @theme-color-dark-gray;
float: none;
font-size: 32px;
font-style: italic;
Expand Down
18 changes: 7 additions & 11 deletions frontend/theme/globals/site.variables
Original file line number Diff line number Diff line change
Expand Up @@ -22,21 +22,17 @@
--------------------*/

/*--- Colors ---*/
@theme-color-light-grey: #eeede6;
@theme-color-dark-green: #277130;
@theme-color-dark-gray: #5e5e5e;
@theme-color-light-gray: #f5f5f5;
@theme-color-red: #df0934;
@theme-color-light-red: #f1b0bc;
@theme-color-dark-blue: #103867;
@theme-color-light-blue: #008da9;
@theme-color-blue: #008da9;
@theme-color-orange: #fce602;
@theme-color-yellow: #ffe600;
@theme-color-dark-yellow: #ffe600;
@theme-color-dark-red: #9a161e;
@theme-color-red: #df0934;
@theme-color-light-purple: #9789a5;
@theme-color-purple: #92278f;
@theme-color-green: #2da55d;
@theme-color-light-red: #f1b0bc;
@theme-color-dark-gray: #5e5e5e;
@theme-color-light-gray: #f5f5f5;

@primaryColor: @theme-color-yellow;
@primaryText: #000000;
Expand Down Expand Up @@ -82,8 +78,8 @@
Links
--------------------*/

@linkColor: @theme-color-light-blue;
@linkHoverColor: @theme-color-light-blue;
@linkColor: @theme-color-blue;
@linkHoverColor: @theme-color-blue;
@linkUnderline: none;

/*-------------------
Expand Down

0 comments on commit 00079ef

Please sign in to comment.