Skip to content

Instantly share code, notes, and snippets.

@d9k
Created September 11, 2015 13:40
Show Gist options
  • Save d9k/5e5555973418008de61b to your computer and use it in GitHub Desktop.
Save d9k/5e5555973418008de61b to your computer and use it in GitHub Desktop.
dark scheme for meld
# File created by KDE Gtk Config
# Configs for GTK2 programs
include "/usr/share/themes/oxygen-gtk/gtk-2.0/gtkrc"
style "user-font"
{
font_name="Ubuntu Regular"
}
widget_class "*" style "user-font"
gtk-font-name="Ubuntu Regular 12"
gtk-theme-name="oxygen-gtk"
gtk-icon-theme-name="oxygen"
gtk-fallback-icon-theme="gnome"
gtk-toolbar-style=GTK_TOOLBAR_ICONS
gtk-menu-images=0
gtk-button-images=0
style "meld-color-scheme-user"
{
# inserted line(s), also edge color block for added file in dir diff
color["insert-bg"] = "#006000"
color["insert-outline"] = shade(1.5, @insert-bg)
# In dir diff, an added file's name
color["insert-text"] = "#00CC00"
# Color block on edge for missing file in dir diff
color["delete-bg"] = "#800000"
color["delete-outline"] = shade(1.8, @delete-bg)
# Not sure what this is for
color["delete-text"] = "Maroon"
# Changed line(s), and edge color block for changed file in dir diff
color["replace-bg"] = "#685020"
color["replace-outline"] = "#604820"
# Changed file in dir diff
color["replace-text"] = "#e07000"
# Not sure what these are for
color["conflict-bg"] = "Maroon"
color["conflict-outline"] = shade(1.8, @conflict-bg)
color["conflict-text"] = "Maroon"
# Not sure what these are for
color["error-bg"] = "Maroon"
color["error-outline"] = shade(1.8, @error-bg)
color["error-text"] = "Maroon"
# Added text on an existing changed line (per-word diffing)
color["inline-bg"] = "#305030" # shade(1.3, @replace-bg)
color["inline-fg"] = "#e0e080"
# Crossed-out (not present) file in dir diff view
color["unknown-text"] = "#e0e0e0"
color["syncpoint-outline"] = "Yellow"
# Currently selected chunk. Note: seems to automatically be blended with underlying color.
color["current-chunk-highlight"] = "#800080"
}
widget "meldapp.*" style : highest "meld-color-scheme-user"
# File created by KDE Gtk Config
# Configs for GTK2 programs
include "/usr/share/themes/oxygen-gtk/gtk-2.0/gtkrc"
style "user-font"
{
font_name="Ubuntu Regular"
}
widget_class "*" style "user-font"
gtk-font-name="Ubuntu Regular 12"
gtk-theme-name="oxygen-gtk"
gtk-icon-theme-name="oxygen"
gtk-fallback-icon-theme="gnome"
gtk-toolbar-style=GTK_TOOLBAR_ICONS
gtk-menu-images=0
gtk-button-images=0
style "meld-color-scheme-user"
{
# inserted line(s), also edge color block for added file in dir diff
color["insert-bg"] = "#006000"
color["insert-outline"] = shade(1.5, @insert-bg)
# In dir diff, an added file's name
color["insert-text"] = "#00CC00"
# Color block on edge for missing file in dir diff
color["delete-bg"] = "#800000"
color["delete-outline"] = shade(1.8, @delete-bg)
# Not sure what this is for
color["delete-text"] = "Maroon"
# Changed line(s), and edge color block for changed file in dir diff
color["replace-bg"] = "#685020"
color["replace-outline"] = "#604820"
# Changed file in dir diff
color["replace-text"] = "#e07000"
# Not sure what these are for
color["conflict-bg"] = "Maroon"
color["conflict-outline"] = shade(1.8, @conflict-bg)
color["conflict-text"] = "Maroon"
# Not sure what these are for
color["error-bg"] = "Maroon"
color["error-outline"] = shade(1.8, @error-bg)
color["error-text"] = "Maroon"
# Added text on an existing changed line (per-word diffing)
color["inline-bg"] = "#305030" # shade(1.3, @replace-bg)
color["inline-fg"] = "#e0e080"
# Crossed-out (not present) file in dir diff view
color["unknown-text"] = "#e0e0e0"
color["syncpoint-outline"] = "Yellow"
# Currently selected chunk. Note: seems to automatically be blended with underlying color.
color["current-chunk-highlight"] = "#800080"
}
widget "meldapp.*" style : highest "meld-color-scheme-user"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment