Skip to content

Commit

Permalink
fix(ui): change primary color to blue
Browse files Browse the repository at this point in the history
  • Loading branch information
RaneHyv committed Feb 7, 2024
1 parent 00079ef commit 93dcbbe
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 14 deletions.
10 changes: 0 additions & 10 deletions frontend/theme/extras/blocks/button.less
Original file line number Diff line number Diff line change
Expand Up @@ -20,16 +20,6 @@ a.text-button.btn-block {
transition: background-color 0.3s ease, color 0.3s ease,
border-color 0.3s ease;

&::after {
position: absolute;
top: -1px;
right: -47px;
border-bottom: 53px solid transparent;
border-left: 46px solid @primaryColor;
content: '';
transition: border-color 0.3s ease;
}

&.secondary {
border-color: @secondaryColor;
background-color: @secondaryColor;
Expand Down
4 changes: 2 additions & 2 deletions frontend/theme/extras/header.less
Original file line number Diff line number Diff line change
Expand Up @@ -292,12 +292,12 @@ nav.navigation {

&.private {
a {
color: #c4183c !important;
color: #f8c1c3 !important;

&:hover,
&:focus,
&.active {
color: #801027 !important;
color: #fcc9cb !important;
}
}
}
Expand Down
5 changes: 3 additions & 2 deletions frontend/theme/globals/site.variables
Original file line number Diff line number Diff line change
Expand Up @@ -34,10 +34,11 @@
@theme-color-light-purple: #9789a5;
@theme-color-purple: #92278f;

@primaryColor: @theme-color-yellow;
@primaryText: #000000;
@primaryColor: @theme-color-blue;
@primaryText: #ffffff;
@secondaryColor: @theme-color-purple;
@secondaryText: #ffffff;
@blackText: #000000;
@footerColor: #df0934;
@footerText: #ffffff;

Expand Down

0 comments on commit 93dcbbe

Please sign in to comment.