Skip to content

Commit

Permalink
fix: highlight border color transparency closes #16
Browse files Browse the repository at this point in the history
  • Loading branch information
mauroreisvieira committed Jan 12, 2022
1 parent fc4a32e commit 0248602
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion schemes/GitHub Dark.sublime-color-scheme
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@
"gutter_foreground_highlight": "#c9d1d9",
"find_highlight": "#ffd33d22",
"find_highlight_foreground": "#c9d1d9",
"highlight": "#17E5E600",
"highlight": "#17E5E680",
"guide": "#21262d",
"stack_guide": "#161b22",
"active_guide": "#21262d",
Expand Down
2 changes: 1 addition & 1 deletion schemes/GitHub Dimmed.sublime-color-scheme
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@
"gutter_foreground_highlight": "#adbac7",
"find_highlight": "#ffd33d22",
"find_highlight_foreground": "#adbac7",
"highlight": "#17E5E600",
"highlight": "#17E5E680",
"guide": "#373e47",
"stack_guide": "#2d333b",
"active_guide": "#373e47",
Expand Down
2 changes: 1 addition & 1 deletion schemes/GitHub Light.sublime-color-scheme
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@
"gutter_foreground_highlight": "#24292f",
"find_highlight": "#ffdf5d66",
"find_highlight_foreground": "#24292f",
"highlight": "#34d05800",
"highlight": "#34d05890",
"guide": "hsla(210,18%,87%,1)",
"stack_guide": "#32383f",
"active_guide": "#424a53",
Expand Down
6 changes: 3 additions & 3 deletions src/scheme.ts
Original file line number Diff line number Diff line change
Expand Up @@ -95,9 +95,9 @@ export function ui(theme: Primer): UI {
}),
find_highlight_foreground: color.fg.default,
highlight: themes({
light: '#34d05800',
dark: '#17E5E600',
dimmed: '#17E5E600',
light: '#34d05890', // original: #34d05840
dark: '#17E5E680', // original: #17E5E650
dimmed: '#17E5E680', // original: #17E5E650
}),
guide: color.border.muted,
stack_guide: color.scale.gray[8],
Expand Down

0 comments on commit 0248602

Please sign in to comment.