diff --git a/src/routes/console/project-[project]/functions/function-[function]/create.svelte b/src/routes/console/project-[project]/functions/function-[function]/create.svelte
index 14373c646..3b6f5c443 100644
--- a/src/routes/console/project-[project]/functions/function-[function]/create.svelte
+++ b/src/routes/console/project-[project]/functions/function-[function]/create.svelte
@@ -5,11 +5,13 @@
import { createEventDispatcher, onMount } from 'svelte';
import { addNotification } from '$lib/stores/notifications';
import { page } from '$app/stores';
- import Github from '$lib/images/github-illustration.svg';
+ import GithubLight from '$lib/images/github-illustration-light.svg';
+ import GithubDark from '$lib/images/github-illustration-dark.svg';
import { invalidate } from '$app/navigation';
import { Dependencies } from '$lib/constants';
import { func } from './store';
import { trackEvent } from '$lib/actions/analytics';
+ import { app } from '$lib/stores/app';
export let showCreate = false;
@@ -117,7 +119,7 @@
on:click={() => (mode = Mode.Github)}
selected={mode === Mode.Github}
event="deploy_github">
- GitHub - Soon!
+ GitHub - (Soon!)
(mode = Mode.Manual)}
@@ -156,7 +158,11 @@
{:else if mode === Mode.Github}
-

+ {#if $app.themeInUse === 'dark'}
+

+ {:else}
+

+ {/if}
Coming Soon!