-
-
Notifications
You must be signed in to change notification settings - Fork 101
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #375 from MurhafSousli/update-demo
Update demo
- Loading branch information
Showing
10 changed files
with
204 additions
and
97 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
import { Routes } from '@angular/router'; | ||
|
||
export const appRoutes: Routes = [ | ||
{ | ||
path: '', | ||
loadComponent: () => import('./home/home.component').then(m => m.HomeComponent) | ||
}, | ||
{ | ||
path: 'custom', | ||
loadComponent: () => import('./custom/custom.component').then(m => m.CustomComponent) | ||
} | ||
]; |
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 was deleted.
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 |
---|---|---|
@@ -0,0 +1,144 @@ | ||
// This file was generated by running 'ng generate @angular/material:m3-theme'. | ||
// Proceed with caution if making changes to this file. | ||
|
||
@use 'sass:map'; | ||
@use '@angular/material' as mat; | ||
|
||
// Note: Color palettes are generated from primary: #1EB77F, secondary: #2C7CD1, tertiary: #92c34e | ||
$_palettes: ( | ||
primary: ( | ||
0: #000000, | ||
10: #002113, | ||
20: #003824, | ||
25: #00452c, | ||
30: #005236, | ||
35: #005f3f, | ||
40: #006c48, | ||
50: #00885c, | ||
60: #00a571, | ||
70: #30c188, | ||
80: #55dea2, | ||
90: #74fbbd, | ||
95: #beffdb, | ||
98: #e8ffef, | ||
99: #f4fff6, | ||
100: #ffffff, | ||
), | ||
secondary: ( | ||
0: #000000, | ||
10: #001c39, | ||
20: #00315d, | ||
25: #003c70, | ||
30: #004884, | ||
35: #005398, | ||
40: #005fad, | ||
50: #2779cd, | ||
60: #4a93e9, | ||
70: #6faeff, | ||
80: #a4c9ff, | ||
90: #d4e3ff, | ||
95: #ebf1ff, | ||
98: #f8f9ff, | ||
99: #fdfcff, | ||
100: #ffffff, | ||
), | ||
tertiary: ( | ||
0: #000000, | ||
10: #112000, | ||
20: #203600, | ||
25: #294200, | ||
30: #314f00, | ||
35: #3a5c00, | ||
40: #436900, | ||
50: #578311, | ||
60: #709e2d, | ||
70: #89ba46, | ||
80: #a4d65e, | ||
90: #bff377, | ||
95: #d3ff96, | ||
98: #f0ffd5, | ||
99: #f9ffe8, | ||
100: #ffffff, | ||
), | ||
neutral: ( | ||
0: #000000, | ||
10: #161d19, | ||
20: #2b322d, | ||
25: #363d38, | ||
30: #414843, | ||
35: #4d544f, | ||
40: #59605b, | ||
50: #717973, | ||
60: #8b938c, | ||
70: #a6ada7, | ||
80: #c1c8c2, | ||
90: #dde4dd, | ||
95: #ebf3eb, | ||
98: #f4fbf4, | ||
99: #f7fef7, | ||
100: #ffffff, | ||
4: #09100c, | ||
6: #0e1511, | ||
12: #1a211d, | ||
17: #252c27, | ||
22: #2f3632, | ||
24: #343b36, | ||
87: #d5dcd5, | ||
92: #e3eae3, | ||
94: #e9f0e9, | ||
96: #eef5ee, | ||
), | ||
neutral-variant: ( | ||
0: #000000, | ||
10: #121e17, | ||
20: #27332c, | ||
25: #313e37, | ||
30: #3d4a42, | ||
35: #48564d, | ||
40: #546259, | ||
50: #6d7a71, | ||
60: #86948a, | ||
70: #a0afa4, | ||
80: #bccabf, | ||
90: #d7e6db, | ||
95: #e6f4e9, | ||
98: #eefdf2, | ||
99: #f4fff6, | ||
100: #ffffff, | ||
), | ||
error: ( | ||
0: #000000, | ||
10: #410002, | ||
20: #690005, | ||
25: #7e0007, | ||
30: #93000a, | ||
35: #a80710, | ||
40: #ba1a1a, | ||
50: #de3730, | ||
60: #ff5449, | ||
70: #ff897d, | ||
80: #ffb4ab, | ||
90: #ffdad6, | ||
95: #ffedea, | ||
98: #fff8f7, | ||
99: #fffbff, | ||
100: #ffffff, | ||
), | ||
); | ||
|
||
$_rest: ( | ||
secondary: map.get($_palettes, secondary), | ||
neutral: map.get($_palettes, neutral), | ||
neutral-variant: map.get($_palettes, neutral-variant), | ||
error: map.get($_palettes, error), | ||
); | ||
$_primary: map.merge(map.get($_palettes, primary), $_rest); | ||
$_tertiary: map.merge(map.get($_palettes, tertiary), $_rest); | ||
|
||
$light-theme: mat.define-theme(( | ||
color: ( | ||
theme-type: light, | ||
primary: $_primary, | ||
tertiary: $_tertiary, | ||
), | ||
)); |
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
Oops, something went wrong.
f6eda69
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
🎉 Published on https://ngx-progressbar.netlify.app as production
🚀 Deployed on https://66d10bc2db3130cac6878f82--ngx-progressbar.netlify.app