diff --git a/src/lib/components/atoms/Cards.svelte b/src/lib/components/atoms/Cards.svelte
index d3c6ab1..99792ed 100644
--- a/src/lib/components/atoms/Cards.svelte
+++ b/src/lib/components/atoms/Cards.svelte
@@ -80,7 +80,7 @@
&:hover {
background: rgba(0, 0, 0, 0.2);
- box-shadow: 0 0 0 3px rgba(255, 49, 0, 1);
+ box-shadow: 0 0 0 3px rgba(254, 13, 0, 1);
}
}
diff --git a/src/lib/components/atoms/HeroCard.svelte b/src/lib/components/atoms/HeroCard.svelte
index c23dfa0..cbfdcd4 100644
--- a/src/lib/components/atoms/HeroCard.svelte
+++ b/src/lib/components/atoms/HeroCard.svelte
@@ -80,7 +80,7 @@
}
.live-demo {
- background-color: rgba(255, 49, 0, 1);
+ background-color: rgba(254, 13, 0, 1);
}
.learn-btn {
diff --git a/src/lib/components/atoms/RelatedCard.svelte b/src/lib/components/atoms/RelatedCard.svelte
index 8495e43..8802cc8 100644
--- a/src/lib/components/atoms/RelatedCard.svelte
+++ b/src/lib/components/atoms/RelatedCard.svelte
@@ -76,7 +76,7 @@
&[onclick] {
cursor: pointer;
&:hover {
- border: 1px solid rgba(255, 49, 0, 1);
+ border: 1px solid rgba(254, 13, 0, 1);
}
}
}
diff --git a/src/lib/components/atoms/TableOfContents.svelte b/src/lib/components/atoms/TableOfContents.svelte
index c9266bd..e3c3fc1 100644
--- a/src/lib/components/atoms/TableOfContents.svelte
+++ b/src/lib/components/atoms/TableOfContents.svelte
@@ -72,7 +72,7 @@
diff --git a/src/lib/components/molecules/BlogPostCard.svelte b/src/lib/components/molecules/BlogPostCard.svelte
index 5f93aa8..1a92c27 100644
--- a/src/lib/components/molecules/BlogPostCard.svelte
+++ b/src/lib/components/molecules/BlogPostCard.svelte
@@ -42,7 +42,7 @@
}
a:hover {
- color: rgba(255, 49, 0, 1);
+ color: rgba(254, 13, 0, 1);
}
.grid {
@@ -82,7 +82,7 @@
}
.text-container:hover {
- color: rgba(255, 49, 0, 1);
+ color: rgba(254, 13, 0, 1);
}
.text-container h2 {
diff --git a/src/lib/components/molecules/BlogPreview.svelte b/src/lib/components/molecules/BlogPreview.svelte
index 633d294..8e0d142 100644
--- a/src/lib/components/molecules/BlogPreview.svelte
+++ b/src/lib/components/molecules/BlogPreview.svelte
@@ -72,7 +72,7 @@
}
.text-container:hover {
- color: rgba(255, 49, 0, 1);
+ color: rgba(254, 13, 0, 1);
}
.text-container h2 {
diff --git a/src/lib/components/organisms/Footer.svelte b/src/lib/components/organisms/Footer.svelte
index bb0351c..ffa8a80 100644
--- a/src/lib/components/organisms/Footer.svelte
+++ b/src/lib/components/organisms/Footer.svelte
@@ -20,11 +20,11 @@
@use '$lib/scss/breakpoints.scss' as bp;
footer {
- background-color: rgba(26, 26, 26, 1);
+ background-color: rgba(25, 25, 25, 1);
color: rgba(245, 245, 245, 0.96);
display: flex;
justify-content: center;
- border-bottom: 16px solid rgba(255, 49, 0, 1);
+ border-bottom: 16px solid rgba(254, 13, 0, 1);
padding: 2rem 1.5rem;
.footer-wrapper {
diff --git a/src/lib/components/organisms/Header.svelte b/src/lib/components/organisms/Header.svelte
index 5bf9826..a943338 100644
--- a/src/lib/components/organisms/Header.svelte
+++ b/src/lib/components/organisms/Header.svelte
@@ -74,7 +74,7 @@
header {
position: relative;
z-index: 1000;
- background-color: rgba(255, 49, 0, 1);
+ background-color: rgba(254, 13, 0, 1);
width: 100%;
padding-inline: 1.5rem;
@@ -152,7 +152,7 @@
justify-content: center;
text-align: justify;
gap: 30px;
- background-color: rgba(255, 49, 0, 1);
+ background-color: rgba(254, 13, 0, 1);
a {
text-decoration: none;
diff --git a/src/lib/components/organisms/Hero.svelte b/src/lib/components/organisms/Hero.svelte
index ad45a2b..8cff33f 100644
--- a/src/lib/components/organisms/Hero.svelte
+++ b/src/lib/components/organisms/Hero.svelte
@@ -36,7 +36,7 @@
background-size: cover;
background-repeat: no-repeat;
background-position: center;
- background-color: rgba(255, 49, 0, 1);
+ background-color: rgba(254, 13, 0, 1);
display: flex;
align-items: center;
justify-content: center;
diff --git a/src/lib/components/organisms/Post.svelte b/src/lib/components/organisms/Post.svelte
index 746b5f0..cc465f5 100644
--- a/src/lib/components/organisms/Post.svelte
+++ b/src/lib/components/organisms/Post.svelte
@@ -77,7 +77,7 @@
@use '$lib/scss/breakpoints.scss' as bp;
.container {
- background: rgba(26, 26, 26, 1);
+ background: rgba(25, 25, 25, 1);
color: rgba(245, 245, 245, 0.96);
margin: 0 auto;
max-width: 1250px;
diff --git a/src/lib/components/organisms/RelatedPosts.svelte b/src/lib/components/organisms/RelatedPosts.svelte
index 951e35d..01fc96f 100644
--- a/src/lib/components/organisms/RelatedPosts.svelte
+++ b/src/lib/components/organisms/RelatedPosts.svelte
@@ -28,7 +28,7 @@
.container {
color: rgba(245, 245, 245, 0.8);
- background: rgba(26, 26, 26, 1);
+ background: rgba(25, 25, 25, 1);
padding-bottom: 64px;
}
diff --git a/src/lib/components/singletons/PrevNextPost.svelte b/src/lib/components/singletons/PrevNextPost.svelte
index bd41c37..c5a32d5 100644
--- a/src/lib/components/singletons/PrevNextPost.svelte
+++ b/src/lib/components/singletons/PrevNextPost.svelte
@@ -97,7 +97,7 @@
}
.arrow a:hover {
- color: rgba(255, 49, 0, 1);
+ color: rgba(254, 13, 0, 1);
}
.arrowNext {
diff --git a/src/lib/components/singletons/RecentPosts.svelte b/src/lib/components/singletons/RecentPosts.svelte
index 5d86ceb..02e6a53 100644
--- a/src/lib/components/singletons/RecentPosts.svelte
+++ b/src/lib/components/singletons/RecentPosts.svelte
@@ -31,7 +31,7 @@
flex-direction: column;
margin: 0 auto;
padding-top: 3rem;
- background: rgba(26, 26, 26, 1);
+ background: rgba(25, 25, 25, 1);
color: rgba(245, 245, 245, 0.96);
padding-bottom: 64px;
box-sizing: border-box;
diff --git a/src/lib/components/singletons/ShareButton.svelte b/src/lib/components/singletons/ShareButton.svelte
index fef1a9b..2c3542d 100644
--- a/src/lib/components/singletons/ShareButton.svelte
+++ b/src/lib/components/singletons/ShareButton.svelte
@@ -137,7 +137,7 @@
}
.dropdown-menu a:hover {
- color: rgba(255, 49, 0, 1);
+ color: rgba(254, 13, 0, 1);
}
/* When the dropdown is hidden */
diff --git a/src/lib/components/singletons/ShareUrl.svelte b/src/lib/components/singletons/ShareUrl.svelte
index d3c0d5f..a39a348 100644
--- a/src/lib/components/singletons/ShareUrl.svelte
+++ b/src/lib/components/singletons/ShareUrl.svelte
@@ -36,6 +36,6 @@
button:hover {
cursor: pointer;
text-decoration: underline;
- color: rgba(255, 49, 0, 1);
+ color: rgba(254, 13, 0, 1);
}
diff --git a/src/lib/components/singletons/TorrustIndexPost.svelte b/src/lib/components/singletons/TorrustIndexPost.svelte
index a2d465b..26507e2 100644
--- a/src/lib/components/singletons/TorrustIndexPost.svelte
+++ b/src/lib/components/singletons/TorrustIndexPost.svelte
@@ -259,7 +259,7 @@
a {
word-break: keep-all;
- color: rgba(255, 49, 0, 1);
+ color: rgba(254, 13, 0, 1);
}
ul {
diff --git a/src/lib/components/singletons/TorrustTrackerPost.svelte b/src/lib/components/singletons/TorrustTrackerPost.svelte
index 70d90dc..5e9b9e7 100644
--- a/src/lib/components/singletons/TorrustTrackerPost.svelte
+++ b/src/lib/components/singletons/TorrustTrackerPost.svelte
@@ -277,7 +277,7 @@
a {
word-break: keep-all;
- color: rgba(255, 49, 0, 1);
+ color: rgba(254, 13, 0, 1);
}
ul {
diff --git a/src/lib/components/singletons/WhyContribute.svelte b/src/lib/components/singletons/WhyContribute.svelte
index 40e2563..3a3233b 100644
--- a/src/lib/components/singletons/WhyContribute.svelte
+++ b/src/lib/components/singletons/WhyContribute.svelte
@@ -32,7 +32,7 @@
margin: 0 auto;
text-align: center;
color: rgba(245, 245, 245, 0.8);
- background: rgba(26, 26, 26, 1);
+ background: rgba(25, 25, 25, 1);
padding-top: 4rem;
padding-inline: 1.5rem;
max-width: 1200px;
diff --git a/src/lib/constants/constants.ts b/src/lib/constants/constants.ts
index da8bbc6..756bcc7 100644
--- a/src/lib/constants/constants.ts
+++ b/src/lib/constants/constants.ts
@@ -78,32 +78,32 @@ export const trackerTitleArr1 = [
export const contribute = [
{
- icon: '',
+ icon: '',
title: 'Written in Rust',
para: 'Crafted with precision in Rust, our product delivers unparalleled performance and reliability.'
},
{
- icon: '',
+ icon: '',
title: 'Quality code',
para: 'Craft reliable, efficient, scalable code for software to function as intended, easing maintenance and enhancements.'
},
{
- icon: '',
+ icon: '',
title: 'High test coverage',
para: "Enjoy peace of mind with our project's exceptional test coverage. Our thorough testing guarantees a reliable and robust final product."
},
{
- icon: '',
+ icon: '',
title: 'Good documentation',
para: 'Explore our project with comprehensive documentation that guides you every step of the way.'
},
{
- icon: '',
+ icon: '',
title: 'Long-term projection',
para: 'Explore the future possibilities of our project through our extended forecast.'
},
{
- icon: '',
+ icon: '',
title: 'Sponsored',
para: 'Sponsored by leading industry partners who are committed to driving positive change and innovation. '
}
diff --git a/src/lib/icons/miniLogo.svelte b/src/lib/icons/miniLogo.svelte
index 358a608..18ee920 100644
--- a/src/lib/icons/miniLogo.svelte
+++ b/src/lib/icons/miniLogo.svelte
@@ -2,17 +2,17 @@
diff --git a/src/lib/icons/nautilus.svelte b/src/lib/icons/nautilus.svelte
index 089e181..5282a2c 100644
--- a/src/lib/icons/nautilus.svelte
+++ b/src/lib/icons/nautilus.svelte
@@ -173,6 +173,6 @@
diff --git a/src/lib/scss/_markdown.scss b/src/lib/scss/_markdown.scss
index 28d2218..1118ad9 100644
--- a/src/lib/scss/_markdown.scss
+++ b/src/lib/scss/_markdown.scss
@@ -61,7 +61,7 @@
blockquote {
padding: 25px 25px 15px;
- border-left: 4px solid rgba(255, 49, 0, 1);
+ border-left: 4px solid rgba(254, 13, 0, 1);
background: rgba(36, 36, 36, 1);
}
diff --git a/src/routes/(home)/+layout.svelte b/src/routes/(home)/+layout.svelte
index 399175d..619588d 100644
--- a/src/routes/(home)/+layout.svelte
+++ b/src/routes/(home)/+layout.svelte
@@ -33,7 +33,7 @@
diff --git a/src/routes/(home)/+page.svelte b/src/routes/(home)/+page.svelte
index a89a9b9..8437140 100644
--- a/src/routes/(home)/+page.svelte
+++ b/src/routes/(home)/+page.svelte
@@ -47,7 +47,7 @@
margin: 0 auto;
width: 100%;
padding-top: 2rem;
- background: rgba(26, 26, 26, 1);
+ background: rgba(25, 25, 25, 1);
color: rgba(245, 245, 245, 0.96);
padding-bottom: 64px;
diff --git a/src/routes/(pages)/+layout.svelte b/src/routes/(pages)/+layout.svelte
index 5941e5a..adfbc34 100644
--- a/src/routes/(pages)/+layout.svelte
+++ b/src/routes/(pages)/+layout.svelte
@@ -12,7 +12,7 @@