diff --git a/CREDITS.md b/CREDITS.md
index ef2b2224..51c45f6c 100644
--- a/CREDITS.md
+++ b/CREDITS.md
@@ -55,6 +55,8 @@ The following libraries are dependencies of novelWriter:
Some of the assets bundled with novelWriter were adapted from the following sources:
* **Material Symbols** icons by Google Inc (Apache 2.0)
+* **Remix** icons by RemixIcon (Apache 2.0)
+* **Font Awesome** icons by Fonticons Inc (CC BY 4.0)
* **Tomorrow** syntax themes by Chris Kempson (MIT License)
* **Owl** syntax themes by Sarah Drasner (MIT License)
* **Solarized** themes by Ethan Schoonover (MIT License)
diff --git a/novelwriter/assets/text/credits_en.htm b/novelwriter/assets/text/credits_en.htm
index aa90ae45..30e6b9e0 100644
--- a/novelwriter/assets/text/credits_en.htm
+++ b/novelwriter/assets/text/credits_en.htm
@@ -66,6 +66,8 @@ more contributions are listed on the project's Members page.
- Material Symbols icons by Google Inc (Apache 2.0)
+ - Remix icons by RemixIcon (Apache 2.0)
+ - Font Awesome icons by Fonticons Inc (CC BY 4.0)
- Tomorrow syntax themes by Chris Kempson (MIT License)
- Owl syntax themes by Sarah Drasner (MIT License)
- Solarized themes by Ethan Schoonover (MIT License)
diff --git a/setup/debian/copyright b/setup/debian/copyright
index 2b2a3300..e28186b0 100644
--- a/setup/debian/copyright
+++ b/setup/debian/copyright
@@ -33,3 +33,26 @@ License: Apache-2.0
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
+
+Files: novelwriter/assets/icons/remix_*
+Copyright: RemixIcon
+License: Apache-2.0
+ Licensed under the Apache License, Version 2.0 (the "License");
+ you may not use this file except in compliance with the License.
+ You may obtain a copy of the License at
+ .
+ http://www.apache.org/licenses/LICENSE-2.0
+ .
+ Unless required by applicable law or agreed to in writing, software
+ distributed under the License is distributed on an "AS IS" BASIS,
+ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ See the License for the specific language governing permissions and
+ limitations under the License.
+
+Files: novelwriter/assets/icons/font_awesome.*
+Copyright: Fonticons Inc
+License: CC-BY-4.0
+ This work is licensed under Creative Commons Attribution 4.0
+ International. To view a copy of this license, visit
+ .
+ https://creativecommons.org/licenses/by/4.0/
diff --git a/setup/iss_license.txt b/setup/iss_license.txt
index 63726dba..068dbc70 100644
--- a/setup/iss_license.txt
+++ b/setup/iss_license.txt
@@ -42,3 +42,13 @@ Material Symbols
Copyright: Google Inc
Website:
License: Apache 2.0
+
+Remix Icon
+Copyright: Remix Icon
+Website:
+License: Apache 2.0
+
+Font Awesome
+Copyright: Fonticons Inc
+Website:
+License: CC BY 4.0
diff --git a/utils/icon_themes.py b/utils/icon_themes.py
index 53d974d5..8b9b5249 100644
--- a/utils/icon_themes.py
+++ b/utils/icon_themes.py
@@ -263,7 +263,7 @@ def processFontAwesome(workDir: Path, iconsDir: Path, jobs: dict) -> None:
continue
target = iconsDir / f"{file}.icons"
- _writeThemeFile(target, name, "Fonticons Inc", "Font Awesome Free License", icons)
+ _writeThemeFile(target, name, "Fonticons Inc", "CC BY 4.0", icons)
print("")