Skip to content

Commit

Permalink
Small theme changes
Browse files Browse the repository at this point in the history
  • Loading branch information
digimezzo committed Feb 18, 2024
1 parent b98c252 commit 8bac5e0
Show file tree
Hide file tree
Showing 3 changed files with 13 additions and 9 deletions.
16 changes: 8 additions & 8 deletions src/app/services/appearance/default-themes-creator.ts
Original file line number Diff line number Diff line change
Expand Up @@ -282,7 +282,7 @@ export class DefaultThemesCreator {

private defaultDarkColors(): ThemeNeutralColors {
return new ThemeNeutralColors(
'#7e7e7e',
'#7f7f7f',
'rgba(255, 255, 255, 0.05)',
'rgba(255, 255, 255, 0.1)',
'#666',
Expand Down Expand Up @@ -316,27 +316,27 @@ export class DefaultThemesCreator {

private defaultLightColors(): ThemeNeutralColors {
return new ThemeNeutralColors(
'#838383',
'#828282',
'rgba(0, 0, 0, 0.05)',
'rgba(0, 0, 0, 0.1)',
'#909090',
'#000',
'#f5f5f5',
'#fdfdfd',
'#fdfdfd',
'#efefef',
'#f7f7f7',
'#fefefe',
'#fefefe',
'#f0f0f0',
'#000',
'#838383',
'#dedede',
'#000',
'#333',
'#838383',
'#cecece',
'transparent',
'transparent',
'#d7d7d7',
'#d7d7d7',
'#4883e0',
'#dfdfdf',
'#ededed',
'#000',
'#838383',
'#fdfdfd',
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
<div class="d-flex flex-row align-items-center">
<i *ngIf="!notificationData?.animateIcon" class="notification-bar__icon mr-2" [ngClass]="notificationData?.icon"></i>
<i *ngIf="notificationData?.animateIcon" class="notification-bar__icon mr-2 rotation" [ngClass]="notificationData?.icon"></i>
<div>
<div class="notification-bar__text">
{{ notificationData?.message }}
</div>
</div>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,10 @@
font-size: 18px;
}

.notification-bar__text {
color: white;
}

.notification-bar__closebutton {
color: white;
font-size: 18px;
Expand Down

0 comments on commit 8bac5e0

Please sign in to comment.