Skip to content

Commit e63a762

Browse files
author
Lindsey Zylstra
committed
Use color vars
1 parent e3d8c77 commit e63a762

File tree

4 files changed

+6
-6
lines changed

4 files changed

+6
-6
lines changed

components/Block/Carousel/Carousel.vue

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -114,7 +114,6 @@ onMounted(async () => {
114114
}
115115
116116
&__button {
117-
color: #333;
118117
padding: var(--space-2);
119118
&__svg {
120119
width: 24px;

components/Block/MasonryGrid/MasonryGridCard.vue

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -97,7 +97,7 @@ const isExternal = computed(() => !!cardData.value?.external_url);
9797
top: 0;
9898
left: 0;
9999
padding: var(--space-7);
100-
color: #455466;
100+
color: var(--gray-600);
101101
font-family: var(--family-display);
102102
font-size: var(--font-size-2xl);
103103
font-weight: 600;
@@ -122,7 +122,7 @@ const isExternal = computed(() => !!cardData.value?.external_url);
122122
background: rgba(255, 255, 255, 0.8);
123123
padding: var(--space-3) var(--space-4);
124124
border-radius: var(--rounded-md);
125-
color: #6b7b8c;
125+
color: var(--gray-500);
126126
font-size: var(--font-size-base);
127127
font-family: var(--family-display);
128128
line-height: var(--line-height-base);

components/Block/WallOfLove/Testimonial.vue

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -53,12 +53,13 @@ const logoImageUrl = computed(() => {
5353
<style lang="scss" scoped>
5454
.testimonial-card {
5555
border-radius: var(--rounded-xl);
56-
border: 1px solid #d3dae4;
57-
background: #fff;
56+
border: 1px solid var(--gray-200);
57+
background: var(--background);
5858
display: flex;
5959
min-width: 358px;
6060
min-height: 330px;
6161
padding: var(--space-8);
62+
color: var(--foreground);
6263
flex-direction: column;
6364
gap: var(--space-8);
6465

components/Block/WallOfLove/WallOfLove.vue

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -84,7 +84,7 @@ const toggleShowAll = () => {
8484
align-items: center;
8585
8686
.wall-heading {
87-
color: #455466;
87+
color: var(--gray-500);
8888
font-size: var(--font-size-2xl);
8989
font-style: normal;
9090
font-weight: 600;

0 commit comments

Comments
 (0)