diff options
author | 2022-09-22 02:18:09 -0500 | |
---|---|---|
committer | 2022-09-22 15:18:09 +0800 | |
commit | 2c2bbc515811628551cdf7e48ee16f2ef37dcc70 (patch) | |
tree | e3172dca814a9e4b317237cd8c19467e8fa43c5d /examples/blog | |
parent | 778dce8c0529f6562f332d546ce5ab87702dcbe4 (diff) | |
download | astro-2c2bbc515811628551cdf7e48ee16f2ef37dcc70.tar.gz astro-2c2bbc515811628551cdf7e48ee16f2ef37dcc70.tar.zst astro-2c2bbc515811628551cdf7e48ee16f2ef37dcc70.zip |
Update blog post date text color to meet contrast-ratio guidelines (#4821)
Diffstat (limited to 'examples/blog')
-rw-r--r-- | examples/blog/src/pages/blog.astro | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/examples/blog/src/pages/blog.astro b/examples/blog/src/pages/blog.astro index a681736ab..c50cc0528 100644 --- a/examples/blog/src/pages/blog.astro +++ b/examples/blog/src/pages/blog.astro @@ -25,7 +25,7 @@ const posts = (await Astro.glob('./blog/*.{md,mdx}')).sort( ul li time { flex: 0 0 130px; font-style: italic; - color: #888; + color: #595959; } ul li a:visited { color: #8e32dc; |