Skip to content

Commit

Permalink
feat: added new color variation
Browse files Browse the repository at this point in the history
added Deep Ocean
  • Loading branch information
TerminalFi committed Apr 7, 2021
1 parent 87cd92c commit 06b1a43
Showing 1 changed file with 28 additions and 0 deletions.
28 changes: 28 additions & 0 deletions src/variations/deepocean.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,28 @@
import { IColors } from './../interfaces';

export const deepocean: IColors = {
accent: '#80CBC4',
foreground: '#DEDFE4',
background: '##011627',
cursor: '#FFCC00',
comments: '#697098',
deprecated: '#FFC777A1',
diffAdded: '#9CCC65',
diffDeleted: '#EF5350',
diffModified: '#E2B93D',
invalid: '#D3423E66',
base: {
black: '#000000',
blue: "#82AAFF",
brown: "#996667",
cyan: "#7FDBCA",
green: "#C3E88D",
orange: "#F78C6C",
pink: "#FF5899",
purple: "#C2AFFF",
red: "#D95757",
violet: '#BB80B3',
white: '#FFFFFF',
yellow: "#ECF991",
},
};

0 comments on commit 06b1a43

Please sign in to comment.