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` +}