From 8219898e1e1d9e5478432735073a98fb7398118e Mon Sep 17 00:00:00 2001 From: AlphaX-Projects <77661270+AlphaX-Projects@users.noreply.github.com> Date: Sun, 20 Feb 2022 10:07:03 -0800 Subject: [PATCH] Change color --- .../src/components/login-view/create-account-section.js | 7 ++++++- qortal-ui-core/src/components/login-view/login-section.js | 7 ++++++- 2 files changed, 12 insertions(+), 2 deletions(-) diff --git a/qortal-ui-core/src/components/login-view/create-account-section.js b/qortal-ui-core/src/components/login-view/create-account-section.js index cd19ad50..a0daf99d 100644 --- a/qortal-ui-core/src/components/login-view/create-account-section.js +++ b/qortal-ui-core/src/components/login-view/create-account-section.js @@ -52,7 +52,12 @@ class CreateAccountSection extends connect(store)(LitElement) { static get styles() { return [ css` - + * { + --lumo-primary-text-color: rgb(0, 167, 245); + --lumo-primary-color-50pct: rgba(0, 167, 245, 0.5); + --lumo-primary-color-10pct: rgba(0, 167, 245, 0.1); + --lumo-primary-color: hsl(199, 100%, 48%); + } ` ] } diff --git a/qortal-ui-core/src/components/login-view/login-section.js b/qortal-ui-core/src/components/login-view/login-section.js index 1f826e69..da279668 100644 --- a/qortal-ui-core/src/components/login-view/login-section.js +++ b/qortal-ui-core/src/components/login-view/login-section.js @@ -50,7 +50,12 @@ class LoginSection extends connect(store)(LitElement) { static get styles() { return [ css` - + * { + --lumo-primary-text-color: rgb(0, 167, 245); + --lumo-primary-color-50pct: rgba(0, 167, 245, 0.5); + --lumo-primary-color-10pct: rgba(0, 167, 245, 0.1); + --lumo-primary-color: hsl(199, 100%, 48%); + } ` ] }