You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@netbeans.apache.org by sk...@apache.org on 2020/04/30 08:19:19 UTC

[netbeans] branch master updated: [NETBEANS-3707] Fixed colors used for PHP

This is an automated email from the ASF dual-hosted git repository.

skygo pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/netbeans.git


The following commit(s) were added to refs/heads/master by this push:
     new 1138ef0  [NETBEANS-3707] Fixed colors used for PHP
     new eff032a  Merge pull request #2081 from KacerCZ/netbeans-3707
1138ef0 is described below

commit 1138ef0da5ef174ea16ab3c2bda85191a10b5159
Author: Tomas Prochazka <ka...@razdva.cz>
AuthorDate: Wed Apr 15 18:38:01 2020 +0200

    [NETBEANS-3707] Fixed colors used for PHP
---
 .../csl/editor/completion/GsfCompletionItem.java       | 18 +++++++++---------
 1 file changed, 9 insertions(+), 9 deletions(-)

diff --git a/ide/csl.api/src/org/netbeans/modules/csl/editor/completion/GsfCompletionItem.java b/ide/csl.api/src/org/netbeans/modules/csl/editor/completion/GsfCompletionItem.java
index 9da3bbf..ea1dbf4 100644
--- a/ide/csl.api/src/org/netbeans/modules/csl/editor/completion/GsfCompletionItem.java
+++ b/ide/csl.api/src/org/netbeans/modules/csl/editor/completion/GsfCompletionItem.java
@@ -648,16 +648,16 @@ public abstract class GsfCompletionItem implements CompletionItem {
     /** Format parameters in orange etc. */
     private static class CompletionFormatter extends GsfHtmlFormatter {
         private static final String METHOD_COLOR = LFCustoms.getTextFgColorHTML();
-        private static final String PARAMETER_NAME_COLOR = getHTMLColor(160, 96, 1);
+        private static final String PARAMETER_NAME_COLOR = getHTMLColor(224, 160, 65);
         private static final String END_COLOR = "</font>"; // NOI18N
-        private static final String CLASS_COLOR = getHTMLColor(86, 0, 0);
-        private static final String PKG_COLOR = getHTMLColor(128, 128, 128);
-        private static final String KEYWORD_COLOR = getHTMLColor(0, 0, 153);
-        private static final String FIELD_COLOR = getHTMLColor(0, 134, 24);
-        private static final String VARIABLE_COLOR = getHTMLColor(0, 0, 124);
-        private static final String CONSTRUCTOR_COLOR = getHTMLColor(178, 139, 0);
-        private static final String INTERFACE_COLOR = getHTMLColor(64, 64, 64);
-        private static final String PARAMETERS_COLOR = getHTMLColor(128, 128, 128);
+        private static final String CLASS_COLOR = getHTMLColor(150, 64, 64);
+        private static final String PKG_COLOR = getHTMLColor(192, 192, 192);
+        private static final String KEYWORD_COLOR = getHTMLColor(64, 64, 217);
+        private static final String FIELD_COLOR = getHTMLColor(64, 198, 88);
+        private static final String VARIABLE_COLOR = getHTMLColor(64, 64, 188);
+        private static final String CONSTRUCTOR_COLOR = getHTMLColor(242, 203, 64);
+        private static final String INTERFACE_COLOR = getHTMLColor(128, 128, 128);
+        private static final String PARAMETERS_COLOR = getHTMLColor(192, 192, 192);
         private static final String ACTIVE_PARAMETER_COLOR = LFCustoms.getTextFgColorHTML();
 
         @Override


---------------------------------------------------------------------
To unsubscribe, e-mail: commits-unsubscribe@netbeans.apache.org
For additional commands, e-mail: commits-help@netbeans.apache.org

For further information about the NetBeans mailing lists, visit:
https://cwiki.apache.org/confluence/display/NETBEANS/Mailing+lists