From 74c7f1d7e2b8b1982c72526674b45ea51f7becab Mon Sep 17 00:00:00 2001 From: hosseintoussi Date: Sat, 5 Jan 2019 15:58:31 +0100 Subject: [PATCH 1/7] added lightblue to the module keyword of javascript --- colors/codedark.vim | 1 + 1 file changed, 1 insertion(+) diff --git a/colors/codedark.vim b/colors/codedark.vim index 77bd8ba..f4ca139 100644 --- a/colors/codedark.vim +++ b/colors/codedark.vim @@ -262,6 +262,7 @@ call hi('jsThis', s:cdBlue, {}, 'none', {}) call hi('jsDestructuringBlock', s:cdLightBlue, {}, 'none', {}) call hi('jsObjectKey', s:cdLightBlue, {}, 'none', {}) call hi('jsGlobalObjects', s:cdBlueGreen, {}, 'none', {}) +call hi('jsModuleKeyword', s:cdLightBlue, {}, 'none', {}) " Ruby: call hi('rubyClassNameTag', s:cdBlueGreen, {}, 'none', {}) From 80f7659df0def04747174c56cefb2fb72f745430 Mon Sep 17 00:00:00 2001 From: hosseintoussi Date: Sat, 5 Jan 2019 16:00:18 +0100 Subject: [PATCH 2/7] added blue green to class definition of javascript --- colors/codedark.vim | 1 + 1 file changed, 1 insertion(+) diff --git a/colors/codedark.vim b/colors/codedark.vim index f4ca139..1d151ee 100644 --- a/colors/codedark.vim +++ b/colors/codedark.vim @@ -263,6 +263,7 @@ call hi('jsDestructuringBlock', s:cdLightBlue, {}, 'none', {}) call hi('jsObjectKey', s:cdLightBlue, {}, 'none', {}) call hi('jsGlobalObjects', s:cdBlueGreen, {}, 'none', {}) call hi('jsModuleKeyword', s:cdLightBlue, {}, 'none', {}) +call hi('jsClassDefinition', s:cdBlueGreen, {}, 'none', {}) " Ruby: call hi('rubyClassNameTag', s:cdBlueGreen, {}, 'none', {}) From c88dad99763474d644433236ecbd838458868772 Mon Sep 17 00:00:00 2001 From: hosseintoussi Date: Sat, 5 Jan 2019 16:04:14 +0100 Subject: [PATCH 3/7] added yellow to function calls of javascript --- colors/codedark.vim | 1 + 1 file changed, 1 insertion(+) diff --git a/colors/codedark.vim b/colors/codedark.vim index 1d151ee..36b4e84 100644 --- a/colors/codedark.vim +++ b/colors/codedark.vim @@ -264,6 +264,7 @@ call hi('jsObjectKey', s:cdLightBlue, {}, 'none', {}) call hi('jsGlobalObjects', s:cdBlueGreen, {}, 'none', {}) call hi('jsModuleKeyword', s:cdLightBlue, {}, 'none', {}) call hi('jsClassDefinition', s:cdBlueGreen, {}, 'none', {}) +call hi('jsFuncCall', s:cdYellow, {}, 'none', {}) " Ruby: call hi('rubyClassNameTag', s:cdBlueGreen, {}, 'none', {}) From 14ed4812f1248d1c98907114c1bfe161763bc603 Mon Sep 17 00:00:00 2001 From: hosseintoussi Date: Sat, 5 Jan 2019 16:23:57 +0100 Subject: [PATCH 4/7] colors for extend, class, and export in javascript --- colors/codedark.vim | 3 +++ 1 file changed, 3 insertions(+) diff --git a/colors/codedark.vim b/colors/codedark.vim index 36b4e84..a8480e5 100644 --- a/colors/codedark.vim +++ b/colors/codedark.vim @@ -264,6 +264,9 @@ call hi('jsObjectKey', s:cdLightBlue, {}, 'none', {}) call hi('jsGlobalObjects', s:cdBlueGreen, {}, 'none', {}) call hi('jsModuleKeyword', s:cdLightBlue, {}, 'none', {}) call hi('jsClassDefinition', s:cdBlueGreen, {}, 'none', {}) +call hi('jsClassKeyword', s:cdBlue, {}, 'none', {}) +call hi('jsExtendsKeyword', s:cdBlue, {}, 'none', {}) +call hi('jsExportDefault', s:cdPink, {}, 'none', {}) call hi('jsFuncCall', s:cdYellow, {}, 'none', {}) " Ruby: From 00f81b8cf238d72fc4f2df08331079580e397fca Mon Sep 17 00:00:00 2001 From: hosseintoussi Date: Sat, 5 Jan 2019 16:30:36 +0100 Subject: [PATCH 5/7] added yellow to object key of javascript --- colors/codedark.vim | 1 + 1 file changed, 1 insertion(+) diff --git a/colors/codedark.vim b/colors/codedark.vim index a8480e5..a0685c2 100644 --- a/colors/codedark.vim +++ b/colors/codedark.vim @@ -268,6 +268,7 @@ call hi('jsClassKeyword', s:cdBlue, {}, 'none', {}) call hi('jsExtendsKeyword', s:cdBlue, {}, 'none', {}) call hi('jsExportDefault', s:cdPink, {}, 'none', {}) call hi('jsFuncCall', s:cdYellow, {}, 'none', {}) +call hi('jsObjectKey', s:cdYellow, {}, 'none', {}) " Ruby: call hi('rubyClassNameTag', s:cdBlueGreen, {}, 'none', {}) From 9d25538b3d99f02afe4545305b2d7b7b2ecf3ea8 Mon Sep 17 00:00:00 2001 From: hosseintoussi Date: Sat, 5 Jan 2019 16:36:28 +0100 Subject: [PATCH 6/7] added light blue to object value of javascript --- colors/codedark.vim | 1 + 1 file changed, 1 insertion(+) diff --git a/colors/codedark.vim b/colors/codedark.vim index a0685c2..915f03c 100644 --- a/colors/codedark.vim +++ b/colors/codedark.vim @@ -269,6 +269,7 @@ call hi('jsExtendsKeyword', s:cdBlue, {}, 'none', {}) call hi('jsExportDefault', s:cdPink, {}, 'none', {}) call hi('jsFuncCall', s:cdYellow, {}, 'none', {}) call hi('jsObjectKey', s:cdYellow, {}, 'none', {}) +call hi('jsObjectValue', s:cdLightBlue, {}, 'none', {}) " Ruby: call hi('rubyClassNameTag', s:cdBlueGreen, {}, 'none', {}) From fee4cd571b76110ed2fe1f09d4e971dcd13fe5fd Mon Sep 17 00:00:00 2001 From: hosseintoussi Date: Sat, 5 Jan 2019 16:54:09 +0100 Subject: [PATCH 7/7] added light blue to parentheses in javascript --- colors/codedark.vim | 1 + 1 file changed, 1 insertion(+) diff --git a/colors/codedark.vim b/colors/codedark.vim index 915f03c..00f9614 100644 --- a/colors/codedark.vim +++ b/colors/codedark.vim @@ -270,6 +270,7 @@ call hi('jsExportDefault', s:cdPink, {}, 'none', {}) call hi('jsFuncCall', s:cdYellow, {}, 'none', {}) call hi('jsObjectKey', s:cdYellow, {}, 'none', {}) call hi('jsObjectValue', s:cdLightBlue, {}, 'none', {}) +call hi('jsParen', s:cdLightBlue, {}, 'none', {}) " Ruby: call hi('rubyClassNameTag', s:cdBlueGreen, {}, 'none', {})