Skip to content

Commit 1703254

Browse files
appleboyclaude
andcommitted
feat(templates): refresh brand logos with new blue palette
- Swap the cyan brand assets for the new blue logo, icon, and favicons - Recolor the inline navbar and login brand marks to the blue gradient - Update the theme-color meta tag to the new brand blue - Retint the navbar and login icon drop-shadows to match the new gradient Co-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com>
1 parent 862e2d7 commit 1703254

12 files changed

Lines changed: 26 additions & 75 deletions

images/authgate-logo-dark.svg

Lines changed: 4 additions & 15 deletions
Loading

images/authgate-logo.svg

Lines changed: 4 additions & 15 deletions
Loading

internal/templates/layout_component.templ

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ templ Layout(title string, layoutType LayoutType, navbar *NavbarProps) {
2525
<link rel="icon" href="/favicon.ico" sizes="any"/>
2626
<link rel="icon" type="image/svg+xml" href="/static/images/authgate-icon.svg"/>
2727
<link rel="apple-touch-icon" href="/static/images/favicon-512x512.png"/>
28-
<meta name="theme-color" content="#0095C4"/>
28+
<meta name="theme-color" content="#0072ff"/>
2929
<!-- Prevent FOUC: apply saved theme before paint -->
3030
<script>
3131
(function(){var t=localStorage.getItem('authgate-theme');if(t==='dark'||t==='light'){document.documentElement.setAttribute('data-theme',t)}else if(window.matchMedia&&window.matchMedia('(prefers-color-scheme:dark)').matches){document.documentElement.setAttribute('data-theme','dark')}else{document.documentElement.setAttribute('data-theme','light')}})();

internal/templates/login_page.templ

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,8 +15,8 @@ templ LoginPage(props LoginPageProps) {
1515
<svg width="56" height="56" viewBox="0 0 120 120" xmlns="http://www.w3.org/2000/svg" focusable="false">
1616
<defs>
1717
<linearGradient id="login-ag-bg" x1="0" y1="0" x2="120" y2="120" gradientUnits="userSpaceOnUse">
18-
<stop offset="0" stop-color="#00C8E8"></stop>
19-
<stop offset="1" stop-color="#0077A8"></stop>
18+
<stop offset="0" stop-color="#4099ff"></stop>
19+
<stop offset="1" stop-color="#005bb5"></stop>
2020
</linearGradient>
2121
</defs>
2222
<rect x="4" y="4" width="112" height="112" rx="28" fill="url(#login-ag-bg)"></rect>

internal/templates/navbar_component.templ

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,8 +11,8 @@ templ Navbar(props *NavbarProps) {
1111
<svg width="32" height="32" viewBox="0 0 120 120" xmlns="http://www.w3.org/2000/svg" focusable="false">
1212
<defs>
1313
<linearGradient id="navbar-ag-bg" x1="0" y1="0" x2="120" y2="120" gradientUnits="userSpaceOnUse">
14-
<stop offset="0" stop-color="#00C8E8"></stop>
15-
<stop offset="1" stop-color="#0077A8"></stop>
14+
<stop offset="0" stop-color="#4099ff"></stop>
15+
<stop offset="1" stop-color="#005bb5"></stop>
1616
</linearGradient>
1717
</defs>
1818
<rect x="4" y="4" width="112" height="112" rx="28" fill="url(#navbar-ag-bg)"></rect>

internal/templates/static/css/components/navbar.css

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,7 @@
5353

5454
.navbar-brand-mark svg {
5555
display: block;
56-
filter: drop-shadow(0 1px 2px rgba(0, 102, 150, 0.25));
56+
filter: drop-shadow(0 1px 2px rgba(0, 91, 181, 0.25));
5757
}
5858

5959
.navbar-brand-text {

internal/templates/static/css/pages/login.css

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -117,7 +117,7 @@
117117
width: 64px;
118118
height: 64px;
119119
/* drop-shadow follows the icon's rounded silhouette (box-shadow would be square) */
120-
filter: drop-shadow(0 8px 18px rgba(0, 119, 168, 0.32));
120+
filter: drop-shadow(0 8px 18px rgba(0, 91, 181, 0.32));
121121
}
122122

123123
/* Security label below subtitle */
Lines changed: 3 additions & 8 deletions
Loading
Lines changed: 4 additions & 15 deletions
Loading
Lines changed: 4 additions & 15 deletions
Loading

0 commit comments

Comments
 (0)