Skip to content

Commit

Permalink
Change color of matched brackets in some of the dark highlighting themes
Browse files Browse the repository at this point in the history
  • Loading branch information
juanis2112 committed Apr 10, 2020
1 parent f04d357 commit 399ab47
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 11 deletions.
20 changes: 10 additions & 10 deletions spyder/config/appearance.py
Expand Up @@ -215,7 +215,7 @@
'solarized/dark/occurrence': '#657b83',
'solarized/dark/ctrlclick': '#d33682',
'solarized/dark/sideareas': '#073642',
'solarized/dark/matched_p': '#93a1a1',
'solarized/dark/matched_p': '#566300',
'solarized/dark/unmatched_p': '#dc322f',
'solarized/dark/normal': ('#839496', False, False),
'solarized/dark/keyword': ('#859900', False, False),
Expand All @@ -234,7 +234,7 @@
'inkpot/occurrence': "#616161",
'inkpot/ctrlclick': "#1f1f27",
'inkpot/sideareas': "#2d2d44",
'inkpot/matched_p': "#cfbfad",
'inkpot/matched_p': "#3672b5",
'inkpot/unmatched_p': "#8b8bff",
'inkpot/normal': ('#cfbfad', False, False),
'inkpot/keyword': ('#808bed', False, False),
Expand Down Expand Up @@ -272,7 +272,7 @@
'nightlion/occurrence': "#616161",
'nightlion/ctrlclick': "#b3b5af",
'nightlion/sideareas': "#505050",
'nightlion/matched_p': "#e2e2e2",
'nightlion/matched_p': "#3672b5",
'nightlion/unmatched_p': "#364656",
'nightlion/normal': ('#e2e2e2', False, False),
'nightlion/keyword': ('#8dcbe2', False, False),
Expand Down Expand Up @@ -310,11 +310,11 @@
'oblivion/occurrence': "#000000",
'oblivion/ctrlclick': "#ccdf32",
'oblivion/sideareas': "#2a2a2a",
'oblivion/matched_p': "#d8d8d8",
'oblivion/matched_p': "#de7878",
'oblivion/unmatched_p': "#000000",
'oblivion/normal': ('#d8d8d8', False, False),
'oblivion/keyword': ('#ffffff', False, False),
'oblivion/builtin': ('#d25252', False, False),
'oblivion/builtin': ('#de7878', False, False),
'oblivion/definition': ('#ffffff', False, False),
'oblivion/comment': ('#c7dd0c', False, False),
'oblivion/string': ('#ffc600', False, False),
Expand All @@ -329,7 +329,7 @@
'obsidian/occurrence': "#616161",
'obsidian/ctrlclick': "#7d8c93",
'obsidian/sideareas': "#2f393c",
'obsidian/matched_p': "#e0e2e4",
'obsidian/matched_p': "#3672b5",
'obsidian/unmatched_p': "#804000",
'obsidian/normal': ('#e0e2e4', False, False),
'obsidian/keyword': ('#93c763', False, False),
Expand All @@ -348,7 +348,7 @@
'pastel/occurrence': "#616161",
'pastel/ctrlclick': "#7d8c93",
'pastel/sideareas': "#2f393c",
'pastel/matched_p': "#e0e2e4",
'pastel/matched_p': "#3672b5",
'pastel/unmatched_p': "#95bed8",
'pastel/normal': ('#e0e2e4', False, False),
'pastel/keyword': ('#a57b61', False, False),
Expand All @@ -367,7 +367,7 @@
'retta/occurrence': "#5e5c56",
'retta/ctrlclick': "#83786e",
'retta/sideareas': "#2a2a2a",
'retta/matched_p': "#f8e1aa",
'retta/matched_p': "#de7878",
'retta/unmatched_p': "#527d5d",
'retta/normal': ('#f8e1aa', False, False),
'retta/keyword': ('#e79e3c', True, False),
Expand Down Expand Up @@ -405,7 +405,7 @@
'sublime-monokai/extended/occurrence': "#000000",
'sublime-monokai/extended/ctrlclick': "#ffffff",
'sublime-monokai/extended/sideareas': "#2f2f2f",
'sublime-monokai/extended/matched_p': "#cfbfad",
'sublime-monokai/extended/matched_p': "#679116",
'sublime-monokai/extended/unmatched_p': "#cc9900",
'sublime-monokai/extended/normal': ('#cfbfad', False, False),
'sublime-monokai/extended/keyword': ('#ff007f', False, False),
Expand All @@ -424,7 +424,7 @@
'vibrant-ink/occurrence': "#616161",
'vibrant-ink/ctrlclick': "#8c3fc8",
'vibrant-ink/sideareas': "#222220",
'vibrant-ink/matched_p': "#ffffff",
'vibrant-ink/matched_p': "#598c19",
'vibrant-ink/unmatched_p': "#414c3b",
'vibrant-ink/normal': ('#ffffff', False, False),
'vibrant-ink/keyword': ('#ec691e', False, False),
Expand Down
2 changes: 1 addition & 1 deletion spyder/config/main.py
Expand Up @@ -625,4 +625,4 @@
# or if you want to *rename* options, then you need to do a MAJOR update in
# version, e.g. from 3.0.0 to 4.0.0
# 3. You don't need to touch this value if you're just adding a new option
CONF_VERSION = '57.0.0'
CONF_VERSION = '57.1.0'

0 comments on commit 399ab47

Please sign in to comment.