Skip to content

Instantly share code, notes, and snippets.

@MeowKim
Last active March 9, 2023 16:54
Show Gist options
  • Save MeowKim/2b44aa683233b7e1c73499b283db960d to your computer and use it in GitHub Desktop.
Save MeowKim/2b44aa683233b7e1c73499b283db960d to your computer and use it in GitHub Desktop.
Simple guide to get the dark theme for Unity Personal.

πŸ“ About

Guide for Unity Personal to get the dark theme .
Unity doesn't allow dark theme for Personal license.
Only available for Pro or Plus. πŸ˜₯
But there is a trick for us! πŸŽ‰πŸ‘

This guide supports languages below.

Created: 2020-06-04
Last updated: 2020-08-26 minor typo correction

βœ‹ Preparation

image

Backup your unity.exe first.

πŸ’Ώ Install & run HxD Hex Editor

HxD Hex Editor

πŸ“‚ Open unity.exe

Go to File > Open and choose unity.exe.

In my case (Windows 10, Unity 2019.3.15f1),
the file is located in C:\Program Files\Unity\Hub\Editor\2019.3.15f1\Editor.

πŸ” Find & Replace

image

Go to Search > Find(Ctrl+F).
Choose Hex-values tab.
Choose Search direction to All.
Find the hex value depending on your Unity version.
Replace (Ctrl+R) & save (Ctrl+s) it.

  • 2019.3
00 75 15 33 C0 EB 13 90								# Replace 75 to 74
  • 2019.1
74 04 33 C0 EB 02 8B 07								# Replace 74 to 75
  • 2018.2 & 2018.3
84 C0 75 08 33 C0 48 83 C4 30 5B C3 8B 03 48		# Replace 75 to 74

πŸŽ‰ TADA!

image

Now your eyes would be less tired. πŸ˜‰

πŸ‘€ References

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment