From 1e2f8724c582b9816dd948c5c12920d476692491 Mon Sep 17 00:00:00 2001 From: Mauro Reis Vieira Date: Thu, 26 Nov 2020 15:39:49 +0000 Subject: [PATCH] fix: change color of `misspelling` to blue --- demo/generate.ts | 5 +++-- schemes/Scheme-Example.sublime-color-scheme | 7 ++++--- src/globals.ts | 2 +- 3 files changed, 8 insertions(+), 6 deletions(-) diff --git a/demo/generate.ts b/demo/generate.ts index 2645a10..ea4ca7c 100644 --- a/demo/generate.ts +++ b/demo/generate.ts @@ -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', @@ -22,7 +23,7 @@ const settings: ISchemeSetting = { diffDeleted: '#ef5350', }, ui: { - caret: 'var(orange)', + caret: 'var(cursor)', tags_options: 'underline', brackets_options: 'underline, glow' }, diff --git a/schemes/Scheme-Example.sublime-color-scheme b/schemes/Scheme-Example.sublime-color-scheme index 3e93bd2..ad3a7ed 100644 --- a/schemes/Scheme-Example.sublime-color-scheme +++ b/schemes/Scheme-Example.sublime-color-scheme @@ -2,7 +2,8 @@ "name": "Scheme-Example", "author": "Mauro Reis Vieira ", "variables": { - "cursor": "#80CBC4", + "accent": "#69bdbd", + "cursor": "#e6db30", "foreground": "#A6ACCD", "background": "#292D3E", "comments": "#676E95", @@ -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)", @@ -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", diff --git a/src/globals.ts b/src/globals.ts index 8ec1b46..4b8da02 100644 --- a/src/globals.ts +++ b/src/globals.ts @@ -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',