diff --git a/docs/components/content/VoltaEmbed.vue b/docs/components/content/VoltaEmbed.vue index 036ee53f..fe5475e3 100644 --- a/docs/components/content/VoltaEmbed.vue +++ b/docs/components/content/VoltaEmbed.vue @@ -10,5 +10,7 @@ const props = defineProps({ } }) -const src = computed(() => `https://volta.net/embed/${props.token}`) +const appConfig = useAppConfig() + +const src = computed(() => `https://volta.net/embed/${props.token}?gray=${appConfig.ui.gray}&primary=${appConfig.ui.primary}`)