Skip to content
This repository has been archived by the owner on Sep 6, 2021. It is now read-only.

Commit

Permalink
Merge pull request #3490 from dloverin/hint-colors
Browse files Browse the repository at this point in the history
add new code hinting colors from XD (Lawrence Hsu).
  • Loading branch information
jasonsanjose committed Apr 19, 2013
2 parents c5ebe9c + 5bd1691 commit 50ed265
Showing 1 changed file with 5 additions and 5 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -22,19 +22,19 @@
*/

.brackets-js-hints.priority-high {
color: rgb(0, 100, 0); /* green */
color: #486c00; /* green */
}

.brackets-js-hints.priority-medium {
color: rgb(125, 125, 0); /* yellow */
color: #0c50af; /* blue */
}

.brackets-js-hints.priority-low {
color: rgb(0, 0, 100); /* blue */
color: #6b24bd; /* violet */
}

.brackets-js-hints.priority-lowest {
color: rgb(0, 0, 0); /* black */
color: #444; /* dark grey */
}

.brackets-js-hints.variable-hint {
Expand All @@ -44,7 +44,7 @@
}

.brackets-js-hints.literal-hint {
color: rgb(50, 50, 50); /* dark grey */
color: #444; /* dark grey */
}

.brackets-js-hints.keyword-hint {
Expand Down

0 comments on commit 50ed265

Please sign in to comment.