Skip to content

Commit 661e5ae

Browse files
committed
use brand colors
1 parent 3aef49c commit 661e5ae

9 files changed

Lines changed: 38 additions & 11 deletions

File tree

website/src/assets/backgrounds/chevron.svg

Lines changed: 26 additions & 1 deletion
Loading

website/src/components/Contact.astro

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ import wedge from "../assets/backgrounds/wedge.svg";
1414
<div><label for="name">Name:</label></div>
1515
<div>
1616
<input
17-
class="my-3 p-3 w-full border-2 border-sky-500 rounded-2xl"
17+
class="my-3 p-3 w-full border-2 border-bdt-blue rounded-2xl"
1818
type="text"
1919
name="name"
2020
id="name"
@@ -24,7 +24,7 @@ import wedge from "../assets/backgrounds/wedge.svg";
2424
<div><label for="name">Email:</label></div>
2525
<div>
2626
<input
27-
class="my-3 p-3 w-full border-2 border-sky-500 rounded-2xl"
27+
class="my-3 p-3 w-full border-2 border-bdt-blue rounded-2xl"
2828
type="text"
2929
name="email"
3030
id="email"
@@ -34,13 +34,13 @@ import wedge from "../assets/backgrounds/wedge.svg";
3434
<div><label for="name">Message:</label></div>
3535
<div>
3636
<textarea
37-
class="my-3 p-3 w-full h-40 border-2 border-sky-500 rounded-2xl"
37+
class="my-3 p-3 w-full h-40 border-2 border-bdt-blue rounded-2xl"
3838
name="message"
3939
id="message"
4040
placeholder="Your message"></textarea>
4141
</div>
4242
<input
43-
class="px-6 py-2 pt-3 mt-3 font-serif bg-green-300 rounded-full text-xl cursor-pointer"
43+
class="px-6 py-2 pt-3 mt-3 font-serif bg-bdt-green rounded-full text-xl cursor-pointer"
4444
type="submit"
4545
value="Submit"
4646
size=""

website/src/components/Footer.astro

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
<footer class="py-12 text-center flex flex-col gap-3 bg-green-300">
1+
<footer class="py-12 text-center flex flex-col gap-3 bg-bdt-green">
22
<a class="underline" href=`${import.meta.env.BASE_URL}/#top`>Return to top</a>
33
<p class="text-2xl! font-serif mt-2">Benefit Decision Toolkit</p>
44
<p>With ❤️ from Philly</p>

website/src/components/Header.astro

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ import logo from "../assets/logos/bdt-logo-large-mono-dark.svg";
44
import NavMenu from "./NavMenu.svelte";
55
---
66

7-
<header class="p-6 bg-sky-500 sm:static z-50">
7+
<header class="p-6 bg-bdt-blue sm:static z-50">
88
<div
99
class="flex flex-row justify-between items-baseline gap-6 max-w-[130ch] mx-auto"
1010
>

website/src/components/Hero.astro

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ import { Content } from "../assets/copy/Hero.md";
1414
</div>
1515
<a href=`${import.meta.env.BASE_URL}/#projects`>
1616
<div
17-
class="mt-6 w-fit px-6 py-2 pt-3 bg-white border-2 border-sky-500 rounded-full text-sky-700 font-serif text-xl"
17+
class="mt-6 w-fit px-6 py-2 pt-3 bg-white border-2 border-bdt-blue rounded-full text-sky-700 font-serif text-xl"
1818
>
1919
<span>See what we can do</span>
2020
</div>

website/src/components/Overview.astro

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
import { Content } from "../assets/copy/Overview.md";
33
---
44

5-
<section id="overview" class="bg-green-200">
5+
<section id="overview" class="bg-bdt-green">
66
<div class="max-w-[85ch] mx-auto py-12 px-3 prose">
77
<Content />
88
</div>

website/src/components/Process.astro

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ import { Content } from "../assets/copy/Process.md";
33
const steps = ["Create a Screener", "Add Logic", "Deploy Your Tool"];
44
---
55

6-
<section id="process" class="border-b-2 border-sky-500">
6+
<section id="process" class="border-b-2 border-bdt-blue">
77
<div class="max-w-[85ch] mx-auto py-12 px-3 flex flex-col gap-8 relative">
88
<div class="prose max-w-[85ch]">
99
<Content />

website/src/components/Projects.astro

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ const projects = await getCollection("projects");
66

77
<section
88
id="projects"
9-
class="bg-sky-500/50 bg-[url(../assets/backgrounds/wavy.png)] bg-cover bg-blend-multiply"
9+
class="bg-bdt-blue/60 bg-[url(../assets/backgrounds/wavy.png)] bg-cover bg-blend-multiply"
1010
>
1111
<div class="max-w-[130ch] mx-auto py-12 px-3">
1212
<h2 class="font-bold font-serif text-2xl text-center mb-9">

website/src/styles/global.css

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,4 +4,6 @@
44
@theme {
55
--font-sans: "Inter", sans;
66
--font-serif: "Ramaraja", serif;
7+
--color-bdt-blue: #1a84d2;
8+
--color-bdt-green: #cff7d3;
79
}

0 commit comments

Comments
 (0)