diff options
author | 2021-08-26 15:02:38 -0700 | |
---|---|---|
committer | 2021-08-26 15:03:21 -0700 | |
commit | 2e8db7ad2384b756894eac6be72bcf720f7f28fa (patch) | |
tree | 074ff88116520c3484210a0b94331b0f2b81581b /examples/docs/src/components/Header/AstroLogo.astro | |
parent | b7ada11ddbabe4dd2f0798e140e5b280de4d6952 (diff) | |
download | astro-2e8db7ad2384b756894eac6be72bcf720f7f28fa.tar.gz astro-2e8db7ad2384b756894eac6be72bcf720f7f28fa.tar.zst astro-2e8db7ad2384b756894eac6be72bcf720f7f28fa.zip |
add algolia and cleanup docs readme
Diffstat (limited to 'examples/docs/src/components/Header/AstroLogo.astro')
-rw-r--r-- | examples/docs/src/components/Header/AstroLogo.astro | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/examples/docs/src/components/Header/AstroLogo.astro b/examples/docs/src/components/Header/AstroLogo.astro index ff1939ad9..124865f1b 100644 --- a/examples/docs/src/components/Header/AstroLogo.astro +++ b/examples/docs/src/components/Header/AstroLogo.astro @@ -4,12 +4,10 @@ const {size} = Astro.props; <svg class="logo" width={size} height={size} viewBox="0 0 256 256" fill="none" xmlns="http://www.w3.org/2000/svg"> <style> #flame { - /* fill: #ff5d01; */ - fill: #3894ff; + fill: var(--theme-text-accent); } #a { - /* fill: #000014; */ - fill: #3894ff; + fill: var(--theme-text-accent); } </style> <title>Logo</title> |