8 lines
177 B
TypeScript
8 lines
177 B
TypeScript
|
export const enum Palette {
|
||
|
Plain = '#a6accd',
|
||
|
Punctuator = '#89ddff',
|
||
|
Tag = '#f07178',
|
||
|
Attribute = '#c792ea',
|
||
|
String = '#c3e88d',
|
||
|
Comment = '#676e95',
|
||
|
}
|