diff options
Diffstat (limited to 'examples/docs/public')
-rw-r--r-- | examples/docs/public/theme.css | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/examples/docs/public/theme.css b/examples/docs/public/theme.css index 587ddf29d..3089840dd 100644 --- a/examples/docs/public/theme.css +++ b/examples/docs/public/theme.css @@ -56,8 +56,8 @@ :root { color-scheme: light; - --theme-accent: hsla(var(--color-orange), 1); - --theme-text-accent: hsla(var(--color-orange), 1); + --theme-accent: hsla(var(--color-blue), 1); + --theme-text-accent: hsla(var(--color-blue), 1); --theme-accent-opacity: 0.1; --theme-divider: hsla(var(--color-gray-95), 1); --theme-text: hsla(var(--color-gray-10), 1); @@ -67,15 +67,15 @@ --theme-bg: hsla(var(--color-base-white), 100%, 1); --theme-bg-hover: hsla(var(--color-gray-95), 1); --theme-bg-offset: hsla(var(--color-gray-90), 1); - --theme-bg-accent: hsla(var(--color-orange), var(--theme-accent-opacity)); + --theme-bg-accent: hsla(var(--color-blue), var(--theme-accent-opacity)); --theme-code-inline-bg: hsla(var(--color-gray-95), 1); --theme-code-inline-text: var(--theme-text); --theme-code-bg: hsla(217, 19%, 27%, 1); --theme-code-text: hsla(var(--color-gray-95), 1); --theme-navbar-bg: hsla(var(--color-base-white), 100%, 1); --theme-navbar-height: 6rem; - --theme-selection-color: hsla(var(--color-orange), 1); - --theme-selection-bg: hsla(var(--color-orange), var(--theme-accent-opacity)); + --theme-selection-color: hsla(var(--color-blue), 1); + --theme-selection-bg: hsla(var(--color-blue), var(--theme-accent-opacity)); } body { |