This is an automated email from the ASF dual-hosted git repository.
dimas pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/polaris-tools.git
The following commit(s) were added to refs/heads/main by this push:
new dcb4363 Console: Use the official Polaris logo in the console (#108)
dcb4363 is described below
commit dcb4363f6b08ff3a1a11f0658b8b79a69964ccc8
Author: DaniilPodovinnikov
<[email protected]>
AuthorDate: Fri Dec 19 18:51:10 2025 +0300
Console: Use the official Polaris logo in the console (#108)
---
console/index.html | 2 +-
console/public/apache-polaris-logo.svg | 10 ++++++++++
console/public/polaris-logo-star.svg | 7 -------
console/src/components/layout/Logo.tsx | 2 +-
4 files changed, 12 insertions(+), 9 deletions(-)
diff --git a/console/index.html b/console/index.html
index 7b48de7..06071b0 100644
--- a/console/index.html
+++ b/console/index.html
@@ -20,7 +20,7 @@ under the License.
<html lang="en">
<head>
<meta charset="UTF-8" />
- <link rel="icon" type="image/svg+xml" href="/polaris-logo-star.svg" />
+ <link rel="icon" type="image/svg+xml" href="/apache-polaris-logo.svg" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Apache Polaris - Console</title>
</head>
diff --git a/console/public/apache-polaris-logo.svg
b/console/public/apache-polaris-logo.svg
new file mode 100644
index 0000000..80c37db
--- /dev/null
+++ b/console/public/apache-polaris-logo.svg
@@ -0,0 +1,10 @@
+<svg viewBox="0 0 150 150" fill="none" xmlns="http://www.w3.org/2000/svg">
+ <style>
+ @media(prefers-color-scheme:dark){.text{fill:#fff}}
+ @media(prefers-color-scheme:light){.text{fill:#101010}}
+ </style>
+ <rect width="150" height="150" fill="#0F766E"/>
+ <path
+ d="M.759941 5.24864C-1.67735 2.26969 2.26966-1.67736
5.24859.759936L73.1833 56.3423C74.4097 57.3457 76.1492 57.426 77.4628
56.5396L114.566 31.5048c2.907-1.9613 6.389 1.5215 4.428 4.4283L93.9585
73.0383C93.0727 74.3511 93.1522 76.0892 94.1541 77.3156L149.242 144.753C151.675
147.731 147.732 151.675 144.753 149.241L77.3156 94.154C76.0891 93.1522 74.351
93.0728 73.0383 93.9585L35.933 118.995C33.0264 120.956 29.5435 117.473 31.5048
114.567L56.5396 77.4628C57.4259 76.1493 57.3457 74.40 [...]
+ fill="#fff" />
+</svg>
\ No newline at end of file
diff --git a/console/public/polaris-logo-star.svg
b/console/public/polaris-logo-star.svg
deleted file mode 100644
index 03725c4..0000000
--- a/console/public/polaris-logo-star.svg
+++ /dev/null
@@ -1,7 +0,0 @@
-<svg width="32" height="32" viewBox="0 0 32 32" fill="none"
xmlns="http://www.w3.org/2000/svg">
- <!-- Teal background -->
- <rect width="32" height="32" fill="#0F766E"/>
- <!-- White four-pointed star -->
- <path d="M16 4L19.5 12.5L28 16L19.5 19.5L16 28L12.5 19.5L4 16L12.5 12.5L16
4Z" fill="white"/>
-</svg>
-
diff --git a/console/src/components/layout/Logo.tsx
b/console/src/components/layout/Logo.tsx
index 4500364..490f48a 100644
--- a/console/src/components/layout/Logo.tsx
+++ b/console/src/components/layout/Logo.tsx
@@ -33,7 +33,7 @@ export function Logo({ variant = "default", showText = true,
className = "", cli
<>
{/* Logo Icon - Star logo */}
<img
- src="/polaris-logo-star.svg"
+ src="/apache-polaris-logo.svg"
alt=" (incubating) Logo"
className={isCompact ? "h-6 w-6" : "h-8 w-8"}
/>