Skip to content

Commit

Permalink
Replace logo with new design (#565)
Browse files Browse the repository at this point in the history
* Replace logo with new design

* Add light mode new logo for footer

* Add screenreader logo text

* Replace email logo with new design

* Footer logo grayscale with hover coloring

* Update light logo variants

* Updated dark theme logos
  • Loading branch information
StevenWeathers committed Apr 8, 2024
1 parent 80f9b8b commit 36b8e18
Show file tree
Hide file tree
Showing 28 changed files with 269 additions and 217 deletions.
Binary file added ui/public/img/android-chrome-192x192.png
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added ui/public/img/android-chrome-512x512.png
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file removed ui/public/img/android-icon-192x192.png
Binary file not shown.
Binary file removed ui/public/img/apple-icon-180x180.png
Binary file not shown.
Binary file added ui/public/img/apple-touch-icon.png
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
9 changes: 9 additions & 0 deletions ui/public/img/browserconfig.xml
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
<?xml version="1.0" encoding="utf-8"?>
<browserconfig>
<msapplication>
<tile>
<square150x150logo src="/mstile-150x150.png"/>
<TileColor>#da532c</TileColor>
</tile>
</msapplication>
</browserconfig>
Binary file modified ui/public/img/favicon-16x16.png
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified ui/public/img/favicon-32x32.png
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified ui/public/img/favicon.ico
Binary file not shown.
154 changes: 0 additions & 154 deletions ui/public/img/logo.svg

This file was deleted.

11 changes: 0 additions & 11 deletions ui/public/img/manifest.json

This file was deleted.

Binary file added ui/public/img/mstile-144x144.png
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added ui/public/img/mstile-150x150.png
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added ui/public/img/mstile-310x150.png
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added ui/public/img/mstile-310x310.png
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added ui/public/img/mstile-70x70.png
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
23 changes: 23 additions & 0 deletions ui/public/img/safari-pinned-tab.svg
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
19 changes: 19 additions & 0 deletions ui/public/img/site.webmanifest
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
{
"name": "Thunderdome",
"short_name": "TDM",
"icons": [
{
"src": "/android-chrome-192x192.png",
"sizes": "192x192",
"type": "image/png"
},
{
"src": "/android-chrome-512x512.png",
"sizes": "512x512",
"type": "image/png"
}
],
"theme_color": "#ffffff",
"background_color": "#ffffff",
"display": "standalone"
}
Binary file modified ui/public/img/thunderdome-email-logo.png
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
8 changes: 5 additions & 3 deletions ui/public/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -9,11 +9,13 @@
<meta name="description"
content="Thunderdome is an open source agile planning poker app that helps teams estimate story points."/>

<link rel="apple-touch-icon" sizes="180x180" href="{{.AppConfig.PathPrefix}}/img/apple-icon-180x180.png">
<link rel="icon" type="image/png" sizes="192x192" href="{{.AppConfig.PathPrefix}}/img/android-icon-192x192.png">
<link rel="apple-touch-icon" sizes="180x180" href="{{.AppConfig.PathPrefix}}/img/apple-touch-icon.png">
<link rel="icon" type="image/png" sizes="32x32" href="{{.AppConfig.PathPrefix}}/img/favicon-32x32.png">
<link rel="icon" type="image/png" sizes="16x16" href="{{.AppConfig.PathPrefix}}/img/favicon-16x16.png">
<!-- <link rel="manifest" href="{{.AppConfig.PathPrefix}}/img/manifest.json" crossorigin="use-credentials"> -->
<link rel="manifest" href="{{.AppConfig.PathPrefix}}/img/site.webmanifest">
<link rel="mask-icon" href="{{.AppConfig.PathPrefix}}/img/safari-pinned-tab.svg" color="#5bbad5">
<meta name="msapplication-TileColor" content="#da532c">
<meta name="theme-color" content="#ffffff">

<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
Expand Down
14 changes: 14 additions & 0 deletions ui/src/app.css
Original file line number Diff line number Diff line change
Expand Up @@ -37,3 +37,17 @@ input[type='search']::-webkit-search-cancel-button {
.toggle-checkbox:checked + .toggle-label {
background-color: #68d391;
}

.text-yellow-thunder {
color: #ffdd57;
}

.bg-yellow-thunder {
background-color: #ffdd57;
}

.title-line {
width: 10rem;
height: 0.25rem;
margin-bottom: 0.75rem;
}

0 comments on commit 36b8e18

Please sign in to comment.