From 7475bad52f00d7748479419311cd84dbd936a79e Mon Sep 17 00:00:00 2001 From: Dakota Chambers Date: Mon, 4 Dec 2023 13:42:03 -0600 Subject: [PATCH] Add background color for html hr tag Makes the `hr` line break the same color as the text. Before this style was not set and it was very hard to see any `hr` linebreaks with this theme. --- profiles/themes/monokai.css | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/profiles/themes/monokai.css b/profiles/themes/monokai.css index d101993..dfc44e3 100644 --- a/profiles/themes/monokai.css +++ b/profiles/themes/monokai.css @@ -17,6 +17,10 @@ main { background: unset; } +hr { + background: #F7F1FF; +} + a:link, a:visited { color: #F7F1FF; @@ -81,4 +85,4 @@ a:active { .fa-birthday-cake { color: #FA638D; -} \ No newline at end of file +}