Skip to content

Commit 7bf26b5

Browse files
authored
Merge pull request #114 from DanielViberg/master
Added basic support for vue and tweaked css and typescript
2 parents 080b38a + cf720ba commit 7bf26b5

1 file changed

Lines changed: 18 additions & 6 deletions

File tree

colors/codedark.vim

Lines changed: 18 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -385,25 +385,27 @@ call <sid>hi('phpMethodsVar', s:cdLightBlue, {}, 'none', {})
385385
" CSS:
386386
call <sid>hi('cssBraces', s:cdFront, {}, 'none', {})
387387
call <sid>hi('cssInclude', s:cdPink, {}, 'none', {})
388-
call <sid>hi('cssTagName', s:cdYellowOrange, {}, 'none', {})
388+
call <sid>hi('cssTagName', s:cdBlue, {}, 'none', {})
389389
call <sid>hi('cssClassName', s:cdYellowOrange, {}, 'none', {})
390390
call <sid>hi('cssPseudoClass', s:cdYellowOrange, {}, 'none', {})
391-
call <sid>hi('cssPseudoClassId', s:cdYellowOrange, {}, 'none', {})
391+
call <sid>hi('cssPseudoClassId', s:cdOrange, {}, 'none', {})
392392
call <sid>hi('cssPseudoClassLang', s:cdYellowOrange, {}, 'none', {})
393393
call <sid>hi('cssIdentifier', s:cdYellowOrange, {}, 'none', {})
394394
call <sid>hi('cssProp', s:cdLightBlue, {}, 'none', {})
395395
call <sid>hi('cssDefinition', s:cdLightBlue, {}, 'none', {})
396396
call <sid>hi('cssAttr', s:cdOrange, {}, 'none', {})
397397
call <sid>hi('cssAttrRegion', s:cdOrange, {}, 'none', {})
398398
call <sid>hi('cssColor', s:cdOrange, {}, 'none', {})
399-
call <sid>hi('cssFunction', s:cdOrange, {}, 'none', {})
400-
call <sid>hi('cssFunctionName', s:cdOrange, {}, 'none', {})
399+
call <sid>hi('cssFunction', s:cdLightBlue, {}, 'none', {})
400+
call <sid>hi('cssFunctionName', s:cdYellow, {}, 'none', {})
401401
call <sid>hi('cssVendor', s:cdOrange, {}, 'none', {})
402402
call <sid>hi('cssValueNumber', s:cdOrange, {}, 'none', {})
403-
call <sid>hi('cssValueLength', s:cdOrange, {}, 'none', {})
404-
call <sid>hi('cssUnitDecorators', s:cdOrange, {}, 'none', {})
403+
call <sid>hi('cssValueLength', s:cdLightGreen, {}, 'none', {})
404+
call <sid>hi('cssUnitDecorators', s:cdLightGreen, {}, 'none', {})
405405
call <sid>hi('cssStyle', s:cdLightBlue, {}, 'none', {})
406406
call <sid>hi('cssImportant', s:cdBlue, {}, 'none', {})
407+
call <sid>hi('cssSelectorOp', s:cdFront, {}, 'none', {})
408+
call <sid>hi('cssKeyFrameProp2', s:cdLightGreen, {}, 'none', {})
407409

408410
" JavaScript:
409411
call <sid>hi('jsVariableDef', s:cdLightBlue, {}, 'none', {})
@@ -429,6 +431,14 @@ call <sid>hi('jsParenIfElse', s:cdLightBlue, {}, 'none', {})
429431
call <sid>hi('jsSpreadOperator', s:cdLightBlue, {}, 'none', {})
430432
call <sid>hi('jsSpreadExpression', s:cdLightBlue, {}, 'none', {})
431433

434+
" Vue:
435+
call <sid>hi('VueComponentName', s:cdBlueGreen, {}, 'none', {})
436+
call <sid>hi('VueValue', s:cdLightBlue, {}, 'none', {})
437+
call <sid>hi('VueBrace', s:cdYellowOrange, {}, 'none', {})
438+
call <sid>hi('VueExpression', s:cdYellow, {}, 'none', {})
439+
call <sid>hi('VueTag', s:cdLightBlue, {}, 'none', {})
440+
call <sid>hi('VueKey', s:cdPink, {}, 'none', {})
441+
432442
" Typescript:
433443
call <sid>hi('typescriptLabel', s:cdLightBlue, {}, 'none', {})
434444
call <sid>hi('typescriptExceptions', s:cdLightBlue, {}, 'none', {})
@@ -495,6 +505,8 @@ call <sid>hi('typescriptAsyncFuncKeyword', s:cdBlue, {}, 'none', {})
495505
call <sid>hi('typescriptFuncKeyword', s:cdBlue, {}, 'none', {})
496506
call <sid>hi('typescriptGlobalMethod', s:cdYellow, {}, 'none', {})
497507
call <sid>hi('typescriptPromiseMethod', s:cdYellow, {}, 'none', {})
508+
call <sid>hi('typescriptIdentifierName', s:cdLightBlue, {}, 'none', {})
509+
call <sid>hi('typescriptCacheMethod', s:cdYellow, {}, 'none', {})
498510

499511
" XML:
500512
call <sid>hi('xmlTag', s:cdBlueGreen, {}, 'none', {})

0 commit comments

Comments
 (0)