-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
3 changed files
with
101 additions
and
109 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,102 +1,93 @@ | ||
/*! | ||
The name an-old-hope is kept to override the default theme. | ||
In reality, this site uses a11y-light. | ||
Theme: a11y-light | ||
Author: @ericwbailey | ||
Maintainer: @ericwbailey | ||
Based on the Tomorrow Night Eighties theme: https://github.com/isagalaev/highlight.js/blob/master/src/styles/tomorrow-night-eighties.css | ||
/* | ||
Modified Docco style by redowan delowar | ||
*/ | ||
|
||
.hljs { | ||
background: #fefefe; | ||
color: #545454; | ||
} | ||
|
||
/* Comment */ | ||
.hljs-comment, | ||
.hljs-quote { | ||
color: #696969; | ||
font-style: italic; | ||
} | ||
|
||
/* Red */ | ||
.hljs-variable, | ||
.hljs-template-variable, | ||
.hljs-tag, | ||
.hljs-name, | ||
.hljs-selector-id, | ||
.hljs-selector-class, | ||
.hljs-regexp, | ||
.hljs-deletion { | ||
color: #d91e18; | ||
} | ||
|
||
/* Orange */ | ||
.hljs-number, | ||
.hljs-built_in, | ||
.hljs-literal, | ||
.hljs-type, | ||
.hljs-params, | ||
.hljs-meta, | ||
.hljs-link { | ||
color: #aa5d00; | ||
} | ||
|
||
/* Yellow */ | ||
.hljs-attribute { | ||
color: #aa5d00; | ||
} | ||
|
||
/* Green */ | ||
.hljs-string, | ||
.hljs-symbol, | ||
.hljs-bullet, | ||
.hljs-addition { | ||
color: #008000; | ||
} | ||
|
||
/* Blue */ | ||
.hljs-title, | ||
.hljs-section { | ||
color: #007faa; | ||
} | ||
|
||
/* Purple */ | ||
.hljs-keyword, | ||
.hljs-selector-tag { | ||
color: #7928a1; | ||
} | ||
|
||
.hljs-emphasis { | ||
font-style: italic; | ||
} | ||
|
||
.hljs-strong { | ||
font-weight: bold; | ||
} | ||
|
||
@media screen and (-ms-high-contrast: active) { | ||
.hljs-addition, | ||
.hljs-attribute, | ||
.hljs-built_in, | ||
.hljs-bullet, | ||
.hljs-comment, | ||
.hljs-link, | ||
.hljs-literal, | ||
.hljs-meta, | ||
.hljs-number, | ||
.hljs-params, | ||
.hljs-string, | ||
.hljs-symbol, | ||
.hljs-type, | ||
.hljs-quote { | ||
color: highlight; | ||
} | ||
|
||
.hljs-keyword, | ||
.hljs-selector-tag { | ||
font-weight: bold; | ||
} | ||
} | ||
color: #000; | ||
background: #f8f8ff; | ||
} | ||
|
||
.hljs-comment, | ||
.hljs-quote { | ||
color: #408080; | ||
font-style: italic; | ||
} | ||
|
||
.hljs-keyword, | ||
.hljs-selector-tag, | ||
.hljs-literal, | ||
.hljs-subst { | ||
color: #954121; | ||
} | ||
|
||
.hljs-number { | ||
color: #40a070; | ||
} | ||
|
||
.hljs-string, | ||
.hljs-doctag { | ||
color: #219161; | ||
} | ||
|
||
.hljs-selector-id, | ||
.hljs-selector-class, | ||
.hljs-section, | ||
.hljs-type { | ||
color: #19469d; | ||
} | ||
|
||
.hljs-params { | ||
color: rgb(131, 82, 9); | ||
} | ||
|
||
.hljs-title { | ||
color: #458; | ||
font-weight: bold; | ||
} | ||
|
||
.hljs-tag, | ||
.hljs-name, | ||
.hljs-attribute { | ||
color: #000080; | ||
font-weight: normal; | ||
} | ||
|
||
.hljs-variable, | ||
.hljs-template-variable { | ||
color: #008080; | ||
} | ||
|
||
.hljs-regexp, | ||
.hljs-link { | ||
color: #b68; | ||
} | ||
|
||
.hljs-symbol, | ||
.hljs-bullet { | ||
color: #990073; | ||
} | ||
|
||
.hljs-built_in { | ||
color: #0086b3; | ||
} | ||
|
||
.hljs-meta { | ||
color: #323232; | ||
font-weight: bold; | ||
} | ||
|
||
.hljs-deletion { | ||
background: #fdd; | ||
} | ||
|
||
.hljs-addition { | ||
background: #dfd; | ||
} | ||
|
||
.hljs-emphasis { | ||
font-style: italic; | ||
} | ||
|
||
.hljs-strong { | ||
font-weight: bold; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters