aboutsummaryrefslogtreecommitdiff
path: root/theme/static/styles.css
diff options
context:
space:
mode:
authorChristian Cleberg <[email protected]>2024-04-13 00:24:08 -0500
committerChristian Cleberg <[email protected]>2024-04-13 00:24:08 -0500
commitad681e8029a4e1649c482d3a3e658ce2a055aad6 (patch)
treef692534d5b5bfd891144749bee5c13f735092792 /theme/static/styles.css
parenta4f859e3656cd45419115ab5c54c142553dec9f8 (diff)
downloadcleberg.net-ad681e8029a4e1649c482d3a3e658ce2a055aad6.tar.gz
cleberg.net-ad681e8029a4e1649c482d3a3e658ce2a055aad6.tar.bz2
cleberg.net-ad681e8029a4e1649c482d3a3e658ce2a055aad6.zip
update font stack and accent colors
Diffstat (limited to 'theme/static/styles.css')
-rw-r--r--theme/static/styles.css72
1 files changed, 37 insertions, 35 deletions
diff --git a/theme/static/styles.css b/theme/static/styles.css
index 123db20..e55852b 100644
--- a/theme/static/styles.css
+++ b/theme/static/styles.css
@@ -352,12 +352,14 @@ template {
/* CUSTOM CSS */
:root {
- --bg: #fff;
- --bg-bright: #eee;
- --fg: #111;
- --link: #00f;
- --code: #f00;
- --border: #ccc;
+ --bg: rgb(255, 255, 255);
+ --bg-bright: rgb(238, 238, 238);
+ --fg: rgb(17, 17, 17);
+ --fg-bright: rgb(0, 0, 0);
+ --fg-dim: rgb(68, 68, 68);
+ --link: rgb(0, 0, 255);
+ --code: rgb(255, 0, 0);
+ --border: rgb(204, 204, 204);
}
@media (prefers-reduced-motion: no-preference) {
@@ -370,13 +372,19 @@ body {
background-color: var(--bg);
color: var(--fg);
font-family:
- Menlo,
- Consolas,
- Monaco,
- Liberation Mono,
- Lucida Console,
- monospace;
- font-size: 0.9rem;
+ -apple-system,
+ BlinkMacSystemFont,
+ avenir next,
+ avenir,
+ segoe ui,
+ helvetica neue,
+ helvetica,
+ Cantarell,
+ Ubuntu,
+ roboto,
+ noto,
+ arial,
+ sans-serif;
line-height: 1.5;
max-width: 50em;
margin: 0 auto;
@@ -417,17 +425,18 @@ h1,
h2,
h3,
h4 {
- color: var(--fg);
+ color: var(--fg-bright);
}
a,
a:visited {
- color: var(--link);
+ border-bottom: 2px solid var(--border);
+ color: var(--fg-dim);
text-decoration: none;
}
a:hover {
- text-decoration: underline;
+ color: var(--link);
}
img {
@@ -438,14 +447,6 @@ table {
border-collapse: collapse;
color: var(--fg);
border-color: var(--bg-bright);
- font-family:
- Menlo,
- Consolas,
- Monaco,
- Liberation Mono,
- Lucida Console,
- monospace;
- font-size: 0.9rem;
}
thead,
@@ -508,16 +509,16 @@ blockquote p {
}
.wiki-post {
-justify-content: space-between;
+ justify-content: space-between;
}
.wiki-post:first-of-type {
-border-bottom: 1px dotted var(--fg);
-margin-bottom: 1rem;
+ border-bottom: 1px dotted var(--fg);
+ margin-bottom: 1rem;
}
.wiki-post p {
-margin: 0;
+ margin: 0;
}
.post-metadata {
@@ -567,12 +568,13 @@ summary {
@media (prefers-color-scheme: dark) {
:root {
- --bg: #141617;
- --bg-bright: #191c1d;
- --fg: #b2aea9;
- /* --link: #2b8ad9; */
- --link: #ff79c6;
- --code: #ffb454;
- --border: #333;
+ --bg: rgb(20, 22, 23);
+ --bg-bright: rgb(25, 28, 29);
+ --fg: rgb(178, 174, 169);
+ --fg-bright: rgb(255, 255, 255);
+ --fg-dim: rgb(221, 221, 221);
+ --link: rgb(10, 132, 255);
+ --code: rgb(255, 159, 10);
+ --border: rgb(51, 51, 51);
}
}