Skip to content

Commit c5186f2

Browse files
AkryumAmirSa12
authored andcommitted
fix: light theme
1 parent 5fdbdaf commit c5186f2

File tree

5 files changed

+36
-5
lines changed

5 files changed

+36
-5
lines changed

packages/app/app/components/AppFooter.vue

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,8 @@
11
<template>
22
<footer class="text-center p-12 opacity-50 hover:opacity-100 focus-within:opacity-100 flex flex-col items-center gap-3 text-xs">
33
<a href="https://stackblitz.com/" target="_blank">
4-
<img src="/stackblitz.svg" alt="StackBlitz" width="117" height="24">
4+
<img src="/stackblitz.svg" alt="StackBlitz" width="117" height="24" class="not-dark:hidden">
5+
<img src="/stackblitz-black.svg" alt="StackBlitz" width="117" height="24" class="dark:hidden">
56
</a>
67
<div class="flex gap-3 items-center">
78
<div>Built by <a href="https://github.com/Aslemammad" target="_blank" class="text-primary">Aslemammad</a></div>

packages/app/app/components/CodeSnippet.vue

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ function copyCode() {
1919

2020
<template>
2121
<div class="relative group">
22-
<pre class="bg-black rounded-lg p-6"><code>{{ props.code }}</code></pre>
22+
<pre class="text-white bg-gray-500 dark:bg-black rounded-lg p-6"><code>{{ props.code }}</code></pre>
2323

2424
<ClientOnly>
2525
<UTooltip

packages/app/app/components/GettingStartedStep.vue

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,8 +5,8 @@ defineProps<{
55
</script>
66

77
<template>
8-
<div class="p-6 rounded-xl border border-primary-900 w-full flex gap-6">
9-
<div class="text-4xl size-20 rounded-full bg-primary-900/20 flex items-center justify-center flex-none text-primary-500 font-mono">
8+
<div class="p-6 rounded-xl border border-primary-300 bg-primary-100 dark:bg-primary-900/5 dark:border-primary-900 w-full flex gap-6">
9+
<div class="text-4xl size-20 rounded-full bg-primary-500/20 dark:bg-primary-900/20 flex items-center justify-center flex-none text-primary-500 font-mono">
1010
{{ step }}
1111
</div>
1212

packages/app/app/pages/index.vue

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ function scrollToGettingStarted() {
4141
</div>
4242
</div>
4343

44-
<div ref="getting-started" class="min-h-screen p-6 flex items-center bg-gray-800">
44+
<div ref="getting-started" class="min-h-screen p-6 flex items-center bg-gray-100 dark:bg-gray-800">
4545
<GettingStarted id="getting-started" class="my-container" />
4646
</div>
4747
</div>
Lines changed: 30 additions & 0 deletions
Loading

0 commit comments

Comments
 (0)