From abeade809924c3f3116812b32a9bbe023379c105 Mon Sep 17 00:00:00 2001 From: Furkan Yavuz Date: Fri, 10 Sep 2021 13:42:47 +0300 Subject: [PATCH] brand-color to theme-color change --- README.md | 8 -- .../event-data/event-data.component.html | 16 +-- .../event-data/event-data.component.scss | 2 +- .../button/button1/button1.component.html | 8 +- .../button/button1/button1.component.scss | 33 +++-- .../button/button1/button1.component.ts | 3 +- .../common/card/card1/card1.component.html | 6 +- .../common/card/card1/card1.component.scss | 4 +- .../common/card/card1/card1.component.ts | 2 +- .../card/event-card/event-card.component.html | 60 ++++---- .../pricing-card/pricing-card.component.html | 2 +- .../testimonial-card.component.scss | 4 +- .../testimonial-card.component.ts | 2 +- .../color-chart/color-chart.component.html | 10 +- .../dropdown-menu.component.html | 2 +- .../dropdown-menu.component.scss | 14 +- .../common/rate-bar/rate-bar.component.html | 2 +- .../swiper-wrapper.component.scss | 2 +- .../bottom-nav/bottom-nav.component.scss | 12 +- .../nav/common/footer/footer.component.scss | 8 +- .../dashboard-layout-top-nav.component.scss | 8 +- .../landing-layout-top-nav.component.scss | 8 +- .../cookie-popup/cookie-popup.component.scss | 8 +- .../timeline/timeline.component.html | 2 +- .../timeline/timeline.component.scss | 8 +- .../create-event/create-event.component.scss | 6 +- .../dashboard/dashboard.component.scss | 2 +- .../event/event.component.scss | 2 +- .../learn/learn.component.scss | 2 +- .../my-profile/my-profile.component.html | 10 +- .../my-profile/my-profile.component.scss | 4 +- .../public-profile.component.html | 10 +- .../public-profile.component.scss | 2 +- .../side-content/side-content.component.html | 4 +- .../landing-layout/home/home.component.scss | 12 +- .../landing-layout.component.html | 2 +- .../landing-layout.component.scss | 2 +- .../landing-layout/login/login.component.html | 2 +- .../maintenance/maintenance.component.html | 2 +- .../maintenance/maintenance.component.scss | 2 +- .../not-found/not-found.component.html | 2 +- .../not-found/not-found.component.scss | 2 +- .../product/product.component.scss | 10 +- .../sign-up-success.component.scss | 2 +- .../sign-up/sign-up.component.html | 2 +- .../verify-account.component.html | 4 +- .../verify-account.component.scss | 2 +- .../callback/callback.component.scss | 2 +- .../external/external.component.scss | 2 +- src/app/service/theme/theme.service.ts | 38 ++--- src/styles/animation/animation.scss | 4 +- src/styles/loading/loading.scss | 4 +- src/styles/rate/rate.scss | 10 +- src/styles/ribbon/ribbon.scss | 2 +- src/styles/styles.common.scss | 4 +- src/styles/theme/blue-theme/blue-theme.scss | 132 +++++++++--------- src/styles/theme/green-theme/green-theme.scss | 132 +++++++++--------- src/styles/theme/red-theme/red-theme.scss | 132 +++++++++--------- .../theme/yellow-theme/yellow-theme.scss | 132 +++++++++--------- 59 files changed, 456 insertions(+), 460 deletions(-) diff --git a/README.md b/README.md index bf628f78..45abc9bb 100644 --- a/README.md +++ b/README.md @@ -131,14 +131,6 @@ PORT=4200 Check project's current **nodejs** and **npm** version from **[package.json](package.json)**. -## Landing Screen Images - -To be able to update home screen images, we are using open source project **[Scale by Flexiple](https://2.flexiple.com/scale/all-illustrations)**. - -Find our brand color at **[brand.scss](src/styles/brand/brand.scss)** and apply at the website and download images. - -
- ## Brand Color Scale Generator To be able to generate brand color scales, we are using **[Colllor](http://colllor.com)**. diff --git a/src/app/component/common/block/event-data/event-data.component.html b/src/app/component/common/block/event-data/event-data.component.html index ef279fb8..8497c349 100644 --- a/src/app/component/common/block/event-data/event-data.component.html +++ b/src/app/component/common/block/event-data/event-data.component.html @@ -61,35 +61,35 @@

{{timeItem}}

+ [themeColor]="'default'" [icon]="'pen'" [isSleekButton]="true" [text]="'Edit'"> + [themeColor]="'default'" [isSleekButton]="true" [text]="'Attend'"> + [themeColor]="'default'" [isSleekButton]="true" [text]="'Mark As Completed'" [icon]="'check'"> - - + [themeColor]="'default'" [isSleekButton]="true" [text]="'Rate'"> + [themeLightColor]="true" [isSleekButton]="true" [text]="'In Progress'" [icon]="'hourglass'">

{{'#' + category.name}}

diff --git a/src/app/component/common/block/event-data/event-data.component.scss b/src/app/component/common/block/event-data/event-data.component.scss index 444b4e7b..8b21158c 100644 --- a/src/app/component/common/block/event-data/event-data.component.scss +++ b/src/app/component/common/block/event-data/event-data.component.scss @@ -142,7 +142,7 @@ } .content-information-row-data { - color: var(--brand-color); + color: var(--theme-color); font-weight: 400; font-size: 1.1em; } diff --git a/src/app/component/common/button/button1/button1.component.html b/src/app/component/common/button/button1/button1.component.html index bcb4ca6a..57a874b4 100644 --- a/src/app/component/common/button/button1/button1.component.html +++ b/src/app/component/common/button/button1/button1.component.html @@ -1,11 +1,11 @@ -
diff --git a/src/app/component/common/card/testimonial-card/testimonial-card.component.scss b/src/app/component/common/card/testimonial-card/testimonial-card.component.scss index a0c471e8..054ac087 100644 --- a/src/app/component/common/card/testimonial-card/testimonial-card.component.scss +++ b/src/app/component/common/card/testimonial-card/testimonial-card.component.scss @@ -15,7 +15,7 @@ } .icon-wrapper i { - color: var(--brand-color); + color: var(--theme-color); } .footer-social { @@ -32,7 +32,7 @@ } .footer-social i { - color: var(--brand-color); + color: var(--theme-color); } .reviewer { diff --git a/src/app/component/common/card/testimonial-card/testimonial-card.component.ts b/src/app/component/common/card/testimonial-card/testimonial-card.component.ts index 56881e6a..1400a3ad 100644 --- a/src/app/component/common/card/testimonial-card/testimonial-card.component.ts +++ b/src/app/component/common/card/testimonial-card/testimonial-card.component.ts @@ -33,7 +33,7 @@ export class TestimonialCardComponent { }, }, style: { - themeColor: 'var(--brand-color-lighter-2)', + themeColor: 'var(--theme-color-lighter-2)', }, }; diff --git a/src/app/component/common/color-chart/color-chart.component.html b/src/app/component/common/color-chart/color-chart.component.html index f9815fd5..9637ae45 100644 --- a/src/app/component/common/color-chart/color-chart.component.html +++ b/src/app/component/common/color-chart/color-chart.component.html @@ -3,19 +3,19 @@ Less - + - + - + - + - + More diff --git a/src/app/component/common/dropdown-menu/dropdown-menu.component.html b/src/app/component/common/dropdown-menu/dropdown-menu.component.html index e0704eb3..0b8a0bcd 100644 --- a/src/app/component/common/dropdown-menu/dropdown-menu.component.html +++ b/src/app/component/common/dropdown-menu/dropdown-menu.component.html @@ -19,7 +19,7 @@

{{ productLine.name }}

-
+

{{ productLine.description }}

diff --git a/src/app/component/common/dropdown-menu/dropdown-menu.component.scss b/src/app/component/common/dropdown-menu/dropdown-menu.component.scss index fb33212e..12f379b2 100644 --- a/src/app/component/common/dropdown-menu/dropdown-menu.component.scss +++ b/src/app/component/common/dropdown-menu/dropdown-menu.component.scss @@ -17,7 +17,7 @@ .dropdown-content i { font-size: 15px; - color: var(--brand-color-lighter-2); + color: var(--theme-color-lighter-2); } .dropdown-top-menu { @@ -84,7 +84,7 @@ } .section-column .section-header h4 { - color: var(--brand-color); + color: var(--theme-color); font-weight: 500; } @@ -107,7 +107,7 @@ width: 25%; margin: 0 0 0 1px; border-style: solid; - border-color: var(--brand-color); + border-color: var(--theme-color); } .section-column-wrapper { @@ -175,7 +175,7 @@ @media (hover: hover) { .dropdown-item:hover { transition: .4s all ease-in-out; - background-color: var(--brand-color-lighter-8); + background-color: var(--theme-color-lighter-8); } .dropdown-item:hover img { @@ -184,7 +184,7 @@ } .dropdown-item:hover .dropdown-item-content > * { - color: var(--brand-color-darker-7); + color: var(--theme-color-darker-7); } } @@ -254,10 +254,10 @@ } .section-column::-webkit-scrollbar-track { - background-color: var(--brand-color-lighter-9); + background-color: var(--theme-color-lighter-9); } .section-column::-webkit-scrollbar-thumb { - background-color: var(--brand-color-lighter-3); + background-color: var(--theme-color-lighter-3); } } diff --git a/src/app/component/common/rate-bar/rate-bar.component.html b/src/app/component/common/rate-bar/rate-bar.component.html index c88ba08e..97d725cf 100644 --- a/src/app/component/common/rate-bar/rate-bar.component.html +++ b/src/app/component/common/rate-bar/rate-bar.component.html @@ -2,7 +2,7 @@

{{ formattedRateNumber }}

diff --git a/src/app/component/common/swiper-wrapper/swiper-wrapper.component.scss b/src/app/component/common/swiper-wrapper/swiper-wrapper.component.scss index b95e9d0d..22701c26 100644 --- a/src/app/component/common/swiper-wrapper/swiper-wrapper.component.scss +++ b/src/app/component/common/swiper-wrapper/swiper-wrapper.component.scss @@ -55,7 +55,7 @@ app-swiper-wrapper { } .swiper-pagination-bullet-active { - background: var(--brand-color); + background: var(--theme-color); } /* diff --git a/src/app/component/nav/common/bottom-nav/bottom-nav.component.scss b/src/app/component/nav/common/bottom-nav/bottom-nav.component.scss index f78b2064..28ed675f 100644 --- a/src/app/component/nav/common/bottom-nav/bottom-nav.component.scss +++ b/src/app/component/nav/common/bottom-nav/bottom-nav.component.scss @@ -32,8 +32,8 @@ } .login { - color: var(--brand-color); - border-bottom: var(--brand-color) 1px solid; + color: var(--theme-color); + border-bottom: var(--theme-color) 1px solid; } .bottom-nav a i { @@ -42,9 +42,9 @@ } .bottom-nav .contact { - color: var(--brand-color); + color: var(--theme-color); border-radius: 0; - border-bottom: var(--brand-color) 1px solid; + border-bottom: var(--theme-color) 1px solid; } .bottom-nav .contact span { @@ -54,7 +54,7 @@ .bottom-nav .contact:hover { color: white; border-radius: 3px; - background: var(--brand-color); + background: var(--theme-color); } @media only screen and (max-width: 999px) { @@ -81,6 +81,6 @@ .bottom-nav .login:hover { color: white; - background: var(--brand-color); + background: var(--theme-color); } } diff --git a/src/app/component/nav/common/footer/footer.component.scss b/src/app/component/nav/common/footer/footer.component.scss index 6f271be5..ef932545 100644 --- a/src/app/component/nav/common/footer/footer.component.scss +++ b/src/app/component/nav/common/footer/footer.component.scss @@ -71,11 +71,11 @@ display: flex; justify-content: flex-end; align-items: center; - color: var(--brand-color); + color: var(--theme-color); } .footer-social i { - color: var(--brand-color); + color: var(--theme-color); } .footer.footer-hide-shadow { @@ -183,7 +183,7 @@ } .footer-brand-row .brand { - border-right: 1px solid var(--brand-color); + border-right: 1px solid var(--theme-color); padding: 0 10px; } @@ -206,6 +206,6 @@ .footer-link-content:hover { background: none; - color: var(--brand-color); + color: var(--theme-color); } } diff --git a/src/app/component/nav/dashboard/dashboard-layout-top-nav/dashboard-layout-top-nav.component.scss b/src/app/component/nav/dashboard/dashboard-layout-top-nav/dashboard-layout-top-nav.component.scss index bde5c229..0bbde2f8 100644 --- a/src/app/component/nav/dashboard/dashboard-layout-top-nav/dashboard-layout-top-nav.component.scss +++ b/src/app/component/nav/dashboard/dashboard-layout-top-nav/dashboard-layout-top-nav.component.scss @@ -44,11 +44,11 @@ } .dashboard-layout-top-nav div input:focus { - border-bottom: 1px solid var(--brand-color); + border-bottom: 1px solid var(--theme-color); } .dashboard-layout-top-nav div input:focus + i { - color: var(--brand-color); + color: var(--theme-color); } .dashboard-layout-top-nav a i { @@ -93,7 +93,7 @@ justify-content: center; align-items: center; border-bottom: 1px solid var(--darker-contrast); - background-color: var(--brand-color); + background-color: var(--theme-color); color: var(--darker-contrast); } @@ -121,6 +121,6 @@ .dashboard-layout-top-nav-search-results a:hover { background: var(--hover); - color: var(--brand-color); + color: var(--theme-color); } } diff --git a/src/app/component/nav/landing/landing-layout-top-nav/landing-layout-top-nav.component.scss b/src/app/component/nav/landing/landing-layout-top-nav/landing-layout-top-nav.component.scss index b10e56b2..8c337464 100644 --- a/src/app/component/nav/landing/landing-layout-top-nav/landing-layout-top-nav.component.scss +++ b/src/app/component/nav/landing/landing-layout-top-nav/landing-layout-top-nav.component.scss @@ -23,9 +23,9 @@ } .top-nav .right-item-wrapper .contact { - color: var(--brand-color); + color: var(--theme-color); border-radius: 0; - border-bottom: var(--brand-color) 1px solid; + border-bottom: var(--theme-color) 1px solid; } .top-nav .brand > * { @@ -72,7 +72,7 @@ app-dropdown-menu i { .top-nav .right-item-wrapper .contact:hover { color: white; border-radius: 3px; - background-color: var(--brand-color); + background-color: var(--theme-color); } .bottom-nav a:hover { @@ -81,6 +81,6 @@ app-dropdown-menu i { .bottom-nav .right-item-wrapper .contact:hover { color: white; - background: var(--brand-color); + background: var(--theme-color); } } diff --git a/src/app/component/popup/cookie-popup/cookie-popup.component.scss b/src/app/component/popup/cookie-popup/cookie-popup.component.scss index ed4faa40..1d2b4bb9 100644 --- a/src/app/component/popup/cookie-popup/cookie-popup.component.scss +++ b/src/app/component/popup/cookie-popup/cookie-popup.component.scss @@ -26,7 +26,7 @@ } .accept { - color: var(--brand-color); + color: var(--theme-color); display: flex; justify-content: center; align-items: center; @@ -34,12 +34,12 @@ } .accept:hover { - background: var(--brand-color); + background: var(--theme-color); cursor: pointer; } .accept h5 { - color: var(--brand-color); + color: var(--theme-color); margin: 0; white-space: nowrap; } @@ -77,7 +77,7 @@ } .accept { - border-left: var(--brand-color) 1px solid; + border-left: var(--theme-color) 1px solid; padding-left: 50px; padding-right: 50px; } diff --git a/src/app/component/timeline/timeline.component.html b/src/app/component/timeline/timeline.component.html index 1ee65865..d29ed00e 100644 --- a/src/app/component/timeline/timeline.component.html +++ b/src/app/component/timeline/timeline.component.html @@ -4,7 +4,7 @@ + [bottomWrapperColor]="'var(--theme-color-lighter-5)'">
{{ i + 1 }} diff --git a/src/app/component/timeline/timeline.component.scss b/src/app/component/timeline/timeline.component.scss index 1f65d04e..4c52a351 100644 --- a/src/app/component/timeline/timeline.component.scss +++ b/src/app/component/timeline/timeline.component.scss @@ -64,7 +64,7 @@ $marker-dist: $card-width + math.div($outer-margin, 2) - math.div($marker-size, content: ""; width: $marker-size; height: $marker-size; - background-color: var(--brand-color-lighter-2); + background-color: var(--theme-color-lighter-2); border: 5px solid var(--background-color); border-radius: $marker-size; @@ -127,7 +127,7 @@ $counter: $items - $rows + 2; border-radius: 5px; .head::after { - border-color: var(--brand-color-lighter-2); + border-color: var(--theme-color-lighter-2); } position: relative; @@ -179,7 +179,7 @@ $counter: $items - $rows + 2; display: flex; align-items: center; color: var(--color); - background-color: var(--brand-color-lighter-2); + background-color: var(--theme-color-lighter-2); border-top-left-radius: 5px; border-top-right-radius: 5px; @@ -220,7 +220,7 @@ $counter: $items - $rows + 2; } .img-wrapper { -// background-color: var(--brand-color-lighter-8); +// background-color: var(--theme-color-lighter-8); padding: $inner-margin; width: 100%; min-height: 50%; diff --git a/src/app/page/dashboard-layout/create-event/create-event.component.scss b/src/app/page/dashboard-layout/create-event/create-event.component.scss index 89669a8a..bb9c1997 100644 --- a/src/app/page/dashboard-layout/create-event/create-event.component.scss +++ b/src/app/page/dashboard-layout/create-event/create-event.component.scss @@ -69,7 +69,7 @@ } .section .section-footer .section-footer-icons span .button-active { - color: var(--brand-color); + color: var(--theme-color); } .section .section-footer .section-footer-icons i { @@ -218,7 +218,7 @@ justify-content: center; align-items: center; border-bottom: 1px solid var(--darker-contrast); - background-color: var(--brand-color); + background-color: var(--theme-color); color: var(--darker-contrast); } @@ -276,6 +276,6 @@ } .section .section-footer .section-footer-icons span i:hover { - color: var(--brand-color); + color: var(--theme-color); } } diff --git a/src/app/page/dashboard-layout/dashboard/dashboard.component.scss b/src/app/page/dashboard-layout/dashboard/dashboard.component.scss index 5e47bea4..222c1831 100644 --- a/src/app/page/dashboard-layout/dashboard/dashboard.component.scss +++ b/src/app/page/dashboard-layout/dashboard/dashboard.component.scss @@ -30,7 +30,7 @@ .follower-count, .following-count, .event-count { font-style: normal; - color: var(--brand-color); + color: var(--theme-color); } .dashboard-page-events { diff --git a/src/app/page/dashboard-layout/event/event.component.scss b/src/app/page/dashboard-layout/event/event.component.scss index e0e7774d..e900d2f2 100644 --- a/src/app/page/dashboard-layout/event/event.component.scss +++ b/src/app/page/dashboard-layout/event/event.component.scss @@ -17,7 +17,7 @@ } .attendees-name-area a { - color: var(--brand-color); + color: var(--theme-color); } h2, h3 { diff --git a/src/app/page/dashboard-layout/learn/learn.component.scss b/src/app/page/dashboard-layout/learn/learn.component.scss index 971e187f..3c84a0fc 100644 --- a/src/app/page/dashboard-layout/learn/learn.component.scss +++ b/src/app/page/dashboard-layout/learn/learn.component.scss @@ -140,6 +140,6 @@ } .search-area i:hover { - border-color: var(--brand-color) + border-color: var(--theme-color) } } diff --git a/src/app/page/dashboard-layout/my-profile/my-profile.component.html b/src/app/page/dashboard-layout/my-profile/my-profile.component.html index dcc2c166..a9770f96 100644 --- a/src/app/page/dashboard-layout/my-profile/my-profile.component.html +++ b/src/app/page/dashboard-layout/my-profile/my-profile.component.html @@ -140,19 +140,19 @@

No results found

Less - + - + - + - + - + More diff --git a/src/app/page/dashboard-layout/my-profile/my-profile.component.scss b/src/app/page/dashboard-layout/my-profile/my-profile.component.scss index 0b09f57f..1074b179 100644 --- a/src/app/page/dashboard-layout/my-profile/my-profile.component.scss +++ b/src/app/page/dashboard-layout/my-profile/my-profile.component.scss @@ -30,7 +30,7 @@ .follower-count, .following-count, .event-count { font-style: normal; - color: var(--brand-color); + color: var(--theme-color); } .color-chart { @@ -44,7 +44,7 @@ } .section-header i { - color: var(--brand-color); + color: var(--theme-color); margin-left: 15px; } diff --git a/src/app/page/dashboard-layout/public-profile/public-profile.component.html b/src/app/page/dashboard-layout/public-profile/public-profile.component.html index 3132b708..b0bac8dd 100644 --- a/src/app/page/dashboard-layout/public-profile/public-profile.component.html +++ b/src/app/page/dashboard-layout/public-profile/public-profile.component.html @@ -119,19 +119,19 @@ Less - + - + - + - + - + More diff --git a/src/app/page/dashboard-layout/public-profile/public-profile.component.scss b/src/app/page/dashboard-layout/public-profile/public-profile.component.scss index cd49c93d..5789986f 100644 --- a/src/app/page/dashboard-layout/public-profile/public-profile.component.scss +++ b/src/app/page/dashboard-layout/public-profile/public-profile.component.scss @@ -17,7 +17,7 @@ .follower-count, .following-count, .event-count { font-style: normal; - color: var(--brand-color); + color: var(--theme-color); } .follower-following-count-area { diff --git a/src/app/page/dashboard-layout/side-content/side-content.component.html b/src/app/page/dashboard-layout/side-content/side-content.component.html index e0895261..2c187557 100644 --- a/src/app/page/dashboard-layout/side-content/side-content.component.html +++ b/src/app/page/dashboard-layout/side-content/side-content.component.html @@ -7,7 +7,7 @@ [paddingContent]="false" [shadow]="false" class="upcoming-card">

Explore Events

-
+

Followed Contributors

-
+
- +
diff --git a/src/app/page/landing-layout/landing-layout.component.scss b/src/app/page/landing-layout/landing-layout.component.scss index cbd27215..337dae82 100644 --- a/src/app/page/landing-layout/landing-layout.component.scss +++ b/src/app/page/landing-layout/landing-layout.component.scss @@ -32,7 +32,7 @@ } .policy-content a { - color: var(--brand-color); + color: var(--theme-color); } .landing-form-page { diff --git a/src/app/page/landing-layout/login/login.component.html b/src/app/page/landing-layout/login/login.component.html index e429c639..94437167 100644 --- a/src/app/page/landing-layout/login/login.component.html +++ b/src/app/page/landing-layout/login/login.component.html @@ -31,7 +31,7 @@

Please check again later

- +
diff --git a/src/app/page/landing-layout/maintenance/maintenance.component.scss b/src/app/page/landing-layout/maintenance/maintenance.component.scss index 4a23ee47..a0397254 100644 --- a/src/app/page/landing-layout/maintenance/maintenance.component.scss +++ b/src/app/page/landing-layout/maintenance/maintenance.component.scss @@ -1,5 +1,5 @@ .maintenance-content h3{ - color: var(--brand-color); + color: var(--theme-color); } .maintenance-content app-button1 { diff --git a/src/app/page/landing-layout/not-found/not-found.component.html b/src/app/page/landing-layout/not-found/not-found.component.html index f56151a5..06a0c445 100644 --- a/src/app/page/landing-layout/not-found/not-found.component.html +++ b/src/app/page/landing-layout/not-found/not-found.component.html @@ -7,7 +7,7 @@

404 Page not found

Something went wrong!

- + diff --git a/src/app/page/landing-layout/not-found/not-found.component.scss b/src/app/page/landing-layout/not-found/not-found.component.scss index 6fca7fca..4e53a66d 100644 --- a/src/app/page/landing-layout/not-found/not-found.component.scss +++ b/src/app/page/landing-layout/not-found/not-found.component.scss @@ -1,5 +1,5 @@ .notfound-content h3 { - color: var(--brand-color); + color: var(--theme-color); } .notfound-content app-button1 { diff --git a/src/app/page/landing-layout/product/product.component.scss b/src/app/page/landing-layout/product/product.component.scss index f17dc510..d8ce06da 100644 --- a/src/app/page/landing-layout/product/product.component.scss +++ b/src/app/page/landing-layout/product/product.component.scss @@ -37,7 +37,7 @@ .product-line-header h4 { font-weight: normal; - color: var(--brand-color); + color: var(--theme-color); } .feature img { @@ -51,7 +51,7 @@ } .feature-right .feature { - background-color: var(--brand-color-lighter-5); + background-color: var(--theme-color-lighter-5); } .feature-notes { @@ -119,8 +119,8 @@ padding: 10px 17px; display: inline-flex; align-items: center; - color: var(--brand-color); - border: 1px solid var(--brand-color); + color: var(--theme-color); + border: 1px solid var(--theme-color); margin-left: 1.5em; white-space: nowrap; } @@ -146,7 +146,7 @@ } .counter { - color: var(--brand-color); + color: var(--theme-color); font-weight: 400; } diff --git a/src/app/page/landing-layout/sign-up-success/sign-up-success.component.scss b/src/app/page/landing-layout/sign-up-success/sign-up-success.component.scss index 9e4377db..1fe75a43 100644 --- a/src/app/page/landing-layout/sign-up-success/sign-up-success.component.scss +++ b/src/app/page/landing-layout/sign-up-success/sign-up-success.component.scss @@ -1,4 +1,4 @@ .sign-up-success-content span { - color: var(--brand-color); + color: var(--theme-color); font-weight: normal; } diff --git a/src/app/page/landing-layout/sign-up/sign-up.component.html b/src/app/page/landing-layout/sign-up/sign-up.component.html index 0fbb8f89..62c2c7d0 100644 --- a/src/app/page/landing-layout/sign-up/sign-up.component.html +++ b/src/app/page/landing-layout/sign-up/sign-up.component.html @@ -32,7 +32,7 @@
- +

By signing up, you agree Terms of Use, diff --git a/src/app/page/landing-layout/verify-account/verify-account.component.html b/src/app/page/landing-layout/verify-account/verify-account.component.html index dd05cbd0..d583f2d5 100644 --- a/src/app/page/landing-layout/verify-account/verify-account.component.html +++ b/src/app/page/landing-layout/verify-account/verify-account.component.html @@ -10,12 +10,12 @@

Account verified 🎉

Please proceed with login

-

Something went wrong!

- diff --git a/src/app/page/landing-layout/verify-account/verify-account.component.scss b/src/app/page/landing-layout/verify-account/verify-account.component.scss index 1a9f4e65..4bf0ff9a 100644 --- a/src/app/page/landing-layout/verify-account/verify-account.component.scss +++ b/src/app/page/landing-layout/verify-account/verify-account.component.scss @@ -1,5 +1,5 @@ .verify-account-content h3 { - color: var(--brand-color); + color: var(--theme-color); } .verify-account-content app-button1 { diff --git a/src/app/page/splash-layout/callback/callback.component.scss b/src/app/page/splash-layout/callback/callback.component.scss index 3173e4c8..5b0f1201 100644 --- a/src/app/page/splash-layout/callback/callback.component.scss +++ b/src/app/page/splash-layout/callback/callback.component.scss @@ -27,7 +27,7 @@ content: ""; width: 68px; height: 2px; - background: var(--brand-color); + background: var(--theme-color); position: absolute; left: -34px; animation: splash-loading-bar 1.5s infinite ease; diff --git a/src/app/page/splash-layout/external/external.component.scss b/src/app/page/splash-layout/external/external.component.scss index 49262eb7..7c18e1c8 100644 --- a/src/app/page/splash-layout/external/external.component.scss +++ b/src/app/page/splash-layout/external/external.component.scss @@ -23,7 +23,7 @@ content: ""; width: 68px; height: 2px; - background: var(--brand-color); + background: var(--theme-color); position: absolute; left: -34px; animation: splash-loading-bar 1.5s infinite ease; diff --git a/src/app/service/theme/theme.service.ts b/src/app/service/theme/theme.service.ts index 5af36f92..2ed618bf 100644 --- a/src/app/service/theme/theme.service.ts +++ b/src/app/service/theme/theme.service.ts @@ -29,25 +29,25 @@ export class ThemeService { private maxHeightMedia; colors = [ - '--brand-color', - '--brand-color-lighter-1', - '--brand-color-lighter-2', - '--brand-color-lighter-3', - '--brand-color-lighter-4', - '--brand-color-lighter-5', - '--brand-color-lighter-6', - '--brand-color-lighter-7', - '--brand-color-lighter-8', - '--brand-color-lighter-9', - '--brand-color-darker-1', - '--brand-color-darker-2', - '--brand-color-darker-3', - '--brand-color-darker-4', - '--brand-color-darker-5', - '--brand-color-darker-6', - '--brand-color-darker-7', - '--brand-color-darker-8', - '--brand-color-darker-9' + '--theme-color', + '--theme-color-lighter-1', + '--theme-color-lighter-2', + '--theme-color-lighter-3', + '--theme-color-lighter-4', + '--theme-color-lighter-5', + '--theme-color-lighter-6', + '--theme-color-lighter-7', + '--theme-color-lighter-8', + '--theme-color-lighter-9', + '--theme-color-darker-1', + '--theme-color-darker-2', + '--theme-color-darker-3', + '--theme-color-darker-4', + '--theme-color-darker-5', + '--theme-color-darker-6', + '--theme-color-darker-7', + '--theme-color-darker-8', + '--theme-color-darker-9' ]; constructor() { diff --git a/src/styles/animation/animation.scss b/src/styles/animation/animation.scss index 2fca8a33..1122429a 100644 --- a/src/styles/animation/animation.scss +++ b/src/styles/animation/animation.scss @@ -6,12 +6,12 @@ @keyframes loading-bar { 0% { left: calc(-100%); - background-color: var(--brand-color-lighter-4); + background-color: var(--theme-color-lighter-4); } 100% { left: 100%; - background-color: var(--brand-color-lighter-2); + background-color: var(--theme-color-lighter-2); } } diff --git a/src/styles/loading/loading.scss b/src/styles/loading/loading.scss index 19a339dc..5de7efc5 100644 --- a/src/styles/loading/loading.scss +++ b/src/styles/loading/loading.scss @@ -13,7 +13,7 @@ width: 50%; height: 4px; border-radius: 3px; - background-color: var(--brand-color-lighter-9); + background-color: var(--theme-color-lighter-9); } } @@ -22,7 +22,7 @@ width: 100%; height: 4px; position: fixed; - background-color: var(--brand-color-lighter-5); + background-color: var(--theme-color-lighter-5); box-shadow: 0 1px 3px 0 var(--shadow-darker); overflow: hidden; z-index: 12; diff --git a/src/styles/rate/rate.scss b/src/styles/rate/rate.scss index bb4ba4f5..f9ec64c9 100644 --- a/src/styles/rate/rate.scss +++ b/src/styles/rate/rate.scss @@ -62,23 +62,23 @@ & input + label { &:nth-of-type(1):after { - color: var(--brand-color); + color: var(--theme-color); } &:nth-of-type(2):after { - color: var(--brand-color-lighter-1); + color: var(--theme-color-lighter-1); } &:nth-of-type(3):after { - color: var(--brand-color-lighter-2); + color: var(--theme-color-lighter-2); } &:nth-of-type(4):after { - color: var(--brand-color-lighter-3); + color: var(--theme-color-lighter-3); } &:nth-of-type(5):after { - color: var(--brand-color-lighter-4); + color: var(--theme-color-lighter-4); } } } diff --git a/src/styles/ribbon/ribbon.scss b/src/styles/ribbon/ribbon.scss index 35875c92..7aa8787c 100644 --- a/src/styles/ribbon/ribbon.scss +++ b/src/styles/ribbon/ribbon.scss @@ -37,7 +37,7 @@ content: ""; padding: .38em 0; - background-color: var(--brand-color); + background-color: var(--theme-color); /* Set a gradient: transparent black at the top to almost-transparent black at the bottom */ background-image: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 0, 0, 0)), to(rgba(0, 0, 0, 0.15))); diff --git a/src/styles/styles.common.scss b/src/styles/styles.common.scss index 784e165b..c65dec72 100644 --- a/src/styles/styles.common.scss +++ b/src/styles/styles.common.scss @@ -90,11 +90,11 @@ a { a.link { - color: var(--brand-color-lighter-2); + color: var(--theme-color-lighter-2); font-weight: normal; &:hover { - color: var(--brand-color); + color: var(--theme-color); } } diff --git a/src/styles/theme/blue-theme/blue-theme.scss b/src/styles/theme/blue-theme/blue-theme.scss index 95a1df40..acafeec0 100644 --- a/src/styles/theme/blue-theme/blue-theme.scss +++ b/src/styles/theme/blue-theme/blue-theme.scss @@ -1,29 +1,29 @@ :root { - --brand-color-blue-theme: #4098d6; - --brand-color-default-theme: var(--brand-color-blue-theme); - - --brand-color-blue-theme-lighter-1: #57abd8; - --brand-color-blue-theme-lighter-2: #67b7da; - --brand-color-blue-theme-lighter-3: #78c1dc; - --brand-color-blue-theme-lighter-4: #84c2dc; - --brand-color-blue-theme-lighter-5: #8cbedd; - --brand-color-blue-theme-lighter-6: #acd5e6; - --brand-color-blue-theme-lighter-7: #bedfeb; - --brand-color-blue-theme-lighter-8: #d9eef3; - --brand-color-blue-theme-lighter-9: #f0f8fa; - - --brand-color-blue-theme-darker-1: #4a9fc4; - --brand-color-blue-theme-darker-2: #498db2; - --brand-color-blue-theme-darker-3: #4a7895; - --brand-color-blue-theme-darker-4: #4a7785; - --brand-color-blue-theme-darker-5: #415867; - --brand-color-blue-theme-darker-6: #475a64; - --brand-color-blue-theme-darker-7: #445058; - --brand-color-blue-theme-darker-8: #41484d; - --brand-color-blue-theme-darker-9: #404142; - - --brand-blue-theme-background: #1e7aab; + --theme-color-blue-theme: #4098d6; + --theme-color-default-theme: var(--theme-color-blue-theme); + + --theme-color-blue-theme-lighter-1: #57abd8; + --theme-color-blue-theme-lighter-2: #67b7da; + --theme-color-blue-theme-lighter-3: #78c1dc; + --theme-color-blue-theme-lighter-4: #84c2dc; + --theme-color-blue-theme-lighter-5: #8cbedd; + --theme-color-blue-theme-lighter-6: #acd5e6; + --theme-color-blue-theme-lighter-7: #bedfeb; + --theme-color-blue-theme-lighter-8: #d9eef3; + --theme-color-blue-theme-lighter-9: #f0f8fa; + + --theme-color-blue-theme-darker-1: #4a9fc4; + --theme-color-blue-theme-darker-2: #498db2; + --theme-color-blue-theme-darker-3: #4a7895; + --theme-color-blue-theme-darker-4: #4a7785; + --theme-color-blue-theme-darker-5: #415867; + --theme-color-blue-theme-darker-6: #475a64; + --theme-color-blue-theme-darker-7: #445058; + --theme-color-blue-theme-darker-8: #41484d; + --theme-color-blue-theme-darker-9: #404142; + + --theme-blue-theme-background: #1e7aab; --hover-blue-theme-lighter: rgba(64, 152, 214, 0.3); --hover-blue-theme-darker: rgba(27, 67, 88, 0.6); @@ -31,54 +31,54 @@ :root .blue-theme, .light-theme.blue-theme { - --brand-color: var(--brand-color-blue-theme); - - --brand-color-lighter-1: var(--brand-color-blue-theme-lighter-1); - --brand-color-lighter-2: var(--brand-color-blue-theme-lighter-2); - --brand-color-lighter-3: var(--brand-color-blue-theme-lighter-3); - --brand-color-lighter-4: var(--brand-color-blue-theme-lighter-4); - --brand-color-lighter-5: var(--brand-color-blue-theme-lighter-5); - --brand-color-lighter-6: var(--brand-color-blue-theme-lighter-6); - --brand-color-lighter-7: var(--brand-color-blue-theme-lighter-7); - --brand-color-lighter-8: var(--brand-color-blue-theme-lighter-8); - --brand-color-lighter-9: var(--brand-color-blue-theme-lighter-9); - - --brand-color-darker-1: var(--brand-color-blue-theme-darker-1); - --brand-color-darker-2: var(--brand-color-blue-theme-darker-2); - --brand-color-darker-3: var(--brand-color-blue-theme-darker-3); - --brand-color-darker-4: var(--brand-color-blue-theme-darker-4); - --brand-color-darker-5: var(--brand-color-blue-theme-darker-5); - --brand-color-darker-6: var(--brand-color-blue-theme-darker-6); - --brand-color-darker-7: var(--brand-color-blue-theme-darker-7); - --brand-color-darker-8: var(--brand-color-blue-theme-darker-8); - --brand-color-darker-9: var(--brand-color-blue-theme-darker-9); + --theme-color: var(--theme-color-blue-theme); + + --theme-color-lighter-1: var(--theme-color-blue-theme-lighter-1); + --theme-color-lighter-2: var(--theme-color-blue-theme-lighter-2); + --theme-color-lighter-3: var(--theme-color-blue-theme-lighter-3); + --theme-color-lighter-4: var(--theme-color-blue-theme-lighter-4); + --theme-color-lighter-5: var(--theme-color-blue-theme-lighter-5); + --theme-color-lighter-6: var(--theme-color-blue-theme-lighter-6); + --theme-color-lighter-7: var(--theme-color-blue-theme-lighter-7); + --theme-color-lighter-8: var(--theme-color-blue-theme-lighter-8); + --theme-color-lighter-9: var(--theme-color-blue-theme-lighter-9); + + --theme-color-darker-1: var(--theme-color-blue-theme-darker-1); + --theme-color-darker-2: var(--theme-color-blue-theme-darker-2); + --theme-color-darker-3: var(--theme-color-blue-theme-darker-3); + --theme-color-darker-4: var(--theme-color-blue-theme-darker-4); + --theme-color-darker-5: var(--theme-color-blue-theme-darker-5); + --theme-color-darker-6: var(--theme-color-blue-theme-darker-6); + --theme-color-darker-7: var(--theme-color-blue-theme-darker-7); + --theme-color-darker-8: var(--theme-color-blue-theme-darker-8); + --theme-color-darker-9: var(--theme-color-blue-theme-darker-9); --hover: var(--hover-blue-theme-lighter); } @mixin blue-theme-dark-mode { - --brand-color: var(--brand-color-blue-theme); - - --brand-color-lighter-1: var(--brand-color-blue-theme-darker-1); - --brand-color-lighter-2: var(--brand-color-blue-theme-darker-2); - --brand-color-lighter-3: var(--brand-color-blue-theme-darker-3); - --brand-color-lighter-4: var(--brand-color-blue-theme-darker-4); - --brand-color-lighter-5: var(--brand-color-blue-theme-darker-5); - --brand-color-lighter-6: var(--brand-color-blue-theme-darker-6); - --brand-color-lighter-7: var(--brand-color-blue-theme-darker-7); - --brand-color-lighter-8: var(--brand-color-blue-theme-darker-8); - --brand-color-lighter-9: var(--brand-color-blue-theme-darker-9); - - --brand-color-darker-1: var(--brand-color-blue-theme-lighter-1); - --brand-color-darker-2: var(--brand-color-blue-theme-lighter-2); - --brand-color-darker-3: var(--brand-color-blue-theme-lighter-3); - --brand-color-darker-4: var(--brand-color-blue-theme-lighter-4); - --brand-color-darker-5: var(--brand-color-blue-theme-lighter-5); - --brand-color-darker-6: var(--brand-color-blue-theme-lighter-6); - --brand-color-darker-7: var(--brand-color-blue-theme-lighter-7); - --brand-color-darker-8: var(--brand-color-blue-theme-lighter-8); - --brand-color-darker-9: var(--brand-color-blue-theme-lighter-9); + --theme-color: var(--theme-color-blue-theme); + + --theme-color-lighter-1: var(--theme-color-blue-theme-darker-1); + --theme-color-lighter-2: var(--theme-color-blue-theme-darker-2); + --theme-color-lighter-3: var(--theme-color-blue-theme-darker-3); + --theme-color-lighter-4: var(--theme-color-blue-theme-darker-4); + --theme-color-lighter-5: var(--theme-color-blue-theme-darker-5); + --theme-color-lighter-6: var(--theme-color-blue-theme-darker-6); + --theme-color-lighter-7: var(--theme-color-blue-theme-darker-7); + --theme-color-lighter-8: var(--theme-color-blue-theme-darker-8); + --theme-color-lighter-9: var(--theme-color-blue-theme-darker-9); + + --theme-color-darker-1: var(--theme-color-blue-theme-lighter-1); + --theme-color-darker-2: var(--theme-color-blue-theme-lighter-2); + --theme-color-darker-3: var(--theme-color-blue-theme-lighter-3); + --theme-color-darker-4: var(--theme-color-blue-theme-lighter-4); + --theme-color-darker-5: var(--theme-color-blue-theme-lighter-5); + --theme-color-darker-6: var(--theme-color-blue-theme-lighter-6); + --theme-color-darker-7: var(--theme-color-blue-theme-lighter-7); + --theme-color-darker-8: var(--theme-color-blue-theme-lighter-8); + --theme-color-darker-9: var(--theme-color-blue-theme-lighter-9); --hover: var(--hover-blue-theme-darker); } diff --git a/src/styles/theme/green-theme/green-theme.scss b/src/styles/theme/green-theme/green-theme.scss index 9da8ed15..1d0433ba 100644 --- a/src/styles/theme/green-theme/green-theme.scss +++ b/src/styles/theme/green-theme/green-theme.scss @@ -1,28 +1,28 @@ :root { - --brand-color-green-theme: #43b043; - --brand-color-default-theme: var(--brand-color-green-theme); - - --brand-color-green-theme-lighter-1: #64be65; - --brand-color-green-theme-lighter-2: #7ec87e; - --brand-color-green-theme-lighter-3: #a0d69f; - --brand-color-green-theme-lighter-4: #b9e1ba; - --brand-color-green-theme-lighter-5: #c9e8c9; - --brand-color-green-theme-lighter-6: #d5ecd5; - --brand-color-green-theme-lighter-7: #dff1df; - --brand-color-green-theme-lighter-8: #eaf6ea; - --brand-color-green-theme-lighter-9: #f7fbf8; - - --brand-color-green-theme-darker-1: #51a951; - --brand-color-green-theme-darker-2: #579c57; - --brand-color-green-theme-darker-3: #5e8c5e; - --brand-color-green-theme-darker-4: #657f65; - --brand-color-green-theme-darker-5: #617061; - --brand-color-green-theme-darker-6: #616c61; - --brand-color-green-theme-darker-7: #586358; - --brand-color-green-theme-darker-8: #4e544d; - --brand-color-green-theme-darker-9: #444644; - - --brand-green-theme-background: #5cb05c; + --theme-color-green-theme: #43b043; + --theme-color-default-theme: var(--theme-color-green-theme); + + --theme-color-green-theme-lighter-1: #64be65; + --theme-color-green-theme-lighter-2: #7ec87e; + --theme-color-green-theme-lighter-3: #a0d69f; + --theme-color-green-theme-lighter-4: #b9e1ba; + --theme-color-green-theme-lighter-5: #c9e8c9; + --theme-color-green-theme-lighter-6: #d5ecd5; + --theme-color-green-theme-lighter-7: #dff1df; + --theme-color-green-theme-lighter-8: #eaf6ea; + --theme-color-green-theme-lighter-9: #f7fbf8; + + --theme-color-green-theme-darker-1: #51a951; + --theme-color-green-theme-darker-2: #579c57; + --theme-color-green-theme-darker-3: #5e8c5e; + --theme-color-green-theme-darker-4: #657f65; + --theme-color-green-theme-darker-5: #617061; + --theme-color-green-theme-darker-6: #616c61; + --theme-color-green-theme-darker-7: #586358; + --theme-color-green-theme-darker-8: #4e544d; + --theme-color-green-theme-darker-9: #444644; + + --theme-green-theme-background: #5cb05c; --hover-green-theme-lighter: rgba(67, 176, 67, 0.3); --hover-green-theme-darker: rgba(28, 76, 28, 0.6); @@ -30,54 +30,54 @@ :root .green-theme, .light-theme.green-theme { - --brand-color: var(--brand-color-green-theme); - - --brand-color-lighter-1: var(--brand-color-green-theme-lighter-1); - --brand-color-lighter-2: var(--brand-color-green-theme-lighter-2); - --brand-color-lighter-3: var(--brand-color-green-theme-lighter-3); - --brand-color-lighter-4: var(--brand-color-green-theme-lighter-4); - --brand-color-lighter-5: var(--brand-color-green-theme-lighter-5); - --brand-color-lighter-6: var(--brand-color-green-theme-lighter-6); - --brand-color-lighter-7: var(--brand-color-green-theme-lighter-7); - --brand-color-lighter-8: var(--brand-color-green-theme-lighter-8); - --brand-color-lighter-9: var(--brand-color-green-theme-lighter-9); - - --brand-color-darker-1: var(--brand-color-green-theme-darker-1); - --brand-color-darker-2: var(--brand-color-green-theme-darker-2); - --brand-color-darker-3: var(--brand-color-green-theme-darker-3); - --brand-color-darker-4: var(--brand-color-green-theme-darker-4); - --brand-color-darker-5: var(--brand-color-green-theme-darker-5); - --brand-color-darker-6: var(--brand-color-green-theme-darker-6); - --brand-color-darker-7: var(--brand-color-green-theme-darker-7); - --brand-color-darker-8: var(--brand-color-green-theme-darker-8); - --brand-color-darker-9: var(--brand-color-green-theme-darker-9); + --theme-color: var(--theme-color-green-theme); + + --theme-color-lighter-1: var(--theme-color-green-theme-lighter-1); + --theme-color-lighter-2: var(--theme-color-green-theme-lighter-2); + --theme-color-lighter-3: var(--theme-color-green-theme-lighter-3); + --theme-color-lighter-4: var(--theme-color-green-theme-lighter-4); + --theme-color-lighter-5: var(--theme-color-green-theme-lighter-5); + --theme-color-lighter-6: var(--theme-color-green-theme-lighter-6); + --theme-color-lighter-7: var(--theme-color-green-theme-lighter-7); + --theme-color-lighter-8: var(--theme-color-green-theme-lighter-8); + --theme-color-lighter-9: var(--theme-color-green-theme-lighter-9); + + --theme-color-darker-1: var(--theme-color-green-theme-darker-1); + --theme-color-darker-2: var(--theme-color-green-theme-darker-2); + --theme-color-darker-3: var(--theme-color-green-theme-darker-3); + --theme-color-darker-4: var(--theme-color-green-theme-darker-4); + --theme-color-darker-5: var(--theme-color-green-theme-darker-5); + --theme-color-darker-6: var(--theme-color-green-theme-darker-6); + --theme-color-darker-7: var(--theme-color-green-theme-darker-7); + --theme-color-darker-8: var(--theme-color-green-theme-darker-8); + --theme-color-darker-9: var(--theme-color-green-theme-darker-9); --hover: var(--hover-green-theme-lighter); } @mixin green-theme-dark-mode { - --brand-color: var(--brand-color-green-theme); - - --brand-color-lighter-1: var(--brand-color-green-theme-darker-1); - --brand-color-lighter-2: var(--brand-color-green-theme-darker-2); - --brand-color-lighter-3: var(--brand-color-green-theme-darker-3); - --brand-color-lighter-4: var(--brand-color-green-theme-darker-4); - --brand-color-lighter-5: var(--brand-color-green-theme-darker-5); - --brand-color-lighter-6: var(--brand-color-green-theme-darker-6); - --brand-color-lighter-7: var(--brand-color-green-theme-darker-7); - --brand-color-lighter-8: var(--brand-color-green-theme-darker-8); - --brand-color-lighter-9: var(--brand-color-green-theme-darker-9); - - --brand-color-darker-1: var(--brand-color-green-theme-lighter-1); - --brand-color-darker-2: var(--brand-color-green-theme-lighter-2); - --brand-color-darker-3: var(--brand-color-green-theme-lighter-3); - --brand-color-darker-4: var(--brand-color-green-theme-lighter-4); - --brand-color-darker-5: var(--brand-color-green-theme-lighter-5); - --brand-color-darker-6: var(--brand-color-green-theme-lighter-6); - --brand-color-darker-7: var(--brand-color-green-theme-lighter-7); - --brand-color-darker-8: var(--brand-color-green-theme-lighter-8); - --brand-color-darker-9: var(--brand-color-green-theme-lighter-9); + --theme-color: var(--theme-color-green-theme); + + --theme-color-lighter-1: var(--theme-color-green-theme-darker-1); + --theme-color-lighter-2: var(--theme-color-green-theme-darker-2); + --theme-color-lighter-3: var(--theme-color-green-theme-darker-3); + --theme-color-lighter-4: var(--theme-color-green-theme-darker-4); + --theme-color-lighter-5: var(--theme-color-green-theme-darker-5); + --theme-color-lighter-6: var(--theme-color-green-theme-darker-6); + --theme-color-lighter-7: var(--theme-color-green-theme-darker-7); + --theme-color-lighter-8: var(--theme-color-green-theme-darker-8); + --theme-color-lighter-9: var(--theme-color-green-theme-darker-9); + + --theme-color-darker-1: var(--theme-color-green-theme-lighter-1); + --theme-color-darker-2: var(--theme-color-green-theme-lighter-2); + --theme-color-darker-3: var(--theme-color-green-theme-lighter-3); + --theme-color-darker-4: var(--theme-color-green-theme-lighter-4); + --theme-color-darker-5: var(--theme-color-green-theme-lighter-5); + --theme-color-darker-6: var(--theme-color-green-theme-lighter-6); + --theme-color-darker-7: var(--theme-color-green-theme-lighter-7); + --theme-color-darker-8: var(--theme-color-green-theme-lighter-8); + --theme-color-darker-9: var(--theme-color-green-theme-lighter-9); --hover: var(--hover-green-theme-darker); } diff --git a/src/styles/theme/red-theme/red-theme.scss b/src/styles/theme/red-theme/red-theme.scss index 636f7211..71c110b1 100644 --- a/src/styles/theme/red-theme/red-theme.scss +++ b/src/styles/theme/red-theme/red-theme.scss @@ -1,28 +1,28 @@ :root { - --brand-color-red-theme: #d56666; - --brand-color-default-theme: var(--brand-color-red-theme); - - --brand-color-red-theme-lighter-1: #d87879; - --brand-color-red-theme-lighter-2: #db8281; - --brand-color-red-theme-lighter-3: #dc8e8e; - --brand-color-red-theme-lighter-4: #e09b9b; - --brand-color-red-theme-lighter-5: #e09f9f; - --brand-color-red-theme-lighter-6: #e8b7b8; - --brand-color-red-theme-lighter-7: #edc7c8; - --brand-color-red-theme-lighter-8: #f5dfde; - --brand-color-red-theme-lighter-9: #fcf3f4; - - --brand-color-red-theme-darker-1: #c56869; - --brand-color-red-theme-darker-2: #b26565; - --brand-color-red-theme-darker-3: #9d6060; - --brand-color-red-theme-darker-4: #855b5a; - --brand-color-red-theme-darker-5: #704f4f; - --brand-color-red-theme-darker-6: #644f50; - --brand-color-red-theme-darker-7: #5f4d4d; - --brand-color-red-theme-darker-8: #514647; - --brand-color-red-theme-darker-9: #424141; - - --brand-red-theme-background: #b74d4d; + --theme-color-red-theme: #d56666; + --theme-color-default-theme: var(--theme-color-red-theme); + + --theme-color-red-theme-lighter-1: #d87879; + --theme-color-red-theme-lighter-2: #db8281; + --theme-color-red-theme-lighter-3: #dc8e8e; + --theme-color-red-theme-lighter-4: #e09b9b; + --theme-color-red-theme-lighter-5: #e09f9f; + --theme-color-red-theme-lighter-6: #e8b7b8; + --theme-color-red-theme-lighter-7: #edc7c8; + --theme-color-red-theme-lighter-8: #f5dfde; + --theme-color-red-theme-lighter-9: #fcf3f4; + + --theme-color-red-theme-darker-1: #c56869; + --theme-color-red-theme-darker-2: #b26565; + --theme-color-red-theme-darker-3: #9d6060; + --theme-color-red-theme-darker-4: #855b5a; + --theme-color-red-theme-darker-5: #704f4f; + --theme-color-red-theme-darker-6: #644f50; + --theme-color-red-theme-darker-7: #5f4d4d; + --theme-color-red-theme-darker-8: #514647; + --theme-color-red-theme-darker-9: #424141; + + --theme-red-theme-background: #b74d4d; --hover-red-theme-lighter: rgba(213, 102, 102, 0.3); --hover-red-theme-darker: rgba(105, 74, 74, 0.7); @@ -30,54 +30,54 @@ :root .red-theme, .light-theme.red-theme { - --brand-color: var(--brand-color-red-theme); - - --brand-color-lighter-1: var(--brand-color-red-theme-lighter-1); - --brand-color-lighter-2: var(--brand-color-red-theme-lighter-2); - --brand-color-lighter-3: var(--brand-color-red-theme-lighter-3); - --brand-color-lighter-4: var(--brand-color-red-theme-lighter-4); - --brand-color-lighter-5: var(--brand-color-red-theme-lighter-5); - --brand-color-lighter-6: var(--brand-color-red-theme-lighter-6); - --brand-color-lighter-7: var(--brand-color-red-theme-lighter-7); - --brand-color-lighter-8: var(--brand-color-red-theme-lighter-8); - --brand-color-lighter-9: var(--brand-color-red-theme-lighter-9); - - --brand-color-darker-1: var(--brand-color-red-theme-darker-1); - --brand-color-darker-2: var(--brand-color-red-theme-darker-2); - --brand-color-darker-3: var(--brand-color-red-theme-darker-3); - --brand-color-darker-4: var(--brand-color-red-theme-darker-4); - --brand-color-darker-5: var(--brand-color-red-theme-darker-5); - --brand-color-darker-6: var(--brand-color-red-theme-darker-6); - --brand-color-darker-7: var(--brand-color-red-theme-darker-7); - --brand-color-darker-8: var(--brand-color-red-theme-darker-8); - --brand-color-darker-9: var(--brand-color-red-theme-darker-9); + --theme-color: var(--theme-color-red-theme); + + --theme-color-lighter-1: var(--theme-color-red-theme-lighter-1); + --theme-color-lighter-2: var(--theme-color-red-theme-lighter-2); + --theme-color-lighter-3: var(--theme-color-red-theme-lighter-3); + --theme-color-lighter-4: var(--theme-color-red-theme-lighter-4); + --theme-color-lighter-5: var(--theme-color-red-theme-lighter-5); + --theme-color-lighter-6: var(--theme-color-red-theme-lighter-6); + --theme-color-lighter-7: var(--theme-color-red-theme-lighter-7); + --theme-color-lighter-8: var(--theme-color-red-theme-lighter-8); + --theme-color-lighter-9: var(--theme-color-red-theme-lighter-9); + + --theme-color-darker-1: var(--theme-color-red-theme-darker-1); + --theme-color-darker-2: var(--theme-color-red-theme-darker-2); + --theme-color-darker-3: var(--theme-color-red-theme-darker-3); + --theme-color-darker-4: var(--theme-color-red-theme-darker-4); + --theme-color-darker-5: var(--theme-color-red-theme-darker-5); + --theme-color-darker-6: var(--theme-color-red-theme-darker-6); + --theme-color-darker-7: var(--theme-color-red-theme-darker-7); + --theme-color-darker-8: var(--theme-color-red-theme-darker-8); + --theme-color-darker-9: var(--theme-color-red-theme-darker-9); --hover: var(--hover-red-theme-lighter); } @mixin red-theme-dark-mode { - --brand-color: var(--brand-color-red-theme); - - --brand-color-lighter-1: var(--brand-color-red-theme-darker-1); - --brand-color-lighter-2: var(--brand-color-red-theme-darker-2); - --brand-color-lighter-3: var(--brand-color-red-theme-darker-3); - --brand-color-lighter-4: var(--brand-color-red-theme-darker-4); - --brand-color-lighter-5: var(--brand-color-red-theme-darker-5); - --brand-color-lighter-6: var(--brand-color-red-theme-darker-6); - --brand-color-lighter-7: var(--brand-color-red-theme-darker-7); - --brand-color-lighter-8: var(--brand-color-red-theme-darker-8); - --brand-color-lighter-9: var(--brand-color-red-theme-darker-9); - - --brand-color-darker-1: var(--brand-color-red-theme-lighter-1); - --brand-color-darker-2: var(--brand-color-red-theme-lighter-2); - --brand-color-darker-3: var(--brand-color-red-theme-lighter-3); - --brand-color-darker-4: var(--brand-color-red-theme-lighter-4); - --brand-color-darker-5: var(--brand-color-red-theme-lighter-5); - --brand-color-darker-6: var(--brand-color-red-theme-lighter-6); - --brand-color-darker-7: var(--brand-color-red-theme-lighter-7); - --brand-color-darker-8: var(--brand-color-red-theme-lighter-8); - --brand-color-darker-9: var(--brand-color-red-theme-lighter-9); + --theme-color: var(--theme-color-red-theme); + + --theme-color-lighter-1: var(--theme-color-red-theme-darker-1); + --theme-color-lighter-2: var(--theme-color-red-theme-darker-2); + --theme-color-lighter-3: var(--theme-color-red-theme-darker-3); + --theme-color-lighter-4: var(--theme-color-red-theme-darker-4); + --theme-color-lighter-5: var(--theme-color-red-theme-darker-5); + --theme-color-lighter-6: var(--theme-color-red-theme-darker-6); + --theme-color-lighter-7: var(--theme-color-red-theme-darker-7); + --theme-color-lighter-8: var(--theme-color-red-theme-darker-8); + --theme-color-lighter-9: var(--theme-color-red-theme-darker-9); + + --theme-color-darker-1: var(--theme-color-red-theme-lighter-1); + --theme-color-darker-2: var(--theme-color-red-theme-lighter-2); + --theme-color-darker-3: var(--theme-color-red-theme-lighter-3); + --theme-color-darker-4: var(--theme-color-red-theme-lighter-4); + --theme-color-darker-5: var(--theme-color-red-theme-lighter-5); + --theme-color-darker-6: var(--theme-color-red-theme-lighter-6); + --theme-color-darker-7: var(--theme-color-red-theme-lighter-7); + --theme-color-darker-8: var(--theme-color-red-theme-lighter-8); + --theme-color-darker-9: var(--theme-color-red-theme-lighter-9); --hover: var(--hover-red-theme-darker); } diff --git a/src/styles/theme/yellow-theme/yellow-theme.scss b/src/styles/theme/yellow-theme/yellow-theme.scss index 156e1161..07c6ffa8 100644 --- a/src/styles/theme/yellow-theme/yellow-theme.scss +++ b/src/styles/theme/yellow-theme/yellow-theme.scss @@ -1,28 +1,28 @@ :root { - --brand-color-yellow-theme: #d6b140; - --brand-color-default-theme: var(--brand-color-yellow-theme); - - --brand-color-yellow-theme-lighter-1: #d8b957; - --brand-color-yellow-theme-lighter-2: #dabd67; - --brand-color-yellow-theme-lighter-3: #dcc378; - --brand-color-yellow-theme-lighter-4: #dcc784; - --brand-color-yellow-theme-lighter-5: #ddc88c; - --brand-color-yellow-theme-lighter-6: #e6d6ac; - --brand-color-yellow-theme-lighter-7: #ebdfbe; - --brand-color-yellow-theme-lighter-8: #f3ecd9; - --brand-color-yellow-theme-lighter-9: #faf8f0; - - --brand-color-yellow-theme-darker-1: #c4a64a; - --brand-color-yellow-theme-darker-2: #b29849; - --brand-color-yellow-theme-darker-3: #95824a; - --brand-color-yellow-theme-darker-4: #85754a; - --brand-color-yellow-theme-darker-5: #675d41; - --brand-color-yellow-theme-darker-6: #645e47; - --brand-color-yellow-theme-darker-7: #585344; - --brand-color-yellow-theme-darker-8: #4d4a41; - --brand-color-yellow-theme-darker-9: #424240; - - --brand-yellow-theme-background: #ab881e; + --theme-color-yellow-theme: #d6b140; + --theme-color-default-theme: var(--theme-color-yellow-theme); + + --theme-color-yellow-theme-lighter-1: #d8b957; + --theme-color-yellow-theme-lighter-2: #dabd67; + --theme-color-yellow-theme-lighter-3: #dcc378; + --theme-color-yellow-theme-lighter-4: #dcc784; + --theme-color-yellow-theme-lighter-5: #ddc88c; + --theme-color-yellow-theme-lighter-6: #e6d6ac; + --theme-color-yellow-theme-lighter-7: #ebdfbe; + --theme-color-yellow-theme-lighter-8: #f3ecd9; + --theme-color-yellow-theme-lighter-9: #faf8f0; + + --theme-color-yellow-theme-darker-1: #c4a64a; + --theme-color-yellow-theme-darker-2: #b29849; + --theme-color-yellow-theme-darker-3: #95824a; + --theme-color-yellow-theme-darker-4: #85754a; + --theme-color-yellow-theme-darker-5: #675d41; + --theme-color-yellow-theme-darker-6: #645e47; + --theme-color-yellow-theme-darker-7: #585344; + --theme-color-yellow-theme-darker-8: #4d4a41; + --theme-color-yellow-theme-darker-9: #424240; + + --theme-yellow-theme-background: #ab881e; --hover-yellow-theme-lighter: rgba(214, 177, 64, 0.3); --hover-yellow-theme-darker: rgba(214, 177, 64, 0.3); @@ -30,54 +30,54 @@ :root .yellow-theme, .light-theme.yellow-theme { - --brand-color: var(--brand-color-yellow-theme); - - --brand-color-lighter-1: var(--brand-color-yellow-theme-lighter-1); - --brand-color-lighter-2: var(--brand-color-yellow-theme-lighter-2); - --brand-color-lighter-3: var(--brand-color-yellow-theme-lighter-3); - --brand-color-lighter-4: var(--brand-color-yellow-theme-lighter-4); - --brand-color-lighter-5: var(--brand-color-yellow-theme-lighter-5); - --brand-color-lighter-6: var(--brand-color-yellow-theme-lighter-6); - --brand-color-lighter-7: var(--brand-color-yellow-theme-lighter-7); - --brand-color-lighter-8: var(--brand-color-yellow-theme-lighter-8); - --brand-color-lighter-9: var(--brand-color-yellow-theme-lighter-9); - - --brand-color-darker-1: var(--brand-color-yellow-theme-darker-1); - --brand-color-darker-2: var(--brand-color-yellow-theme-darker-2); - --brand-color-darker-3: var(--brand-color-yellow-theme-darker-3); - --brand-color-darker-4: var(--brand-color-yellow-theme-darker-4); - --brand-color-darker-5: var(--brand-color-yellow-theme-darker-5); - --brand-color-darker-6: var(--brand-color-yellow-theme-darker-6); - --brand-color-darker-7: var(--brand-color-yellow-theme-darker-7); - --brand-color-darker-8: var(--brand-color-yellow-theme-darker-8); - --brand-color-darker-9: var(--brand-color-yellow-theme-darker-9); + --theme-color: var(--theme-color-yellow-theme); + + --theme-color-lighter-1: var(--theme-color-yellow-theme-lighter-1); + --theme-color-lighter-2: var(--theme-color-yellow-theme-lighter-2); + --theme-color-lighter-3: var(--theme-color-yellow-theme-lighter-3); + --theme-color-lighter-4: var(--theme-color-yellow-theme-lighter-4); + --theme-color-lighter-5: var(--theme-color-yellow-theme-lighter-5); + --theme-color-lighter-6: var(--theme-color-yellow-theme-lighter-6); + --theme-color-lighter-7: var(--theme-color-yellow-theme-lighter-7); + --theme-color-lighter-8: var(--theme-color-yellow-theme-lighter-8); + --theme-color-lighter-9: var(--theme-color-yellow-theme-lighter-9); + + --theme-color-darker-1: var(--theme-color-yellow-theme-darker-1); + --theme-color-darker-2: var(--theme-color-yellow-theme-darker-2); + --theme-color-darker-3: var(--theme-color-yellow-theme-darker-3); + --theme-color-darker-4: var(--theme-color-yellow-theme-darker-4); + --theme-color-darker-5: var(--theme-color-yellow-theme-darker-5); + --theme-color-darker-6: var(--theme-color-yellow-theme-darker-6); + --theme-color-darker-7: var(--theme-color-yellow-theme-darker-7); + --theme-color-darker-8: var(--theme-color-yellow-theme-darker-8); + --theme-color-darker-9: var(--theme-color-yellow-theme-darker-9); --hover: var(--hover-yellow-theme-lighter); } @mixin yellow-theme-dark-mode { - --brand-color: var(--brand-color-yellow-theme); - - --brand-color-lighter-1: var(--brand-color-yellow-theme-darker-1); - --brand-color-lighter-2: var(--brand-color-yellow-theme-darker-2); - --brand-color-lighter-3: var(--brand-color-yellow-theme-darker-3); - --brand-color-lighter-4: var(--brand-color-yellow-theme-darker-4); - --brand-color-lighter-5: var(--brand-color-yellow-theme-darker-5); - --brand-color-lighter-6: var(--brand-color-yellow-theme-darker-6); - --brand-color-lighter-7: var(--brand-color-yellow-theme-darker-7); - --brand-color-lighter-8: var(--brand-color-yellow-theme-darker-8); - --brand-color-lighter-9: var(--brand-color-yellow-theme-darker-9); - - --brand-color-darker-1: var(--brand-color-yellow-theme-lighter-1); - --brand-color-darker-2: var(--brand-color-yellow-theme-lighter-2); - --brand-color-darker-3: var(--brand-color-yellow-theme-lighter-3); - --brand-color-darker-4: var(--brand-color-yellow-theme-lighter-4); - --brand-color-darker-5: var(--brand-color-yellow-theme-lighter-5); - --brand-color-darker-6: var(--brand-color-yellow-theme-lighter-6); - --brand-color-darker-7: var(--brand-color-yellow-theme-lighter-7); - --brand-color-darker-8: var(--brand-color-yellow-theme-lighter-8); - --brand-color-darker-9: var(--brand-color-yellow-theme-lighter-9); + --theme-color: var(--theme-color-yellow-theme); + + --theme-color-lighter-1: var(--theme-color-yellow-theme-darker-1); + --theme-color-lighter-2: var(--theme-color-yellow-theme-darker-2); + --theme-color-lighter-3: var(--theme-color-yellow-theme-darker-3); + --theme-color-lighter-4: var(--theme-color-yellow-theme-darker-4); + --theme-color-lighter-5: var(--theme-color-yellow-theme-darker-5); + --theme-color-lighter-6: var(--theme-color-yellow-theme-darker-6); + --theme-color-lighter-7: var(--theme-color-yellow-theme-darker-7); + --theme-color-lighter-8: var(--theme-color-yellow-theme-darker-8); + --theme-color-lighter-9: var(--theme-color-yellow-theme-darker-9); + + --theme-color-darker-1: var(--theme-color-yellow-theme-lighter-1); + --theme-color-darker-2: var(--theme-color-yellow-theme-lighter-2); + --theme-color-darker-3: var(--theme-color-yellow-theme-lighter-3); + --theme-color-darker-4: var(--theme-color-yellow-theme-lighter-4); + --theme-color-darker-5: var(--theme-color-yellow-theme-lighter-5); + --theme-color-darker-6: var(--theme-color-yellow-theme-lighter-6); + --theme-color-darker-7: var(--theme-color-yellow-theme-lighter-7); + --theme-color-darker-8: var(--theme-color-yellow-theme-lighter-8); + --theme-color-darker-9: var(--theme-color-yellow-theme-lighter-9); --hover: var(--hover-yellow-theme-darker); }