From c3205eb3fb331c1b51b68c02ea61a520ab544f88 Mon Sep 17 00:00:00 2001 From: Mauro Reis Vieira Date: Fri, 9 Apr 2021 09:38:11 +0100 Subject: [PATCH] fix: cursor color of lighter version --- LICENSE | 2 +- README.md | 4 ++-- src/index.ts | 10 ++++---- src/variations/deepocean.ts | 18 +++++++------- src/variations/lighter.ts | 48 ++++++++++++++++++------------------- 5 files changed, 41 insertions(+), 41 deletions(-) diff --git a/LICENSE b/LICENSE index 048e5d4..0aa3102 100644 --- a/LICENSE +++ b/LICENSE @@ -1,6 +1,6 @@ The MIT License (MIT) -Copyright (c) 2020 Mauro Reis Vieira +Copyright (c) 2021 Mauro Reis Vieira Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal diff --git a/README.md b/README.md index dac3cae..b32afa4 100644 --- a/README.md +++ b/README.md @@ -1,6 +1,6 @@ # Meetio Colors -The most delicious and wonderful colors for Meetio Theme +The most delicious and wonderful colors for [Meetio Theme](https://github.com/meetio-theme/sublime-meetio-theme) ### Installation @@ -15,5 +15,5 @@ $ yarn add @meetio/meetio-colors ## Use ```ts -import { lighter, darker, palenight } from '@meetio/meetio-colors'; +import { lighter, darker, palenight, deepocean } from '@meetio/meetio-colors'; ``` diff --git a/src/index.ts b/src/index.ts index 5f8e89d..80ab533 100644 --- a/src/index.ts +++ b/src/index.ts @@ -1,5 +1,5 @@ -export { lighter } from "./variations/lighter" -export { darker } from "./variations/darker" -export { palenight } from "./variations/palenight" -export { deepocean } from "./variations/deepocean" -export { IColors } from './interfaces' +export { lighter } from './variations/lighter'; +export { darker } from './variations/darker'; +export { palenight } from './variations/palenight'; +export { deepocean } from './variations/deepocean'; +export { IColors } from './interfaces'; diff --git a/src/variations/deepocean.ts b/src/variations/deepocean.ts index e0d6aca..236c57e 100644 --- a/src/variations/deepocean.ts +++ b/src/variations/deepocean.ts @@ -13,16 +13,16 @@ export const deepocean: IColors = { invalid: '#D3423E66', base: { black: '#000000', - blue: "#82AAFF", - brown: "#996667", - cyan: "#7FDBCA", - green: "#C3E88D", - orange: "#F78C6C", - pink: "#FF5899", - purple: "#C2AFFF", - red: "#D95757", + blue: '#82AAFF', + brown: '#996667', + cyan: '#7FDBCA', + green: '#C3E88D', + orange: '#F78C6C', + pink: '#FF5899', + purple: '#C2AFFF', + red: '#D95757', violet: '#BB80B3', white: '#FFFFFF', - yellow: "#ECF991", + yellow: '#ECF991', }, }; diff --git a/src/variations/lighter.ts b/src/variations/lighter.ts index 0ea3f1f..b51381f 100644 --- a/src/variations/lighter.ts +++ b/src/variations/lighter.ts @@ -1,28 +1,28 @@ import { IColors } from './../interfaces'; export const lighter: IColors = { - accent: '#80CBC4', - foreground: '#455A64', - background: '#FBFBFB', - cursor: '#272727', - comments: '#90A4AE', - deprecated: '#FFC777A1', - diffAdded: '#9CCC65', - diffDeleted: '#EF5350', - diffModified: '#E2B93D', - invalid: '#D3423E66', - base: { - black: '#000000', - blue: '#6182B8', - brown: '#916B53', - cyan: '#39ADB5', - green: '#91B859', - orange: '#F76D47', - pink: '#FF5370', - purple: '#9C3EDA', - red: '#E53935', - violet: '#945EB8', - white: '#FFFFFF', - yellow: '#E2931D', - } + accent: '#80CBC4', + foreground: '#455A64', + background: '#FBFBFB', + cursor: '#FFCC00', + comments: '#90A4AE', + deprecated: '#FFC777A1', + diffAdded: '#9CCC65', + diffDeleted: '#EF5350', + diffModified: '#E2B93D', + invalid: '#D3423E66', + base: { + black: '#000000', + blue: '#6182B8', + brown: '#916B53', + cyan: '#39ADB5', + green: '#91B859', + orange: '#F76D47', + pink: '#FF5370', + purple: '#9C3EDA', + red: '#E53935', + violet: '#945EB8', + white: '#FFFFFF', + yellow: '#E2931D', + }, };