Skip to content

Commit

Permalink
Tweak grays
Browse files Browse the repository at this point in the history
  • Loading branch information
casperboone committed Jan 4, 2025
1 parent 69a3c93 commit 34b3db0
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 3 deletions.
4 changes: 2 additions & 2 deletions dwhdelft.nl/components/pages/mixup/LinkedEvents.vue
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ onMounted(() => {
</script>

<template>
<section v-if="events && events.length > 0" class="bg-gray-900 py-12 md:pt-0 text-gray-200">
<section v-if="events && events.length > 0" class="bg-gray-875 py-12 md:pt-0 text-gray-200">
<ElementsContainer>
<h1 class="text-center font-medium text-5xl mb-6">
<Markdown :content="t('events')" />
Expand All @@ -58,7 +58,7 @@ onMounted(() => {
class="w-full md:w-48 p-4 bg-brand-900 rounded-lg shadow-lg flex flex-row-reverse md:flex-col"
>
<div class="flex-1">
<div class="text-gray-400 uppercase tracking-wide">
<div class="text-gray-300 uppercase tracking-wide">
{{ event.date.getDate() }} {{ $t(`month.${event.date.getMonth()}`)?.slice(0, 3) }} - {{ event.startTime }}
</div>
<div class="text-xl font-bold md:mb-4">
Expand Down
2 changes: 1 addition & 1 deletion dwhdelft.nl/pages/mixup.vue
Original file line number Diff line number Diff line change
Expand Up @@ -103,7 +103,7 @@ const linkedEventsReady = ref(false)
<template>
<div class="mixup-colors">
<LayoutSmallHeader :triangleClass="linkedEventsReady ? 'border-gray-900' : 'border-black'">
<LayoutSmallHeader :triangleClass="linkedEventsReady ? 'border-gray-875' : 'border-black'">
{{ t('title') }}
</LayoutSmallHeader>
Expand Down
1 change: 1 addition & 0 deletions tailwind.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -35,6 +35,7 @@ export default {
600: '#625c65',
700: '#48454b',
800: '#1f2937',
875: '#141c2b', // From https://fullwindcss.com/
900: '#111827',
},
},
Expand Down

0 comments on commit 34b3db0

Please sign in to comment.