summaryrefslogtreecommitdiff
path: root/packages/create-astro/src/components/Install.tsx
diff options
context:
space:
mode:
authorGravatar Drew Powers <1369770+drwpow@users.noreply.github.com> 2021-05-28 10:06:22 -0600
committerGravatar GitHub <noreply@github.com> 2021-05-28 10:06:22 -0600
commita0055bd985a6afe503e2ad2cb4f14b550b480a0a (patch)
treed3495a14d26df04714e9bef73b2b0a1bfc9c1faa /packages/create-astro/src/components/Install.tsx
parent556b9e48e4451d5aedfa0f5863c83560ffd2ee69 (diff)
downloadastro-a0055bd985a6afe503e2ad2cb4f14b550b480a0a.tar.gz
astro-a0055bd985a6afe503e2ad2cb4f14b550b480a0a.tar.zst
astro-a0055bd985a6afe503e2ad2cb4f14b550b480a0a.zip
Create astro fixes (#267)
* Remove create-astro from workspace * Improve contrast ratio * Swap blank template for blog template * Remove counter components from blog template * Use `latest` astro version
Diffstat (limited to 'packages/create-astro/src/components/Install.tsx')
-rw-r--r--packages/create-astro/src/components/Install.tsx4
1 files changed, 2 insertions, 2 deletions
diff --git a/packages/create-astro/src/components/Install.tsx b/packages/create-astro/src/components/Install.tsx
index 776c0cc34..d560322d0 100644
--- a/packages/create-astro/src/components/Install.tsx
+++ b/packages/create-astro/src/components/Install.tsx
@@ -12,8 +12,8 @@ const Install: FC<{ context: any }> = ({ context: { use } }) => {
</Box>
<Box>
<Spacer />
- <Text color="white" dimColor>
- (aka running <Text color="#17C083">{use === 'npm' ? 'npm install' : 'yarn'}</Text>)
+ <Text dimColor>
+ (aka running <Text dimColor>{use === 'npm' ? 'npm install' : 'yarn'}</Text>)
</Text>
</Box>
</>