Skip to content

Commit a23bcbc

Browse files
committed
Merge #147: Fix brand colors
6b7167e Fix brand colors (Graeme Byrne) Pull request description: * #144 - Adjust colours so that they comply with the correct colour codes in this issue. ACKs for top commit: josecelano: ACK 6b7167e Tree-SHA512: ca68aa782200c89b08dbc295569a3d6c6bce6dbe6a3ea9615c2eab2aac1002099d104a8c5d7717a5d810cf4e1c63cefd38a1a2c7c983d11ca6af877d54231a28
2 parents e0bd5b6 + 6b7167e commit a23bcbc

File tree

54 files changed

+345
-264
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

54 files changed

+345
-264
lines changed

src/lib/components/atoms/Cards.svelte

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -80,7 +80,7 @@
8080
8181
&:hover {
8282
background: rgba(0, 0, 0, 0.2);
83-
box-shadow: 0 0 0 3px rgba(255, 49, 0, 1);
83+
box-shadow: 0 0 0 3px rgba(254, 13, 0, 1);
8484
}
8585
}
8686

src/lib/components/atoms/HeroCard.svelte

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -80,7 +80,7 @@
8080
}
8181
8282
.live-demo {
83-
background-color: rgba(255, 49, 0, 1);
83+
background-color: rgba(254, 13, 0, 1);
8484
}
8585
8686
.learn-btn {

src/lib/components/atoms/RelatedCard.svelte

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -76,7 +76,7 @@
7676
&[onclick] {
7777
cursor: pointer;
7878
&:hover {
79-
border: 1px solid rgba(255, 49, 0, 1);
79+
border: 1px solid rgba(254, 13, 0, 1);
8080
}
8181
}
8282
}

src/lib/components/atoms/TableOfContents.svelte

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -72,7 +72,7 @@
7272

7373
<style lang="scss">
7474
.sticky-nav {
75-
background: rgba(26, 26, 26, 1);
75+
background: rgba(25, 25, 25, 1);
7676
width: 300px;
7777
padding-inline: 0;
7878
position: sticky;

src/lib/components/atoms/Tag.svelte

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@
3333
text-transform: uppercase;
3434
font-size: 12px;
3535
&:hover {
36-
color: rgba(255, 49, 0, 1);
36+
color: rgba(254, 13, 0, 1);
3737
}
3838
}
3939
</style>

src/lib/components/molecules/BlogPostCard.svelte

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@
4242
}
4343
4444
a:hover {
45-
color: rgba(255, 49, 0, 1);
45+
color: rgba(254, 13, 0, 1);
4646
}
4747
4848
.grid {
@@ -82,7 +82,7 @@
8282
}
8383
8484
.text-container:hover {
85-
color: rgba(255, 49, 0, 1);
85+
color: rgba(254, 13, 0, 1);
8686
}
8787
8888
.text-container h2 {

src/lib/components/molecules/BlogPreview.svelte

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -72,7 +72,7 @@
7272
}
7373
7474
.text-container:hover {
75-
color: rgba(255, 49, 0, 1);
75+
color: rgba(254, 13, 0, 1);
7676
}
7777
7878
.text-container h2 {

src/lib/components/organisms/Footer.svelte

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -20,11 +20,11 @@
2020
@use '$lib/scss/breakpoints.scss' as bp;
2121
2222
footer {
23-
background-color: rgba(26, 26, 26, 1);
23+
background-color: rgba(25, 25, 25, 1);
2424
color: rgba(245, 245, 245, 0.96);
2525
display: flex;
2626
justify-content: center;
27-
border-bottom: 16px solid rgba(255, 49, 0, 1);
27+
border-bottom: 16px solid rgba(254, 13, 0, 1);
2828
padding: 2rem 1.5rem;
2929
3030
.footer-wrapper {

src/lib/components/organisms/Header.svelte

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -74,7 +74,7 @@
7474
header {
7575
position: relative;
7676
z-index: 1000;
77-
background-color: rgba(255, 49, 0, 1);
77+
background-color: rgba(254, 13, 0, 1);
7878
width: 100%;
7979
padding-inline: 1.5rem;
8080
@@ -152,7 +152,7 @@
152152
justify-content: center;
153153
text-align: justify;
154154
gap: 30px;
155-
background-color: rgba(255, 49, 0, 1);
155+
background-color: rgba(254, 13, 0, 1);
156156
157157
a {
158158
text-decoration: none;

src/lib/components/organisms/Hero.svelte

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@
3636
background-size: cover;
3737
background-repeat: no-repeat;
3838
background-position: center;
39-
background-color: rgba(255, 49, 0, 1);
39+
background-color: rgba(254, 13, 0, 1);
4040
display: flex;
4141
align-items: center;
4242
justify-content: center;

0 commit comments

Comments
 (0)