Skip to content

Instantly share code, notes, and snippets.

@dllud
Created July 14, 2016 12:10
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save dllud/768fc839c032752cdac52eac96f50f38 to your computer and use it in GitHub Desktop.
Save dllud/768fc839c032752cdac52eac96f50f38 to your computer and use it in GitHub Desktop.
Meld colours for dark themes
/*
* by Stefan Agner 2014
*/
/* Full line insert, left to right or visa-versa */
@define-color insert-bg #203020;
@define-color insert-outline #387038;
@define-color insert-text White;
/* Missing files in folder diff */
@define-color delete-bg #302020;
@define-color delete-outline #703838;
@define-color delete-text #00cc00;
/* Different content (can be with partial match) */
@define-color replace-bg #303020;
@define-color replace-outline #707038;
@define-color replace-text White;
/* Conflicting lines (3-way merge) */
@define-color conflict-bg #302020;
@define-color conflict-outline #703838;
@define-color conflict-text White;
@define-color error-bg #502020;
@define-color error-outline #802020;
@define-color error-text White;
/* Inline difference (inside replace blocks) */
@define-color inline-bg #606030;
@define-color inline-fg White;
@define-color unknown-text #e0e0e0;
@define-color current-line-highlight #ffff00;
@define-color syncpoint-outline #888888;
/* Selected block */
@define-color current-chunk-highlight #101010;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment