Change color

This commit is contained in:
AlphaX-Projects 2022-02-20 10:07:03 -08:00 committed by GitHub
parent bf7036c2d3
commit 8219898e1e
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 12 additions and 2 deletions

View File

@ -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%);
}
`
]
}

View File

@ -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%);
}
`
]
}