|
2 | 2 | # Front matter comment to ensure Jekyll properly reads file. |
3 | 3 | --- |
4 | 4 |
|
5 | | -$body-color: {{ site.body_background_color }}; |
| 5 | +$body-color: {{ site.body_background_color | default: "#ffffff" }}; |
6 | 6 |
|
7 | | -$header-image: "{{ site.cover_image }}"; |
8 | | -$device-color: "assets/{{ site.device_color }}.png"; |
| 7 | +$header-image: "{{ site.cover_image | default: "assets/headerimage.png" }}"; |
| 8 | +$device-color: "assets/{{ site.device_color | default: "black" }}.png"; |
9 | 9 |
|
10 | | -$accent-color: {{ site.link_color }}; |
| 10 | +$accent-color: {{ site.link_color | default: "#1d63ea" }}; |
11 | 11 |
|
12 | | -$header-title-color: {{ site.topbar_title_color }}; |
13 | | -$app-title-color: {{ site.app_title_color }}; |
14 | | -$app-price-color: {{ site.app_price_color }}; |
15 | | -$app-description-color: {{ site.app_description_color }}; |
| 12 | +$header-title-color: {{ site.topbar_title_color | default: "#ffffff" }}; |
| 13 | +$app-title-color: {{ site.app_title_color | default: "#ffffff" }}; |
| 14 | +$app-price-color: {{ site.app_price_color | default: "#ffffff" }}; |
| 15 | +$app-description-color: {{ site.app_description_color | default: "#ffffff" }}; |
16 | 16 |
|
17 | | -$feature-title-color: {{ site.feature_title_color }}; |
18 | | -$feature-text-color: {{ site.feature_text_color }}; |
19 | | -$footer-text-color: {{ site.footer_text_color }}; |
| 17 | +$feature-title-color: {{ site.feature_title_color | default: "#000000" }}; |
| 18 | +$feature-text-color: {{ site.feature_text_color | default: "#666666" }}; |
| 19 | +$footer-text-color: {{ site.footer_text_color | default: "#666666" }}; |
20 | 20 |
|
21 | | -$header_color: {{ site.topbar_color }}; |
22 | | -$header_transparency: {{ site.topbar_transparency }}; |
| 21 | +$header_color: {{ site.topbar_color | default: "#000000" }}; |
| 22 | +$header_transparency: {{ site.topbar_transparency | default: 0.1 }}; |
23 | 23 |
|
24 | | -$image-overlay-color: {{ site.cover_overlay_color }}; |
25 | | -$image-overlay-transparency: {{ site.cover_overlay_transparency }}; |
| 24 | +$image-overlay-color: {{ site.cover_overlay_color | default: "#363b3d" }}; |
| 25 | +$image-overlay-transparency: {{ site.cover_overlay_transparency | default: 0.8 }}; |
26 | 26 |
|
27 | | -$feature-icons-foreground-color: {{ site.feature_icons_foreground_color }}; |
28 | | -$feature-icons-background-color: {{ site.feature_icons_background_color }}; |
| 27 | +$feature-icons-foreground-color: {{ site.feature_icons_foreground_color | default: "#1d63ea" }}; |
| 28 | +$feature-icons-background-color: {{ site.feature_icons_background_color | default: "#e6e6e6" }}; |
29 | 29 |
|
30 | | -$social-icons-foreground-color: {{ site.social_icons_foreground_color }}; |
31 | | -$social-icons-background-color: {{ site.social_icons_background_color }}; |
| 30 | +$social-icons-foreground-color: {{ site.social_icons_foreground_color | default: "#666666" }}; |
| 31 | +$social-icons-background-color: {{ site.social_icons_background_color | default: "#e6e6e6" }}; |
32 | 32 |
|
33 | 33 | @import |
34 | 34 | "base", |
|
0 commit comments