diff options
author | 2021-05-28 10:06:22 -0600 | |
---|---|---|
committer | 2021-05-28 10:06:22 -0600 | |
commit | a0055bd985a6afe503e2ad2cb4f14b550b480a0a (patch) | |
tree | d3495a14d26df04714e9bef73b2b0a1bfc9c1faa /packages/create-astro/src/components/Install.tsx | |
parent | 556b9e48e4451d5aedfa0f5863c83560ffd2ee69 (diff) | |
download | astro-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.tsx | 4 |
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> </> |