diff options
author | 2022-09-09 13:19:45 -0400 | |
---|---|---|
committer | 2022-09-09 12:19:45 -0500 | |
commit | 80ae62ad99d5f300f05d837e5e45e47ba4bc0602 (patch) | |
tree | 4501cb7da8157044b93efc7ff521d3e4e9e5e613 /examples/docs/README.md | |
parent | eb4f6faee6d432f06aca86b4e54fd4a7379004bf (diff) | |
download | astro-80ae62ad99d5f300f05d837e5e45e47ba4bc0602.tar.gz astro-80ae62ad99d5f300f05d837e5e45e47ba4bc0602.tar.zst astro-80ae62ad99d5f300f05d837e5e45e47ba4bc0602.zip |
Fix theme.css location in docs starter project (#4697)
* Fix theme.css location in docs starter project
* Also fix in diff display
Co-authored-by: Brendan O'Leary <boleary@gitlab.com>
Diffstat (limited to '')
-rw-r--r-- | examples/docs/README.md | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/examples/docs/README.md b/examples/docs/README.md index 8bf8e6ca5..b88fb0808 100644 --- a/examples/docs/README.md +++ b/examples/docs/README.md @@ -47,14 +47,14 @@ Welcome! Check out [our documentation](https://docs.astro.build) or jump into ou ### CSS styling -The theme's look and feel is controlled by a few key variables that you can customize yourself. You'll find them in the `public/theme.css` CSS file. +The theme's look and feel is controlled by a few key variables that you can customize yourself. You'll find them in the `src/styles/theme.css` CSS file. If you've never worked with CSS variables before, give [MDN's guide on CSS variables](https://developer.mozilla.org/en-US/docs/Web/CSS/Using_CSS_custom_properties) a quick read. This theme uses a "cool blue" accent color by default. To customize this for your project, change the `--theme-accent` variable to whatever color you'd like: ```diff -/* public/theme.css */ +/* src/styles/theme.css */ :root { color-scheme: light; - --theme-accent: hsla(var(--color-blue), 1); |