-
Notifications
You must be signed in to change notification settings - Fork 8
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat: change indicator app to light and dark theme
- Loading branch information
Showing
17 changed files
with
303 additions
and
240 deletions.
There are no files selected for viewing
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,5 +1 @@ | ||
@import './story/toolbar/_toolbar.component'; | ||
|
||
.mat-toolbar.pac__shell-bar { | ||
@apply relative text-slate-300 bg-bluegray-900 dark:bg-transparent dark:shadow-none; | ||
} | ||
@import './story/toolbar/_toolbar.component'; |
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 |
---|---|---|
@@ -0,0 +1 @@ | ||
@import "./src/lib/_indicator-market.component"; |
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 |
---|---|---|
@@ -0,0 +1,78 @@ | ||
$trend-up: rgb(49, 199, 90); | ||
$trend-down: rgb(254, 60, 46); | ||
$background-color: #090909; | ||
|
||
.Trend-Up { | ||
color: $trend-up; | ||
} | ||
|
||
.Trend-Down { | ||
color: $trend-down; | ||
} | ||
|
||
.reverse-semantic-color { | ||
.mat-card { | ||
.Trend-Up { | ||
color: $trend-down; | ||
} | ||
|
||
.Trend-Down { | ||
color: $trend-up; | ||
} | ||
} | ||
} | ||
|
||
.indicator-market-app { | ||
.pac-indicator__tag { | ||
width: 60px; | ||
text-align: right; | ||
border-radius: 5px; | ||
padding: 0 5px; | ||
cursor: pointer; | ||
|
||
&.Trend-Up { | ||
background-color: $trend-up; | ||
color: white; | ||
} | ||
&.Trend-Down { | ||
background-color: $trend-down; | ||
color: white; | ||
} | ||
} | ||
|
||
.Trend-Up { | ||
color: $trend-up; | ||
} | ||
|
||
.Trend-Down { | ||
color: $trend-down; | ||
} | ||
|
||
&.reverse-semantic-color { | ||
.Trend-Up { | ||
color: $trend-down; | ||
} | ||
.Trend-Down { | ||
color: $trend-up; | ||
} | ||
.pac-indicator__tag { | ||
&.Trend-Up { | ||
background-color: $trend-down; | ||
@apply text-neutral-100; | ||
} | ||
&.Trend-Down { | ||
background-color: $trend-up; | ||
@apply text-neutral-100; | ||
} | ||
} | ||
} | ||
|
||
.am-picker-popup-content { | ||
background-color: $background-color; | ||
} | ||
|
||
.am-picker-col-mask { | ||
background-image: linear-gradient(to bottom, rgb(109 109 109 / 95%), rgb(131 131 131 / 60%)), | ||
linear-gradient(to top, rgb(121 121 121 / 95%), rgb(122 121 121 / 60%)); | ||
} | ||
} |
Oops, something went wrong.