Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Revert JavaScript back to its old color #1126

Closed
wants to merge 3 commits into from
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
6 changes: 3 additions & 3 deletions lib/linguist/languages.yml
Expand Up @@ -313,7 +313,7 @@ COBOL:

CSS:
ace_mode: css
color: "#563d7c"
color: "#1f085e"
primary_extension: .css

Ceylon:
Expand Down Expand Up @@ -985,7 +985,7 @@ Java Server Pages:
JavaScript:
type: programming
ace_mode: javascript
color: "#f7df1e"
color: "#f15501"
aliases:
- js
- node
Expand Down Expand Up @@ -1541,7 +1541,7 @@ Pure Data:

PureScript:
type: programming
color: "#bcdc53"
color: "#f3ce45"
lexer: Haskell
primary_extension: .purs

Expand Down
2 changes: 1 addition & 1 deletion test/test_language.rb
Expand Up @@ -323,7 +323,7 @@ def test_error_without_name
def test_color
assert_equal '#701516', Language['Ruby'].color
assert_equal '#3581ba', Language['Python'].color
assert_equal '#f7df1e', Language['JavaScript'].color
assert_equal '#f15501', Language['JavaScript'].color
assert_equal '#31859c', Language['TypeScript'].color
end

Expand Down