Skip to content

Commit

Permalink
feat: add cloud and abstract video
Browse files Browse the repository at this point in the history
  • Loading branch information
Gauravjeetsingh committed Dec 14, 2023
1 parent f9f5c25 commit 376ec0f
Show file tree
Hide file tree
Showing 8 changed files with 82 additions and 1 deletion.
24 changes: 24 additions & 0 deletions src/scss/_abstract.scss
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
.theme-abstract {
background-color: #fff;
background-image: url('images/abstract.png');

.slide-gurbani {
color: #fcfefe;
}

.slide-translation {
color: #fde5ab;
}

.slide-teeka {
color: #86a3ba;
}

.slide-transliteration {
color: #f1f5f4;
}

.logo path {
fill: #e0e0e0;
}
}
25 changes: 25 additions & 0 deletions src/scss/_clouds.scss
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
.theme-clouds {
background-color: #fff;
background-image: url('images/clouds-video.png');

.slide-gurbani {
color: #0e2654;
text-shadow: 2px 2px 2px rgba(255, 255, 255, 0.7);
}

.slide-translation {
color: #003a8c;
}

.slide-teeka {
color: #033780;
}

.slide-transliteration {
color: #80878a;
}

.logo path {
fill: #e0e0e0;
}
}
Binary file added src/scss/images/abstract.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added src/scss/images/clouds-video.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
4 changes: 3 additions & 1 deletion src/scss/index.scss
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,9 @@ $viewer-padding: 30px;
"low-light",
"nirbaan",
"dhan-guru-nanak",
"ocean";
"ocean",
"clouds",
"abstract";

/* Custom Styles */
html {
Expand Down
14 changes: 14 additions & 0 deletions src/scss/themes/_theme-abstract.scss
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
$themeAbstract: (
type: 'dark',
background-color: #38987b,
gurbani: #fcfefe,
translation: #fde5ab,
teeka: #86a3ba,
transliteration: #f1f5f4,
visraam: #ffa5a5,
yamki: #ffde00,
);

.theme-abstract {
@include generateTheme($themeAbstract...);
}
14 changes: 14 additions & 0 deletions src/scss/themes/_theme-clouds.scss
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
$themeClouds: (
type: 'light',
background-color: #07ccf3,
gurbani: #0e2654,
translation: #003a8c,
teeka: #033780,
transliteration: #80878a,
visraam: #d20b0b,
yamki: #c2951a,
);

.theme-clouds {
@include generateTheme($themeClouds...);
}
2 changes: 2 additions & 0 deletions src/scss/themes/_themes.scss
Original file line number Diff line number Diff line change
Expand Up @@ -18,3 +18,5 @@
@import 'theme-dhan-guru-nanak.scss';
@import 'theme-nirbaan';
@import 'theme-ocean';
@import 'theme-clouds';
@import 'theme-abstract';

0 comments on commit 376ec0f

Please sign in to comment.