Skip to content

Commit

Permalink
Latest highlight.js parser with coloring fixes. Finetuned colors.
Browse files Browse the repository at this point in the history
  • Loading branch information
tomimick committed Nov 26, 2012
1 parent f59545d commit f03e71d
Show file tree
Hide file tree
Showing 3 changed files with 32 additions and 5 deletions.
31 changes: 29 additions & 2 deletions ext/googlecode.css
Expand Up @@ -27,7 +27,7 @@ pre .tex .command,
pre .http .title,
pre .request,
pre .status {
color: #008;
color: #00b;
}

pre .envvar,
Expand Down Expand Up @@ -142,8 +142,35 @@ pre .comment .yardoctag {
font-weight: bold;
}

/*tomi*/
/* tomi */
/* generic comment */
.comment {
background: #fdd;
}
.language-javascript .function {
font-weight: bold;
}
.language-javascript .function .params {
background: #ffa;
}

/* css colors */
.language-css .rule .value {
color: cornflowerblue;
}
.language-css .rule .value .number {
color: blue;
}
.language-css .tag {
font-weight: bold;
}
.language-css .id {
color: blue;
}
.language-css .class {
color: green;
}
.language-css .pseudo {
background: #ffa;
}

2 changes: 1 addition & 1 deletion ext/highlight.pack.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions manifest.json
@@ -1,9 +1,9 @@
{
"name": "Quick source viewer",
"version": "1.0.3",
"version": "1.0.4",
"description": "View page sources: HTML + Javascript + CSS",
"permissions": [
"tabs", "http://*/*", "https://*/*"
"tabs", "<all_urls>"
],
"manifest_version": 2,
"browser_action": {
Expand Down

0 comments on commit f03e71d

Please sign in to comment.