From a3daf648a449558bc6b24c987213e6182f4f594e Mon Sep 17 00:00:00 2001 From: Arthur DANJOU Date: Sun, 29 Oct 2023 18:32:20 +0100 Subject: [PATCH] Use primary color for title --- src/components/MainSection.vue | 11 ++++++++--- src/pages/talents.vue | 6 ++++-- src/pages/work.vue | 6 ++++-- 3 files changed, 16 insertions(+), 7 deletions(-) diff --git a/src/components/MainSection.vue b/src/components/MainSection.vue index 618a7f8..db5d045 100644 --- a/src/components/MainSection.vue +++ b/src/components/MainSection.vue @@ -3,15 +3,20 @@ defineProps<{ icon: string title: string }>() + +const appConfig = useAppConfig() +function getColor() { + return `text-${appConfig.ui.primary}-500` +}