kiviko
kiviko

Reputation: 329

ORACLE SQL Developer Dark Mode

Is there any official method to use ORACLE Dark Mode?

Upvotes: 16

Views: 60038

Answers (4)

Wilman Vega
Wilman Vega

Reputation: 11

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

Upvotes: 1

Artur Todeschini
Artur Todeschini

Reputation: 392

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

Upvotes: 5

sam
sam

Reputation: 571

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

Upvotes: 31

Tilen
Tilen

Reputation: 531

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.

Upvotes: 5

Related Questions