Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save mattintosh4/2731373 to your computer and use it in GitHub Desktop.
Save mattintosh4/2731373 to your computer and use it in GitHub Desktop.
for Google Chrome Source Viewer (Komodo Edit Like)
.webkit-line-gutter-backdrop + table{
background-color:rgb(25,25,25);
font-size:12px;
line-height:1.5
}
.webkit-line-gutter-backdrop + table .webkit-line-content{
color:rgb(255,255,255);
font-family:"dejavu sans mono",monospace;
white-space:pre
}
.webkit-line-gutter-backdrop + table .webkit-line-content:hover{
background-color:rgb(0,51,51)
}
.webkit-line-gutter-backdrop + table ::selection{ /* 選択範囲 */
background-color:rgb(153,0,0)
}
.webkit-line-gutter-backdrop + table .webkit-html-attribute-name{ /* 属性名 */
color:rgb(120,224,135)
}
.webkit-line-gutter-backdrop + table .webkit-html-attribute-value{ /* 属性値 */
color:rgb(208,176,208)
}
.webkit-line-gutter-backdrop + table .webkit-html-comment{ /* コメント */
color:rgb(192,192,192);
font-style:italic
}
.webkit-line-gutter-backdrop + table .webkit-html-doctype{ /* DOCTYPE */
color:rgb(255,255,255)
}
.webkit-line-gutter-backdrop + table .webkit-html-resource-link{ /* リソースリンク */
}
.webkit-line-gutter-backdrop + table .webkit-html-external-link{ /* 外部リンク */
}
.webkit-line-gutter-backdrop + table .webkit-html-tag{ /* タグ */
color:rgb(255,205,0)
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment