Skip to content

Commit

Permalink
fix: global settings.
Browse files Browse the repository at this point in the history
  • Loading branch information
mauroreisvieira committed Nov 2, 2019
1 parent 55d46ce commit 498f727
Show file tree
Hide file tree
Showing 3 changed files with 12 additions and 18 deletions.
10 changes: 4 additions & 6 deletions schemes/Meetio-Theme-Dark.sublime-color-scheme
Original file line number Diff line number Diff line change
Expand Up @@ -26,21 +26,19 @@
"caret": "var(cursor)",
"block_caret": "var(cursor)",
"line_highlight": "color(var(foreground) alpha(0.1))",
"selection": "color(var(cyan) alpha(0.1))",
"selection": "color(var(foreground) alpha(0.10))",
"selection_border": "var(cyan)",
"selection_corner_style": "cut",
"selection_corner_radius": "cut",
"inactive_selection": "color(var(cyan) alpha(0.1))",
"misspelling": "var(red)",
"shadow": "color(var(background) alpha(0.5))",
"gutter_foreground": "color(var(foreground) alpha(0.2))",
"active_guide": "var(red)",
"active_guide": "var(cyan)",
"stack_guide": "var(orange)",
"fold_marker": "var(yellow)",
"highlight": "var(pink)",
"find_highlight": "var(yellow)",
"find_highlight_foreground": "var(brown)",
"line_diff_width": "3",
"find_highlight_foreground": "var(background)",
"line_diff_width": "2",
"line_diff_added": "var(diffAdded)",
"line_diff_modified": "var(diffModified)",
"line_diff_deleted": "var(diffDeleted)"
Expand Down
10 changes: 4 additions & 6 deletions schemes/Meetio-Theme-Light.sublime-color-scheme
Original file line number Diff line number Diff line change
Expand Up @@ -26,21 +26,19 @@
"caret": "var(cursor)",
"block_caret": "var(cursor)",
"line_highlight": "color(var(foreground) alpha(0.1))",
"selection": "color(var(cyan) alpha(0.1))",
"selection": "color(var(foreground) alpha(0.10))",
"selection_border": "var(cyan)",
"selection_corner_style": "cut",
"selection_corner_radius": "cut",
"inactive_selection": "color(var(cyan) alpha(0.1))",
"misspelling": "var(red)",
"shadow": "color(var(background) alpha(0.5))",
"gutter_foreground": "color(var(foreground) alpha(0.2))",
"active_guide": "var(red)",
"active_guide": "var(cyan)",
"stack_guide": "var(orange)",
"fold_marker": "var(yellow)",
"highlight": "var(pink)",
"find_highlight": "var(yellow)",
"find_highlight_foreground": "var(brown)",
"line_diff_width": "3",
"find_highlight_foreground": "var(background)",
"line_diff_width": "2",
"line_diff_added": "var(diffAdded)",
"line_diff_modified": "var(diffModified)",
"line_diff_deleted": "var(diffDeleted)"
Expand Down
10 changes: 4 additions & 6 deletions src/schemes/files/globals.js
Original file line number Diff line number Diff line change
Expand Up @@ -4,21 +4,19 @@ module.exports = {
caret: "var(cursor)",
block_caret: "var(cursor)",
line_highlight: "color(var(foreground) alpha(0.1))",
selection: "color(var(cyan) alpha(0.1))",
selection: "color(var(foreground) alpha(0.10))",
selection_border: "var(cyan)",
selection_corner_style: "cut",
selection_corner_radius: "cut",
inactive_selection: "color(var(cyan) alpha(0.1))",
misspelling: "var(red)",
shadow: "color(var(background) alpha(0.5))",
gutter_foreground: "color(var(foreground) alpha(0.2))",
active_guide: "var(red)",
active_guide: "var(cyan)",
stack_guide: "var(orange)",
fold_marker: "var(yellow)",
highlight: "var(pink)",
find_highlight: "var(yellow)",
find_highlight_foreground: "var(brown)",
line_diff_width: "3",
find_highlight_foreground: "var(background)",
line_diff_width: "2",
line_diff_added: "var(diffAdded)",
line_diff_modified: "var(diffModified)",
line_diff_deleted: "var(diffDeleted)"
Expand Down

0 comments on commit 498f727

Please sign in to comment.