Update theme colors

This commit is contained in:
2021-08-31 22:17:11 +02:00
parent fa8a90c117
commit 97bbd68031
17 changed files with 30 additions and 50 deletions

View File

@@ -7,7 +7,7 @@
<FormationsAbout />
<ExperiencesAbout />
<a href="/resume.pdf" target="_blank" class="duration-150 transform hover:scale-105">
<div class="text-lg cursor-pointer px-8 py-4 rounded-xl border-2 border-indigo-600 hover:(bg-indigo-600 text-white) dark:hover:text-black text-indigo-600 duration-300">
<div class="text-lg cursor-pointer px-8 py-4 rounded-xl border-2 border-red-500 dark:border-amber-400 hover:(bg-red-500 dark:bg-amber-400 text-white) dark:hover:text-black text-red-500 dark:text-amber-400 duration-300">
{{ $t('about.cv') }}
</div>
</a>

View File

@@ -5,7 +5,7 @@
<p>{{ $t('newsletter.description') }}</p>
</div>
</section>
<section class="p-6 border border-indigo-600 dark:border-indigo-700 rounded-lg text-justify">
<section class="p-6 border border-red-500 dark:border-amber-400 rounded-lg text-justify">
<h1 class="text-black font-bold dark:text-white text-2xl">{{ $t('newsletter.title') }}</h1>
<h3 class="text-gray-500 dark:text-gray-400">{{ $t('newsletter.subtitle') }}</h3>
<div class="my-3">

View File

@@ -63,7 +63,7 @@
</section>
<section class="mb-24 w-full">
<div class="flex justify-center md:justify-end mb-8">
<h1 class="text-3xl md:text-4xl py-4 px-8 bg-indigo-500 rounded-lg text-white dark:(text-black bg-indigo-600) transform md:rotate-10">
<h1 class="text-3xl md:text-4xl py-4 px-8 bg-red-500 dark:bg-amber-400 rounded-lg text-white dark:text-black transform md:rotate-10">
{{ $t('services.workflow.title') }}
</h1>
</div>
@@ -139,14 +139,14 @@ export default defineComponent({
<style scoped lang="scss">
.service-item {
@apply text-xl text-gray-500;
@apply text-xl text-gray-600 dark:text-gray-400;
}
.workflow-item {
@apply text-3xl
@apply text-3xl font-bold tracking-wider
}
.number {
@apply block text-indigo-500 mb-2
@apply block text-red-500 dark:text-amber-400 mb-2 font-thin
}
</style>