Skip to content

Commit

Permalink
fix: change color of misspelling to blue
Browse files Browse the repository at this point in the history
  • Loading branch information
mauroreisvieira committed Nov 26, 2020
1 parent 0c5ff5a commit 1e2f872
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 6 deletions.
5 changes: 3 additions & 2 deletions demo/generate.ts
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,8 @@
import { generateScheme, ISchemeSetting } from '../dist/index';
const settings: ISchemeSetting = {
colors: {
cursor: '#80CBC4',
accent: '#69bdbd',
cursor: '#e6db30',
foreground: '#A6ACCD',
background: '#292D3E',
comments: '#676E95',
Expand All @@ -22,7 +23,7 @@ const settings: ISchemeSetting = {
diffDeleted: '#ef5350',
},
ui: {
caret: 'var(orange)',
caret: 'var(cursor)',
tags_options: 'underline',
brackets_options: 'underline, glow'
},
Expand Down
7 changes: 4 additions & 3 deletions schemes/Scheme-Example.sublime-color-scheme
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,8 @@
"name": "Scheme-Example",
"author": "Mauro Reis Vieira <mauroreisvieira@gmail.com>",
"variables": {
"cursor": "#80CBC4",
"accent": "#69bdbd",
"cursor": "#e6db30",
"foreground": "#A6ACCD",
"background": "#292D3E",
"comments": "#676E95",
Expand Down Expand Up @@ -30,7 +31,7 @@
"bracket_contents_options": "underline",
"brackets_foreground": "var(cyan)",
"brackets_options": "underline, glow",
"caret": "var(orange)",
"caret": "var(cursor)",
"find_highlight": "var(yellow)",
"find_highlight_foreground": "var(background)",
"fold_marker": "var(yellow)",
Expand All @@ -46,7 +47,7 @@
"line_diff_modified": "var(diffModified)",
"line_diff_width": "2",
"line_highlight": "color(var(foreground) alpha(0.1))",
"misspelling": "var(red)",
"misspelling": "var(blue)",
"selection": "color(var(foreground) alpha(0.10))",
"selection_border": "var(cyan)",
"selection_corner_radius": "cut",
Expand Down
2 changes: 1 addition & 1 deletion src/globals.ts
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ export const defaultGlobals: IUi = {
line_diff_modified: 'var(diffModified)',
line_diff_width: "2",
line_highlight: 'color(var(foreground) alpha(0.1))',
misspelling: 'var(red)',
misspelling: 'var(blue)',
selection: 'color(var(foreground) alpha(0.10))',
selection_border: 'var(cyan)',
selection_corner_radius: 'cut',
Expand Down

0 comments on commit 1e2f872

Please sign in to comment.