diff --git a/config.toml b/config.toml index b4b2916..50a19c7 100644 --- a/config.toml +++ b/config.toml @@ -15,7 +15,7 @@ publishDir = "blog" author = "Ray Elliott" info = "Hello World!" - avatarurl = "/images/profile--desat.jpg" + avatarurl = "/images/profile--bg-darker.jpg" favicon_32 = "/images/favicon-32x32.png" favicon_16 = "/images/favicon-16x16.png" diff --git a/static/css/custom.css b/static/css/custom.css index f1e7c80..6136077 100644 --- a/static/css/custom.css +++ b/static/css/custom.css @@ -2,13 +2,20 @@ text-transform: none; } -body.colorscheme-light .avatar img { - border-radius: 31%; +.about .avatar img { + width: 14rem; + border: 3px solid #044958; + padding: 2px; } -@media (prefers-color-scheme: light) { +body.colorscheme-dark .avatar img { + border: 2px solid #002e34; + padding: 0; +} + +@media (prefers-color-scheme: dark) { body.colorscheme-auto .avatar img { - border-radius: 31%; + border: 2px solid #002e34; } } diff --git a/static/images/profile--bg-darker.jpg b/static/images/profile--bg-darker.jpg new file mode 100644 index 0000000..f726d8e Binary files /dev/null and b/static/images/profile--bg-darker.jpg differ