Skip to content

Commit

Permalink
fix: Edit some colours, translations
Browse files Browse the repository at this point in the history
  • Loading branch information
kiosion committed Nov 4, 2023
1 parent 516d2b3 commit 9c42b70
Show file tree
Hide file tree
Showing 4 changed files with 13 additions and 15 deletions.
2 changes: 0 additions & 2 deletions svelte-app/src/components/about/timeline-item.svelte
Original file line number Diff line number Diff line change
@@ -1,6 +1,5 @@
<script lang="ts">
import BulletPoint from '$components/bullet-point.svelte';
// import Icon from '$components/icon.svelte';
import PortableText from '$components/portable-text/portable-text.svelte';
import type { AuthorTimelineItem } from '$types';
Expand All @@ -10,7 +9,6 @@

<div class="item">
<div>
<!-- <Icon icon="ArrowRight" class="mr-4" /> -->
<BulletPoint />
<span>
<h2>{title}</h2>
Expand Down
2 changes: 1 addition & 1 deletion svelte-app/src/routes/[[lang=lang]]/work/+page.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@

<Divider class="!-mt-2" />

<HeadedBlock heading={$t('Projects & Talks')}>
<HeadedBlock heading={$t('Projects')}>
{#if projects.length}
<div class="mt-8 flex flex-col gap-10">
{#each sortedProjects as yearObj}
Expand Down
12 changes: 6 additions & 6 deletions svelte-app/src/styles/_colors.scss
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
$black: #171C22;
$white: #F5F5F5;
$dark: #182542;
$light: #EFEFEF;
$black: #171c22;
$white: #f5f5f5;
$dark: #1b2a3b;
$light: #efefef;

$accent-light: #235bd3;
$accent-dark: #d1fe7d;
$accent-light: #2c6af0;
$accent-dark: #c5fa71;
12 changes: 6 additions & 6 deletions svelte-app/tailwind.config.cjs
Original file line number Diff line number Diff line change
Expand Up @@ -7,13 +7,13 @@ module.exports = {
theme: {
extend: {
colors: {
black: '#171C22',
white: '#F5F5F5',
dark: '#182542',
light: '#EFEFEF',
black: '#171c22',
white: '#f5f5f5',
dark: '#1b2a3b',
light: '#efefef',
accent: {
light: '#235bd3',
dark: '#d1fe7d'
light: '#2c6af0',
dark: '#c5fa71'
}
},
fontFamily: {
Expand Down

0 comments on commit 9c42b70

Please sign in to comment.