diff --git a/config.toml b/config.toml
index 7bced13..fe33530 100644
--- a/config.toml
+++ b/config.toml
@@ -25,6 +25,7 @@ smart_punctuation = true
styles = [
"custom.css"
]
+
accent_color = "#6E7DFB"
accent_color_dark = "#6E7DFB"
issues_url = "https://git.aparoksha.dev/david-swift/david.aparoksha.dev/issues"
diff --git a/content/_index.md b/content/_index.md
index 24fa223..5d62f6c 100644
--- a/content/_index.md
+++ b/content/_index.md
@@ -9,7 +9,7 @@ sort_by = "weight"
I'm David, a GNOME 👣 user enjoying the Swift programming language.
diff --git a/sass/custom.scss b/sass/custom.scss
index 61ba68c..9df1f51 100644
--- a/sass/custom.scss
+++ b/sass/custom.scss
@@ -1,46 +1,3 @@
-h1,
-h2,
-h3,
-h4,
-h5,
-h6 {
- font-weight: bold;
- font-family: var(--font-system-ui)
-}
-
-h1 {
- font-weight: 900;
- font-size: 3rem;
-}
-
-h2 {
- font-size: 2rem;
-}
-
-h3 {
- font-size: 1.5rem;
-}
-
-h4 {
- font-size: 1rem;
-}
-
-h5 {
- font-size: 0.75rem;
-}
-
-h6 {
- font-size: 0.5rem;
-}
-
-.column {
- float: left;
- padding: 5px;
- width: 50%;
-}
-
-.row::after {
- content: "";
- clear: both;
- display: table;
+body {
+ background-color: color-mix(in hsl, var(--bg-color), #6E7DFB55);
}
\ No newline at end of file