Skip to content

Commit

Permalink
feat: add dark mode favicons, regenerate TiK favicons
Browse files Browse the repository at this point in the history
  • Loading branch information
PurkkaKoodari committed Oct 4, 2024
1 parent 2a8b882 commit 688fefc
Show file tree
Hide file tree
Showing 7 changed files with 5 additions and 2 deletions.
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@
## 2.0.0-alpha34

- **BREAKING:** Add logo to Header - make sure to change or disable it on your instance
- **BREAKING:** Add dark mode variants of favicons - make sure to update yours
- Add shorter header text option for mobile, configurable via `BRANDING_HEADER_TITLE_TEXT_SHORT`

## 2.0.0-alpha33
Expand Down
6 changes: 4 additions & 2 deletions packages/ilmomasiina-frontend/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -7,8 +7,10 @@
<link href="https://fonts.googleapis.com/css?family=Open+Sans:400,400i,600,800" rel="stylesheet">

<link rel="apple-touch-icon" sizes="180x180" href="/apple-touch-icon.png">
<link rel="icon" type="image/png" sizes="32x32" href="/favicon-32x32.png">
<link rel="icon" type="image/png" sizes="16x16" href="/favicon-16x16.png">
<link rel="icon" type="image/png" sizes="32x32" href="/favicon-32x32.png" media="(prefers-color-scheme: light)">
<link rel="icon" type="image/png" sizes="32x32" href="/favicon-32x32-dark.png" media="(prefers-color-scheme: dark)">
<link rel="icon" type="image/png" sizes="16x16" href="/favicon-16x16.png" media="(prefers-color-scheme: light)">
<link rel="icon" type="image/png" sizes="16x16" href="/favicon-16x16-dark.png" media="(prefers-color-scheme: dark)">
<meta name="apple-mobile-web-app-title" content="Ilmomasiina">
<meta name="application-name" content="Ilmomasiina">
</head>
Expand Down
Binary file modified packages/ilmomasiina-frontend/public/apple-touch-icon.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified packages/ilmomasiina-frontend/public/favicon-16x16.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified packages/ilmomasiina-frontend/public/favicon-32x32.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.

0 comments on commit 688fefc

Please sign in to comment.