Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
120 changes: 120 additions & 0 deletions lib/constants.js
Original file line number Diff line number Diff line change
Expand Up @@ -617,6 +617,126 @@ export const THEMES = [
tag: '#93e0e3',
},
},
{
id: 'intellij-darcula',
name: 'IntelliJ Darcula',
highlights: {
background: '#2B2B2B',
text: '#A9B7C6',
variable: '#9876AA',
variable3: '#A9B7C6',
attribute: '#FFC66D',
definition: '#A9B7C6',
keyword: '#CC7832',
operator: '#A9B7C6',
property: '#FFC66D',
number: '#6897BB',
string: '#6A8759',
comment: '#808080',
meta: '#BBB529',
tag: '#E8BF6A',
},
},
{
id: 'intellij-light',
name: 'IntelliJ Light',
highlights: {
background: '#FAFAFA',
text: '#2B2B2B',
variable: '#3A81C3',
variable3: '#2B2B2B',
attribute: '#795E26',
definition: '#2B2B2B',
keyword: '#000080',
operator: '#2B2B2B',
property: '#4078F2',
number: '#164',
string: '#008000',
comment: '#999999',
meta: '#005F87',
tag: '#800000',
},
},
{
id: 'intellij-high-contrast',
name: 'IntelliJ High Contrast',
highlights: {
background: '#1A1A1A',
text: '#F8F8F2',
variable: '#FFD700',
variable3: '#F8F8F2',
attribute: '#FFB86C',
definition: '#F8F8F2',
keyword: '#FF79C6',
operator: '#8BE9FD',
property: '#F1FA8C',
number: '#BD93F9',
string: '#50FA7B',
comment: '#6272A4',
meta: '#FFB86C',
tag: '#FF5555',
},
},
{
id: 'intellij-dark',
name: 'IntelliJ Dark',
highlights: {
background: '#3C3F41',
text: '#A9B7C6',
variable: '#B294BB',
variable3: '#FFFFFF',
attribute: '#DE935F',
definition: '#A9B7C6',
keyword: '#CC7832',
operator: '#FFFFFF',
property: '#FFC66D',
number: '#6897BB',
string: '#6A8759',
comment: '#808080',
meta: '#BBB529',
tag: '#E8BF6A',
},
},
{
id: 'intellij-classic-light',
name: 'IntelliJ Classic Light',
highlights: {
background: '#FFFFFF',
text: '#000000',
variable: '#0000FF',
variable3: '#000000',
attribute: '#660E7A',
definition: '#000000',
keyword: '#000080',
operator: '#000000',
property: '#795E26',
number: '#098658',
string: '#A31515',
comment: '#008000',
meta: '#B000B0',
tag: '#800000',
},
},
{
id: 'intellij-darcula-contrast',
name: 'IntelliJ Darcula Contrast',
highlights: {
background: '#1E1E1E',
text: '#D8DEE9',
variable: '#C792EA',
variable3: '#FFFFFF',
attribute: '#FFCB6B',
definition: '#D8DEE9',
keyword: '#FF5370',
operator: '#89DDFF',
property: '#82AAFF',
number: '#F78C6C',
string: '#C3E88D',
comment: '#5C6370',
meta: '#FFCB6B',
tag: '#F07178',
},
},
]

export const THEMES_HASH = toHash(THEMES)
Expand Down