Skip to content
This repository was archived by the owner on Sep 20, 2024. It is now read-only.

Commit 1e15631

Browse files
committed
feat: change to vue color shades
1 parent b8c12c2 commit 1e15631

File tree

5 files changed

+14
-12
lines changed

5 files changed

+14
-12
lines changed

website/src/assets/custom-theme.ts

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3,14 +3,14 @@ import { mode } from '@chakra-ui/vue-theme-tools'
33

44
export default extendTheme({
55
colors: {
6-
green: {
6+
vue: {
77
50: '#EEF8F4',
88
100: '#CDEBDD',
99
200: '#ACDEC6',
1010
300: '#8BD1AF',
1111
400: '#6AC398',
12-
500: '#49B682',
13-
600: '#35845E',
12+
500: '#42B883',
13+
600: '#30855F',
1414
700: '#2E7452',
1515
800: '#21533B',
1616
900: '#143223',

website/src/components/Navbar.vue

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,8 @@
99
shadow="sm"
1010
bg="white"
1111
z-index="10"
12+
border-top="6px solid"
13+
border-color="vue.500"
1214
>
1315
<CFlex align-items="center" flex="1" />
1416
<CFlex flex="1" justify-content="center">

website/src/components/home/Hero.vue

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
>
1212
<chakra.div>
1313
<chakra.h1
14-
maxW="20ch"
14+
maxW="16ch"
1515
:fontSize="{ base: '2.25rem', sm: '3rem', lg: '4rem' }"
1616
fontFamily="heading"
1717
letterSpacing="tighter"
@@ -20,7 +20,7 @@
2020
lineHeight="1.2"
2121
>
2222
Build accessible Vue apps
23-
<chakra.span color="green.600" px="5px">with speed</chakra.span>
23+
<chakra.span color="vue.600" px="5px">with speed</chakra.span>
2424
</chakra.h1>
2525
</chakra.div>
2626
<chakra.p
@@ -45,7 +45,7 @@
4545
target="_blank"
4646
rel="noopener noreferrer"
4747
color-scheme="green"
48-
bg="green.600"
48+
bg="vue.600"
4949
>
5050
Get started
5151
</CButton>
@@ -60,7 +60,7 @@
6060
variant="outline"
6161
color-scheme="green"
6262
size="lg"
63-
color="green.600"
63+
color="vue.600"
6464
>
6565
Github
6666
</CButton>
@@ -70,7 +70,7 @@
7070
alt="Chakra UI Vue Logo"
7171
:w="{ base: '0', sm: '45%' }"
7272
pos="absolute"
73-
bottom="-5%"
73+
bottom="-7%"
7474
right="0"
7575
/>
7676
</chakra.header>

website/src/components/home/PilersHero.vue

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@
2121
justify-content="center"
2222
align-items="center"
2323
mr="5"
24-
bg="vue.400"
24+
bg="vue.200"
2525
w="50px"
2626
h="50px"
2727
rounded="full"
@@ -39,7 +39,7 @@
3939
justify-content="center"
4040
align-items="center"
4141
mr="5"
42-
bg="vue.400"
42+
bg="vue.200"
4343
w="50px"
4444
h="50px"
4545
rounded="full"
@@ -57,7 +57,7 @@
5757
justify-content="center"
5858
align-items="center"
5959
mr="5"
60-
bg="vue.400"
60+
bg="vue.200"
6161
w="50px"
6262
h="50px"
6363
rounded="full"

website/src/pages/index.vue

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
:min-h="['auto', 'auto', '100vh']"
55
w="100%"
66
pt="60px"
7-
bg="green.50"
7+
bg="vue.50"
88
>
99
<Hero />
1010
<PilersHero />

0 commit comments

Comments
 (0)