diff options
author | 2021-08-26 15:18:45 -0700 | |
---|---|---|
committer | 2021-08-26 15:18:45 -0700 | |
commit | e0c39fb217537f89818006ca88731cd765df4fb5 (patch) | |
tree | 3074105bbaf9068b2e8fdff2ac0b927c5d554cad /examples/docs/public | |
parent | 9f2b1d6071fc09c25242b9bfe001eec50bdf3ae0 (diff) | |
download | astro-e0c39fb217537f89818006ca88731cd765df4fb5.tar.gz astro-e0c39fb217537f89818006ca88731cd765df4fb5.tar.zst astro-e0c39fb217537f89818006ca88731cd765df4fb5.zip |
improve introduction page of example/docs
Diffstat (limited to 'examples/docs/public')
-rw-r--r-- | examples/docs/public/theme.css | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/examples/docs/public/theme.css b/examples/docs/public/theme.css index 3089840dd..1bd29c2f6 100644 --- a/examples/docs/public/theme.css +++ b/examples/docs/public/theme.css @@ -58,7 +58,7 @@ color-scheme: light; --theme-accent: hsla(var(--color-blue), 1); --theme-text-accent: hsla(var(--color-blue), 1); - --theme-accent-opacity: 0.1; + --theme-accent-opacity: 0.15; --theme-divider: hsla(var(--color-gray-95), 1); --theme-text: hsla(var(--color-gray-10), 1); --theme-text-light: hsla(var(--color-gray-40), 1); @@ -85,9 +85,9 @@ body { :root.theme-dark { color-scheme: dark; - --theme-accent-opacity: 0.4; - --theme-accent: hsla(var(--color-orange), 1); - --theme-text-accent: hsla(var(--color-orange), 1); + --theme-accent-opacity: 0.15; + --theme-accent: hsla(var(--color-blue), 1); + --theme-text-accent: hsla(var(--color-blue), 1); --theme-divider: hsla(var(--color-gray-10), 1); --theme-text: hsla(var(--color-gray-90), 1); --theme-text-light: hsla(var(--color-gray-80), 1); |