brighten site color so it can be readable on screens with dimmer backlights and also tweak script to delete files not present in static on destination directory

This commit is contained in:
Peter 2025-03-20 13:20:59 -04:00
parent f84a118771
commit ddf5212691
2 changed files with 12 additions and 12 deletions

2
deploy
View file

@ -1,5 +1,5 @@
#!/bin/sh #!/bin/sh
hugo && rsync -Pa --delete /home/peter/hugo-website/public debian11:/var/www/peterspage hugo --cleanDestinationDir && rsync -Pa --delete /home/peter/hugo-website/public debian11:/var/www/peterspage
exit 0 exit 0

View file

@ -3,37 +3,37 @@
<head> <head>
<style> <style>
pre code { background-color: #312f2f; } pre code { background-color: #3e3c3c; }
code { padding: 2px 4px; font-size: 90%; border-radius: 4px; background-color: #181717; } code { padding: 2px 4px; font-size: 90%; border-radius: 4px; background-color: #131212; }
.headerWrapper { .headerWrapper {
background: #312f2f; background: #3e3c3c;
} }
.headerLinks { .headerLinks {
background: #312f2f; background: #3e3c3c;
} }
.postListItem { .postListItem {
background: #312f2f; background: #3e3c3c;
} }
.postExcerpt { .postExcerpt {
background: #312f2f; background: #3e3c3c;
} }
.postExcerpt { .postExcerpt {
background: #312f2f; background: #3e3c3c;
} }
.postMetadata { .postMetadata {
background: #312f2f; background: #3e3c3c;
} }
.footer { .footer {
background: #312f2f; background: #3e3c3c;
} }
body { body {
background: #252323; background: #2c2a2a;
} }
@ -58,7 +58,7 @@ body {
margin: 1px; margin: 1px;
border-radius: 0.5em; border-radius: 0.5em;
text-decoration: none; text-decoration: none;
background-color: #312f2f; background-color: #3e3c3c;
} }
.pagination a:hover { .pagination a:hover {