Skip to content

Commit

Permalink
fix: variable normalize order
Browse files Browse the repository at this point in the history
fix: normalized order of variables
  • Loading branch information
TerminalFi committed Apr 7, 2021
1 parent ea8712c commit 87cd92c
Show file tree
Hide file tree
Showing 4 changed files with 30 additions and 29 deletions.
1 change: 1 addition & 0 deletions src/index.ts
Original file line number Diff line number Diff line change
@@ -1,4 +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'
6 changes: 3 additions & 3 deletions src/variations/darker.ts
Original file line number Diff line number Diff line change
Expand Up @@ -2,15 +2,15 @@ import { IColors } from './../interfaces';

export const darker: IColors = {
accent: '#80CBC4',
cursor: '#FFCC00',
foreground: '#DEDFE4',
background: '#212121',
cursor: '#FFCC00',
comments: '#545454',
deprecated: '#FFC777A1',
invalid: '#D46C6C66',
diffAdded: '#ADDB67',
diffModified: '#E2B93D',
diffDeleted: '#EF5350',
diffModified: '#E2B93D',
invalid: '#D46C6C66',
base: {
black: '#000000',
blue: '#82AAFF',
Expand Down
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',
background: '#FBFBFB',
comments: '#90A4AE',
cursor: '#272727',
deprecated: '#FFC777A1',
diffAdded: '#9CCC65',
diffDeleted: '#EF5350',
diffModified: '#E2B93D',
foreground: '#455A64',
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: '#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',
}
};
4 changes: 2 additions & 2 deletions src/variations/palenight.ts
Original file line number Diff line number Diff line change
Expand Up @@ -2,14 +2,14 @@ import { IColors } from './../interfaces';

export const palenight: IColors = {
accent: '#80CBC4',
foreground: '#A6ACCD',
background: '#292D3E',
comments: '#676E95',
cursor: '#FFCC00',
comments: '#676E95',
deprecated: '#FFC777A1',
diffAdded: '#9CCC65',
diffDeleted: '#EF5350',
diffModified: '#E2B93D',
foreground: '#A6ACCD',
invalid: '#D3423E66',
base: {
black: '#000000',
Expand Down

0 comments on commit 87cd92c

Please sign in to comment.