ORACLE SQL Developer Dark Mode
Asked Answered
P

4

15

Is there any official method to use ORACLE Dark Mode?

Pitarys answered 22/11, 2021 at 5:53 Comment(2)
One option, have it adopt your OS theme for look and feel thatjeffsmith.com/archive/2017/08/…Sixtasixteen
Or use a dark theme for code editors a la draculatheme.com/oracle-sql-developerSixtasixteen
A
27

Tools > Preferences > Code Editor > PL/SQL Syntax Colors. Here you can choose Twilight scheme.

Administrate answered 8/3, 2022 at 9:4 Comment(1)
but this just changes the code editor, leaving the rest bright... it doesn't look goodReinhart
M
5

No, there is no official method. There is a way to change it manually through, through editing a jar file. Here is the full video if it helps you out. By default you can only change the Syntax colors + background of the editor.

Mimesis answered 22/11, 2021 at 6:38 Comment(0)
S
4

Try to do this

OS: Debian Linux

Desktop: Gnome 40 JDK: Open JDK 11

edit ~/.sqldeveloper/{version}/product.conf

add (the system theme will be used):

SetJavaHome /{path to open11jdk} AddVMOption -Dswing.defaultlaf=com.sun.java.swing.plaf.gtk.GTKLookAndFeel

If you would like to use a different theme that is not set for the system: edit ~/.sqldeveloper/{version}/product.conf add (after the above changes): GTK_THEME={theme name}

export GTK_THEME

Windows 10:

edit: {user}/AppData/Roaming/sqldeveloper/{version}/product.conf

add:

AddVMOption -Dswing.defaultlaf=com.sun.java.swing.plaf.windows.WindowsLookAndFeel

Sqldeveloper will use the current default Windows 10 theme

Sottish answered 13/4, 2022 at 20:43 Comment(0)
U
1

See this: here. Also in the site you can find dark themes for other tools and software.

Unblinking answered 7/12, 2023 at 2:51 Comment(1)
While this link may answer the question, it is better to include the essential parts of the answer here and provide the link for reference. Link-only answers can become invalid if the linked page changes. - From ReviewLegality

© 2022 - 2024 — McMap. All rights reserved.