aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJoris2022-07-20 14:06:37 +0200
committerJoris2022-07-20 14:06:37 +0200
commit81e9db1de18615230ebd3e83e946e8bd8ddd311f (patch)
tree56e062c39201fa3289d30a3c48fe2c4362b98332
parent8e5b00f89424e533a8b35702a125052ae80514b8 (diff)
Improve contrast of titles
-rw-r--r--public/index.html1
-rw-r--r--public/main.css8
2 files changed, 4 insertions, 5 deletions
diff --git a/public/index.html b/public/index.html
index e7fa7f4..ad13e5c 100644
--- a/public/index.html
+++ b/public/index.html
@@ -357,7 +357,6 @@
<section class="contact">
<a href="mailto:contact@guyonvarch.me">
- <svg stroke="currentColor" fill="currentColor" stroke-width="0" viewBox="0 0 1024 1024" height="20" width="20" xmlns="http://www.w3.org/2000/svg"><path d="M928 160H96c-17.7 0-32 14.3-32 32v640c0 17.7 14.3 32 32 32h832c17.7 0 32-14.3 32-32V192c0-17.7-14.3-32-32-32zm-40 110.8V792H136V270.8l-27.6-21.5 39.3-50.5 42.8 33.3h643.1l42.8-33.3 39.3 50.5-27.7 21.5zM833.6 232L512 482 190.4 232l-42.8-33.3-39.3 50.5 27.6 21.5 341.6 265.6a55.99 55.99 0 0 0 68.7 0L888 270.8l27.6-21.5-39.3-50.5-42.7 33.2z"></path></svg>
contact@guyonvarch.me
</a>
</section>
diff --git a/public/main.css b/public/main.css
index 0db9e67..d1e99a5 100644
--- a/public/main.css
+++ b/public/main.css
@@ -1,9 +1,10 @@
/* Constants */
:root {
- --color-header: #68c64e;
- --color-title: #68c64e;
- --color-bullet: #68c64e;
+ --color-green: #22a200;
+
+ --color-header: var(--color-green);
+ --color-title: var(--color-green);
--color-border: #bebebe;
--color-light-background: #eee;
--color-link: #0377bb;
@@ -194,7 +195,6 @@ ul.bullets > li::before {
position: absolute;
left: 0;
content: "•";
- color: var(--color-bullet);
display: inline-block;
}