-
Notifications
You must be signed in to change notification settings - Fork 26
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
ba4341b
commit 118175e
Showing
16 changed files
with
764 additions
and
2,697 deletions.
There are no files selected for viewing
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -38,4 +38,4 @@ | |
"@angular/compiler-cli": "18.2.4", | ||
"typescript": "5.5.4" | ||
} | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,29 +1,79 @@ | ||
@use "@angular/material" as mat; | ||
@use "./styles/themed-parts"; | ||
@use "./styles/base-elements"; | ||
@include mat.core(); // material core styles | ||
|
||
// DEFAULT THEME (dark, see theme-light.scss swap file) | ||
// see also src/app/services/style.service.scss | ||
// ref: https://www.materialpalette.com | ||
$primary: mat.m2-define-palette(mat.$m2-gray-palette, 300); | ||
$accent: mat.m2-define-palette(mat.$m2-gray-palette, 800); | ||
$warn: mat.m2-define-palette(mat.$m2-blue-palette, 800); | ||
// DEFAULT DARK THEME (see theme-light.scss swap file) | ||
// ref: https://material.angular.io/guide/theming | ||
|
||
$theme: mat.m2-define-dark-theme(( | ||
$theme: mat.define-theme(( | ||
color: ( | ||
theme-type: dark, | ||
primary: $primary, | ||
accent: $accent, | ||
warn: $warn | ||
), | ||
typography: mat.m2-define-typography-config(), | ||
primary: mat.$azure-palette | ||
), | ||
typography: ( | ||
brand-family: "Rubik, Roboto, Arial, Helvetica, sans-serif", | ||
), | ||
density: ( | ||
scale: 0 | ||
) | ||
)); | ||
|
||
// apply theme (base) | ||
@include mat.core(); // material core styles | ||
@include mat.all-component-themes($theme); | ||
@include themed-parts.theme($theme); | ||
:root { | ||
|
||
@include mat.all-component-themes($theme); | ||
@include themed-parts.theme($theme); | ||
|
||
$maxwidth: 1024px; | ||
|
||
// toolbar | ||
.main-toolbar { | ||
|
||
max-width: $maxwidth; | ||
margin-left: auto; | ||
margin-right: auto; | ||
padding: 0 8px !important; | ||
|
||
background-color: transparent; | ||
line-height: unset !important; | ||
|
||
h1 { | ||
font-family: Rubik, Roboto, Arial, Helvetica, sans-serif; | ||
font-size: 1.25em; | ||
font-weight: 600; | ||
color: rgba(230, 199, 76, 0.75); | ||
line-height: 1.0 !important; | ||
letter-spacing: 0.65px; | ||
|
||
a { | ||
text-decoration: none; | ||
color: inherit; | ||
padding-top: 0.5rem; | ||
|
||
&:hover { | ||
color: rgba(230, 199, 76, 0.85); | ||
} | ||
} | ||
} | ||
|
||
h2 { | ||
font-family: Rubik, Roboto, Arial, Helvetica, sans-serif; | ||
font-size: 0.55em; | ||
font-weight: normal; | ||
color: mat.get-theme-color($theme, neutral, 60); | ||
line-height: 0.9 !important; | ||
letter-spacing: 0.55px; | ||
|
||
a { | ||
text-decoration: none; | ||
color: inherit; | ||
padding-bottom: 0.9rem; | ||
|
||
.app-background { | ||
background-color: mat.m2-get-color-from-palette($accent, 900); | ||
&:hover { | ||
color: mat.get-theme-color($theme, neutral, 40); | ||
} | ||
} | ||
} | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -67,5 +67,5 @@ mat-dialog-actions { | |
|
||
// COMMON CONTROLS | ||
.error { | ||
color: #B00020; | ||
color: #B71C1C; | ||
} |
Oops, something went wrong.