Skip to content

Commit

Permalink
fix: cursor color of lighter version
Browse files Browse the repository at this point in the history
  • Loading branch information
mauroreisvieira committed Apr 9, 2021
1 parent ab26741 commit c3205eb
Show file tree
Hide file tree
Showing 5 changed files with 41 additions and 41 deletions.
2 changes: 1 addition & 1 deletion LICENSE
Original file line number Diff line number Diff line change
@@ -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
Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
@@ -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

Expand All @@ -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';
```
10 changes: 5 additions & 5 deletions src/index.ts
Original file line number Diff line number Diff line change
@@ -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';
18 changes: 9 additions & 9 deletions src/variations/deepocean.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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',
},
};
48 changes: 24 additions & 24 deletions src/variations/lighter.ts
Original file line number Diff line number Diff line change
@@ -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',
},
};

0 comments on commit c3205eb

Please sign in to comment.